Roo/bootstrap/Popover.js
[roojs1] / roojs-debug.js
1 /*
2  * Based on:
3  * Ext JS Library 1.1.1
4  * Copyright(c) 2006-2007, Ext JS, LLC.
5  *
6  * Originally Released Under LGPL - original licence link has changed is not relivant.
7  *
8  * Fork - LGPL
9  * <script type="text/javascript">
10  */
11  
12
13
14
15
16 // for old browsers
17 window["undefined"] = window["undefined"];
18
19 /**
20  * @class Roo
21  * Roo core utilities and functions.
22  * @singleton
23  */
24 var Roo = {}; 
25 /**
26  * Copies all the properties of config to obj.
27  * @param {Object} obj The receiver of the properties
28  * @param {Object} config The source of the properties
29  * @param {Object} defaults A different object that will also be applied for default values
30  * @return {Object} returns obj
31  * @member Roo apply
32  */
33
34  
35 Roo.apply = function(o, c, defaults){
36     if(defaults){
37         // no "this" reference for friendly out of scope calls
38         Roo.apply(o, defaults);
39     }
40     if(o && c && typeof c == 'object'){
41         for(var p in c){
42             o[p] = c[p];
43         }
44     }
45     return o;
46 };
47
48
49 (function(){
50     var idSeed = 0;
51     var ua = navigator.userAgent.toLowerCase();
52
53     var isStrict = document.compatMode == "CSS1Compat",
54         isOpera = ua.indexOf("opera") > -1,
55         isSafari = (/webkit|khtml/).test(ua),
56         isFirefox = ua.indexOf("firefox") > -1,
57         isIE = ua.indexOf("msie") > -1,
58         isIE7 = ua.indexOf("msie 7") > -1,
59         isIE11 = /trident.*rv\:11\./.test(ua),
60         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                  
5953                 return this.fireEvent.apply(this, Roo.combine(ename, Array.prototype.slice.call(arguments, 0)));
5954             };
5955         };
5956         for(var i = 0, len = events.length; i < len; i++){
5957             var ename = events[i];
5958             if(!this.events[ename]){
5959                 this.events[ename] = true;
5960             };
5961             o.on(ename, createHandler(ename), this);
5962         }
5963     },
5964
5965     /**
5966      * Used to define events on this Observable
5967      * @param {Object} object The object with the events defined
5968      */
5969     addEvents : function(o){
5970         if(!this.events){
5971             this.events = {};
5972         }
5973         Roo.applyIf(this.events, o);
5974     },
5975
5976     /**
5977      * Checks to see if this object has any listeners for a specified event
5978      * @param {String} eventName The name of the event to check for
5979      * @return {Boolean} True if the event is being listened for, else false
5980      */
5981     hasListener : function(eventName){
5982         var e = this.events[eventName];
5983         return typeof e == "object" && e.listeners.length > 0;
5984     }
5985 };
5986 /**
5987  * Appends an event handler to this element (shorthand for addListener)
5988  * @param {String}   eventName     The type of event to listen for
5989  * @param {Function} handler        The method the event invokes
5990  * @param {Object}   scope (optional) The scope in which to execute the handler
5991  * function. The handler function's "this" context.
5992  * @param {Object}   options  (optional)
5993  * @method
5994  */
5995 Roo.util.Observable.prototype.on = Roo.util.Observable.prototype.addListener;
5996 /**
5997  * Removes a listener (shorthand for removeListener)
5998  * @param {String}   eventName     The type of event to listen for
5999  * @param {Function} handler        The handler to remove
6000  * @param {Object}   scope  (optional) The scope (this object) for the handler
6001  * @method
6002  */
6003 Roo.util.Observable.prototype.un = Roo.util.Observable.prototype.removeListener;
6004
6005 /**
6006  * Starts capture on the specified Observable. All events will be passed
6007  * to the supplied function with the event name + standard signature of the event
6008  * <b>before</b> the event is fired. If the supplied function returns false,
6009  * the event will not fire.
6010  * @param {Observable} o The Observable to capture
6011  * @param {Function} fn The function to call
6012  * @param {Object} scope (optional) The scope (this object) for the fn
6013  * @static
6014  */
6015 Roo.util.Observable.capture = function(o, fn, scope){
6016     o.fireEvent = o.fireEvent.createInterceptor(fn, scope);
6017 };
6018
6019 /**
6020  * Removes <b>all</b> added captures from the Observable.
6021  * @param {Observable} o The Observable to release
6022  * @static
6023  */
6024 Roo.util.Observable.releaseCapture = function(o){
6025     o.fireEvent = Roo.util.Observable.prototype.fireEvent;
6026 };
6027
6028 (function(){
6029
6030     var createBuffered = function(h, o, scope){
6031         var task = new Roo.util.DelayedTask();
6032         return function(){
6033             task.delay(o.buffer, h, scope, Array.prototype.slice.call(arguments, 0));
6034         };
6035     };
6036
6037     var createSingle = function(h, e, fn, scope){
6038         return function(){
6039             e.removeListener(fn, scope);
6040             return h.apply(scope, arguments);
6041         };
6042     };
6043
6044     var createDelayed = function(h, o, scope){
6045         return function(){
6046             var args = Array.prototype.slice.call(arguments, 0);
6047             setTimeout(function(){
6048                 h.apply(scope, args);
6049             }, o.delay || 10);
6050         };
6051     };
6052
6053     Roo.util.Event = function(obj, name){
6054         this.name = name;
6055         this.obj = obj;
6056         this.listeners = [];
6057     };
6058
6059     Roo.util.Event.prototype = {
6060         addListener : function(fn, scope, options){
6061             var o = options || {};
6062             scope = scope || this.obj;
6063             if(!this.isListening(fn, scope)){
6064                 var l = {fn: fn, scope: scope, options: o};
6065                 var h = fn;
6066                 if(o.delay){
6067                     h = createDelayed(h, o, scope);
6068                 }
6069                 if(o.single){
6070                     h = createSingle(h, this, fn, scope);
6071                 }
6072                 if(o.buffer){
6073                     h = createBuffered(h, o, scope);
6074                 }
6075                 l.fireFn = h;
6076                 if(!this.firing){ // if we are currently firing this event, don't disturb the listener loop
6077                     this.listeners.push(l);
6078                 }else{
6079                     this.listeners = this.listeners.slice(0);
6080                     this.listeners.push(l);
6081                 }
6082             }
6083         },
6084
6085         findListener : function(fn, scope){
6086             scope = scope || this.obj;
6087             var ls = this.listeners;
6088             for(var i = 0, len = ls.length; i < len; i++){
6089                 var l = ls[i];
6090                 if(l.fn == fn && l.scope == scope){
6091                     return i;
6092                 }
6093             }
6094             return -1;
6095         },
6096
6097         isListening : function(fn, scope){
6098             return this.findListener(fn, scope) != -1;
6099         },
6100
6101         removeListener : function(fn, scope){
6102             var index;
6103             if((index = this.findListener(fn, scope)) != -1){
6104                 if(!this.firing){
6105                     this.listeners.splice(index, 1);
6106                 }else{
6107                     this.listeners = this.listeners.slice(0);
6108                     this.listeners.splice(index, 1);
6109                 }
6110                 return true;
6111             }
6112             return false;
6113         },
6114
6115         clearListeners : function(){
6116             this.listeners = [];
6117         },
6118
6119         fire : function(){
6120             var ls = this.listeners, scope, len = ls.length;
6121             if(len > 0){
6122                 this.firing = true;
6123                 var args = Array.prototype.slice.call(arguments, 0);                
6124                 for(var i = 0; i < len; i++){
6125                     var l = ls[i];
6126                     if(l.fireFn.apply(l.scope||this.obj||window, args) === false){
6127                         this.firing = false;
6128                         return false;
6129                     }
6130                 }
6131                 this.firing = false;
6132             }
6133             return true;
6134         }
6135     };
6136 })();/*
6137  * RooJS Library 
6138  * Copyright(c) 2007-2017, Roo J Solutions Ltd
6139  *
6140  * Licence LGPL 
6141  *
6142  */
6143  
6144 /**
6145  * @class Roo.Document
6146  * @extends Roo.util.Observable
6147  * This is a convience class to wrap up the main document loading code.. , rather than adding Roo.onReady(......)
6148  * 
6149  * @param {Object} config the methods and properties of the 'base' class for the application.
6150  * 
6151  *  Generic Page handler - implement this to start your app..
6152  * 
6153  * eg.
6154  *  MyProject = new Roo.Document({
6155         events : {
6156             'load' : true // your events..
6157         },
6158         listeners : {
6159             'ready' : function() {
6160                 // fired on Roo.onReady()
6161             }
6162         }
6163  * 
6164  */
6165 Roo.Document = function(cfg) {
6166      
6167     this.addEvents({ 
6168         'ready' : true
6169     });
6170     Roo.util.Observable.call(this,cfg);
6171     
6172     var _this = this;
6173     
6174     Roo.onReady(function() {
6175         _this.fireEvent('ready');
6176     },null,false);
6177     
6178     
6179 }
6180
6181 Roo.extend(Roo.Document, Roo.util.Observable, {});/*
6182  * Based on:
6183  * Ext JS Library 1.1.1
6184  * Copyright(c) 2006-2007, Ext JS, LLC.
6185  *
6186  * Originally Released Under LGPL - original licence link has changed is not relivant.
6187  *
6188  * Fork - LGPL
6189  * <script type="text/javascript">
6190  */
6191
6192 /**
6193  * @class Roo.EventManager
6194  * Registers event handlers that want to receive a normalized EventObject instead of the standard browser event and provides 
6195  * several useful events directly.
6196  * See {@link Roo.EventObject} for more details on normalized event objects.
6197  * @singleton
6198  */
6199 Roo.EventManager = function(){
6200     var docReadyEvent, docReadyProcId, docReadyState = false;
6201     var resizeEvent, resizeTask, textEvent, textSize;
6202     var E = Roo.lib.Event;
6203     var D = Roo.lib.Dom;
6204
6205     
6206     
6207
6208     var fireDocReady = function(){
6209         if(!docReadyState){
6210             docReadyState = true;
6211             Roo.isReady = true;
6212             if(docReadyProcId){
6213                 clearInterval(docReadyProcId);
6214             }
6215             if(Roo.isGecko || Roo.isOpera) {
6216                 document.removeEventListener("DOMContentLoaded", fireDocReady, false);
6217             }
6218             if(Roo.isIE){
6219                 var defer = document.getElementById("ie-deferred-loader");
6220                 if(defer){
6221                     defer.onreadystatechange = null;
6222                     defer.parentNode.removeChild(defer);
6223                 }
6224             }
6225             if(docReadyEvent){
6226                 docReadyEvent.fire();
6227                 docReadyEvent.clearListeners();
6228             }
6229         }
6230     };
6231     
6232     var initDocReady = function(){
6233         docReadyEvent = new Roo.util.Event();
6234         if(Roo.isGecko || Roo.isOpera) {
6235             document.addEventListener("DOMContentLoaded", fireDocReady, false);
6236         }else if(Roo.isIE){
6237             document.write("<s"+'cript id="ie-deferred-loader" defer="defer" src="/'+'/:"></s'+"cript>");
6238             var defer = document.getElementById("ie-deferred-loader");
6239             defer.onreadystatechange = function(){
6240                 if(this.readyState == "complete"){
6241                     fireDocReady();
6242                 }
6243             };
6244         }else if(Roo.isSafari){ 
6245             docReadyProcId = setInterval(function(){
6246                 var rs = document.readyState;
6247                 if(rs == "complete") {
6248                     fireDocReady();     
6249                  }
6250             }, 10);
6251         }
6252         // no matter what, make sure it fires on load
6253         E.on(window, "load", fireDocReady);
6254     };
6255
6256     var createBuffered = function(h, o){
6257         var task = new Roo.util.DelayedTask(h);
6258         return function(e){
6259             // create new event object impl so new events don't wipe out properties
6260             e = new Roo.EventObjectImpl(e);
6261             task.delay(o.buffer, h, null, [e]);
6262         };
6263     };
6264
6265     var createSingle = function(h, el, ename, fn){
6266         return function(e){
6267             Roo.EventManager.removeListener(el, ename, fn);
6268             h(e);
6269         };
6270     };
6271
6272     var createDelayed = function(h, o){
6273         return function(e){
6274             // create new event object impl so new events don't wipe out properties
6275             e = new Roo.EventObjectImpl(e);
6276             setTimeout(function(){
6277                 h(e);
6278             }, o.delay || 10);
6279         };
6280     };
6281     var transitionEndVal = false;
6282     
6283     var transitionEnd = function()
6284     {
6285         if (transitionEndVal) {
6286             return transitionEndVal;
6287         }
6288         var el = document.createElement('div');
6289
6290         var transEndEventNames = {
6291             WebkitTransition : 'webkitTransitionEnd',
6292             MozTransition    : 'transitionend',
6293             OTransition      : 'oTransitionEnd otransitionend',
6294             transition       : 'transitionend'
6295         };
6296     
6297         for (var name in transEndEventNames) {
6298             if (el.style[name] !== undefined) {
6299                 transitionEndVal = transEndEventNames[name];
6300                 return  transitionEndVal ;
6301             }
6302         }
6303     }
6304     
6305   
6306
6307     var listen = function(element, ename, opt, fn, scope)
6308     {
6309         var o = (!opt || typeof opt == "boolean") ? {} : opt;
6310         fn = fn || o.fn; scope = scope || o.scope;
6311         var el = Roo.getDom(element);
6312         
6313         
6314         if(!el){
6315             throw "Error listening for \"" + ename + '\". Element "' + element + '" doesn\'t exist.';
6316         }
6317         
6318         if (ename == 'transitionend') {
6319             ename = transitionEnd();
6320         }
6321         var h = function(e){
6322             e = Roo.EventObject.setEvent(e);
6323             var t;
6324             if(o.delegate){
6325                 t = e.getTarget(o.delegate, el);
6326                 if(!t){
6327                     return;
6328                 }
6329             }else{
6330                 t = e.target;
6331             }
6332             if(o.stopEvent === true){
6333                 e.stopEvent();
6334             }
6335             if(o.preventDefault === true){
6336                e.preventDefault();
6337             }
6338             if(o.stopPropagation === true){
6339                 e.stopPropagation();
6340             }
6341
6342             if(o.normalized === false){
6343                 e = e.browserEvent;
6344             }
6345
6346             fn.call(scope || el, e, t, o);
6347         };
6348         if(o.delay){
6349             h = createDelayed(h, o);
6350         }
6351         if(o.single){
6352             h = createSingle(h, el, ename, fn);
6353         }
6354         if(o.buffer){
6355             h = createBuffered(h, o);
6356         }
6357         
6358         fn._handlers = fn._handlers || [];
6359         
6360         
6361         fn._handlers.push([Roo.id(el), ename, h]);
6362         
6363         
6364          
6365         E.on(el, ename, h); // this adds the actuall listener to the object..
6366         
6367         
6368         if(ename == "mousewheel" && el.addEventListener){ // workaround for jQuery
6369             el.addEventListener("DOMMouseScroll", h, false);
6370             E.on(window, 'unload', function(){
6371                 el.removeEventListener("DOMMouseScroll", h, false);
6372             });
6373         }
6374         if(ename == "mousedown" && el == document){ // fix stopped mousedowns on the document
6375             Roo.EventManager.stoppedMouseDownEvent.addListener(h);
6376         }
6377         return h;
6378     };
6379
6380     var stopListening = function(el, ename, fn){
6381         var id = Roo.id(el), hds = fn._handlers, hd = fn;
6382         if(hds){
6383             for(var i = 0, len = hds.length; i < len; i++){
6384                 var h = hds[i];
6385                 if(h[0] == id && h[1] == ename){
6386                     hd = h[2];
6387                     hds.splice(i, 1);
6388                     break;
6389                 }
6390             }
6391         }
6392         E.un(el, ename, hd);
6393         el = Roo.getDom(el);
6394         if(ename == "mousewheel" && el.addEventListener){
6395             el.removeEventListener("DOMMouseScroll", hd, false);
6396         }
6397         if(ename == "mousedown" && el == document){ // fix stopped mousedowns on the document
6398             Roo.EventManager.stoppedMouseDownEvent.removeListener(hd);
6399         }
6400     };
6401
6402     var propRe = /^(?:scope|delay|buffer|single|stopEvent|preventDefault|stopPropagation|normalized|args|delegate)$/;
6403     
6404     var pub = {
6405         
6406         
6407         /** 
6408          * Fix for doc tools
6409          * @scope Roo.EventManager
6410          */
6411         
6412         
6413         /** 
6414          * This is no longer needed and is deprecated. Places a simple wrapper around an event handler to override the browser event
6415          * object with a Roo.EventObject
6416          * @param {Function} fn        The method the event invokes
6417          * @param {Object}   scope    An object that becomes the scope of the handler
6418          * @param {boolean}  override If true, the obj passed in becomes
6419          *                             the execution scope of the listener
6420          * @return {Function} The wrapped function
6421          * @deprecated
6422          */
6423         wrap : function(fn, scope, override){
6424             return function(e){
6425                 Roo.EventObject.setEvent(e);
6426                 fn.call(override ? scope || window : window, Roo.EventObject, scope);
6427             };
6428         },
6429         
6430         /**
6431      * Appends an event handler to an element (shorthand for addListener)
6432      * @param {String/HTMLElement}   element        The html element or id to assign the
6433      * @param {String}   eventName The type of event to listen for
6434      * @param {Function} handler The method the event invokes
6435      * @param {Object}   scope (optional) The scope in which to execute the handler
6436      * function. The handler function's "this" context.
6437      * @param {Object}   options (optional) An object containing handler configuration
6438      * properties. This may contain any of the following properties:<ul>
6439      * <li>scope {Object} The scope in which to execute the handler function. The handler function's "this" context.</li>
6440      * <li>delegate {String} A simple selector to filter the target or look for a descendant of the target</li>
6441      * <li>stopEvent {Boolean} True to stop the event. That is stop propagation, and prevent the default action.</li>
6442      * <li>preventDefault {Boolean} True to prevent the default action</li>
6443      * <li>stopPropagation {Boolean} True to prevent event propagation</li>
6444      * <li>normalized {Boolean} False to pass a browser event to the handler function instead of an Roo.EventObject</li>
6445      * <li>delay {Number} The number of milliseconds to delay the invocation of the handler after te event fires.</li>
6446      * <li>single {Boolean} True to add a handler to handle just the next firing of the event, and then remove itself.</li>
6447      * <li>buffer {Number} Causes the handler to be scheduled to run in an {@link Roo.util.DelayedTask} delayed
6448      * by the specified number of milliseconds. If the event fires again within that time, the original
6449      * handler is <em>not</em> invoked, but the new handler is scheduled in its place.</li>
6450      * </ul><br>
6451      * <p>
6452      * <b>Combining Options</b><br>
6453      * Using the options argument, it is possible to combine different types of listeners:<br>
6454      * <br>
6455      * A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)<div style="margin: 5px 20px 20px;">
6456      * Code:<pre><code>
6457 el.on('click', this.onClick, this, {
6458     single: true,
6459     delay: 100,
6460     stopEvent : true,
6461     forumId: 4
6462 });</code></pre>
6463      * <p>
6464      * <b>Attaching multiple handlers in 1 call</b><br>
6465       * The method also allows for a single argument to be passed which is a config object containing properties
6466      * which specify multiple handlers.
6467      * <p>
6468      * Code:<pre><code>
6469 el.on({
6470     'click' : {
6471         fn: this.onClick
6472         scope: this,
6473         delay: 100
6474     },
6475     'mouseover' : {
6476         fn: this.onMouseOver
6477         scope: this
6478     },
6479     'mouseout' : {
6480         fn: this.onMouseOut
6481         scope: this
6482     }
6483 });</code></pre>
6484      * <p>
6485      * Or a shorthand syntax:<br>
6486      * Code:<pre><code>
6487 el.on({
6488     'click' : this.onClick,
6489     'mouseover' : this.onMouseOver,
6490     'mouseout' : this.onMouseOut
6491     scope: this
6492 });</code></pre>
6493      */
6494         addListener : function(element, eventName, fn, scope, options){
6495             if(typeof eventName == "object"){
6496                 var o = eventName;
6497                 for(var e in o){
6498                     if(propRe.test(e)){
6499                         continue;
6500                     }
6501                     if(typeof o[e] == "function"){
6502                         // shared options
6503                         listen(element, e, o, o[e], o.scope);
6504                     }else{
6505                         // individual options
6506                         listen(element, e, o[e]);
6507                     }
6508                 }
6509                 return;
6510             }
6511             return listen(element, eventName, options, fn, scope);
6512         },
6513         
6514         /**
6515          * Removes an event handler
6516          *
6517          * @param {String/HTMLElement}   element        The id or html element to remove the 
6518          *                             event from
6519          * @param {String}   eventName     The type of event
6520          * @param {Function} fn
6521          * @return {Boolean} True if a listener was actually removed
6522          */
6523         removeListener : function(element, eventName, fn){
6524             return stopListening(element, eventName, fn);
6525         },
6526         
6527         /**
6528          * Fires when the document is ready (before onload and before images are loaded). Can be 
6529          * accessed shorthanded Roo.onReady().
6530          * @param {Function} fn        The method the event invokes
6531          * @param {Object}   scope    An  object that becomes the scope of the handler
6532          * @param {boolean}  options
6533          */
6534         onDocumentReady : function(fn, scope, options){
6535             if(docReadyState){ // if it already fired
6536                 docReadyEvent.addListener(fn, scope, options);
6537                 docReadyEvent.fire();
6538                 docReadyEvent.clearListeners();
6539                 return;
6540             }
6541             if(!docReadyEvent){
6542                 initDocReady();
6543             }
6544             docReadyEvent.addListener(fn, scope, options);
6545         },
6546         
6547         /**
6548          * Fires when the window is resized and provides resize event buffering (50 milliseconds), passes new viewport width and height to handlers.
6549          * @param {Function} fn        The method the event invokes
6550          * @param {Object}   scope    An object that becomes the scope of the handler
6551          * @param {boolean}  options
6552          */
6553         onWindowResize : function(fn, scope, options){
6554             if(!resizeEvent){
6555                 resizeEvent = new Roo.util.Event();
6556                 resizeTask = new Roo.util.DelayedTask(function(){
6557                     resizeEvent.fire(D.getViewWidth(), D.getViewHeight());
6558                 });
6559                 E.on(window, "resize", function(){
6560                     if(Roo.isIE){
6561                         resizeTask.delay(50);
6562                     }else{
6563                         resizeEvent.fire(D.getViewWidth(), D.getViewHeight());
6564                     }
6565                 });
6566             }
6567             resizeEvent.addListener(fn, scope, options);
6568         },
6569
6570         /**
6571          * Fires when the user changes the active text size. Handler gets called with 2 params, the old size and the new size.
6572          * @param {Function} fn        The method the event invokes
6573          * @param {Object}   scope    An object that becomes the scope of the handler
6574          * @param {boolean}  options
6575          */
6576         onTextResize : function(fn, scope, options){
6577             if(!textEvent){
6578                 textEvent = new Roo.util.Event();
6579                 var textEl = new Roo.Element(document.createElement('div'));
6580                 textEl.dom.className = 'x-text-resize';
6581                 textEl.dom.innerHTML = 'X';
6582                 textEl.appendTo(document.body);
6583                 textSize = textEl.dom.offsetHeight;
6584                 setInterval(function(){
6585                     if(textEl.dom.offsetHeight != textSize){
6586                         textEvent.fire(textSize, textSize = textEl.dom.offsetHeight);
6587                     }
6588                 }, this.textResizeInterval);
6589             }
6590             textEvent.addListener(fn, scope, options);
6591         },
6592
6593         /**
6594          * Removes the passed window resize listener.
6595          * @param {Function} fn        The method the event invokes
6596          * @param {Object}   scope    The scope of handler
6597          */
6598         removeResizeListener : function(fn, scope){
6599             if(resizeEvent){
6600                 resizeEvent.removeListener(fn, scope);
6601             }
6602         },
6603
6604         // private
6605         fireResize : function(){
6606             if(resizeEvent){
6607                 resizeEvent.fire(D.getViewWidth(), D.getViewHeight());
6608             }   
6609         },
6610         /**
6611          * Url used for onDocumentReady with using SSL (defaults to Roo.SSL_SECURE_URL)
6612          */
6613         ieDeferSrc : false,
6614         /**
6615          * The frequency, in milliseconds, to check for text resize events (defaults to 50)
6616          */
6617         textResizeInterval : 50
6618     };
6619     
6620     /**
6621      * Fix for doc tools
6622      * @scopeAlias pub=Roo.EventManager
6623      */
6624     
6625      /**
6626      * Appends an event handler to an element (shorthand for addListener)
6627      * @param {String/HTMLElement}   element        The html element or id to assign the
6628      * @param {String}   eventName The type of event to listen for
6629      * @param {Function} handler The method the event invokes
6630      * @param {Object}   scope (optional) The scope in which to execute the handler
6631      * function. The handler function's "this" context.
6632      * @param {Object}   options (optional) An object containing handler configuration
6633      * properties. This may contain any of the following properties:<ul>
6634      * <li>scope {Object} The scope in which to execute the handler function. The handler function's "this" context.</li>
6635      * <li>delegate {String} A simple selector to filter the target or look for a descendant of the target</li>
6636      * <li>stopEvent {Boolean} True to stop the event. That is stop propagation, and prevent the default action.</li>
6637      * <li>preventDefault {Boolean} True to prevent the default action</li>
6638      * <li>stopPropagation {Boolean} True to prevent event propagation</li>
6639      * <li>normalized {Boolean} False to pass a browser event to the handler function instead of an Roo.EventObject</li>
6640      * <li>delay {Number} The number of milliseconds to delay the invocation of the handler after te event fires.</li>
6641      * <li>single {Boolean} True to add a handler to handle just the next firing of the event, and then remove itself.</li>
6642      * <li>buffer {Number} Causes the handler to be scheduled to run in an {@link Roo.util.DelayedTask} delayed
6643      * by the specified number of milliseconds. If the event fires again within that time, the original
6644      * handler is <em>not</em> invoked, but the new handler is scheduled in its place.</li>
6645      * </ul><br>
6646      * <p>
6647      * <b>Combining Options</b><br>
6648      * Using the options argument, it is possible to combine different types of listeners:<br>
6649      * <br>
6650      * A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)<div style="margin: 5px 20px 20px;">
6651      * Code:<pre><code>
6652 el.on('click', this.onClick, this, {
6653     single: true,
6654     delay: 100,
6655     stopEvent : true,
6656     forumId: 4
6657 });</code></pre>
6658      * <p>
6659      * <b>Attaching multiple handlers in 1 call</b><br>
6660       * The method also allows for a single argument to be passed which is a config object containing properties
6661      * which specify multiple handlers.
6662      * <p>
6663      * Code:<pre><code>
6664 el.on({
6665     'click' : {
6666         fn: this.onClick
6667         scope: this,
6668         delay: 100
6669     },
6670     'mouseover' : {
6671         fn: this.onMouseOver
6672         scope: this
6673     },
6674     'mouseout' : {
6675         fn: this.onMouseOut
6676         scope: this
6677     }
6678 });</code></pre>
6679      * <p>
6680      * Or a shorthand syntax:<br>
6681      * Code:<pre><code>
6682 el.on({
6683     'click' : this.onClick,
6684     'mouseover' : this.onMouseOver,
6685     'mouseout' : this.onMouseOut
6686     scope: this
6687 });</code></pre>
6688      */
6689     pub.on = pub.addListener;
6690     pub.un = pub.removeListener;
6691
6692     pub.stoppedMouseDownEvent = new Roo.util.Event();
6693     return pub;
6694 }();
6695 /**
6696   * Fires when the document is ready (before onload and before images are loaded).  Shorthand of {@link Roo.EventManager#onDocumentReady}.
6697   * @param {Function} fn        The method the event invokes
6698   * @param {Object}   scope    An  object that becomes the scope of the handler
6699   * @param {boolean}  override If true, the obj passed in becomes
6700   *                             the execution scope of the listener
6701   * @member Roo
6702   * @method onReady
6703  */
6704 Roo.onReady = Roo.EventManager.onDocumentReady;
6705
6706 Roo.onReady(function(){
6707     var bd = Roo.get(document.body);
6708     if(!bd){ return; }
6709
6710     var cls = [
6711             Roo.isIE ? "roo-ie"
6712             : Roo.isIE11 ? "roo-ie11"
6713             : Roo.isEdge ? "roo-edge"
6714             : Roo.isGecko ? "roo-gecko"
6715             : Roo.isOpera ? "roo-opera"
6716             : Roo.isSafari ? "roo-safari" : ""];
6717
6718     if(Roo.isMac){
6719         cls.push("roo-mac");
6720     }
6721     if(Roo.isLinux){
6722         cls.push("roo-linux");
6723     }
6724     if(Roo.isIOS){
6725         cls.push("roo-ios");
6726     }
6727     if(Roo.isTouch){
6728         cls.push("roo-touch");
6729     }
6730     if(Roo.isBorderBox){
6731         cls.push('roo-border-box');
6732     }
6733     if(Roo.isStrict){ // add to the parent to allow for selectors like ".ext-strict .ext-ie"
6734         var p = bd.dom.parentNode;
6735         if(p){
6736             p.className += ' roo-strict';
6737         }
6738     }
6739     bd.addClass(cls.join(' '));
6740 });
6741
6742 /**
6743  * @class Roo.EventObject
6744  * EventObject exposes the Yahoo! UI Event functionality directly on the object
6745  * passed to your event handler. It exists mostly for convenience. It also fixes the annoying null checks automatically to cleanup your code 
6746  * Example:
6747  * <pre><code>
6748  function handleClick(e){ // e is not a standard event object, it is a Roo.EventObject
6749     e.preventDefault();
6750     var target = e.getTarget();
6751     ...
6752  }
6753  var myDiv = Roo.get("myDiv");
6754  myDiv.on("click", handleClick);
6755  //or
6756  Roo.EventManager.on("myDiv", 'click', handleClick);
6757  Roo.EventManager.addListener("myDiv", 'click', handleClick);
6758  </code></pre>
6759  * @singleton
6760  */
6761 Roo.EventObject = function(){
6762     
6763     var E = Roo.lib.Event;
6764     
6765     // safari keypress events for special keys return bad keycodes
6766     var safariKeys = {
6767         63234 : 37, // left
6768         63235 : 39, // right
6769         63232 : 38, // up
6770         63233 : 40, // down
6771         63276 : 33, // page up
6772         63277 : 34, // page down
6773         63272 : 46, // delete
6774         63273 : 36, // home
6775         63275 : 35  // end
6776     };
6777
6778     // normalize button clicks
6779     var btnMap = Roo.isIE ? {1:0,4:1,2:2} :
6780                 (Roo.isSafari ? {1:0,2:1,3:2} : {0:0,1:1,2:2});
6781
6782     Roo.EventObjectImpl = function(e){
6783         if(e){
6784             this.setEvent(e.browserEvent || e);
6785         }
6786     };
6787     Roo.EventObjectImpl.prototype = {
6788         /**
6789          * Used to fix doc tools.
6790          * @scope Roo.EventObject.prototype
6791          */
6792             
6793
6794         
6795         
6796         /** The normal browser event */
6797         browserEvent : null,
6798         /** The button pressed in a mouse event */
6799         button : -1,
6800         /** True if the shift key was down during the event */
6801         shiftKey : false,
6802         /** True if the control key was down during the event */
6803         ctrlKey : false,
6804         /** True if the alt key was down during the event */
6805         altKey : false,
6806
6807         /** Key constant 
6808         * @type Number */
6809         BACKSPACE : 8,
6810         /** Key constant 
6811         * @type Number */
6812         TAB : 9,
6813         /** Key constant 
6814         * @type Number */
6815         RETURN : 13,
6816         /** Key constant 
6817         * @type Number */
6818         ENTER : 13,
6819         /** Key constant 
6820         * @type Number */
6821         SHIFT : 16,
6822         /** Key constant 
6823         * @type Number */
6824         CONTROL : 17,
6825         /** Key constant 
6826         * @type Number */
6827         ESC : 27,
6828         /** Key constant 
6829         * @type Number */
6830         SPACE : 32,
6831         /** Key constant 
6832         * @type Number */
6833         PAGEUP : 33,
6834         /** Key constant 
6835         * @type Number */
6836         PAGEDOWN : 34,
6837         /** Key constant 
6838         * @type Number */
6839         END : 35,
6840         /** Key constant 
6841         * @type Number */
6842         HOME : 36,
6843         /** Key constant 
6844         * @type Number */
6845         LEFT : 37,
6846         /** Key constant 
6847         * @type Number */
6848         UP : 38,
6849         /** Key constant 
6850         * @type Number */
6851         RIGHT : 39,
6852         /** Key constant 
6853         * @type Number */
6854         DOWN : 40,
6855         /** Key constant 
6856         * @type Number */
6857         DELETE : 46,
6858         /** Key constant 
6859         * @type Number */
6860         F5 : 116,
6861
6862            /** @private */
6863         setEvent : function(e){
6864             if(e == this || (e && e.browserEvent)){ // already wrapped
6865                 return e;
6866             }
6867             this.browserEvent = e;
6868             if(e){
6869                 // normalize buttons
6870                 this.button = e.button ? btnMap[e.button] : (e.which ? e.which-1 : -1);
6871                 if(e.type == 'click' && this.button == -1){
6872                     this.button = 0;
6873                 }
6874                 this.type = e.type;
6875                 this.shiftKey = e.shiftKey;
6876                 // mac metaKey behaves like ctrlKey
6877                 this.ctrlKey = e.ctrlKey || e.metaKey;
6878                 this.altKey = e.altKey;
6879                 // in getKey these will be normalized for the mac
6880                 this.keyCode = e.keyCode;
6881                 // keyup warnings on firefox.
6882                 this.charCode = (e.type == 'keyup' || e.type == 'keydown') ? 0 : e.charCode;
6883                 // cache the target for the delayed and or buffered events
6884                 this.target = E.getTarget(e);
6885                 // same for XY
6886                 this.xy = E.getXY(e);
6887             }else{
6888                 this.button = -1;
6889                 this.shiftKey = false;
6890                 this.ctrlKey = false;
6891                 this.altKey = false;
6892                 this.keyCode = 0;
6893                 this.charCode =0;
6894                 this.target = null;
6895                 this.xy = [0, 0];
6896             }
6897             return this;
6898         },
6899
6900         /**
6901          * Stop the event (preventDefault and stopPropagation)
6902          */
6903         stopEvent : function(){
6904             if(this.browserEvent){
6905                 if(this.browserEvent.type == 'mousedown'){
6906                     Roo.EventManager.stoppedMouseDownEvent.fire(this);
6907                 }
6908                 E.stopEvent(this.browserEvent);
6909             }
6910         },
6911
6912         /**
6913          * Prevents the browsers default handling of the event.
6914          */
6915         preventDefault : function(){
6916             if(this.browserEvent){
6917                 E.preventDefault(this.browserEvent);
6918             }
6919         },
6920
6921         /** @private */
6922         isNavKeyPress : function(){
6923             var k = this.keyCode;
6924             k = Roo.isSafari ? (safariKeys[k] || k) : k;
6925             return (k >= 33 && k <= 40) || k == this.RETURN || k == this.TAB || k == this.ESC;
6926         },
6927
6928         isSpecialKey : function(){
6929             var k = this.keyCode;
6930             return (this.type == 'keypress' && this.ctrlKey) || k == 9 || k == 13  || k == 40 || k == 27 ||
6931             (k == 16) || (k == 17) ||
6932             (k >= 18 && k <= 20) ||
6933             (k >= 33 && k <= 35) ||
6934             (k >= 36 && k <= 39) ||
6935             (k >= 44 && k <= 45);
6936         },
6937         /**
6938          * Cancels bubbling of the event.
6939          */
6940         stopPropagation : function(){
6941             if(this.browserEvent){
6942                 if(this.type == 'mousedown'){
6943                     Roo.EventManager.stoppedMouseDownEvent.fire(this);
6944                 }
6945                 E.stopPropagation(this.browserEvent);
6946             }
6947         },
6948
6949         /**
6950          * Gets the key code for the event.
6951          * @return {Number}
6952          */
6953         getCharCode : function(){
6954             return this.charCode || this.keyCode;
6955         },
6956
6957         /**
6958          * Returns a normalized keyCode for the event.
6959          * @return {Number} The key code
6960          */
6961         getKey : function(){
6962             var k = this.keyCode || this.charCode;
6963             return Roo.isSafari ? (safariKeys[k] || k) : k;
6964         },
6965
6966         /**
6967          * Gets the x coordinate of the event.
6968          * @return {Number}
6969          */
6970         getPageX : function(){
6971             return this.xy[0];
6972         },
6973
6974         /**
6975          * Gets the y coordinate of the event.
6976          * @return {Number}
6977          */
6978         getPageY : function(){
6979             return this.xy[1];
6980         },
6981
6982         /**
6983          * Gets the time of the event.
6984          * @return {Number}
6985          */
6986         getTime : function(){
6987             if(this.browserEvent){
6988                 return E.getTime(this.browserEvent);
6989             }
6990             return null;
6991         },
6992
6993         /**
6994          * Gets the page coordinates of the event.
6995          * @return {Array} The xy values like [x, y]
6996          */
6997         getXY : function(){
6998             return this.xy;
6999         },
7000
7001         /**
7002          * Gets the target for the event.
7003          * @param {String} selector (optional) A simple selector to filter the target or look for an ancestor of the target
7004          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
7005                 search as a number or element (defaults to 10 || document.body)
7006          * @param {Boolean} returnEl (optional) True to return a Roo.Element object instead of DOM node
7007          * @return {HTMLelement}
7008          */
7009         getTarget : function(selector, maxDepth, returnEl){
7010             return selector ? Roo.fly(this.target).findParent(selector, maxDepth, returnEl) : this.target;
7011         },
7012         /**
7013          * Gets the related target.
7014          * @return {HTMLElement}
7015          */
7016         getRelatedTarget : function(){
7017             if(this.browserEvent){
7018                 return E.getRelatedTarget(this.browserEvent);
7019             }
7020             return null;
7021         },
7022
7023         /**
7024          * Normalizes mouse wheel delta across browsers
7025          * @return {Number} The delta
7026          */
7027         getWheelDelta : function(){
7028             var e = this.browserEvent;
7029             var delta = 0;
7030             if(e.wheelDelta){ /* IE/Opera. */
7031                 delta = e.wheelDelta/120;
7032             }else if(e.detail){ /* Mozilla case. */
7033                 delta = -e.detail/3;
7034             }
7035             return delta;
7036         },
7037
7038         /**
7039          * Returns true if the control, meta, shift or alt key was pressed during this event.
7040          * @return {Boolean}
7041          */
7042         hasModifier : function(){
7043             return !!((this.ctrlKey || this.altKey) || this.shiftKey);
7044         },
7045
7046         /**
7047          * Returns true if the target of this event equals el or is a child of el
7048          * @param {String/HTMLElement/Element} el
7049          * @param {Boolean} related (optional) true to test if the related target is within el instead of the target
7050          * @return {Boolean}
7051          */
7052         within : function(el, related){
7053             var t = this[related ? "getRelatedTarget" : "getTarget"]();
7054             return t && Roo.fly(el).contains(t);
7055         },
7056
7057         getPoint : function(){
7058             return new Roo.lib.Point(this.xy[0], this.xy[1]);
7059         }
7060     };
7061
7062     return new Roo.EventObjectImpl();
7063 }();
7064             
7065     /*
7066  * Based on:
7067  * Ext JS Library 1.1.1
7068  * Copyright(c) 2006-2007, Ext JS, LLC.
7069  *
7070  * Originally Released Under LGPL - original licence link has changed is not relivant.
7071  *
7072  * Fork - LGPL
7073  * <script type="text/javascript">
7074  */
7075
7076  
7077 // was in Composite Element!??!?!
7078  
7079 (function(){
7080     var D = Roo.lib.Dom;
7081     var E = Roo.lib.Event;
7082     var A = Roo.lib.Anim;
7083
7084     // local style camelizing for speed
7085     var propCache = {};
7086     var camelRe = /(-[a-z])/gi;
7087     var camelFn = function(m, a){ return a.charAt(1).toUpperCase(); };
7088     var view = document.defaultView;
7089
7090 /**
7091  * @class Roo.Element
7092  * Represents an Element in the DOM.<br><br>
7093  * Usage:<br>
7094 <pre><code>
7095 var el = Roo.get("my-div");
7096
7097 // or with getEl
7098 var el = getEl("my-div");
7099
7100 // or with a DOM element
7101 var el = Roo.get(myDivElement);
7102 </code></pre>
7103  * Using Roo.get() or getEl() instead of calling the constructor directly ensures you get the same object
7104  * each call instead of constructing a new one.<br><br>
7105  * <b>Animations</b><br />
7106  * Many of the functions for manipulating an element have an optional "animate" parameter. The animate parameter
7107  * should either be a boolean (true) or an object literal with animation options. The animation options are:
7108 <pre>
7109 Option    Default   Description
7110 --------- --------  ---------------------------------------------
7111 duration  .35       The duration of the animation in seconds
7112 easing    easeOut   The YUI easing method
7113 callback  none      A function to execute when the anim completes
7114 scope     this      The scope (this) of the callback function
7115 </pre>
7116 * Also, the Anim object being used for the animation will be set on your options object as "anim", which allows you to stop or
7117 * manipulate the animation. Here's an example:
7118 <pre><code>
7119 var el = Roo.get("my-div");
7120
7121 // no animation
7122 el.setWidth(100);
7123
7124 // default animation
7125 el.setWidth(100, true);
7126
7127 // animation with some options set
7128 el.setWidth(100, {
7129     duration: 1,
7130     callback: this.foo,
7131     scope: this
7132 });
7133
7134 // using the "anim" property to get the Anim object
7135 var opt = {
7136     duration: 1,
7137     callback: this.foo,
7138     scope: this
7139 };
7140 el.setWidth(100, opt);
7141 ...
7142 if(opt.anim.isAnimated()){
7143     opt.anim.stop();
7144 }
7145 </code></pre>
7146 * <b> Composite (Collections of) Elements</b><br />
7147  * For working with collections of Elements, see <a href="Roo.CompositeElement.html">Roo.CompositeElement</a>
7148  * @constructor Create a new Element directly.
7149  * @param {String/HTMLElement} element
7150  * @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).
7151  */
7152     Roo.Element = function(element, forceNew){
7153         var dom = typeof element == "string" ?
7154                 document.getElementById(element) : element;
7155         if(!dom){ // invalid id/element
7156             return null;
7157         }
7158         var id = dom.id;
7159         if(forceNew !== true && id && Roo.Element.cache[id]){ // element object already exists
7160             return Roo.Element.cache[id];
7161         }
7162
7163         /**
7164          * The DOM element
7165          * @type HTMLElement
7166          */
7167         this.dom = dom;
7168
7169         /**
7170          * The DOM element ID
7171          * @type String
7172          */
7173         this.id = id || Roo.id(dom);
7174     };
7175
7176     var El = Roo.Element;
7177
7178     El.prototype = {
7179         /**
7180          * The element's default display mode  (defaults to "") 
7181          * @type String
7182          */
7183         originalDisplay : "",
7184
7185         
7186         // note this is overridden in BS version..
7187         visibilityMode : 1, 
7188         /**
7189          * The default unit to append to CSS values where a unit isn't provided (defaults to px).
7190          * @type String
7191          */
7192         defaultUnit : "px",
7193         
7194         /**
7195          * Sets the element's visibility mode. When setVisible() is called it
7196          * will use this to determine whether to set the visibility or the display property.
7197          * @param visMode Element.VISIBILITY or Element.DISPLAY
7198          * @return {Roo.Element} this
7199          */
7200         setVisibilityMode : function(visMode){
7201             this.visibilityMode = visMode;
7202             return this;
7203         },
7204         /**
7205          * Convenience method for setVisibilityMode(Element.DISPLAY)
7206          * @param {String} display (optional) What to set display to when visible
7207          * @return {Roo.Element} this
7208          */
7209         enableDisplayMode : function(display){
7210             this.setVisibilityMode(El.DISPLAY);
7211             if(typeof display != "undefined") { this.originalDisplay = display; }
7212             return this;
7213         },
7214
7215         /**
7216          * 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)
7217          * @param {String} selector The simple selector to test
7218          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
7219                 search as a number or element (defaults to 10 || document.body)
7220          * @param {Boolean} returnEl (optional) True to return a Roo.Element object instead of DOM node
7221          * @return {HTMLElement} The matching DOM node (or null if no match was found)
7222          */
7223         findParent : function(simpleSelector, maxDepth, returnEl){
7224             var p = this.dom, b = document.body, depth = 0, dq = Roo.DomQuery, stopEl;
7225             maxDepth = maxDepth || 50;
7226             if(typeof maxDepth != "number"){
7227                 stopEl = Roo.getDom(maxDepth);
7228                 maxDepth = 10;
7229             }
7230             while(p && p.nodeType == 1 && depth < maxDepth && p != b && p != stopEl){
7231                 if(dq.is(p, simpleSelector)){
7232                     return returnEl ? Roo.get(p) : p;
7233                 }
7234                 depth++;
7235                 p = p.parentNode;
7236             }
7237             return null;
7238         },
7239
7240
7241         /**
7242          * Looks at parent nodes for a match of the passed simple selector (e.g. div.some-class or span:first-child)
7243          * @param {String} selector The simple selector to test
7244          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
7245                 search as a number or element (defaults to 10 || document.body)
7246          * @param {Boolean} returnEl (optional) True to return a Roo.Element object instead of DOM node
7247          * @return {HTMLElement} The matching DOM node (or null if no match was found)
7248          */
7249         findParentNode : function(simpleSelector, maxDepth, returnEl){
7250             var p = Roo.fly(this.dom.parentNode, '_internal');
7251             return p ? p.findParent(simpleSelector, maxDepth, returnEl) : null;
7252         },
7253         
7254         /**
7255          * Looks at  the scrollable parent element
7256          */
7257         findScrollableParent : function()
7258         {
7259             var overflowRegex = /(auto|scroll)/;
7260             
7261             if(this.getStyle('position') === 'fixed'){
7262                 return Roo.isAndroid ? Roo.get(document.documentElement) : Roo.get(document.body);
7263             }
7264             
7265             var excludeStaticParent = this.getStyle('position') === "absolute";
7266             
7267             for (var parent = this; (parent = Roo.get(parent.dom.parentNode));){
7268                 
7269                 if (excludeStaticParent && parent.getStyle('position') === "static") {
7270                     continue;
7271                 }
7272                 
7273                 if (overflowRegex.test(parent.getStyle('overflow') + parent.getStyle('overflow-x') + parent.getStyle('overflow-y'))){
7274                     return parent;
7275                 }
7276                 
7277                 if(parent.dom.nodeName.toLowerCase() == 'body'){
7278                     return Roo.isAndroid ? Roo.get(document.documentElement) : Roo.get(document.body);
7279                 }
7280             }
7281             
7282             return Roo.isAndroid ? Roo.get(document.documentElement) : Roo.get(document.body);
7283         },
7284
7285         /**
7286          * Walks up the dom looking for a parent node that matches the passed simple selector (e.g. div.some-class or span:first-child).
7287          * This is a shortcut for findParentNode() that always returns an Roo.Element.
7288          * @param {String} selector The simple selector to test
7289          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
7290                 search as a number or element (defaults to 10 || document.body)
7291          * @return {Roo.Element} The matching DOM node (or null if no match was found)
7292          */
7293         up : function(simpleSelector, maxDepth){
7294             return this.findParentNode(simpleSelector, maxDepth, true);
7295         },
7296
7297
7298
7299         /**
7300          * Returns true if this element matches the passed simple selector (e.g. div.some-class or span:first-child)
7301          * @param {String} selector The simple selector to test
7302          * @return {Boolean} True if this element matches the selector, else false
7303          */
7304         is : function(simpleSelector){
7305             return Roo.DomQuery.is(this.dom, simpleSelector);
7306         },
7307
7308         /**
7309          * Perform animation on this element.
7310          * @param {Object} args The YUI animation control args
7311          * @param {Float} duration (optional) How long the animation lasts in seconds (defaults to .35)
7312          * @param {Function} onComplete (optional) Function to call when animation completes
7313          * @param {String} easing (optional) Easing method to use (defaults to 'easeOut')
7314          * @param {String} animType (optional) 'run' is the default. Can also be 'color', 'motion', or 'scroll'
7315          * @return {Roo.Element} this
7316          */
7317         animate : function(args, duration, onComplete, easing, animType){
7318             this.anim(args, {duration: duration, callback: onComplete, easing: easing}, animType);
7319             return this;
7320         },
7321
7322         /*
7323          * @private Internal animation call
7324          */
7325         anim : function(args, opt, animType, defaultDur, defaultEase, cb){
7326             animType = animType || 'run';
7327             opt = opt || {};
7328             var anim = Roo.lib.Anim[animType](
7329                 this.dom, args,
7330                 (opt.duration || defaultDur) || .35,
7331                 (opt.easing || defaultEase) || 'easeOut',
7332                 function(){
7333                     Roo.callback(cb, this);
7334                     Roo.callback(opt.callback, opt.scope || this, [this, opt]);
7335                 },
7336                 this
7337             );
7338             opt.anim = anim;
7339             return anim;
7340         },
7341
7342         // private legacy anim prep
7343         preanim : function(a, i){
7344             return !a[i] ? false : (typeof a[i] == "object" ? a[i]: {duration: a[i+1], callback: a[i+2], easing: a[i+3]});
7345         },
7346
7347         /**
7348          * Removes worthless text nodes
7349          * @param {Boolean} forceReclean (optional) By default the element
7350          * keeps track if it has been cleaned already so
7351          * you can call this over and over. However, if you update the element and
7352          * need to force a reclean, you can pass true.
7353          */
7354         clean : function(forceReclean){
7355             if(this.isCleaned && forceReclean !== true){
7356                 return this;
7357             }
7358             var ns = /\S/;
7359             var d = this.dom, n = d.firstChild, ni = -1;
7360             while(n){
7361                 var nx = n.nextSibling;
7362                 if(n.nodeType == 3 && !ns.test(n.nodeValue)){
7363                     d.removeChild(n);
7364                 }else{
7365                     n.nodeIndex = ++ni;
7366                 }
7367                 n = nx;
7368             }
7369             this.isCleaned = true;
7370             return this;
7371         },
7372
7373         // private
7374         calcOffsetsTo : function(el){
7375             el = Roo.get(el);
7376             var d = el.dom;
7377             var restorePos = false;
7378             if(el.getStyle('position') == 'static'){
7379                 el.position('relative');
7380                 restorePos = true;
7381             }
7382             var x = 0, y =0;
7383             var op = this.dom;
7384             while(op && op != d && op.tagName != 'HTML'){
7385                 x+= op.offsetLeft;
7386                 y+= op.offsetTop;
7387                 op = op.offsetParent;
7388             }
7389             if(restorePos){
7390                 el.position('static');
7391             }
7392             return [x, y];
7393         },
7394
7395         /**
7396          * Scrolls this element into view within the passed container.
7397          * @param {String/HTMLElement/Element} container (optional) The container element to scroll (defaults to document.body)
7398          * @param {Boolean} hscroll (optional) False to disable horizontal scroll (defaults to true)
7399          * @return {Roo.Element} this
7400          */
7401         scrollIntoView : function(container, hscroll){
7402             var c = Roo.getDom(container) || document.body;
7403             var el = this.dom;
7404
7405             var o = this.calcOffsetsTo(c),
7406                 l = o[0],
7407                 t = o[1],
7408                 b = t+el.offsetHeight,
7409                 r = l+el.offsetWidth;
7410
7411             var ch = c.clientHeight;
7412             var ct = parseInt(c.scrollTop, 10);
7413             var cl = parseInt(c.scrollLeft, 10);
7414             var cb = ct + ch;
7415             var cr = cl + c.clientWidth;
7416
7417             if(t < ct){
7418                 c.scrollTop = t;
7419             }else if(b > cb){
7420                 c.scrollTop = b-ch;
7421             }
7422
7423             if(hscroll !== false){
7424                 if(l < cl){
7425                     c.scrollLeft = l;
7426                 }else if(r > cr){
7427                     c.scrollLeft = r-c.clientWidth;
7428                 }
7429             }
7430             return this;
7431         },
7432
7433         // private
7434         scrollChildIntoView : function(child, hscroll){
7435             Roo.fly(child, '_scrollChildIntoView').scrollIntoView(this, hscroll);
7436         },
7437
7438         /**
7439          * Measures the element's content height and updates height to match. Note: this function uses setTimeout so
7440          * the new height may not be available immediately.
7441          * @param {Boolean} animate (optional) Animate the transition (defaults to false)
7442          * @param {Float} duration (optional) Length of the animation in seconds (defaults to .35)
7443          * @param {Function} onComplete (optional) Function to call when animation completes
7444          * @param {String} easing (optional) Easing method to use (defaults to easeOut)
7445          * @return {Roo.Element} this
7446          */
7447         autoHeight : function(animate, duration, onComplete, easing){
7448             var oldHeight = this.getHeight();
7449             this.clip();
7450             this.setHeight(1); // force clipping
7451             setTimeout(function(){
7452                 var height = parseInt(this.dom.scrollHeight, 10); // parseInt for Safari
7453                 if(!animate){
7454                     this.setHeight(height);
7455                     this.unclip();
7456                     if(typeof onComplete == "function"){
7457                         onComplete();
7458                     }
7459                 }else{
7460                     this.setHeight(oldHeight); // restore original height
7461                     this.setHeight(height, animate, duration, function(){
7462                         this.unclip();
7463                         if(typeof onComplete == "function") { onComplete(); }
7464                     }.createDelegate(this), easing);
7465                 }
7466             }.createDelegate(this), 0);
7467             return this;
7468         },
7469
7470         /**
7471          * Returns true if this element is an ancestor of the passed element
7472          * @param {HTMLElement/String} el The element to check
7473          * @return {Boolean} True if this element is an ancestor of el, else false
7474          */
7475         contains : function(el){
7476             if(!el){return false;}
7477             return D.isAncestor(this.dom, el.dom ? el.dom : el);
7478         },
7479
7480         /**
7481          * Checks whether the element is currently visible using both visibility and display properties.
7482          * @param {Boolean} deep (optional) True to walk the dom and see if parent elements are hidden (defaults to false)
7483          * @return {Boolean} True if the element is currently visible, else false
7484          */
7485         isVisible : function(deep) {
7486             var vis = !(this.getStyle("visibility") == "hidden" || this.getStyle("display") == "none");
7487             if(deep !== true || !vis){
7488                 return vis;
7489             }
7490             var p = this.dom.parentNode;
7491             while(p && p.tagName.toLowerCase() != "body"){
7492                 if(!Roo.fly(p, '_isVisible').isVisible()){
7493                     return false;
7494                 }
7495                 p = p.parentNode;
7496             }
7497             return true;
7498         },
7499
7500         /**
7501          * Creates a {@link Roo.CompositeElement} for child nodes based on the passed CSS selector (the selector should not contain an id).
7502          * @param {String} selector The CSS selector
7503          * @param {Boolean} unique (optional) True to create a unique Roo.Element for each child (defaults to false, which creates a single shared flyweight object)
7504          * @return {CompositeElement/CompositeElementLite} The composite element
7505          */
7506         select : function(selector, unique){
7507             return El.select(selector, unique, this.dom);
7508         },
7509
7510         /**
7511          * Selects child nodes based on the passed CSS selector (the selector should not contain an id).
7512          * @param {String} selector The CSS selector
7513          * @return {Array} An array of the matched nodes
7514          */
7515         query : function(selector, unique){
7516             return Roo.DomQuery.select(selector, this.dom);
7517         },
7518
7519         /**
7520          * Selects a single child at any depth below this element based on the passed CSS selector (the selector should not contain an id).
7521          * @param {String} selector The CSS selector
7522          * @param {Boolean} returnDom (optional) True to return the DOM node instead of Roo.Element (defaults to false)
7523          * @return {HTMLElement/Roo.Element} The child Roo.Element (or DOM node if returnDom = true)
7524          */
7525         child : function(selector, returnDom){
7526             var n = Roo.DomQuery.selectNode(selector, this.dom);
7527             return returnDom ? n : Roo.get(n);
7528         },
7529
7530         /**
7531          * Selects a single *direct* child based on the passed CSS selector (the selector should not contain an id).
7532          * @param {String} selector The CSS selector
7533          * @param {Boolean} returnDom (optional) True to return the DOM node instead of Roo.Element (defaults to false)
7534          * @return {HTMLElement/Roo.Element} The child Roo.Element (or DOM node if returnDom = true)
7535          */
7536         down : function(selector, returnDom){
7537             var n = Roo.DomQuery.selectNode(" > " + selector, this.dom);
7538             return returnDom ? n : Roo.get(n);
7539         },
7540
7541         /**
7542          * Initializes a {@link Roo.dd.DD} drag drop object for this element.
7543          * @param {String} group The group the DD object is member of
7544          * @param {Object} config The DD config object
7545          * @param {Object} overrides An object containing methods to override/implement on the DD object
7546          * @return {Roo.dd.DD} The DD object
7547          */
7548         initDD : function(group, config, overrides){
7549             var dd = new Roo.dd.DD(Roo.id(this.dom), group, config);
7550             return Roo.apply(dd, overrides);
7551         },
7552
7553         /**
7554          * Initializes a {@link Roo.dd.DDProxy} object for this element.
7555          * @param {String} group The group the DDProxy object is member of
7556          * @param {Object} config The DDProxy config object
7557          * @param {Object} overrides An object containing methods to override/implement on the DDProxy object
7558          * @return {Roo.dd.DDProxy} The DDProxy object
7559          */
7560         initDDProxy : function(group, config, overrides){
7561             var dd = new Roo.dd.DDProxy(Roo.id(this.dom), group, config);
7562             return Roo.apply(dd, overrides);
7563         },
7564
7565         /**
7566          * Initializes a {@link Roo.dd.DDTarget} object for this element.
7567          * @param {String} group The group the DDTarget object is member of
7568          * @param {Object} config The DDTarget config object
7569          * @param {Object} overrides An object containing methods to override/implement on the DDTarget object
7570          * @return {Roo.dd.DDTarget} The DDTarget object
7571          */
7572         initDDTarget : function(group, config, overrides){
7573             var dd = new Roo.dd.DDTarget(Roo.id(this.dom), group, config);
7574             return Roo.apply(dd, overrides);
7575         },
7576
7577         /**
7578          * Sets the visibility of the element (see details). If the visibilityMode is set to Element.DISPLAY, it will use
7579          * the display property to hide the element, otherwise it uses visibility. The default is to hide and show using the visibility property.
7580          * @param {Boolean} visible Whether the element is visible
7581          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7582          * @return {Roo.Element} this
7583          */
7584          setVisible : function(visible, animate){
7585             if(!animate || !A){
7586                 if(this.visibilityMode == El.DISPLAY){
7587                     this.setDisplayed(visible);
7588                 }else{
7589                     this.fixDisplay();
7590                     this.dom.style.visibility = visible ? "visible" : "hidden";
7591                 }
7592             }else{
7593                 // closure for composites
7594                 var dom = this.dom;
7595                 var visMode = this.visibilityMode;
7596                 if(visible){
7597                     this.setOpacity(.01);
7598                     this.setVisible(true);
7599                 }
7600                 this.anim({opacity: { to: (visible?1:0) }},
7601                       this.preanim(arguments, 1),
7602                       null, .35, 'easeIn', function(){
7603                          if(!visible){
7604                              if(visMode == El.DISPLAY){
7605                                  dom.style.display = "none";
7606                              }else{
7607                                  dom.style.visibility = "hidden";
7608                              }
7609                              Roo.get(dom).setOpacity(1);
7610                          }
7611                      });
7612             }
7613             return this;
7614         },
7615
7616         /**
7617          * Returns true if display is not "none"
7618          * @return {Boolean}
7619          */
7620         isDisplayed : function() {
7621             return this.getStyle("display") != "none";
7622         },
7623
7624         /**
7625          * Toggles the element's visibility or display, depending on visibility mode.
7626          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7627          * @return {Roo.Element} this
7628          */
7629         toggle : function(animate){
7630             this.setVisible(!this.isVisible(), this.preanim(arguments, 0));
7631             return this;
7632         },
7633
7634         /**
7635          * Sets the CSS display property. Uses originalDisplay if the specified value is a boolean true.
7636          * @param {Boolean} value Boolean value to display the element using its default display, or a string to set the display directly
7637          * @return {Roo.Element} this
7638          */
7639         setDisplayed : function(value) {
7640             if(typeof value == "boolean"){
7641                value = value ? this.originalDisplay : "none";
7642             }
7643             this.setStyle("display", value);
7644             return this;
7645         },
7646
7647         /**
7648          * Tries to focus the element. Any exceptions are caught and ignored.
7649          * @return {Roo.Element} this
7650          */
7651         focus : function() {
7652             try{
7653                 this.dom.focus();
7654             }catch(e){}
7655             return this;
7656         },
7657
7658         /**
7659          * Tries to blur the element. Any exceptions are caught and ignored.
7660          * @return {Roo.Element} this
7661          */
7662         blur : function() {
7663             try{
7664                 this.dom.blur();
7665             }catch(e){}
7666             return this;
7667         },
7668
7669         /**
7670          * Adds one or more CSS classes to the element. Duplicate classes are automatically filtered out.
7671          * @param {String/Array} className The CSS class to add, or an array of classes
7672          * @return {Roo.Element} this
7673          */
7674         addClass : function(className){
7675             if(className instanceof Array){
7676                 for(var i = 0, len = className.length; i < len; i++) {
7677                     this.addClass(className[i]);
7678                 }
7679             }else{
7680                 if(className && !this.hasClass(className)){
7681                     if (this.dom instanceof SVGElement) {
7682                         this.dom.className.baseVal =this.dom.className.baseVal  + " " + className;
7683                     } else {
7684                         this.dom.className = this.dom.className + " " + className;
7685                     }
7686                 }
7687             }
7688             return this;
7689         },
7690
7691         /**
7692          * Adds one or more CSS classes to this element and removes the same class(es) from all siblings.
7693          * @param {String/Array} className The CSS class to add, or an array of classes
7694          * @return {Roo.Element} this
7695          */
7696         radioClass : function(className){
7697             var siblings = this.dom.parentNode.childNodes;
7698             for(var i = 0; i < siblings.length; i++) {
7699                 var s = siblings[i];
7700                 if(s.nodeType == 1){
7701                     Roo.get(s).removeClass(className);
7702                 }
7703             }
7704             this.addClass(className);
7705             return this;
7706         },
7707
7708         /**
7709          * Removes one or more CSS classes from the element.
7710          * @param {String/Array} className The CSS class to remove, or an array of classes
7711          * @return {Roo.Element} this
7712          */
7713         removeClass : function(className){
7714             
7715             var cn = this.dom instanceof SVGElement ? this.dom.className.baseVal : this.dom.className;
7716             if(!className || !cn){
7717                 return this;
7718             }
7719             if(className instanceof Array){
7720                 for(var i = 0, len = className.length; i < len; i++) {
7721                     this.removeClass(className[i]);
7722                 }
7723             }else{
7724                 if(this.hasClass(className)){
7725                     var re = this.classReCache[className];
7726                     if (!re) {
7727                        re = new RegExp('(?:^|\\s+)' + className + '(?:\\s+|$)', "g");
7728                        this.classReCache[className] = re;
7729                     }
7730                     if (this.dom instanceof SVGElement) {
7731                         this.dom.className.baseVal = cn.replace(re, " ");
7732                     } else {
7733                         this.dom.className = cn.replace(re, " ");
7734                     }
7735                 }
7736             }
7737             return this;
7738         },
7739
7740         // private
7741         classReCache: {},
7742
7743         /**
7744          * Toggles the specified CSS class on this element (removes it if it already exists, otherwise adds it).
7745          * @param {String} className The CSS class to toggle
7746          * @return {Roo.Element} this
7747          */
7748         toggleClass : function(className){
7749             if(this.hasClass(className)){
7750                 this.removeClass(className);
7751             }else{
7752                 this.addClass(className);
7753             }
7754             return this;
7755         },
7756
7757         /**
7758          * Checks if the specified CSS class exists on this element's DOM node.
7759          * @param {String} className The CSS class to check for
7760          * @return {Boolean} True if the class exists, else false
7761          */
7762         hasClass : function(className){
7763             if (this.dom instanceof SVGElement) {
7764                 return className && (' '+this.dom.className.baseVal +' ').indexOf(' '+className+' ') != -1; 
7765             } 
7766             return className && (' '+this.dom.className+' ').indexOf(' '+className+' ') != -1;
7767         },
7768
7769         /**
7770          * Replaces a CSS class on the element with another.  If the old name does not exist, the new name will simply be added.
7771          * @param {String} oldClassName The CSS class to replace
7772          * @param {String} newClassName The replacement CSS class
7773          * @return {Roo.Element} this
7774          */
7775         replaceClass : function(oldClassName, newClassName){
7776             this.removeClass(oldClassName);
7777             this.addClass(newClassName);
7778             return this;
7779         },
7780
7781         /**
7782          * Returns an object with properties matching the styles requested.
7783          * For example, el.getStyles('color', 'font-size', 'width') might return
7784          * {'color': '#FFFFFF', 'font-size': '13px', 'width': '100px'}.
7785          * @param {String} style1 A style name
7786          * @param {String} style2 A style name
7787          * @param {String} etc.
7788          * @return {Object} The style object
7789          */
7790         getStyles : function(){
7791             var a = arguments, len = a.length, r = {};
7792             for(var i = 0; i < len; i++){
7793                 r[a[i]] = this.getStyle(a[i]);
7794             }
7795             return r;
7796         },
7797
7798         /**
7799          * Normalizes currentStyle and computedStyle. This is not YUI getStyle, it is an optimised version.
7800          * @param {String} property The style property whose value is returned.
7801          * @return {String} The current value of the style property for this element.
7802          */
7803         getStyle : function(){
7804             return view && view.getComputedStyle ?
7805                 function(prop){
7806                     var el = this.dom, v, cs, camel;
7807                     if(prop == 'float'){
7808                         prop = "cssFloat";
7809                     }
7810                     if(el.style && (v = el.style[prop])){
7811                         return v;
7812                     }
7813                     if(cs = view.getComputedStyle(el, "")){
7814                         if(!(camel = propCache[prop])){
7815                             camel = propCache[prop] = prop.replace(camelRe, camelFn);
7816                         }
7817                         return cs[camel];
7818                     }
7819                     return null;
7820                 } :
7821                 function(prop){
7822                     var el = this.dom, v, cs, camel;
7823                     if(prop == 'opacity'){
7824                         if(typeof el.style.filter == 'string'){
7825                             var m = el.style.filter.match(/alpha\(opacity=(.*)\)/i);
7826                             if(m){
7827                                 var fv = parseFloat(m[1]);
7828                                 if(!isNaN(fv)){
7829                                     return fv ? fv / 100 : 0;
7830                                 }
7831                             }
7832                         }
7833                         return 1;
7834                     }else if(prop == 'float'){
7835                         prop = "styleFloat";
7836                     }
7837                     if(!(camel = propCache[prop])){
7838                         camel = propCache[prop] = prop.replace(camelRe, camelFn);
7839                     }
7840                     if(v = el.style[camel]){
7841                         return v;
7842                     }
7843                     if(cs = el.currentStyle){
7844                         return cs[camel];
7845                     }
7846                     return null;
7847                 };
7848         }(),
7849
7850         /**
7851          * Wrapper for setting style properties, also takes single object parameter of multiple styles.
7852          * @param {String/Object} property The style property to be set, or an object of multiple styles.
7853          * @param {String} value (optional) The value to apply to the given property, or null if an object was passed.
7854          * @return {Roo.Element} this
7855          */
7856         setStyle : function(prop, value){
7857             if(typeof prop == "string"){
7858                 
7859                 if (prop == 'float') {
7860                     this.setStyle(Roo.isIE ? 'styleFloat'  : 'cssFloat', value);
7861                     return this;
7862                 }
7863                 
7864                 var camel;
7865                 if(!(camel = propCache[prop])){
7866                     camel = propCache[prop] = prop.replace(camelRe, camelFn);
7867                 }
7868                 
7869                 if(camel == 'opacity') {
7870                     this.setOpacity(value);
7871                 }else{
7872                     this.dom.style[camel] = value;
7873                 }
7874             }else{
7875                 for(var style in prop){
7876                     if(typeof prop[style] != "function"){
7877                        this.setStyle(style, prop[style]);
7878                     }
7879                 }
7880             }
7881             return this;
7882         },
7883
7884         /**
7885          * More flexible version of {@link #setStyle} for setting style properties.
7886          * @param {String/Object/Function} styles A style specification string, e.g. "width:100px", or object in the form {width:"100px"}, or
7887          * a function which returns such a specification.
7888          * @return {Roo.Element} this
7889          */
7890         applyStyles : function(style){
7891             Roo.DomHelper.applyStyles(this.dom, style);
7892             return this;
7893         },
7894
7895         /**
7896           * 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).
7897           * @return {Number} The X position of the element
7898           */
7899         getX : function(){
7900             return D.getX(this.dom);
7901         },
7902
7903         /**
7904           * 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).
7905           * @return {Number} The Y position of the element
7906           */
7907         getY : function(){
7908             return D.getY(this.dom);
7909         },
7910
7911         /**
7912           * 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).
7913           * @return {Array} The XY position of the element
7914           */
7915         getXY : function(){
7916             return D.getXY(this.dom);
7917         },
7918
7919         /**
7920          * 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).
7921          * @param {Number} The X position of the element
7922          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7923          * @return {Roo.Element} this
7924          */
7925         setX : function(x, animate){
7926             if(!animate || !A){
7927                 D.setX(this.dom, x);
7928             }else{
7929                 this.setXY([x, this.getY()], this.preanim(arguments, 1));
7930             }
7931             return this;
7932         },
7933
7934         /**
7935          * 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).
7936          * @param {Number} The Y position of the element
7937          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7938          * @return {Roo.Element} this
7939          */
7940         setY : function(y, animate){
7941             if(!animate || !A){
7942                 D.setY(this.dom, y);
7943             }else{
7944                 this.setXY([this.getX(), y], this.preanim(arguments, 1));
7945             }
7946             return this;
7947         },
7948
7949         /**
7950          * Sets the element's left position directly using CSS style (instead of {@link #setX}).
7951          * @param {String} left The left CSS property value
7952          * @return {Roo.Element} this
7953          */
7954         setLeft : function(left){
7955             this.setStyle("left", this.addUnits(left));
7956             return this;
7957         },
7958
7959         /**
7960          * Sets the element's top position directly using CSS style (instead of {@link #setY}).
7961          * @param {String} top The top CSS property value
7962          * @return {Roo.Element} this
7963          */
7964         setTop : function(top){
7965             this.setStyle("top", this.addUnits(top));
7966             return this;
7967         },
7968
7969         /**
7970          * Sets the element's CSS right style.
7971          * @param {String} right The right CSS property value
7972          * @return {Roo.Element} this
7973          */
7974         setRight : function(right){
7975             this.setStyle("right", this.addUnits(right));
7976             return this;
7977         },
7978
7979         /**
7980          * Sets the element's CSS bottom style.
7981          * @param {String} bottom The bottom CSS property value
7982          * @return {Roo.Element} this
7983          */
7984         setBottom : function(bottom){
7985             this.setStyle("bottom", this.addUnits(bottom));
7986             return this;
7987         },
7988
7989         /**
7990          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
7991          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
7992          * @param {Array} pos Contains X & Y [x, y] values for new position (coordinates are page-based)
7993          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7994          * @return {Roo.Element} this
7995          */
7996         setXY : function(pos, animate){
7997             if(!animate || !A){
7998                 D.setXY(this.dom, pos);
7999             }else{
8000                 this.anim({points: {to: pos}}, this.preanim(arguments, 1), 'motion');
8001             }
8002             return this;
8003         },
8004
8005         /**
8006          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
8007          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
8008          * @param {Number} x X value for new position (coordinates are page-based)
8009          * @param {Number} y Y value for new position (coordinates are page-based)
8010          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
8011          * @return {Roo.Element} this
8012          */
8013         setLocation : function(x, y, animate){
8014             this.setXY([x, y], this.preanim(arguments, 2));
8015             return this;
8016         },
8017
8018         /**
8019          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
8020          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
8021          * @param {Number} x X value for new position (coordinates are page-based)
8022          * @param {Number} y Y value for new position (coordinates are page-based)
8023          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
8024          * @return {Roo.Element} this
8025          */
8026         moveTo : function(x, y, animate){
8027             this.setXY([x, y], this.preanim(arguments, 2));
8028             return this;
8029         },
8030
8031         /**
8032          * Returns the region of the given element.
8033          * The element must be part of the DOM tree to have a region (display:none or elements not appended return false).
8034          * @return {Region} A Roo.lib.Region containing "top, left, bottom, right" member data.
8035          */
8036         getRegion : function(){
8037             return D.getRegion(this.dom);
8038         },
8039
8040         /**
8041          * Returns the offset height of the element
8042          * @param {Boolean} contentHeight (optional) true to get the height minus borders and padding
8043          * @return {Number} The element's height
8044          */
8045         getHeight : function(contentHeight){
8046             var h = this.dom.offsetHeight || 0;
8047             return contentHeight !== true ? h : h-this.getBorderWidth("tb")-this.getPadding("tb");
8048         },
8049
8050         /**
8051          * Returns the offset width of the element
8052          * @param {Boolean} contentWidth (optional) true to get the width minus borders and padding
8053          * @return {Number} The element's width
8054          */
8055         getWidth : function(contentWidth){
8056             var w = this.dom.offsetWidth || 0;
8057             return contentWidth !== true ? w : w-this.getBorderWidth("lr")-this.getPadding("lr");
8058         },
8059
8060         /**
8061          * Returns either the offsetHeight or the height of this element based on CSS height adjusted by padding or borders
8062          * when needed to simulate offsetHeight when offsets aren't available. This may not work on display:none elements
8063          * if a height has not been set using CSS.
8064          * @return {Number}
8065          */
8066         getComputedHeight : function(){
8067             var h = Math.max(this.dom.offsetHeight, this.dom.clientHeight);
8068             if(!h){
8069                 h = parseInt(this.getStyle('height'), 10) || 0;
8070                 if(!this.isBorderBox()){
8071                     h += this.getFrameWidth('tb');
8072                 }
8073             }
8074             return h;
8075         },
8076
8077         /**
8078          * Returns either the offsetWidth or the width of this element based on CSS width adjusted by padding or borders
8079          * when needed to simulate offsetWidth when offsets aren't available. This may not work on display:none elements
8080          * if a width has not been set using CSS.
8081          * @return {Number}
8082          */
8083         getComputedWidth : function(){
8084             var w = Math.max(this.dom.offsetWidth, this.dom.clientWidth);
8085             if(!w){
8086                 w = parseInt(this.getStyle('width'), 10) || 0;
8087                 if(!this.isBorderBox()){
8088                     w += this.getFrameWidth('lr');
8089                 }
8090             }
8091             return w;
8092         },
8093
8094         /**
8095          * Returns the size of the element.
8096          * @param {Boolean} contentSize (optional) true to get the width/size minus borders and padding
8097          * @return {Object} An object containing the element's size {width: (element width), height: (element height)}
8098          */
8099         getSize : function(contentSize){
8100             return {width: this.getWidth(contentSize), height: this.getHeight(contentSize)};
8101         },
8102
8103         /**
8104          * Returns the width and height of the viewport.
8105          * @return {Object} An object containing the viewport's size {width: (viewport width), height: (viewport height)}
8106          */
8107         getViewSize : function(){
8108             var d = this.dom, doc = document, aw = 0, ah = 0;
8109             if(d == doc || d == doc.body){
8110                 return {width : D.getViewWidth(), height: D.getViewHeight()};
8111             }else{
8112                 return {
8113                     width : d.clientWidth,
8114                     height: d.clientHeight
8115                 };
8116             }
8117         },
8118
8119         /**
8120          * Returns the value of the "value" attribute
8121          * @param {Boolean} asNumber true to parse the value as a number
8122          * @return {String/Number}
8123          */
8124         getValue : function(asNumber){
8125             return asNumber ? parseInt(this.dom.value, 10) : this.dom.value;
8126         },
8127
8128         // private
8129         adjustWidth : function(width){
8130             if(typeof width == "number"){
8131                 if(this.autoBoxAdjust && !this.isBorderBox()){
8132                    width -= (this.getBorderWidth("lr") + this.getPadding("lr"));
8133                 }
8134                 if(width < 0){
8135                     width = 0;
8136                 }
8137             }
8138             return width;
8139         },
8140
8141         // private
8142         adjustHeight : function(height){
8143             if(typeof height == "number"){
8144                if(this.autoBoxAdjust && !this.isBorderBox()){
8145                    height -= (this.getBorderWidth("tb") + this.getPadding("tb"));
8146                }
8147                if(height < 0){
8148                    height = 0;
8149                }
8150             }
8151             return height;
8152         },
8153
8154         /**
8155          * Set the width of the element
8156          * @param {Number} width The new width
8157          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8158          * @return {Roo.Element} this
8159          */
8160         setWidth : function(width, animate){
8161             width = this.adjustWidth(width);
8162             if(!animate || !A){
8163                 this.dom.style.width = this.addUnits(width);
8164             }else{
8165                 this.anim({width: {to: width}}, this.preanim(arguments, 1));
8166             }
8167             return this;
8168         },
8169
8170         /**
8171          * Set the height of the element
8172          * @param {Number} height The new height
8173          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8174          * @return {Roo.Element} this
8175          */
8176          setHeight : function(height, animate){
8177             height = this.adjustHeight(height);
8178             if(!animate || !A){
8179                 this.dom.style.height = this.addUnits(height);
8180             }else{
8181                 this.anim({height: {to: height}}, this.preanim(arguments, 1));
8182             }
8183             return this;
8184         },
8185
8186         /**
8187          * Set the size of the element. If animation is true, both width an height will be animated concurrently.
8188          * @param {Number} width The new width
8189          * @param {Number} height The new height
8190          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8191          * @return {Roo.Element} this
8192          */
8193          setSize : function(width, height, animate){
8194             if(typeof width == "object"){ // in case of object from getSize()
8195                 height = width.height; width = width.width;
8196             }
8197             width = this.adjustWidth(width); height = this.adjustHeight(height);
8198             if(!animate || !A){
8199                 this.dom.style.width = this.addUnits(width);
8200                 this.dom.style.height = this.addUnits(height);
8201             }else{
8202                 this.anim({width: {to: width}, height: {to: height}}, this.preanim(arguments, 2));
8203             }
8204             return this;
8205         },
8206
8207         /**
8208          * Sets the element's position and size in one shot. If animation is true then width, height, x and y will be animated concurrently.
8209          * @param {Number} x X value for new position (coordinates are page-based)
8210          * @param {Number} y Y value for new position (coordinates are page-based)
8211          * @param {Number} width The new width
8212          * @param {Number} height The new height
8213          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8214          * @return {Roo.Element} this
8215          */
8216         setBounds : function(x, y, width, height, animate){
8217             if(!animate || !A){
8218                 this.setSize(width, height);
8219                 this.setLocation(x, y);
8220             }else{
8221                 width = this.adjustWidth(width); height = this.adjustHeight(height);
8222                 this.anim({points: {to: [x, y]}, width: {to: width}, height: {to: height}},
8223                               this.preanim(arguments, 4), 'motion');
8224             }
8225             return this;
8226         },
8227
8228         /**
8229          * 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.
8230          * @param {Roo.lib.Region} region The region to fill
8231          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8232          * @return {Roo.Element} this
8233          */
8234         setRegion : function(region, animate){
8235             this.setBounds(region.left, region.top, region.right-region.left, region.bottom-region.top, this.preanim(arguments, 1));
8236             return this;
8237         },
8238
8239         /**
8240          * Appends an event handler
8241          *
8242          * @param {String}   eventName     The type of event to append
8243          * @param {Function} fn        The method the event invokes
8244          * @param {Object} scope       (optional) The scope (this object) of the fn
8245          * @param {Object}   options   (optional)An object with standard {@link Roo.EventManager#addListener} options
8246          */
8247         addListener : function(eventName, fn, scope, options){
8248             if (this.dom) {
8249                 Roo.EventManager.on(this.dom,  eventName, fn, scope || this, options);
8250             }
8251             if (eventName == 'dblclick') {
8252                 this.addListener('touchstart', this.onTapHandler, this);
8253             }
8254         },
8255         tapedTwice : false,
8256         onTapHandler : function(event)
8257         {
8258             if(!this.tapedTwice) {
8259                 this.tapedTwice = true;
8260                 var s = this;
8261                 setTimeout( function() {
8262                     s.tapedTwice = false;
8263                 }, 300 );
8264                 return;
8265             }
8266             event.preventDefault();
8267             var revent = new MouseEvent('dblclick',  {
8268                 view: window,
8269                 bubbles: true,
8270                 cancelable: true
8271             });
8272              
8273             this.dom.dispatchEvent(revent);
8274             //action on double tap goes below
8275              
8276         }, 
8277
8278         /**
8279          * Removes an event handler from this element
8280          * @param {String} eventName the type of event to remove
8281          * @param {Function} fn the method the event invokes
8282          * @return {Roo.Element} this
8283          */
8284         removeListener : function(eventName, fn){
8285             Roo.EventManager.removeListener(this.dom,  eventName, fn);
8286             return this;
8287         },
8288
8289         /**
8290          * Removes all previous added listeners from this element
8291          * @return {Roo.Element} this
8292          */
8293         removeAllListeners : function(){
8294             E.purgeElement(this.dom);
8295             return this;
8296         },
8297
8298         relayEvent : function(eventName, observable){
8299             this.on(eventName, function(e){
8300                 observable.fireEvent(eventName, e);
8301             });
8302         },
8303
8304         /**
8305          * Set the opacity of the element
8306          * @param {Float} opacity The new opacity. 0 = transparent, .5 = 50% visibile, 1 = fully visible, etc
8307          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8308          * @return {Roo.Element} this
8309          */
8310          setOpacity : function(opacity, animate){
8311             if(!animate || !A){
8312                 var s = this.dom.style;
8313                 if(Roo.isIE){
8314                     s.zoom = 1;
8315                     s.filter = (s.filter || '').replace(/alpha\([^\)]*\)/gi,"") +
8316                                (opacity == 1 ? "" : "alpha(opacity=" + opacity * 100 + ")");
8317                 }else{
8318                     s.opacity = opacity;
8319                 }
8320             }else{
8321                 this.anim({opacity: {to: opacity}}, this.preanim(arguments, 1), null, .35, 'easeIn');
8322             }
8323             return this;
8324         },
8325
8326         /**
8327          * Gets the left X coordinate
8328          * @param {Boolean} local True to get the local css position instead of page coordinate
8329          * @return {Number}
8330          */
8331         getLeft : function(local){
8332             if(!local){
8333                 return this.getX();
8334             }else{
8335                 return parseInt(this.getStyle("left"), 10) || 0;
8336             }
8337         },
8338
8339         /**
8340          * Gets the right X coordinate of the element (element X position + element width)
8341          * @param {Boolean} local True to get the local css position instead of page coordinate
8342          * @return {Number}
8343          */
8344         getRight : function(local){
8345             if(!local){
8346                 return this.getX() + this.getWidth();
8347             }else{
8348                 return (this.getLeft(true) + this.getWidth()) || 0;
8349             }
8350         },
8351
8352         /**
8353          * Gets the top Y coordinate
8354          * @param {Boolean} local True to get the local css position instead of page coordinate
8355          * @return {Number}
8356          */
8357         getTop : function(local) {
8358             if(!local){
8359                 return this.getY();
8360             }else{
8361                 return parseInt(this.getStyle("top"), 10) || 0;
8362             }
8363         },
8364
8365         /**
8366          * Gets the bottom Y coordinate of the element (element Y position + element height)
8367          * @param {Boolean} local True to get the local css position instead of page coordinate
8368          * @return {Number}
8369          */
8370         getBottom : function(local){
8371             if(!local){
8372                 return this.getY() + this.getHeight();
8373             }else{
8374                 return (this.getTop(true) + this.getHeight()) || 0;
8375             }
8376         },
8377
8378         /**
8379         * Initializes positioning on this element. If a desired position is not passed, it will make the
8380         * the element positioned relative IF it is not already positioned.
8381         * @param {String} pos (optional) Positioning to use "relative", "absolute" or "fixed"
8382         * @param {Number} zIndex (optional) The zIndex to apply
8383         * @param {Number} x (optional) Set the page X position
8384         * @param {Number} y (optional) Set the page Y position
8385         */
8386         position : function(pos, zIndex, x, y){
8387             if(!pos){
8388                if(this.getStyle('position') == 'static'){
8389                    this.setStyle('position', 'relative');
8390                }
8391             }else{
8392                 this.setStyle("position", pos);
8393             }
8394             if(zIndex){
8395                 this.setStyle("z-index", zIndex);
8396             }
8397             if(x !== undefined && y !== undefined){
8398                 this.setXY([x, y]);
8399             }else if(x !== undefined){
8400                 this.setX(x);
8401             }else if(y !== undefined){
8402                 this.setY(y);
8403             }
8404         },
8405
8406         /**
8407         * Clear positioning back to the default when the document was loaded
8408         * @param {String} value (optional) The value to use for the left,right,top,bottom, defaults to '' (empty string). You could use 'auto'.
8409         * @return {Roo.Element} this
8410          */
8411         clearPositioning : function(value){
8412             value = value ||'';
8413             this.setStyle({
8414                 "left": value,
8415                 "right": value,
8416                 "top": value,
8417                 "bottom": value,
8418                 "z-index": "",
8419                 "position" : "static"
8420             });
8421             return this;
8422         },
8423
8424         /**
8425         * Gets an object with all CSS positioning properties. Useful along with setPostioning to get
8426         * snapshot before performing an update and then restoring the element.
8427         * @return {Object}
8428         */
8429         getPositioning : function(){
8430             var l = this.getStyle("left");
8431             var t = this.getStyle("top");
8432             return {
8433                 "position" : this.getStyle("position"),
8434                 "left" : l,
8435                 "right" : l ? "" : this.getStyle("right"),
8436                 "top" : t,
8437                 "bottom" : t ? "" : this.getStyle("bottom"),
8438                 "z-index" : this.getStyle("z-index")
8439             };
8440         },
8441
8442         /**
8443          * Gets the width of the border(s) for the specified side(s)
8444          * @param {String} side Can be t, l, r, b or any combination of those to add multiple values. For example,
8445          * passing lr would get the border (l)eft width + the border (r)ight width.
8446          * @return {Number} The width of the sides passed added together
8447          */
8448         getBorderWidth : function(side){
8449             return this.addStyles(side, El.borders);
8450         },
8451
8452         /**
8453          * Gets the width of the padding(s) for the specified side(s)
8454          * @param {String} side Can be t, l, r, b or any combination of those to add multiple values. For example,
8455          * passing lr would get the padding (l)eft + the padding (r)ight.
8456          * @return {Number} The padding of the sides passed added together
8457          */
8458         getPadding : function(side){
8459             return this.addStyles(side, El.paddings);
8460         },
8461
8462         /**
8463         * Set positioning with an object returned by getPositioning().
8464         * @param {Object} posCfg
8465         * @return {Roo.Element} this
8466          */
8467         setPositioning : function(pc){
8468             this.applyStyles(pc);
8469             if(pc.right == "auto"){
8470                 this.dom.style.right = "";
8471             }
8472             if(pc.bottom == "auto"){
8473                 this.dom.style.bottom = "";
8474             }
8475             return this;
8476         },
8477
8478         // private
8479         fixDisplay : function(){
8480             if(this.getStyle("display") == "none"){
8481                 this.setStyle("visibility", "hidden");
8482                 this.setStyle("display", this.originalDisplay); // first try reverting to default
8483                 if(this.getStyle("display") == "none"){ // if that fails, default to block
8484                     this.setStyle("display", "block");
8485                 }
8486             }
8487         },
8488
8489         /**
8490          * Quick set left and top adding default units
8491          * @param {String} left The left CSS property value
8492          * @param {String} top The top CSS property value
8493          * @return {Roo.Element} this
8494          */
8495          setLeftTop : function(left, top){
8496             this.dom.style.left = this.addUnits(left);
8497             this.dom.style.top = this.addUnits(top);
8498             return this;
8499         },
8500
8501         /**
8502          * Move this element relative to its current position.
8503          * @param {String} direction Possible values are: "l","left" - "r","right" - "t","top","up" - "b","bottom","down".
8504          * @param {Number} distance How far to move the element in pixels
8505          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8506          * @return {Roo.Element} this
8507          */
8508          move : function(direction, distance, animate){
8509             var xy = this.getXY();
8510             direction = direction.toLowerCase();
8511             switch(direction){
8512                 case "l":
8513                 case "left":
8514                     this.moveTo(xy[0]-distance, xy[1], this.preanim(arguments, 2));
8515                     break;
8516                case "r":
8517                case "right":
8518                     this.moveTo(xy[0]+distance, xy[1], this.preanim(arguments, 2));
8519                     break;
8520                case "t":
8521                case "top":
8522                case "up":
8523                     this.moveTo(xy[0], xy[1]-distance, this.preanim(arguments, 2));
8524                     break;
8525                case "b":
8526                case "bottom":
8527                case "down":
8528                     this.moveTo(xy[0], xy[1]+distance, this.preanim(arguments, 2));
8529                     break;
8530             }
8531             return this;
8532         },
8533
8534         /**
8535          *  Store the current overflow setting and clip overflow on the element - use {@link #unclip} to remove
8536          * @return {Roo.Element} this
8537          */
8538         clip : function(){
8539             if(!this.isClipped){
8540                this.isClipped = true;
8541                this.originalClip = {
8542                    "o": this.getStyle("overflow"),
8543                    "x": this.getStyle("overflow-x"),
8544                    "y": this.getStyle("overflow-y")
8545                };
8546                this.setStyle("overflow", "hidden");
8547                this.setStyle("overflow-x", "hidden");
8548                this.setStyle("overflow-y", "hidden");
8549             }
8550             return this;
8551         },
8552
8553         /**
8554          *  Return clipping (overflow) to original clipping before clip() was called
8555          * @return {Roo.Element} this
8556          */
8557         unclip : function(){
8558             if(this.isClipped){
8559                 this.isClipped = false;
8560                 var o = this.originalClip;
8561                 if(o.o){this.setStyle("overflow", o.o);}
8562                 if(o.x){this.setStyle("overflow-x", o.x);}
8563                 if(o.y){this.setStyle("overflow-y", o.y);}
8564             }
8565             return this;
8566         },
8567
8568
8569         /**
8570          * Gets the x,y coordinates specified by the anchor position on the element.
8571          * @param {String} anchor (optional) The specified anchor position (defaults to "c").  See {@link #alignTo} for details on supported anchor positions.
8572          * @param {Object} size (optional) An object containing the size to use for calculating anchor position
8573          *                       {width: (target width), height: (target height)} (defaults to the element's current size)
8574          * @param {Boolean} local (optional) True to get the local (element top/left-relative) anchor position instead of page coordinates
8575          * @return {Array} [x, y] An array containing the element's x and y coordinates
8576          */
8577         getAnchorXY : function(anchor, local, s){
8578             //Passing a different size is useful for pre-calculating anchors,
8579             //especially for anchored animations that change the el size.
8580
8581             var w, h, vp = false;
8582             if(!s){
8583                 var d = this.dom;
8584                 if(d == document.body || d == document){
8585                     vp = true;
8586                     w = D.getViewWidth(); h = D.getViewHeight();
8587                 }else{
8588                     w = this.getWidth(); h = this.getHeight();
8589                 }
8590             }else{
8591                 w = s.width;  h = s.height;
8592             }
8593             var x = 0, y = 0, r = Math.round;
8594             switch((anchor || "tl").toLowerCase()){
8595                 case "c":
8596                     x = r(w*.5);
8597                     y = r(h*.5);
8598                 break;
8599                 case "t":
8600                     x = r(w*.5);
8601                     y = 0;
8602                 break;
8603                 case "l":
8604                     x = 0;
8605                     y = r(h*.5);
8606                 break;
8607                 case "r":
8608                     x = w;
8609                     y = r(h*.5);
8610                 break;
8611                 case "b":
8612                     x = r(w*.5);
8613                     y = h;
8614                 break;
8615                 case "tl":
8616                     x = 0;
8617                     y = 0;
8618                 break;
8619                 case "bl":
8620                     x = 0;
8621                     y = h;
8622                 break;
8623                 case "br":
8624                     x = w;
8625                     y = h;
8626                 break;
8627                 case "tr":
8628                     x = w;
8629                     y = 0;
8630                 break;
8631             }
8632             if(local === true){
8633                 return [x, y];
8634             }
8635             if(vp){
8636                 var sc = this.getScroll();
8637                 return [x + sc.left, y + sc.top];
8638             }
8639             //Add the element's offset xy
8640             var o = this.getXY();
8641             return [x+o[0], y+o[1]];
8642         },
8643
8644         /**
8645          * Gets the x,y coordinates to align this element with another element. See {@link #alignTo} for more info on the
8646          * supported position values.
8647          * @param {String/HTMLElement/Roo.Element} element The element to align to.
8648          * @param {String} position The position to align to.
8649          * @param {Array} offsets (optional) Offset the positioning by [x, y]
8650          * @return {Array} [x, y]
8651          */
8652         getAlignToXY : function(el, p, o)
8653         {
8654             el = Roo.get(el);
8655             var d = this.dom;
8656             if(!el.dom){
8657                 throw "Element.alignTo with an element that doesn't exist";
8658             }
8659             var c = false; //constrain to viewport
8660             var p1 = "", p2 = "";
8661             o = o || [0,0];
8662
8663             if(!p){
8664                 p = "tl-bl";
8665             }else if(p == "?"){
8666                 p = "tl-bl?";
8667             }else if(p.indexOf("-") == -1){
8668                 p = "tl-" + p;
8669             }
8670             p = p.toLowerCase();
8671             var m = p.match(/^([a-z]+)-([a-z]+)(\?)?$/);
8672             if(!m){
8673                throw "Element.alignTo with an invalid alignment " + p;
8674             }
8675             p1 = m[1]; p2 = m[2]; c = !!m[3];
8676
8677             //Subtract the aligned el's internal xy from the target's offset xy
8678             //plus custom offset to get the aligned el's new offset xy
8679             var a1 = this.getAnchorXY(p1, true);
8680             var a2 = el.getAnchorXY(p2, false);
8681             var x = a2[0] - a1[0] + o[0];
8682             var y = a2[1] - a1[1] + o[1];
8683             if(c){
8684                 //constrain the aligned el to viewport if necessary
8685                 var w = this.getWidth(), h = this.getHeight(), r = el.getRegion();
8686                 // 5px of margin for ie
8687                 var dw = D.getViewWidth()-5, dh = D.getViewHeight()-5;
8688
8689                 //If we are at a viewport boundary and the aligned el is anchored on a target border that is
8690                 //perpendicular to the vp border, allow the aligned el to slide on that border,
8691                 //otherwise swap the aligned el to the opposite border of the target.
8692                 var p1y = p1.charAt(0), p1x = p1.charAt(p1.length-1);
8693                var p2y = p2.charAt(0), p2x = p2.charAt(p2.length-1);
8694                var swapY = ((p1y=="t" && p2y=="b") || (p1y=="b" && p2y=="t")  );
8695                var swapX = ((p1x=="r" && p2x=="l") || (p1x=="l" && p2x=="r"));
8696
8697                var doc = document;
8698                var scrollX = (doc.documentElement.scrollLeft || doc.body.scrollLeft || 0)+5;
8699                var scrollY = (doc.documentElement.scrollTop || doc.body.scrollTop || 0)+5;
8700
8701                if((x+w) > dw + scrollX){
8702                     x = swapX ? r.left-w : dw+scrollX-w;
8703                 }
8704                if(x < scrollX){
8705                    x = swapX ? r.right : scrollX;
8706                }
8707                if((y+h) > dh + scrollY){
8708                     y = swapY ? r.top-h : dh+scrollY-h;
8709                 }
8710                if (y < scrollY){
8711                    y = swapY ? r.bottom : scrollY;
8712                }
8713             }
8714             return [x,y];
8715         },
8716
8717         // private
8718         getConstrainToXY : function(){
8719             var os = {top:0, left:0, bottom:0, right: 0};
8720
8721             return function(el, local, offsets, proposedXY){
8722                 el = Roo.get(el);
8723                 offsets = offsets ? Roo.applyIf(offsets, os) : os;
8724
8725                 var vw, vh, vx = 0, vy = 0;
8726                 if(el.dom == document.body || el.dom == document){
8727                     vw = Roo.lib.Dom.getViewWidth();
8728                     vh = Roo.lib.Dom.getViewHeight();
8729                 }else{
8730                     vw = el.dom.clientWidth;
8731                     vh = el.dom.clientHeight;
8732                     if(!local){
8733                         var vxy = el.getXY();
8734                         vx = vxy[0];
8735                         vy = vxy[1];
8736                     }
8737                 }
8738
8739                 var s = el.getScroll();
8740
8741                 vx += offsets.left + s.left;
8742                 vy += offsets.top + s.top;
8743
8744                 vw -= offsets.right;
8745                 vh -= offsets.bottom;
8746
8747                 var vr = vx+vw;
8748                 var vb = vy+vh;
8749
8750                 var xy = proposedXY || (!local ? this.getXY() : [this.getLeft(true), this.getTop(true)]);
8751                 var x = xy[0], y = xy[1];
8752                 var w = this.dom.offsetWidth, h = this.dom.offsetHeight;
8753
8754                 // only move it if it needs it
8755                 var moved = false;
8756
8757                 // first validate right/bottom
8758                 if((x + w) > vr){
8759                     x = vr - w;
8760                     moved = true;
8761                 }
8762                 if((y + h) > vb){
8763                     y = vb - h;
8764                     moved = true;
8765                 }
8766                 // then make sure top/left isn't negative
8767                 if(x < vx){
8768                     x = vx;
8769                     moved = true;
8770                 }
8771                 if(y < vy){
8772                     y = vy;
8773                     moved = true;
8774                 }
8775                 return moved ? [x, y] : false;
8776             };
8777         }(),
8778
8779         // private
8780         adjustForConstraints : function(xy, parent, offsets){
8781             return this.getConstrainToXY(parent || document, false, offsets, xy) ||  xy;
8782         },
8783
8784         /**
8785          * Aligns this element with another element relative to the specified anchor points. If the other element is the
8786          * document it aligns it to the viewport.
8787          * The position parameter is optional, and can be specified in any one of the following formats:
8788          * <ul>
8789          *   <li><b>Blank</b>: Defaults to aligning the element's top-left corner to the target's bottom-left corner ("tl-bl").</li>
8790          *   <li><b>One anchor (deprecated)</b>: The passed anchor position is used as the target element's anchor point.
8791          *       The element being aligned will position its top-left corner (tl) to that point.  <i>This method has been
8792          *       deprecated in favor of the newer two anchor syntax below</i>.</li>
8793          *   <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
8794          *       element's anchor point, and the second value is used as the target's anchor point.</li>
8795          * </ul>
8796          * In addition to the anchor points, the position parameter also supports the "?" character.  If "?" is passed at the end of
8797          * the position string, the element will attempt to align as specified, but the position will be adjusted to constrain to
8798          * the viewport if necessary.  Note that the element being aligned might be swapped to align to a different position than
8799          * that specified in order to enforce the viewport constraints.
8800          * Following are all of the supported anchor positions:
8801     <pre>
8802     Value  Description
8803     -----  -----------------------------
8804     tl     The top left corner (default)
8805     t      The center of the top edge
8806     tr     The top right corner
8807     l      The center of the left edge
8808     c      In the center of the element
8809     r      The center of the right edge
8810     bl     The bottom left corner
8811     b      The center of the bottom edge
8812     br     The bottom right corner
8813     </pre>
8814     Example Usage:
8815     <pre><code>
8816     // align el to other-el using the default positioning ("tl-bl", non-constrained)
8817     el.alignTo("other-el");
8818
8819     // align the top left corner of el with the top right corner of other-el (constrained to viewport)
8820     el.alignTo("other-el", "tr?");
8821
8822     // align the bottom right corner of el with the center left edge of other-el
8823     el.alignTo("other-el", "br-l?");
8824
8825     // align the center of el with the bottom left corner of other-el and
8826     // adjust the x position by -6 pixels (and the y position by 0)
8827     el.alignTo("other-el", "c-bl", [-6, 0]);
8828     </code></pre>
8829          * @param {String/HTMLElement/Roo.Element} element The element to align to.
8830          * @param {String} position The position to align to.
8831          * @param {Array} offsets (optional) Offset the positioning by [x, y]
8832          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8833          * @return {Roo.Element} this
8834          */
8835         alignTo : function(element, position, offsets, animate){
8836             var xy = this.getAlignToXY(element, position, offsets);
8837             this.setXY(xy, this.preanim(arguments, 3));
8838             return this;
8839         },
8840
8841         /**
8842          * Anchors an element to another element and realigns it when the window is resized.
8843          * @param {String/HTMLElement/Roo.Element} element The element to align to.
8844          * @param {String} position The position to align to.
8845          * @param {Array} offsets (optional) Offset the positioning by [x, y]
8846          * @param {Boolean/Object} animate (optional) True for the default animation or a standard Element animation config object
8847          * @param {Boolean/Number} monitorScroll (optional) True to monitor body scroll and reposition. If this parameter
8848          * is a number, it is used as the buffer delay (defaults to 50ms).
8849          * @param {Function} callback The function to call after the animation finishes
8850          * @return {Roo.Element} this
8851          */
8852         anchorTo : function(el, alignment, offsets, animate, monitorScroll, callback){
8853             var action = function(){
8854                 this.alignTo(el, alignment, offsets, animate);
8855                 Roo.callback(callback, this);
8856             };
8857             Roo.EventManager.onWindowResize(action, this);
8858             var tm = typeof monitorScroll;
8859             if(tm != 'undefined'){
8860                 Roo.EventManager.on(window, 'scroll', action, this,
8861                     {buffer: tm == 'number' ? monitorScroll : 50});
8862             }
8863             action.call(this); // align immediately
8864             return this;
8865         },
8866         /**
8867          * Clears any opacity settings from this element. Required in some cases for IE.
8868          * @return {Roo.Element} this
8869          */
8870         clearOpacity : function(){
8871             if (window.ActiveXObject) {
8872                 if(typeof this.dom.style.filter == 'string' && (/alpha/i).test(this.dom.style.filter)){
8873                     this.dom.style.filter = "";
8874                 }
8875             } else {
8876                 this.dom.style.opacity = "";
8877                 this.dom.style["-moz-opacity"] = "";
8878                 this.dom.style["-khtml-opacity"] = "";
8879             }
8880             return this;
8881         },
8882
8883         /**
8884          * Hide this element - Uses display mode to determine whether to use "display" or "visibility". See {@link #setVisible}.
8885          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8886          * @return {Roo.Element} this
8887          */
8888         hide : function(animate){
8889             this.setVisible(false, this.preanim(arguments, 0));
8890             return this;
8891         },
8892
8893         /**
8894         * Show this element - Uses display mode to determine whether to use "display" or "visibility". See {@link #setVisible}.
8895         * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8896          * @return {Roo.Element} this
8897          */
8898         show : function(animate){
8899             this.setVisible(true, this.preanim(arguments, 0));
8900             return this;
8901         },
8902
8903         /**
8904          * @private Test if size has a unit, otherwise appends the default
8905          */
8906         addUnits : function(size){
8907             return Roo.Element.addUnits(size, this.defaultUnit);
8908         },
8909
8910         /**
8911          * Temporarily enables offsets (width,height,x,y) for an element with display:none, use endMeasure() when done.
8912          * @return {Roo.Element} this
8913          */
8914         beginMeasure : function(){
8915             var el = this.dom;
8916             if(el.offsetWidth || el.offsetHeight){
8917                 return this; // offsets work already
8918             }
8919             var changed = [];
8920             var p = this.dom, b = document.body; // start with this element
8921             while((!el.offsetWidth && !el.offsetHeight) && p && p.tagName && p != b){
8922                 var pe = Roo.get(p);
8923                 if(pe.getStyle('display') == 'none'){
8924                     changed.push({el: p, visibility: pe.getStyle("visibility")});
8925                     p.style.visibility = "hidden";
8926                     p.style.display = "block";
8927                 }
8928                 p = p.parentNode;
8929             }
8930             this._measureChanged = changed;
8931             return this;
8932
8933         },
8934
8935         /**
8936          * Restores displays to before beginMeasure was called
8937          * @return {Roo.Element} this
8938          */
8939         endMeasure : function(){
8940             var changed = this._measureChanged;
8941             if(changed){
8942                 for(var i = 0, len = changed.length; i < len; i++) {
8943                     var r = changed[i];
8944                     r.el.style.visibility = r.visibility;
8945                     r.el.style.display = "none";
8946                 }
8947                 this._measureChanged = null;
8948             }
8949             return this;
8950         },
8951
8952         /**
8953         * Update the innerHTML of this element, optionally searching for and processing scripts
8954         * @param {String} html The new HTML
8955         * @param {Boolean} loadScripts (optional) true to look for and process scripts
8956         * @param {Function} callback For async script loading you can be noticed when the update completes
8957         * @return {Roo.Element} this
8958          */
8959         update : function(html, loadScripts, callback){
8960             if(typeof html == "undefined"){
8961                 html = "";
8962             }
8963             if(loadScripts !== true){
8964                 this.dom.innerHTML = html;
8965                 if(typeof callback == "function"){
8966                     callback();
8967                 }
8968                 return this;
8969             }
8970             var id = Roo.id();
8971             var dom = this.dom;
8972
8973             html += '<span id="' + id + '"></span>';
8974
8975             E.onAvailable(id, function(){
8976                 var hd = document.getElementsByTagName("head")[0];
8977                 var re = /(?:<script([^>]*)?>)((\n|\r|.)*?)(?:<\/script>)/ig;
8978                 var srcRe = /\ssrc=([\'\"])(.*?)\1/i;
8979                 var typeRe = /\stype=([\'\"])(.*?)\1/i;
8980
8981                 var match;
8982                 while(match = re.exec(html)){
8983                     var attrs = match[1];
8984                     var srcMatch = attrs ? attrs.match(srcRe) : false;
8985                     if(srcMatch && srcMatch[2]){
8986                        var s = document.createElement("script");
8987                        s.src = srcMatch[2];
8988                        var typeMatch = attrs.match(typeRe);
8989                        if(typeMatch && typeMatch[2]){
8990                            s.type = typeMatch[2];
8991                        }
8992                        hd.appendChild(s);
8993                     }else if(match[2] && match[2].length > 0){
8994                         if(window.execScript) {
8995                            window.execScript(match[2]);
8996                         } else {
8997                             /**
8998                              * eval:var:id
8999                              * eval:var:dom
9000                              * eval:var:html
9001                              * 
9002                              */
9003                            window.eval(match[2]);
9004                         }
9005                     }
9006                 }
9007                 var el = document.getElementById(id);
9008                 if(el){el.parentNode.removeChild(el);}
9009                 if(typeof callback == "function"){
9010                     callback();
9011                 }
9012             });
9013             dom.innerHTML = html.replace(/(?:<script.*?>)((\n|\r|.)*?)(?:<\/script>)/ig, "");
9014             return this;
9015         },
9016
9017         /**
9018          * Direct access to the UpdateManager update() method (takes the same parameters).
9019          * @param {String/Function} url The url for this request or a function to call to get the url
9020          * @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}
9021          * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
9022          * @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.
9023          * @return {Roo.Element} this
9024          */
9025         load : function(){
9026             var um = this.getUpdateManager();
9027             um.update.apply(um, arguments);
9028             return this;
9029         },
9030
9031         /**
9032         * Gets this element's UpdateManager
9033         * @return {Roo.UpdateManager} The UpdateManager
9034         */
9035         getUpdateManager : function(){
9036             if(!this.updateManager){
9037                 this.updateManager = new Roo.UpdateManager(this);
9038             }
9039             return this.updateManager;
9040         },
9041
9042         /**
9043          * Disables text selection for this element (normalized across browsers)
9044          * @return {Roo.Element} this
9045          */
9046         unselectable : function(){
9047             this.dom.unselectable = "on";
9048             this.swallowEvent("selectstart", true);
9049             this.applyStyles("-moz-user-select:none;-khtml-user-select:none;");
9050             this.addClass("x-unselectable");
9051             return this;
9052         },
9053
9054         /**
9055         * Calculates the x, y to center this element on the screen
9056         * @return {Array} The x, y values [x, y]
9057         */
9058         getCenterXY : function(){
9059             return this.getAlignToXY(document, 'c-c');
9060         },
9061
9062         /**
9063         * Centers the Element in either the viewport, or another Element.
9064         * @param {String/HTMLElement/Roo.Element} centerIn (optional) The element in which to center the element.
9065         */
9066         center : function(centerIn){
9067             this.alignTo(centerIn || document, 'c-c');
9068             return this;
9069         },
9070
9071         /**
9072          * Tests various css rules/browsers to determine if this element uses a border box
9073          * @return {Boolean}
9074          */
9075         isBorderBox : function(){
9076             return noBoxAdjust[this.dom.tagName.toLowerCase()] || Roo.isBorderBox;
9077         },
9078
9079         /**
9080          * Return a box {x, y, width, height} that can be used to set another elements
9081          * size/location to match this element.
9082          * @param {Boolean} contentBox (optional) If true a box for the content of the element is returned.
9083          * @param {Boolean} local (optional) If true the element's left and top are returned instead of page x/y.
9084          * @return {Object} box An object in the format {x, y, width, height}
9085          */
9086         getBox : function(contentBox, local){
9087             var xy;
9088             if(!local){
9089                 xy = this.getXY();
9090             }else{
9091                 var left = parseInt(this.getStyle("left"), 10) || 0;
9092                 var top = parseInt(this.getStyle("top"), 10) || 0;
9093                 xy = [left, top];
9094             }
9095             var el = this.dom, w = el.offsetWidth, h = el.offsetHeight, bx;
9096             if(!contentBox){
9097                 bx = {x: xy[0], y: xy[1], 0: xy[0], 1: xy[1], width: w, height: h};
9098             }else{
9099                 var l = this.getBorderWidth("l")+this.getPadding("l");
9100                 var r = this.getBorderWidth("r")+this.getPadding("r");
9101                 var t = this.getBorderWidth("t")+this.getPadding("t");
9102                 var b = this.getBorderWidth("b")+this.getPadding("b");
9103                 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)};
9104             }
9105             bx.right = bx.x + bx.width;
9106             bx.bottom = bx.y + bx.height;
9107             return bx;
9108         },
9109
9110         /**
9111          * Returns the sum width of the padding and borders for the passed "sides". See getBorderWidth()
9112          for more information about the sides.
9113          * @param {String} sides
9114          * @return {Number}
9115          */
9116         getFrameWidth : function(sides, onlyContentBox){
9117             return onlyContentBox && Roo.isBorderBox ? 0 : (this.getPadding(sides) + this.getBorderWidth(sides));
9118         },
9119
9120         /**
9121          * 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.
9122          * @param {Object} box The box to fill {x, y, width, height}
9123          * @param {Boolean} adjust (optional) Whether to adjust for box-model issues automatically
9124          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9125          * @return {Roo.Element} this
9126          */
9127         setBox : function(box, adjust, animate){
9128             var w = box.width, h = box.height;
9129             if((adjust && !this.autoBoxAdjust) && !this.isBorderBox()){
9130                w -= (this.getBorderWidth("lr") + this.getPadding("lr"));
9131                h -= (this.getBorderWidth("tb") + this.getPadding("tb"));
9132             }
9133             this.setBounds(box.x, box.y, w, h, this.preanim(arguments, 2));
9134             return this;
9135         },
9136
9137         /**
9138          * Forces the browser to repaint this element
9139          * @return {Roo.Element} this
9140          */
9141          repaint : function(){
9142             var dom = this.dom;
9143             this.addClass("x-repaint");
9144             setTimeout(function(){
9145                 Roo.get(dom).removeClass("x-repaint");
9146             }, 1);
9147             return this;
9148         },
9149
9150         /**
9151          * Returns an object with properties top, left, right and bottom representing the margins of this element unless sides is passed,
9152          * then it returns the calculated width of the sides (see getPadding)
9153          * @param {String} sides (optional) Any combination of l, r, t, b to get the sum of those sides
9154          * @return {Object/Number}
9155          */
9156         getMargins : function(side){
9157             if(!side){
9158                 return {
9159                     top: parseInt(this.getStyle("margin-top"), 10) || 0,
9160                     left: parseInt(this.getStyle("margin-left"), 10) || 0,
9161                     bottom: parseInt(this.getStyle("margin-bottom"), 10) || 0,
9162                     right: parseInt(this.getStyle("margin-right"), 10) || 0
9163                 };
9164             }else{
9165                 return this.addStyles(side, El.margins);
9166              }
9167         },
9168
9169         // private
9170         addStyles : function(sides, styles){
9171             var val = 0, v, w;
9172             for(var i = 0, len = sides.length; i < len; i++){
9173                 v = this.getStyle(styles[sides.charAt(i)]);
9174                 if(v){
9175                      w = parseInt(v, 10);
9176                      if(w){ val += w; }
9177                 }
9178             }
9179             return val;
9180         },
9181
9182         /**
9183          * Creates a proxy element of this element
9184          * @param {String/Object} config The class name of the proxy element or a DomHelper config object
9185          * @param {String/HTMLElement} renderTo (optional) The element or element id to render the proxy to (defaults to document.body)
9186          * @param {Boolean} matchBox (optional) True to align and size the proxy to this element now (defaults to false)
9187          * @return {Roo.Element} The new proxy element
9188          */
9189         createProxy : function(config, renderTo, matchBox){
9190             if(renderTo){
9191                 renderTo = Roo.getDom(renderTo);
9192             }else{
9193                 renderTo = document.body;
9194             }
9195             config = typeof config == "object" ?
9196                 config : {tag : "div", cls: config};
9197             var proxy = Roo.DomHelper.append(renderTo, config, true);
9198             if(matchBox){
9199                proxy.setBox(this.getBox());
9200             }
9201             return proxy;
9202         },
9203
9204         /**
9205          * Puts a mask over this element to disable user interaction. Requires core.css.
9206          * This method can only be applied to elements which accept child nodes.
9207          * @param {String} msg (optional) A message to display in the mask
9208          * @param {String} msgCls (optional) A css class to apply to the msg element
9209          * @return {Element} The mask  element
9210          */
9211         mask : function(msg, msgCls)
9212         {
9213             if(this.getStyle("position") == "static" && this.dom.tagName !== 'BODY'){
9214                 this.setStyle("position", "relative");
9215             }
9216             if(!this._mask){
9217                 this._mask = Roo.DomHelper.append(this.dom, {cls:"roo-el-mask"}, true);
9218             }
9219             
9220             this.addClass("x-masked");
9221             this._mask.setDisplayed(true);
9222             
9223             // we wander
9224             var z = 0;
9225             var dom = this.dom;
9226             while (dom && dom.style) {
9227                 if (!isNaN(parseInt(dom.style.zIndex))) {
9228                     z = Math.max(z, parseInt(dom.style.zIndex));
9229                 }
9230                 dom = dom.parentNode;
9231             }
9232             // if we are masking the body - then it hides everything..
9233             if (this.dom == document.body) {
9234                 z = 1000000;
9235                 this._mask.setWidth(Roo.lib.Dom.getDocumentWidth());
9236                 this._mask.setHeight(Roo.lib.Dom.getDocumentHeight());
9237             }
9238            
9239             if(typeof msg == 'string'){
9240                 if(!this._maskMsg){
9241                     this._maskMsg = Roo.DomHelper.append(this.dom, {
9242                         cls: "roo-el-mask-msg", 
9243                         cn: [
9244                             {
9245                                 tag: 'i',
9246                                 cls: 'fa fa-spinner fa-spin'
9247                             },
9248                             {
9249                                 tag: 'div'
9250                             }   
9251                         ]
9252                     }, true);
9253                 }
9254                 var mm = this._maskMsg;
9255                 mm.dom.className = msgCls ? "roo-el-mask-msg " + msgCls : "roo-el-mask-msg";
9256                 if (mm.dom.lastChild) { // weird IE issue?
9257                     mm.dom.lastChild.innerHTML = msg;
9258                 }
9259                 mm.setDisplayed(true);
9260                 mm.center(this);
9261                 mm.setStyle('z-index', z + 102);
9262             }
9263             if(Roo.isIE && !(Roo.isIE7 && Roo.isStrict) && this.getStyle('height') == 'auto'){ // ie will not expand full height automatically
9264                 this._mask.setHeight(this.getHeight());
9265             }
9266             this._mask.setStyle('z-index', z + 100);
9267             
9268             return this._mask;
9269         },
9270
9271         /**
9272          * Removes a previously applied mask. If removeEl is true the mask overlay is destroyed, otherwise
9273          * it is cached for reuse.
9274          */
9275         unmask : function(removeEl){
9276             if(this._mask){
9277                 if(removeEl === true){
9278                     this._mask.remove();
9279                     delete this._mask;
9280                     if(this._maskMsg){
9281                         this._maskMsg.remove();
9282                         delete this._maskMsg;
9283                     }
9284                 }else{
9285                     this._mask.setDisplayed(false);
9286                     if(this._maskMsg){
9287                         this._maskMsg.setDisplayed(false);
9288                     }
9289                 }
9290             }
9291             this.removeClass("x-masked");
9292         },
9293
9294         /**
9295          * Returns true if this element is masked
9296          * @return {Boolean}
9297          */
9298         isMasked : function(){
9299             return this._mask && this._mask.isVisible();
9300         },
9301
9302         /**
9303          * Creates an iframe shim for this element to keep selects and other windowed objects from
9304          * showing through.
9305          * @return {Roo.Element} The new shim element
9306          */
9307         createShim : function(){
9308             var el = document.createElement('iframe');
9309             el.frameBorder = 'no';
9310             el.className = 'roo-shim';
9311             if(Roo.isIE && Roo.isSecure){
9312                 el.src = Roo.SSL_SECURE_URL;
9313             }
9314             var shim = Roo.get(this.dom.parentNode.insertBefore(el, this.dom));
9315             shim.autoBoxAdjust = false;
9316             return shim;
9317         },
9318
9319         /**
9320          * Removes this element from the DOM and deletes it from the cache
9321          */
9322         remove : function(){
9323             if(this.dom.parentNode){
9324                 this.dom.parentNode.removeChild(this.dom);
9325             }
9326             delete El.cache[this.dom.id];
9327         },
9328
9329         /**
9330          * Sets up event handlers to add and remove a css class when the mouse is over this element
9331          * @param {String} className
9332          * @param {Boolean} preventFlicker (optional) If set to true, it prevents flickering by filtering
9333          * mouseout events for children elements
9334          * @return {Roo.Element} this
9335          */
9336         addClassOnOver : function(className, preventFlicker){
9337             this.on("mouseover", function(){
9338                 Roo.fly(this, '_internal').addClass(className);
9339             }, this.dom);
9340             var removeFn = function(e){
9341                 if(preventFlicker !== true || !e.within(this, true)){
9342                     Roo.fly(this, '_internal').removeClass(className);
9343                 }
9344             };
9345             this.on("mouseout", removeFn, this.dom);
9346             return this;
9347         },
9348
9349         /**
9350          * Sets up event handlers to add and remove a css class when this element has the focus
9351          * @param {String} className
9352          * @return {Roo.Element} this
9353          */
9354         addClassOnFocus : function(className){
9355             this.on("focus", function(){
9356                 Roo.fly(this, '_internal').addClass(className);
9357             }, this.dom);
9358             this.on("blur", function(){
9359                 Roo.fly(this, '_internal').removeClass(className);
9360             }, this.dom);
9361             return this;
9362         },
9363         /**
9364          * 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)
9365          * @param {String} className
9366          * @return {Roo.Element} this
9367          */
9368         addClassOnClick : function(className){
9369             var dom = this.dom;
9370             this.on("mousedown", function(){
9371                 Roo.fly(dom, '_internal').addClass(className);
9372                 var d = Roo.get(document);
9373                 var fn = function(){
9374                     Roo.fly(dom, '_internal').removeClass(className);
9375                     d.removeListener("mouseup", fn);
9376                 };
9377                 d.on("mouseup", fn);
9378             });
9379             return this;
9380         },
9381
9382         /**
9383          * Stops the specified event from bubbling and optionally prevents the default action
9384          * @param {String} eventName
9385          * @param {Boolean} preventDefault (optional) true to prevent the default action too
9386          * @return {Roo.Element} this
9387          */
9388         swallowEvent : function(eventName, preventDefault){
9389             var fn = function(e){
9390                 e.stopPropagation();
9391                 if(preventDefault){
9392                     e.preventDefault();
9393                 }
9394             };
9395             if(eventName instanceof Array){
9396                 for(var i = 0, len = eventName.length; i < len; i++){
9397                      this.on(eventName[i], fn);
9398                 }
9399                 return this;
9400             }
9401             this.on(eventName, fn);
9402             return this;
9403         },
9404
9405         /**
9406          * @private
9407          */
9408         fitToParentDelegate : Roo.emptyFn, // keep a reference to the fitToParent delegate
9409
9410         /**
9411          * Sizes this element to its parent element's dimensions performing
9412          * neccessary box adjustments.
9413          * @param {Boolean} monitorResize (optional) If true maintains the fit when the browser window is resized.
9414          * @param {String/HTMLElment/Element} targetParent (optional) The target parent, default to the parentNode.
9415          * @return {Roo.Element} this
9416          */
9417         fitToParent : function(monitorResize, targetParent) {
9418           Roo.EventManager.removeResizeListener(this.fitToParentDelegate); // always remove previous fitToParent delegate from onWindowResize
9419           this.fitToParentDelegate = Roo.emptyFn; // remove reference to previous delegate
9420           if (monitorResize === true && !this.dom.parentNode) { // check if this Element still exists
9421             return;
9422           }
9423           var p = Roo.get(targetParent || this.dom.parentNode);
9424           this.setSize(p.getComputedWidth() - p.getFrameWidth('lr'), p.getComputedHeight() - p.getFrameWidth('tb'));
9425           if (monitorResize === true) {
9426             this.fitToParentDelegate = this.fitToParent.createDelegate(this, [true, targetParent]);
9427             Roo.EventManager.onWindowResize(this.fitToParentDelegate);
9428           }
9429           return this;
9430         },
9431
9432         /**
9433          * Gets the next sibling, skipping text nodes
9434          * @return {HTMLElement} The next sibling or null
9435          */
9436         getNextSibling : function(){
9437             var n = this.dom.nextSibling;
9438             while(n && n.nodeType != 1){
9439                 n = n.nextSibling;
9440             }
9441             return n;
9442         },
9443
9444         /**
9445          * Gets the previous sibling, skipping text nodes
9446          * @return {HTMLElement} The previous sibling or null
9447          */
9448         getPrevSibling : function(){
9449             var n = this.dom.previousSibling;
9450             while(n && n.nodeType != 1){
9451                 n = n.previousSibling;
9452             }
9453             return n;
9454         },
9455
9456
9457         /**
9458          * Appends the passed element(s) to this element
9459          * @param {String/HTMLElement/Array/Element/CompositeElement} el
9460          * @return {Roo.Element} this
9461          */
9462         appendChild: function(el){
9463             el = Roo.get(el);
9464             el.appendTo(this);
9465             return this;
9466         },
9467
9468         /**
9469          * Creates the passed DomHelper config and appends it to this element or optionally inserts it before the passed child element.
9470          * @param {Object} config DomHelper element config object.  If no tag is specified (e.g., {tag:'input'}) then a div will be
9471          * automatically generated with the specified attributes.
9472          * @param {HTMLElement} insertBefore (optional) a child element of this element
9473          * @param {Boolean} returnDom (optional) true to return the dom node instead of creating an Element
9474          * @return {Roo.Element} The new child element
9475          */
9476         createChild: function(config, insertBefore, returnDom){
9477             config = config || {tag:'div'};
9478             if(insertBefore){
9479                 return Roo.DomHelper.insertBefore(insertBefore, config, returnDom !== true);
9480             }
9481             return Roo.DomHelper[!this.dom.firstChild ? 'overwrite' : 'append'](this.dom, config,  returnDom !== true);
9482         },
9483
9484         /**
9485          * Appends this element to the passed element
9486          * @param {String/HTMLElement/Element} el The new parent element
9487          * @return {Roo.Element} this
9488          */
9489         appendTo: function(el){
9490             el = Roo.getDom(el);
9491             el.appendChild(this.dom);
9492             return this;
9493         },
9494
9495         /**
9496          * Inserts this element before the passed element in the DOM
9497          * @param {String/HTMLElement/Element} el The element to insert before
9498          * @return {Roo.Element} this
9499          */
9500         insertBefore: function(el){
9501             el = Roo.getDom(el);
9502             el.parentNode.insertBefore(this.dom, el);
9503             return this;
9504         },
9505
9506         /**
9507          * Inserts this element after the passed element in the DOM
9508          * @param {String/HTMLElement/Element} el The element to insert after
9509          * @return {Roo.Element} this
9510          */
9511         insertAfter: function(el){
9512             el = Roo.getDom(el);
9513             el.parentNode.insertBefore(this.dom, el.nextSibling);
9514             return this;
9515         },
9516
9517         /**
9518          * Inserts (or creates) an element (or DomHelper config) as the first child of the this element
9519          * @param {String/HTMLElement/Element/Object} el The id or element to insert or a DomHelper config to create and insert
9520          * @return {Roo.Element} The new child
9521          */
9522         insertFirst: function(el, returnDom){
9523             el = el || {};
9524             if(typeof el == 'object' && !el.nodeType){ // dh config
9525                 return this.createChild(el, this.dom.firstChild, returnDom);
9526             }else{
9527                 el = Roo.getDom(el);
9528                 this.dom.insertBefore(el, this.dom.firstChild);
9529                 return !returnDom ? Roo.get(el) : el;
9530             }
9531         },
9532
9533         /**
9534          * Inserts (or creates) the passed element (or DomHelper config) as a sibling of this element
9535          * @param {String/HTMLElement/Element/Object} el The id or element to insert or a DomHelper config to create and insert
9536          * @param {String} where (optional) 'before' or 'after' defaults to before
9537          * @param {Boolean} returnDom (optional) True to return the raw DOM element instead of Roo.Element
9538          * @return {Roo.Element} the inserted Element
9539          */
9540         insertSibling: function(el, where, returnDom){
9541             where = where ? where.toLowerCase() : 'before';
9542             el = el || {};
9543             var rt, refNode = where == 'before' ? this.dom : this.dom.nextSibling;
9544
9545             if(typeof el == 'object' && !el.nodeType){ // dh config
9546                 if(where == 'after' && !this.dom.nextSibling){
9547                     rt = Roo.DomHelper.append(this.dom.parentNode, el, !returnDom);
9548                 }else{
9549                     rt = Roo.DomHelper[where == 'after' ? 'insertAfter' : 'insertBefore'](this.dom, el, !returnDom);
9550                 }
9551
9552             }else{
9553                 rt = this.dom.parentNode.insertBefore(Roo.getDom(el),
9554                             where == 'before' ? this.dom : this.dom.nextSibling);
9555                 if(!returnDom){
9556                     rt = Roo.get(rt);
9557                 }
9558             }
9559             return rt;
9560         },
9561
9562         /**
9563          * Creates and wraps this element with another element
9564          * @param {Object} config (optional) DomHelper element config object for the wrapper element or null for an empty div
9565          * @param {Boolean} returnDom (optional) True to return the raw DOM element instead of Roo.Element
9566          * @return {HTMLElement/Element} The newly created wrapper element
9567          */
9568         wrap: function(config, returnDom){
9569             if(!config){
9570                 config = {tag: "div"};
9571             }
9572             var newEl = Roo.DomHelper.insertBefore(this.dom, config, !returnDom);
9573             newEl.dom ? newEl.dom.appendChild(this.dom) : newEl.appendChild(this.dom);
9574             return newEl;
9575         },
9576
9577         /**
9578          * Replaces the passed element with this element
9579          * @param {String/HTMLElement/Element} el The element to replace
9580          * @return {Roo.Element} this
9581          */
9582         replace: function(el){
9583             el = Roo.get(el);
9584             this.insertBefore(el);
9585             el.remove();
9586             return this;
9587         },
9588
9589         /**
9590          * Inserts an html fragment into this element
9591          * @param {String} where Where to insert the html in relation to the this element - beforeBegin, afterBegin, beforeEnd, afterEnd.
9592          * @param {String} html The HTML fragment
9593          * @param {Boolean} returnEl True to return an Roo.Element
9594          * @return {HTMLElement/Roo.Element} The inserted node (or nearest related if more than 1 inserted)
9595          */
9596         insertHtml : function(where, html, returnEl){
9597             var el = Roo.DomHelper.insertHtml(where, this.dom, html);
9598             return returnEl ? Roo.get(el) : el;
9599         },
9600
9601         /**
9602          * Sets the passed attributes as attributes of this element (a style attribute can be a string, object or function)
9603          * @param {Object} o The object with the attributes
9604          * @param {Boolean} useSet (optional) false to override the default setAttribute to use expandos.
9605          * @return {Roo.Element} this
9606          */
9607         set : function(o, useSet){
9608             var el = this.dom;
9609             useSet = typeof useSet == 'undefined' ? (el.setAttribute ? true : false) : useSet;
9610             for(var attr in o){
9611                 if(attr == "style" || typeof o[attr] == "function")  { continue; }
9612                 if(attr=="cls"){
9613                     el.className = o["cls"];
9614                 }else{
9615                     if(useSet) {
9616                         el.setAttribute(attr, o[attr]);
9617                     } else {
9618                         el[attr] = o[attr];
9619                     }
9620                 }
9621             }
9622             if(o.style){
9623                 Roo.DomHelper.applyStyles(el, o.style);
9624             }
9625             return this;
9626         },
9627
9628         /**
9629          * Convenience method for constructing a KeyMap
9630          * @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:
9631          *                                  {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
9632          * @param {Function} fn The function to call
9633          * @param {Object} scope (optional) The scope of the function
9634          * @return {Roo.KeyMap} The KeyMap created
9635          */
9636         addKeyListener : function(key, fn, scope){
9637             var config;
9638             if(typeof key != "object" || key instanceof Array){
9639                 config = {
9640                     key: key,
9641                     fn: fn,
9642                     scope: scope
9643                 };
9644             }else{
9645                 config = {
9646                     key : key.key,
9647                     shift : key.shift,
9648                     ctrl : key.ctrl,
9649                     alt : key.alt,
9650                     fn: fn,
9651                     scope: scope
9652                 };
9653             }
9654             return new Roo.KeyMap(this, config);
9655         },
9656
9657         /**
9658          * Creates a KeyMap for this element
9659          * @param {Object} config The KeyMap config. See {@link Roo.KeyMap} for more details
9660          * @return {Roo.KeyMap} The KeyMap created
9661          */
9662         addKeyMap : function(config){
9663             return new Roo.KeyMap(this, config);
9664         },
9665
9666         /**
9667          * Returns true if this element is scrollable.
9668          * @return {Boolean}
9669          */
9670          isScrollable : function(){
9671             var dom = this.dom;
9672             return dom.scrollHeight > dom.clientHeight || dom.scrollWidth > dom.clientWidth;
9673         },
9674
9675         /**
9676          * 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().
9677          * @param {String} side Either "left" for scrollLeft values or "top" for scrollTop values.
9678          * @param {Number} value The new scroll value
9679          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9680          * @return {Element} this
9681          */
9682
9683         scrollTo : function(side, value, animate){
9684             var prop = side.toLowerCase() == "left" ? "scrollLeft" : "scrollTop";
9685             if(!animate || !A){
9686                 this.dom[prop] = value;
9687             }else{
9688                 var to = prop == "scrollLeft" ? [value, this.dom.scrollTop] : [this.dom.scrollLeft, value];
9689                 this.anim({scroll: {"to": to}}, this.preanim(arguments, 2), 'scroll');
9690             }
9691             return this;
9692         },
9693
9694         /**
9695          * Scrolls this element the specified direction. Does bounds checking to make sure the scroll is
9696          * within this element's scrollable range.
9697          * @param {String} direction Possible values are: "l","left" - "r","right" - "t","top","up" - "b","bottom","down".
9698          * @param {Number} distance How far to scroll the element in pixels
9699          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9700          * @return {Boolean} Returns true if a scroll was triggered or false if the element
9701          * was scrolled as far as it could go.
9702          */
9703          scroll : function(direction, distance, animate){
9704              if(!this.isScrollable()){
9705                  return;
9706              }
9707              var el = this.dom;
9708              var l = el.scrollLeft, t = el.scrollTop;
9709              var w = el.scrollWidth, h = el.scrollHeight;
9710              var cw = el.clientWidth, ch = el.clientHeight;
9711              direction = direction.toLowerCase();
9712              var scrolled = false;
9713              var a = this.preanim(arguments, 2);
9714              switch(direction){
9715                  case "l":
9716                  case "left":
9717                      if(w - l > cw){
9718                          var v = Math.min(l + distance, w-cw);
9719                          this.scrollTo("left", v, a);
9720                          scrolled = true;
9721                      }
9722                      break;
9723                 case "r":
9724                 case "right":
9725                      if(l > 0){
9726                          var v = Math.max(l - distance, 0);
9727                          this.scrollTo("left", v, a);
9728                          scrolled = true;
9729                      }
9730                      break;
9731                 case "t":
9732                 case "top":
9733                 case "up":
9734                      if(t > 0){
9735                          var v = Math.max(t - distance, 0);
9736                          this.scrollTo("top", v, a);
9737                          scrolled = true;
9738                      }
9739                      break;
9740                 case "b":
9741                 case "bottom":
9742                 case "down":
9743                      if(h - t > ch){
9744                          var v = Math.min(t + distance, h-ch);
9745                          this.scrollTo("top", v, a);
9746                          scrolled = true;
9747                      }
9748                      break;
9749              }
9750              return scrolled;
9751         },
9752
9753         /**
9754          * Translates the passed page coordinates into left/top css values for this element
9755          * @param {Number/Array} x The page x or an array containing [x, y]
9756          * @param {Number} y The page y
9757          * @return {Object} An object with left and top properties. e.g. {left: (value), top: (value)}
9758          */
9759         translatePoints : function(x, y){
9760             if(typeof x == 'object' || x instanceof Array){
9761                 y = x[1]; x = x[0];
9762             }
9763             var p = this.getStyle('position');
9764             var o = this.getXY();
9765
9766             var l = parseInt(this.getStyle('left'), 10);
9767             var t = parseInt(this.getStyle('top'), 10);
9768
9769             if(isNaN(l)){
9770                 l = (p == "relative") ? 0 : this.dom.offsetLeft;
9771             }
9772             if(isNaN(t)){
9773                 t = (p == "relative") ? 0 : this.dom.offsetTop;
9774             }
9775
9776             return {left: (x - o[0] + l), top: (y - o[1] + t)};
9777         },
9778
9779         /**
9780          * Returns the current scroll position of the element.
9781          * @return {Object} An object containing the scroll position in the format {left: (scrollLeft), top: (scrollTop)}
9782          */
9783         getScroll : function(){
9784             var d = this.dom, doc = document;
9785             if(d == doc || d == doc.body){
9786                 var l = window.pageXOffset || doc.documentElement.scrollLeft || doc.body.scrollLeft || 0;
9787                 var t = window.pageYOffset || doc.documentElement.scrollTop || doc.body.scrollTop || 0;
9788                 return {left: l, top: t};
9789             }else{
9790                 return {left: d.scrollLeft, top: d.scrollTop};
9791             }
9792         },
9793
9794         /**
9795          * Return the CSS color for the specified CSS attribute. rgb, 3 digit (like #fff) and valid values
9796          * are convert to standard 6 digit hex color.
9797          * @param {String} attr The css attribute
9798          * @param {String} defaultValue The default value to use when a valid color isn't found
9799          * @param {String} prefix (optional) defaults to #. Use an empty string when working with
9800          * YUI color anims.
9801          */
9802         getColor : function(attr, defaultValue, prefix){
9803             var v = this.getStyle(attr);
9804             if(!v || v == "transparent" || v == "inherit") {
9805                 return defaultValue;
9806             }
9807             var color = typeof prefix == "undefined" ? "#" : prefix;
9808             if(v.substr(0, 4) == "rgb("){
9809                 var rvs = v.slice(4, v.length -1).split(",");
9810                 for(var i = 0; i < 3; i++){
9811                     var h = parseInt(rvs[i]).toString(16);
9812                     if(h < 16){
9813                         h = "0" + h;
9814                     }
9815                     color += h;
9816                 }
9817             } else {
9818                 if(v.substr(0, 1) == "#"){
9819                     if(v.length == 4) {
9820                         for(var i = 1; i < 4; i++){
9821                             var c = v.charAt(i);
9822                             color +=  c + c;
9823                         }
9824                     }else if(v.length == 7){
9825                         color += v.substr(1);
9826                     }
9827                 }
9828             }
9829             return(color.length > 5 ? color.toLowerCase() : defaultValue);
9830         },
9831
9832         /**
9833          * Wraps the specified element with a special markup/CSS block that renders by default as a gray container with a
9834          * gradient background, rounded corners and a 4-way shadow.
9835          * @param {String} class (optional) A base CSS class to apply to the containing wrapper element (defaults to 'x-box').
9836          * Note that there are a number of CSS rules that are dependent on this name to make the overall effect work,
9837          * so if you supply an alternate base class, make sure you also supply all of the necessary rules.
9838          * @return {Roo.Element} this
9839          */
9840         boxWrap : function(cls){
9841             cls = cls || 'x-box';
9842             var el = Roo.get(this.insertHtml('beforeBegin', String.format('<div class="{0}">'+El.boxMarkup+'</div>', cls)));
9843             el.child('.'+cls+'-mc').dom.appendChild(this.dom);
9844             return el;
9845         },
9846
9847         /**
9848          * Returns the value of a namespaced attribute from the element's underlying DOM node.
9849          * @param {String} namespace The namespace in which to look for the attribute
9850          * @param {String} name The attribute name
9851          * @return {String} The attribute value
9852          */
9853         getAttributeNS : Roo.isIE ? function(ns, name){
9854             var d = this.dom;
9855             var type = typeof d[ns+":"+name];
9856             if(type != 'undefined' && type != 'unknown'){
9857                 return d[ns+":"+name];
9858             }
9859             return d[name];
9860         } : function(ns, name){
9861             var d = this.dom;
9862             return d.getAttributeNS(ns, name) || d.getAttribute(ns+":"+name) || d.getAttribute(name) || d[name];
9863         },
9864         
9865         
9866         /**
9867          * Sets or Returns the value the dom attribute value
9868          * @param {String|Object} name The attribute name (or object to set multiple attributes)
9869          * @param {String} value (optional) The value to set the attribute to
9870          * @return {String} The attribute value
9871          */
9872         attr : function(name){
9873             if (arguments.length > 1) {
9874                 this.dom.setAttribute(name, arguments[1]);
9875                 return arguments[1];
9876             }
9877             if (typeof(name) == 'object') {
9878                 for(var i in name) {
9879                     this.attr(i, name[i]);
9880                 }
9881                 return name;
9882             }
9883             
9884             
9885             if (!this.dom.hasAttribute(name)) {
9886                 return undefined;
9887             }
9888             return this.dom.getAttribute(name);
9889         }
9890         
9891         
9892         
9893     };
9894
9895     var ep = El.prototype;
9896
9897     /**
9898      * Appends an event handler (Shorthand for addListener)
9899      * @param {String}   eventName     The type of event to append
9900      * @param {Function} fn        The method the event invokes
9901      * @param {Object} scope       (optional) The scope (this object) of the fn
9902      * @param {Object}   options   (optional)An object with standard {@link Roo.EventManager#addListener} options
9903      * @method
9904      */
9905     ep.on = ep.addListener;
9906         // backwards compat
9907     ep.mon = ep.addListener;
9908
9909     /**
9910      * Removes an event handler from this element (shorthand for removeListener)
9911      * @param {String} eventName the type of event to remove
9912      * @param {Function} fn the method the event invokes
9913      * @return {Roo.Element} this
9914      * @method
9915      */
9916     ep.un = ep.removeListener;
9917
9918     /**
9919      * true to automatically adjust width and height settings for box-model issues (default to true)
9920      */
9921     ep.autoBoxAdjust = true;
9922
9923     // private
9924     El.unitPattern = /\d+(px|em|%|en|ex|pt|in|cm|mm|pc)$/i;
9925
9926     // private
9927     El.addUnits = function(v, defaultUnit){
9928         if(v === "" || v == "auto"){
9929             return v;
9930         }
9931         if(v === undefined){
9932             return '';
9933         }
9934         if(typeof v == "number" || !El.unitPattern.test(v)){
9935             return v + (defaultUnit || 'px');
9936         }
9937         return v;
9938     };
9939
9940     // special markup used throughout Roo when box wrapping elements
9941     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>';
9942     /**
9943      * Visibility mode constant - Use visibility to hide element
9944      * @static
9945      * @type Number
9946      */
9947     El.VISIBILITY = 1;
9948     /**
9949      * Visibility mode constant - Use display to hide element
9950      * @static
9951      * @type Number
9952      */
9953     El.DISPLAY = 2;
9954
9955     El.borders = {l: "border-left-width", r: "border-right-width", t: "border-top-width", b: "border-bottom-width"};
9956     El.paddings = {l: "padding-left", r: "padding-right", t: "padding-top", b: "padding-bottom"};
9957     El.margins = {l: "margin-left", r: "margin-right", t: "margin-top", b: "margin-bottom"};
9958
9959
9960
9961     /**
9962      * @private
9963      */
9964     El.cache = {};
9965
9966     var docEl;
9967
9968     /**
9969      * Static method to retrieve Element objects. Uses simple caching to consistently return the same object.
9970      * Automatically fixes if an object was recreated with the same id via AJAX or DOM.
9971      * @param {String/HTMLElement/Element} el The id of the node, a DOM Node or an existing Element.
9972      * @return {Element} The Element object
9973      * @static
9974      */
9975     El.get = function(el){
9976         var ex, elm, id;
9977         if(!el){ return null; }
9978         if(typeof el == "string"){ // element id
9979             if(!(elm = document.getElementById(el))){
9980                 return null;
9981             }
9982             if(ex = El.cache[el]){
9983                 ex.dom = elm;
9984             }else{
9985                 ex = El.cache[el] = new El(elm);
9986             }
9987             return ex;
9988         }else if(el.tagName){ // dom element
9989             if(!(id = el.id)){
9990                 id = Roo.id(el);
9991             }
9992             if(ex = El.cache[id]){
9993                 ex.dom = el;
9994             }else{
9995                 ex = El.cache[id] = new El(el);
9996             }
9997             return ex;
9998         }else if(el instanceof El){
9999             if(el != docEl){
10000                 el.dom = document.getElementById(el.id) || el.dom; // refresh dom element in case no longer valid,
10001                                                               // catch case where it hasn't been appended
10002                 El.cache[el.id] = el; // in case it was created directly with Element(), let's cache it
10003             }
10004             return el;
10005         }else if(el.isComposite){
10006             return el;
10007         }else if(el instanceof Array){
10008             return El.select(el);
10009         }else if(el == document){
10010             // create a bogus element object representing the document object
10011             if(!docEl){
10012                 var f = function(){};
10013                 f.prototype = El.prototype;
10014                 docEl = new f();
10015                 docEl.dom = document;
10016             }
10017             return docEl;
10018         }
10019         return null;
10020     };
10021
10022     // private
10023     El.uncache = function(el){
10024         for(var i = 0, a = arguments, len = a.length; i < len; i++) {
10025             if(a[i]){
10026                 delete El.cache[a[i].id || a[i]];
10027             }
10028         }
10029     };
10030
10031     // private
10032     // Garbage collection - uncache elements/purge listeners on orphaned elements
10033     // so we don't hold a reference and cause the browser to retain them
10034     El.garbageCollect = function(){
10035         if(!Roo.enableGarbageCollector){
10036             clearInterval(El.collectorThread);
10037             return;
10038         }
10039         for(var eid in El.cache){
10040             var el = El.cache[eid], d = el.dom;
10041             // -------------------------------------------------------
10042             // Determining what is garbage:
10043             // -------------------------------------------------------
10044             // !d
10045             // dom node is null, definitely garbage
10046             // -------------------------------------------------------
10047             // !d.parentNode
10048             // no parentNode == direct orphan, definitely garbage
10049             // -------------------------------------------------------
10050             // !d.offsetParent && !document.getElementById(eid)
10051             // display none elements have no offsetParent so we will
10052             // also try to look it up by it's id. However, check
10053             // offsetParent first so we don't do unneeded lookups.
10054             // This enables collection of elements that are not orphans
10055             // directly, but somewhere up the line they have an orphan
10056             // parent.
10057             // -------------------------------------------------------
10058             if(!d || !d.parentNode || (!d.offsetParent && !document.getElementById(eid))){
10059                 delete El.cache[eid];
10060                 if(d && Roo.enableListenerCollection){
10061                     E.purgeElement(d);
10062                 }
10063             }
10064         }
10065     }
10066     El.collectorThreadId = setInterval(El.garbageCollect, 30000);
10067
10068
10069     // dom is optional
10070     El.Flyweight = function(dom){
10071         this.dom = dom;
10072     };
10073     El.Flyweight.prototype = El.prototype;
10074
10075     El._flyweights = {};
10076     /**
10077      * Gets the globally shared flyweight Element, with the passed node as the active element. Do not store a reference to this element -
10078      * the dom node can be overwritten by other code.
10079      * @param {String/HTMLElement} el The dom node or id
10080      * @param {String} named (optional) Allows for creation of named reusable flyweights to
10081      *                                  prevent conflicts (e.g. internally Roo uses "_internal")
10082      * @static
10083      * @return {Element} The shared Element object
10084      */
10085     El.fly = function(el, named){
10086         named = named || '_global';
10087         el = Roo.getDom(el);
10088         if(!el){
10089             return null;
10090         }
10091         if(!El._flyweights[named]){
10092             El._flyweights[named] = new El.Flyweight();
10093         }
10094         El._flyweights[named].dom = el;
10095         return El._flyweights[named];
10096     };
10097
10098     /**
10099      * Static method to retrieve Element objects. Uses simple caching to consistently return the same object.
10100      * Automatically fixes if an object was recreated with the same id via AJAX or DOM.
10101      * Shorthand of {@link Roo.Element#get}
10102      * @param {String/HTMLElement/Element} el The id of the node, a DOM Node or an existing Element.
10103      * @return {Element} The Element object
10104      * @member Roo
10105      * @method get
10106      */
10107     Roo.get = El.get;
10108     /**
10109      * Gets the globally shared flyweight Element, with the passed node as the active element. Do not store a reference to this element -
10110      * the dom node can be overwritten by other code.
10111      * Shorthand of {@link Roo.Element#fly}
10112      * @param {String/HTMLElement} el The dom node or id
10113      * @param {String} named (optional) Allows for creation of named reusable flyweights to
10114      *                                  prevent conflicts (e.g. internally Roo uses "_internal")
10115      * @static
10116      * @return {Element} The shared Element object
10117      * @member Roo
10118      * @method fly
10119      */
10120     Roo.fly = El.fly;
10121
10122     // speedy lookup for elements never to box adjust
10123     var noBoxAdjust = Roo.isStrict ? {
10124         select:1
10125     } : {
10126         input:1, select:1, textarea:1
10127     };
10128     if(Roo.isIE || Roo.isGecko){
10129         noBoxAdjust['button'] = 1;
10130     }
10131
10132
10133     Roo.EventManager.on(window, 'unload', function(){
10134         delete El.cache;
10135         delete El._flyweights;
10136     });
10137 })();
10138
10139
10140
10141
10142 if(Roo.DomQuery){
10143     Roo.Element.selectorFunction = Roo.DomQuery.select;
10144 }
10145
10146 Roo.Element.select = function(selector, unique, root){
10147     var els;
10148     if(typeof selector == "string"){
10149         els = Roo.Element.selectorFunction(selector, root);
10150     }else if(selector.length !== undefined){
10151         els = selector;
10152     }else{
10153         throw "Invalid selector";
10154     }
10155     if(unique === true){
10156         return new Roo.CompositeElement(els);
10157     }else{
10158         return new Roo.CompositeElementLite(els);
10159     }
10160 };
10161 /**
10162  * Selects elements based on the passed CSS selector to enable working on them as 1.
10163  * @param {String/Array} selector The CSS selector or an array of elements
10164  * @param {Boolean} unique (optional) true to create a unique Roo.Element for each element (defaults to a shared flyweight object)
10165  * @param {HTMLElement/String} root (optional) The root element of the query or id of the root
10166  * @return {CompositeElementLite/CompositeElement}
10167  * @member Roo
10168  * @method select
10169  */
10170 Roo.select = Roo.Element.select;
10171
10172
10173
10174
10175
10176
10177
10178
10179
10180
10181
10182
10183
10184
10185 /*
10186  * Based on:
10187  * Ext JS Library 1.1.1
10188  * Copyright(c) 2006-2007, Ext JS, LLC.
10189  *
10190  * Originally Released Under LGPL - original licence link has changed is not relivant.
10191  *
10192  * Fork - LGPL
10193  * <script type="text/javascript">
10194  */
10195
10196
10197
10198 //Notifies Element that fx methods are available
10199 Roo.enableFx = true;
10200
10201 /**
10202  * @class Roo.Fx
10203  * <p>A class to provide basic animation and visual effects support.  <b>Note:</b> This class is automatically applied
10204  * to the {@link Roo.Element} interface when included, so all effects calls should be performed via Element.
10205  * Conversely, since the effects are not actually defined in Element, Roo.Fx <b>must</b> be included in order for the 
10206  * Element effects to work.</p><br/>
10207  *
10208  * <p>It is important to note that although the Fx methods and many non-Fx Element methods support "method chaining" in that
10209  * they return the Element object itself as the method return value, it is not always possible to mix the two in a single
10210  * method chain.  The Fx methods use an internal effects queue so that each effect can be properly timed and sequenced.
10211  * Non-Fx methods, on the other hand, have no such internal queueing and will always execute immediately.  For this reason,
10212  * while it may be possible to mix certain Fx and non-Fx method calls in a single chain, it may not always provide the
10213  * expected results and should be done with care.</p><br/>
10214  *
10215  * <p>Motion effects support 8-way anchoring, meaning that you can choose one of 8 different anchor points on the Element
10216  * that will serve as either the start or end point of the animation.  Following are all of the supported anchor positions:</p>
10217 <pre>
10218 Value  Description
10219 -----  -----------------------------
10220 tl     The top left corner
10221 t      The center of the top edge
10222 tr     The top right corner
10223 l      The center of the left edge
10224 r      The center of the right edge
10225 bl     The bottom left corner
10226 b      The center of the bottom edge
10227 br     The bottom right corner
10228 </pre>
10229  * <b>Although some Fx methods accept specific custom config parameters, the ones shown in the Config Options section
10230  * below are common options that can be passed to any Fx method.</b>
10231  * @cfg {Function} callback A function called when the effect is finished
10232  * @cfg {Object} scope The scope of the effect function
10233  * @cfg {String} easing A valid Easing value for the effect
10234  * @cfg {String} afterCls A css class to apply after the effect
10235  * @cfg {Number} duration The length of time (in seconds) that the effect should last
10236  * @cfg {Boolean} remove Whether the Element should be removed from the DOM and destroyed after the effect finishes
10237  * @cfg {Boolean} useDisplay Whether to use the <i>display</i> CSS property instead of <i>visibility</i> when hiding Elements (only applies to 
10238  * effects that end with the element being visually hidden, ignored otherwise)
10239  * @cfg {String/Object/Function} afterStyle A style specification string, e.g. "width:100px", or an object in the form {width:"100px"}, or
10240  * a function which returns such a specification that will be applied to the Element after the effect finishes
10241  * @cfg {Boolean} block Whether the effect should block other effects from queueing while it runs
10242  * @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
10243  * @cfg {Boolean} stopFx Whether subsequent effects should be stopped and removed after the current effect finishes
10244  */
10245 Roo.Fx = {
10246         /**
10247          * Slides the element into view.  An anchor point can be optionally passed to set the point of
10248          * origin for the slide effect.  This function automatically handles wrapping the element with
10249          * a fixed-size container if needed.  See the Fx class overview for valid anchor point options.
10250          * Usage:
10251          *<pre><code>
10252 // default: slide the element in from the top
10253 el.slideIn();
10254
10255 // custom: slide the element in from the right with a 2-second duration
10256 el.slideIn('r', { duration: 2 });
10257
10258 // common config options shown with default values
10259 el.slideIn('t', {
10260     easing: 'easeOut',
10261     duration: .5
10262 });
10263 </code></pre>
10264          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to top: 't')
10265          * @param {Object} options (optional) Object literal with any of the Fx config options
10266          * @return {Roo.Element} The Element
10267          */
10268     slideIn : function(anchor, o){
10269         var el = this.getFxEl();
10270         o = o || {};
10271
10272         el.queueFx(o, function(){
10273
10274             anchor = anchor || "t";
10275
10276             // fix display to visibility
10277             this.fixDisplay();
10278
10279             // restore values after effect
10280             var r = this.getFxRestore();
10281             var b = this.getBox();
10282             // fixed size for slide
10283             this.setSize(b);
10284
10285             // wrap if needed
10286             var wrap = this.fxWrap(r.pos, o, "hidden");
10287
10288             var st = this.dom.style;
10289             st.visibility = "visible";
10290             st.position = "absolute";
10291
10292             // clear out temp styles after slide and unwrap
10293             var after = function(){
10294                 el.fxUnwrap(wrap, r.pos, o);
10295                 st.width = r.width;
10296                 st.height = r.height;
10297                 el.afterFx(o);
10298             };
10299             // time to calc the positions
10300             var a, pt = {to: [b.x, b.y]}, bw = {to: b.width}, bh = {to: b.height};
10301
10302             switch(anchor.toLowerCase()){
10303                 case "t":
10304                     wrap.setSize(b.width, 0);
10305                     st.left = st.bottom = "0";
10306                     a = {height: bh};
10307                 break;
10308                 case "l":
10309                     wrap.setSize(0, b.height);
10310                     st.right = st.top = "0";
10311                     a = {width: bw};
10312                 break;
10313                 case "r":
10314                     wrap.setSize(0, b.height);
10315                     wrap.setX(b.right);
10316                     st.left = st.top = "0";
10317                     a = {width: bw, points: pt};
10318                 break;
10319                 case "b":
10320                     wrap.setSize(b.width, 0);
10321                     wrap.setY(b.bottom);
10322                     st.left = st.top = "0";
10323                     a = {height: bh, points: pt};
10324                 break;
10325                 case "tl":
10326                     wrap.setSize(0, 0);
10327                     st.right = st.bottom = "0";
10328                     a = {width: bw, height: bh};
10329                 break;
10330                 case "bl":
10331                     wrap.setSize(0, 0);
10332                     wrap.setY(b.y+b.height);
10333                     st.right = st.top = "0";
10334                     a = {width: bw, height: bh, points: pt};
10335                 break;
10336                 case "br":
10337                     wrap.setSize(0, 0);
10338                     wrap.setXY([b.right, b.bottom]);
10339                     st.left = st.top = "0";
10340                     a = {width: bw, height: bh, points: pt};
10341                 break;
10342                 case "tr":
10343                     wrap.setSize(0, 0);
10344                     wrap.setX(b.x+b.width);
10345                     st.left = st.bottom = "0";
10346                     a = {width: bw, height: bh, points: pt};
10347                 break;
10348             }
10349             this.dom.style.visibility = "visible";
10350             wrap.show();
10351
10352             arguments.callee.anim = wrap.fxanim(a,
10353                 o,
10354                 'motion',
10355                 .5,
10356                 'easeOut', after);
10357         });
10358         return this;
10359     },
10360     
10361         /**
10362          * Slides the element out of view.  An anchor point can be optionally passed to set the end point
10363          * for the slide effect.  When the effect is completed, the element will be hidden (visibility = 
10364          * 'hidden') but block elements will still take up space in the document.  The element must be removed
10365          * from the DOM using the 'remove' config option if desired.  This function automatically handles 
10366          * wrapping the element with a fixed-size container if needed.  See the Fx class overview for valid anchor point options.
10367          * Usage:
10368          *<pre><code>
10369 // default: slide the element out to the top
10370 el.slideOut();
10371
10372 // custom: slide the element out to the right with a 2-second duration
10373 el.slideOut('r', { duration: 2 });
10374
10375 // common config options shown with default values
10376 el.slideOut('t', {
10377     easing: 'easeOut',
10378     duration: .5,
10379     remove: false,
10380     useDisplay: false
10381 });
10382 </code></pre>
10383          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to top: 't')
10384          * @param {Object} options (optional) Object literal with any of the Fx config options
10385          * @return {Roo.Element} The Element
10386          */
10387     slideOut : function(anchor, o){
10388         var el = this.getFxEl();
10389         o = o || {};
10390
10391         el.queueFx(o, function(){
10392
10393             anchor = anchor || "t";
10394
10395             // restore values after effect
10396             var r = this.getFxRestore();
10397             
10398             var b = this.getBox();
10399             // fixed size for slide
10400             this.setSize(b);
10401
10402             // wrap if needed
10403             var wrap = this.fxWrap(r.pos, o, "visible");
10404
10405             var st = this.dom.style;
10406             st.visibility = "visible";
10407             st.position = "absolute";
10408
10409             wrap.setSize(b);
10410
10411             var after = function(){
10412                 if(o.useDisplay){
10413                     el.setDisplayed(false);
10414                 }else{
10415                     el.hide();
10416                 }
10417
10418                 el.fxUnwrap(wrap, r.pos, o);
10419
10420                 st.width = r.width;
10421                 st.height = r.height;
10422
10423                 el.afterFx(o);
10424             };
10425
10426             var a, zero = {to: 0};
10427             switch(anchor.toLowerCase()){
10428                 case "t":
10429                     st.left = st.bottom = "0";
10430                     a = {height: zero};
10431                 break;
10432                 case "l":
10433                     st.right = st.top = "0";
10434                     a = {width: zero};
10435                 break;
10436                 case "r":
10437                     st.left = st.top = "0";
10438                     a = {width: zero, points: {to:[b.right, b.y]}};
10439                 break;
10440                 case "b":
10441                     st.left = st.top = "0";
10442                     a = {height: zero, points: {to:[b.x, b.bottom]}};
10443                 break;
10444                 case "tl":
10445                     st.right = st.bottom = "0";
10446                     a = {width: zero, height: zero};
10447                 break;
10448                 case "bl":
10449                     st.right = st.top = "0";
10450                     a = {width: zero, height: zero, points: {to:[b.x, b.bottom]}};
10451                 break;
10452                 case "br":
10453                     st.left = st.top = "0";
10454                     a = {width: zero, height: zero, points: {to:[b.x+b.width, b.bottom]}};
10455                 break;
10456                 case "tr":
10457                     st.left = st.bottom = "0";
10458                     a = {width: zero, height: zero, points: {to:[b.right, b.y]}};
10459                 break;
10460             }
10461
10462             arguments.callee.anim = wrap.fxanim(a,
10463                 o,
10464                 'motion',
10465                 .5,
10466                 "easeOut", after);
10467         });
10468         return this;
10469     },
10470
10471         /**
10472          * Fades the element out while slowly expanding it in all directions.  When the effect is completed, the 
10473          * element will be hidden (visibility = 'hidden') but block elements will still take up space in the document. 
10474          * The element must be removed from the DOM using the 'remove' config option if desired.
10475          * Usage:
10476          *<pre><code>
10477 // default
10478 el.puff();
10479
10480 // common config options shown with default values
10481 el.puff({
10482     easing: 'easeOut',
10483     duration: .5,
10484     remove: false,
10485     useDisplay: false
10486 });
10487 </code></pre>
10488          * @param {Object} options (optional) Object literal with any of the Fx config options
10489          * @return {Roo.Element} The Element
10490          */
10491     puff : function(o){
10492         var el = this.getFxEl();
10493         o = o || {};
10494
10495         el.queueFx(o, function(){
10496             this.clearOpacity();
10497             this.show();
10498
10499             // restore values after effect
10500             var r = this.getFxRestore();
10501             var st = this.dom.style;
10502
10503             var after = function(){
10504                 if(o.useDisplay){
10505                     el.setDisplayed(false);
10506                 }else{
10507                     el.hide();
10508                 }
10509
10510                 el.clearOpacity();
10511
10512                 el.setPositioning(r.pos);
10513                 st.width = r.width;
10514                 st.height = r.height;
10515                 st.fontSize = '';
10516                 el.afterFx(o);
10517             };
10518
10519             var width = this.getWidth();
10520             var height = this.getHeight();
10521
10522             arguments.callee.anim = this.fxanim({
10523                     width : {to: this.adjustWidth(width * 2)},
10524                     height : {to: this.adjustHeight(height * 2)},
10525                     points : {by: [-(width * .5), -(height * .5)]},
10526                     opacity : {to: 0},
10527                     fontSize: {to:200, unit: "%"}
10528                 },
10529                 o,
10530                 'motion',
10531                 .5,
10532                 "easeOut", after);
10533         });
10534         return this;
10535     },
10536
10537         /**
10538          * Blinks the element as if it was clicked and then collapses on its center (similar to switching off a television).
10539          * When the effect is completed, the element will be hidden (visibility = 'hidden') but block elements will still 
10540          * take up space in the document. The element must be removed from the DOM using the 'remove' config option if desired.
10541          * Usage:
10542          *<pre><code>
10543 // default
10544 el.switchOff();
10545
10546 // all config options shown with default values
10547 el.switchOff({
10548     easing: 'easeIn',
10549     duration: .3,
10550     remove: false,
10551     useDisplay: false
10552 });
10553 </code></pre>
10554          * @param {Object} options (optional) Object literal with any of the Fx config options
10555          * @return {Roo.Element} The Element
10556          */
10557     switchOff : function(o){
10558         var el = this.getFxEl();
10559         o = o || {};
10560
10561         el.queueFx(o, function(){
10562             this.clearOpacity();
10563             this.clip();
10564
10565             // restore values after effect
10566             var r = this.getFxRestore();
10567             var st = this.dom.style;
10568
10569             var after = function(){
10570                 if(o.useDisplay){
10571                     el.setDisplayed(false);
10572                 }else{
10573                     el.hide();
10574                 }
10575
10576                 el.clearOpacity();
10577                 el.setPositioning(r.pos);
10578                 st.width = r.width;
10579                 st.height = r.height;
10580
10581                 el.afterFx(o);
10582             };
10583
10584             this.fxanim({opacity:{to:0.3}}, null, null, .1, null, function(){
10585                 this.clearOpacity();
10586                 (function(){
10587                     this.fxanim({
10588                         height:{to:1},
10589                         points:{by:[0, this.getHeight() * .5]}
10590                     }, o, 'motion', 0.3, 'easeIn', after);
10591                 }).defer(100, this);
10592             });
10593         });
10594         return this;
10595     },
10596
10597     /**
10598      * Highlights the Element by setting a color (applies to the background-color by default, but can be
10599      * changed using the "attr" config option) and then fading back to the original color. If no original
10600      * color is available, you should provide the "endColor" config option which will be cleared after the animation.
10601      * Usage:
10602 <pre><code>
10603 // default: highlight background to yellow
10604 el.highlight();
10605
10606 // custom: highlight foreground text to blue for 2 seconds
10607 el.highlight("0000ff", { attr: 'color', duration: 2 });
10608
10609 // common config options shown with default values
10610 el.highlight("ffff9c", {
10611     attr: "background-color", //can be any valid CSS property (attribute) that supports a color value
10612     endColor: (current color) or "ffffff",
10613     easing: 'easeIn',
10614     duration: 1
10615 });
10616 </code></pre>
10617      * @param {String} color (optional) The highlight color. Should be a 6 char hex color without the leading # (defaults to yellow: 'ffff9c')
10618      * @param {Object} options (optional) Object literal with any of the Fx config options
10619      * @return {Roo.Element} The Element
10620      */ 
10621     highlight : function(color, o){
10622         var el = this.getFxEl();
10623         o = o || {};
10624
10625         el.queueFx(o, function(){
10626             color = color || "ffff9c";
10627             attr = o.attr || "backgroundColor";
10628
10629             this.clearOpacity();
10630             this.show();
10631
10632             var origColor = this.getColor(attr);
10633             var restoreColor = this.dom.style[attr];
10634             endColor = (o.endColor || origColor) || "ffffff";
10635
10636             var after = function(){
10637                 el.dom.style[attr] = restoreColor;
10638                 el.afterFx(o);
10639             };
10640
10641             var a = {};
10642             a[attr] = {from: color, to: endColor};
10643             arguments.callee.anim = this.fxanim(a,
10644                 o,
10645                 'color',
10646                 1,
10647                 'easeIn', after);
10648         });
10649         return this;
10650     },
10651
10652    /**
10653     * Shows a ripple of exploding, attenuating borders to draw attention to an Element.
10654     * Usage:
10655 <pre><code>
10656 // default: a single light blue ripple
10657 el.frame();
10658
10659 // custom: 3 red ripples lasting 3 seconds total
10660 el.frame("ff0000", 3, { duration: 3 });
10661
10662 // common config options shown with default values
10663 el.frame("C3DAF9", 1, {
10664     duration: 1 //duration of entire animation (not each individual ripple)
10665     // Note: Easing is not configurable and will be ignored if included
10666 });
10667 </code></pre>
10668     * @param {String} color (optional) The color of the border.  Should be a 6 char hex color without the leading # (defaults to light blue: 'C3DAF9').
10669     * @param {Number} count (optional) The number of ripples to display (defaults to 1)
10670     * @param {Object} options (optional) Object literal with any of the Fx config options
10671     * @return {Roo.Element} The Element
10672     */
10673     frame : function(color, count, o){
10674         var el = this.getFxEl();
10675         o = o || {};
10676
10677         el.queueFx(o, function(){
10678             color = color || "#C3DAF9";
10679             if(color.length == 6){
10680                 color = "#" + color;
10681             }
10682             count = count || 1;
10683             duration = o.duration || 1;
10684             this.show();
10685
10686             var b = this.getBox();
10687             var animFn = function(){
10688                 var proxy = this.createProxy({
10689
10690                      style:{
10691                         visbility:"hidden",
10692                         position:"absolute",
10693                         "z-index":"35000", // yee haw
10694                         border:"0px solid " + color
10695                      }
10696                   });
10697                 var scale = Roo.isBorderBox ? 2 : 1;
10698                 proxy.animate({
10699                     top:{from:b.y, to:b.y - 20},
10700                     left:{from:b.x, to:b.x - 20},
10701                     borderWidth:{from:0, to:10},
10702                     opacity:{from:1, to:0},
10703                     height:{from:b.height, to:(b.height + (20*scale))},
10704                     width:{from:b.width, to:(b.width + (20*scale))}
10705                 }, duration, function(){
10706                     proxy.remove();
10707                 });
10708                 if(--count > 0){
10709                      animFn.defer((duration/2)*1000, this);
10710                 }else{
10711                     el.afterFx(o);
10712                 }
10713             };
10714             animFn.call(this);
10715         });
10716         return this;
10717     },
10718
10719    /**
10720     * Creates a pause before any subsequent queued effects begin.  If there are
10721     * no effects queued after the pause it will have no effect.
10722     * Usage:
10723 <pre><code>
10724 el.pause(1);
10725 </code></pre>
10726     * @param {Number} seconds The length of time to pause (in seconds)
10727     * @return {Roo.Element} The Element
10728     */
10729     pause : function(seconds){
10730         var el = this.getFxEl();
10731         var o = {};
10732
10733         el.queueFx(o, function(){
10734             setTimeout(function(){
10735                 el.afterFx(o);
10736             }, seconds * 1000);
10737         });
10738         return this;
10739     },
10740
10741    /**
10742     * Fade an element in (from transparent to opaque).  The ending opacity can be specified
10743     * using the "endOpacity" config option.
10744     * Usage:
10745 <pre><code>
10746 // default: fade in from opacity 0 to 100%
10747 el.fadeIn();
10748
10749 // custom: fade in from opacity 0 to 75% over 2 seconds
10750 el.fadeIn({ endOpacity: .75, duration: 2});
10751
10752 // common config options shown with default values
10753 el.fadeIn({
10754     endOpacity: 1, //can be any value between 0 and 1 (e.g. .5)
10755     easing: 'easeOut',
10756     duration: .5
10757 });
10758 </code></pre>
10759     * @param {Object} options (optional) Object literal with any of the Fx config options
10760     * @return {Roo.Element} The Element
10761     */
10762     fadeIn : function(o){
10763         var el = this.getFxEl();
10764         o = o || {};
10765         el.queueFx(o, function(){
10766             this.setOpacity(0);
10767             this.fixDisplay();
10768             this.dom.style.visibility = 'visible';
10769             var to = o.endOpacity || 1;
10770             arguments.callee.anim = this.fxanim({opacity:{to:to}},
10771                 o, null, .5, "easeOut", function(){
10772                 if(to == 1){
10773                     this.clearOpacity();
10774                 }
10775                 el.afterFx(o);
10776             });
10777         });
10778         return this;
10779     },
10780
10781    /**
10782     * Fade an element out (from opaque to transparent).  The ending opacity can be specified
10783     * using the "endOpacity" config option.
10784     * Usage:
10785 <pre><code>
10786 // default: fade out from the element's current opacity to 0
10787 el.fadeOut();
10788
10789 // custom: fade out from the element's current opacity to 25% over 2 seconds
10790 el.fadeOut({ endOpacity: .25, duration: 2});
10791
10792 // common config options shown with default values
10793 el.fadeOut({
10794     endOpacity: 0, //can be any value between 0 and 1 (e.g. .5)
10795     easing: 'easeOut',
10796     duration: .5
10797     remove: false,
10798     useDisplay: false
10799 });
10800 </code></pre>
10801     * @param {Object} options (optional) Object literal with any of the Fx config options
10802     * @return {Roo.Element} The Element
10803     */
10804     fadeOut : function(o){
10805         var el = this.getFxEl();
10806         o = o || {};
10807         el.queueFx(o, function(){
10808             arguments.callee.anim = this.fxanim({opacity:{to:o.endOpacity || 0}},
10809                 o, null, .5, "easeOut", function(){
10810                 if(this.visibilityMode == Roo.Element.DISPLAY || o.useDisplay){
10811                      this.dom.style.display = "none";
10812                 }else{
10813                      this.dom.style.visibility = "hidden";
10814                 }
10815                 this.clearOpacity();
10816                 el.afterFx(o);
10817             });
10818         });
10819         return this;
10820     },
10821
10822    /**
10823     * Animates the transition of an element's dimensions from a starting height/width
10824     * to an ending height/width.
10825     * Usage:
10826 <pre><code>
10827 // change height and width to 100x100 pixels
10828 el.scale(100, 100);
10829
10830 // common config options shown with default values.  The height and width will default to
10831 // the element's existing values if passed as null.
10832 el.scale(
10833     [element's width],
10834     [element's height], {
10835     easing: 'easeOut',
10836     duration: .35
10837 });
10838 </code></pre>
10839     * @param {Number} width  The new width (pass undefined to keep the original width)
10840     * @param {Number} height  The new height (pass undefined to keep the original height)
10841     * @param {Object} options (optional) Object literal with any of the Fx config options
10842     * @return {Roo.Element} The Element
10843     */
10844     scale : function(w, h, o){
10845         this.shift(Roo.apply({}, o, {
10846             width: w,
10847             height: h
10848         }));
10849         return this;
10850     },
10851
10852    /**
10853     * Animates the transition of any combination of an element's dimensions, xy position and/or opacity.
10854     * Any of these properties not specified in the config object will not be changed.  This effect 
10855     * requires that at least one new dimension, position or opacity setting must be passed in on
10856     * the config object in order for the function to have any effect.
10857     * Usage:
10858 <pre><code>
10859 // slide the element horizontally to x position 200 while changing the height and opacity
10860 el.shift({ x: 200, height: 50, opacity: .8 });
10861
10862 // common config options shown with default values.
10863 el.shift({
10864     width: [element's width],
10865     height: [element's height],
10866     x: [element's x position],
10867     y: [element's y position],
10868     opacity: [element's opacity],
10869     easing: 'easeOut',
10870     duration: .35
10871 });
10872 </code></pre>
10873     * @param {Object} options  Object literal with any of the Fx config options
10874     * @return {Roo.Element} The Element
10875     */
10876     shift : function(o){
10877         var el = this.getFxEl();
10878         o = o || {};
10879         el.queueFx(o, function(){
10880             var a = {}, w = o.width, h = o.height, x = o.x, y = o.y,  op = o.opacity;
10881             if(w !== undefined){
10882                 a.width = {to: this.adjustWidth(w)};
10883             }
10884             if(h !== undefined){
10885                 a.height = {to: this.adjustHeight(h)};
10886             }
10887             if(x !== undefined || y !== undefined){
10888                 a.points = {to: [
10889                     x !== undefined ? x : this.getX(),
10890                     y !== undefined ? y : this.getY()
10891                 ]};
10892             }
10893             if(op !== undefined){
10894                 a.opacity = {to: op};
10895             }
10896             if(o.xy !== undefined){
10897                 a.points = {to: o.xy};
10898             }
10899             arguments.callee.anim = this.fxanim(a,
10900                 o, 'motion', .35, "easeOut", function(){
10901                 el.afterFx(o);
10902             });
10903         });
10904         return this;
10905     },
10906
10907         /**
10908          * Slides the element while fading it out of view.  An anchor point can be optionally passed to set the 
10909          * ending point of the effect.
10910          * Usage:
10911          *<pre><code>
10912 // default: slide the element downward while fading out
10913 el.ghost();
10914
10915 // custom: slide the element out to the right with a 2-second duration
10916 el.ghost('r', { duration: 2 });
10917
10918 // common config options shown with default values
10919 el.ghost('b', {
10920     easing: 'easeOut',
10921     duration: .5
10922     remove: false,
10923     useDisplay: false
10924 });
10925 </code></pre>
10926          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to bottom: 'b')
10927          * @param {Object} options (optional) Object literal with any of the Fx config options
10928          * @return {Roo.Element} The Element
10929          */
10930     ghost : function(anchor, o){
10931         var el = this.getFxEl();
10932         o = o || {};
10933
10934         el.queueFx(o, function(){
10935             anchor = anchor || "b";
10936
10937             // restore values after effect
10938             var r = this.getFxRestore();
10939             var w = this.getWidth(),
10940                 h = this.getHeight();
10941
10942             var st = this.dom.style;
10943
10944             var after = function(){
10945                 if(o.useDisplay){
10946                     el.setDisplayed(false);
10947                 }else{
10948                     el.hide();
10949                 }
10950
10951                 el.clearOpacity();
10952                 el.setPositioning(r.pos);
10953                 st.width = r.width;
10954                 st.height = r.height;
10955
10956                 el.afterFx(o);
10957             };
10958
10959             var a = {opacity: {to: 0}, points: {}}, pt = a.points;
10960             switch(anchor.toLowerCase()){
10961                 case "t":
10962                     pt.by = [0, -h];
10963                 break;
10964                 case "l":
10965                     pt.by = [-w, 0];
10966                 break;
10967                 case "r":
10968                     pt.by = [w, 0];
10969                 break;
10970                 case "b":
10971                     pt.by = [0, h];
10972                 break;
10973                 case "tl":
10974                     pt.by = [-w, -h];
10975                 break;
10976                 case "bl":
10977                     pt.by = [-w, h];
10978                 break;
10979                 case "br":
10980                     pt.by = [w, h];
10981                 break;
10982                 case "tr":
10983                     pt.by = [w, -h];
10984                 break;
10985             }
10986
10987             arguments.callee.anim = this.fxanim(a,
10988                 o,
10989                 'motion',
10990                 .5,
10991                 "easeOut", after);
10992         });
10993         return this;
10994     },
10995
10996         /**
10997          * Ensures that all effects queued after syncFx is called on the element are
10998          * run concurrently.  This is the opposite of {@link #sequenceFx}.
10999          * @return {Roo.Element} The Element
11000          */
11001     syncFx : function(){
11002         this.fxDefaults = Roo.apply(this.fxDefaults || {}, {
11003             block : false,
11004             concurrent : true,
11005             stopFx : false
11006         });
11007         return this;
11008     },
11009
11010         /**
11011          * Ensures that all effects queued after sequenceFx is called on the element are
11012          * run in sequence.  This is the opposite of {@link #syncFx}.
11013          * @return {Roo.Element} The Element
11014          */
11015     sequenceFx : function(){
11016         this.fxDefaults = Roo.apply(this.fxDefaults || {}, {
11017             block : false,
11018             concurrent : false,
11019             stopFx : false
11020         });
11021         return this;
11022     },
11023
11024         /* @private */
11025     nextFx : function(){
11026         var ef = this.fxQueue[0];
11027         if(ef){
11028             ef.call(this);
11029         }
11030     },
11031
11032         /**
11033          * Returns true if the element has any effects actively running or queued, else returns false.
11034          * @return {Boolean} True if element has active effects, else false
11035          */
11036     hasActiveFx : function(){
11037         return this.fxQueue && this.fxQueue[0];
11038     },
11039
11040         /**
11041          * Stops any running effects and clears the element's internal effects queue if it contains
11042          * any additional effects that haven't started yet.
11043          * @return {Roo.Element} The Element
11044          */
11045     stopFx : function(){
11046         if(this.hasActiveFx()){
11047             var cur = this.fxQueue[0];
11048             if(cur && cur.anim && cur.anim.isAnimated()){
11049                 this.fxQueue = [cur]; // clear out others
11050                 cur.anim.stop(true);
11051             }
11052         }
11053         return this;
11054     },
11055
11056         /* @private */
11057     beforeFx : function(o){
11058         if(this.hasActiveFx() && !o.concurrent){
11059            if(o.stopFx){
11060                this.stopFx();
11061                return true;
11062            }
11063            return false;
11064         }
11065         return true;
11066     },
11067
11068         /**
11069          * Returns true if the element is currently blocking so that no other effect can be queued
11070          * until this effect is finished, else returns false if blocking is not set.  This is commonly
11071          * used to ensure that an effect initiated by a user action runs to completion prior to the
11072          * same effect being restarted (e.g., firing only one effect even if the user clicks several times).
11073          * @return {Boolean} True if blocking, else false
11074          */
11075     hasFxBlock : function(){
11076         var q = this.fxQueue;
11077         return q && q[0] && q[0].block;
11078     },
11079
11080         /* @private */
11081     queueFx : function(o, fn){
11082         if(!this.fxQueue){
11083             this.fxQueue = [];
11084         }
11085         if(!this.hasFxBlock()){
11086             Roo.applyIf(o, this.fxDefaults);
11087             if(!o.concurrent){
11088                 var run = this.beforeFx(o);
11089                 fn.block = o.block;
11090                 this.fxQueue.push(fn);
11091                 if(run){
11092                     this.nextFx();
11093                 }
11094             }else{
11095                 fn.call(this);
11096             }
11097         }
11098         return this;
11099     },
11100
11101         /* @private */
11102     fxWrap : function(pos, o, vis){
11103         var wrap;
11104         if(!o.wrap || !(wrap = Roo.get(o.wrap))){
11105             var wrapXY;
11106             if(o.fixPosition){
11107                 wrapXY = this.getXY();
11108             }
11109             var div = document.createElement("div");
11110             div.style.visibility = vis;
11111             wrap = Roo.get(this.dom.parentNode.insertBefore(div, this.dom));
11112             wrap.setPositioning(pos);
11113             if(wrap.getStyle("position") == "static"){
11114                 wrap.position("relative");
11115             }
11116             this.clearPositioning('auto');
11117             wrap.clip();
11118             wrap.dom.appendChild(this.dom);
11119             if(wrapXY){
11120                 wrap.setXY(wrapXY);
11121             }
11122         }
11123         return wrap;
11124     },
11125
11126         /* @private */
11127     fxUnwrap : function(wrap, pos, o){
11128         this.clearPositioning();
11129         this.setPositioning(pos);
11130         if(!o.wrap){
11131             wrap.dom.parentNode.insertBefore(this.dom, wrap.dom);
11132             wrap.remove();
11133         }
11134     },
11135
11136         /* @private */
11137     getFxRestore : function(){
11138         var st = this.dom.style;
11139         return {pos: this.getPositioning(), width: st.width, height : st.height};
11140     },
11141
11142         /* @private */
11143     afterFx : function(o){
11144         if(o.afterStyle){
11145             this.applyStyles(o.afterStyle);
11146         }
11147         if(o.afterCls){
11148             this.addClass(o.afterCls);
11149         }
11150         if(o.remove === true){
11151             this.remove();
11152         }
11153         Roo.callback(o.callback, o.scope, [this]);
11154         if(!o.concurrent){
11155             this.fxQueue.shift();
11156             this.nextFx();
11157         }
11158     },
11159
11160         /* @private */
11161     getFxEl : function(){ // support for composite element fx
11162         return Roo.get(this.dom);
11163     },
11164
11165         /* @private */
11166     fxanim : function(args, opt, animType, defaultDur, defaultEase, cb){
11167         animType = animType || 'run';
11168         opt = opt || {};
11169         var anim = Roo.lib.Anim[animType](
11170             this.dom, args,
11171             (opt.duration || defaultDur) || .35,
11172             (opt.easing || defaultEase) || 'easeOut',
11173             function(){
11174                 Roo.callback(cb, this);
11175             },
11176             this
11177         );
11178         opt.anim = anim;
11179         return anim;
11180     }
11181 };
11182
11183 // backwords compat
11184 Roo.Fx.resize = Roo.Fx.scale;
11185
11186 //When included, Roo.Fx is automatically applied to Element so that all basic
11187 //effects are available directly via the Element API
11188 Roo.apply(Roo.Element.prototype, Roo.Fx);/*
11189  * Based on:
11190  * Ext JS Library 1.1.1
11191  * Copyright(c) 2006-2007, Ext JS, LLC.
11192  *
11193  * Originally Released Under LGPL - original licence link has changed is not relivant.
11194  *
11195  * Fork - LGPL
11196  * <script type="text/javascript">
11197  */
11198
11199
11200 /**
11201  * @class Roo.CompositeElement
11202  * Standard composite class. Creates a Roo.Element for every element in the collection.
11203  * <br><br>
11204  * <b>NOTE: Although they are not listed, this class supports all of the set/update methods of Roo.Element. All Roo.Element
11205  * actions will be performed on all the elements in this collection.</b>
11206  * <br><br>
11207  * All methods return <i>this</i> and can be chained.
11208  <pre><code>
11209  var els = Roo.select("#some-el div.some-class", true);
11210  // or select directly from an existing element
11211  var el = Roo.get('some-el');
11212  el.select('div.some-class', true);
11213
11214  els.setWidth(100); // all elements become 100 width
11215  els.hide(true); // all elements fade out and hide
11216  // or
11217  els.setWidth(100).hide(true);
11218  </code></pre>
11219  */
11220 Roo.CompositeElement = function(els){
11221     this.elements = [];
11222     this.addElements(els);
11223 };
11224 Roo.CompositeElement.prototype = {
11225     isComposite: true,
11226     addElements : function(els){
11227         if(!els) {
11228             return this;
11229         }
11230         if(typeof els == "string"){
11231             els = Roo.Element.selectorFunction(els);
11232         }
11233         var yels = this.elements;
11234         var index = yels.length-1;
11235         for(var i = 0, len = els.length; i < len; i++) {
11236                 yels[++index] = Roo.get(els[i]);
11237         }
11238         return this;
11239     },
11240
11241     /**
11242     * Clears this composite and adds the elements returned by the passed selector.
11243     * @param {String/Array} els A string CSS selector, an array of elements or an element
11244     * @return {CompositeElement} this
11245     */
11246     fill : function(els){
11247         this.elements = [];
11248         this.add(els);
11249         return this;
11250     },
11251
11252     /**
11253     * Filters this composite to only elements that match the passed selector.
11254     * @param {String} selector A string CSS selector
11255     * @param {Boolean} inverse return inverse filter (not matches)
11256     * @return {CompositeElement} this
11257     */
11258     filter : function(selector, inverse){
11259         var els = [];
11260         inverse = inverse || false;
11261         this.each(function(el){
11262             var match = inverse ? !el.is(selector) : el.is(selector);
11263             if(match){
11264                 els[els.length] = el.dom;
11265             }
11266         });
11267         this.fill(els);
11268         return this;
11269     },
11270
11271     invoke : function(fn, args){
11272         var els = this.elements;
11273         for(var i = 0, len = els.length; i < len; i++) {
11274                 Roo.Element.prototype[fn].apply(els[i], args);
11275         }
11276         return this;
11277     },
11278     /**
11279     * Adds elements to this composite.
11280     * @param {String/Array} els A string CSS selector, an array of elements or an element
11281     * @return {CompositeElement} this
11282     */
11283     add : function(els){
11284         if(typeof els == "string"){
11285             this.addElements(Roo.Element.selectorFunction(els));
11286         }else if(els.length !== undefined){
11287             this.addElements(els);
11288         }else{
11289             this.addElements([els]);
11290         }
11291         return this;
11292     },
11293     /**
11294     * Calls the passed function passing (el, this, index) for each element in this composite.
11295     * @param {Function} fn The function to call
11296     * @param {Object} scope (optional) The <i>this</i> object (defaults to the element)
11297     * @return {CompositeElement} this
11298     */
11299     each : function(fn, scope){
11300         var els = this.elements;
11301         for(var i = 0, len = els.length; i < len; i++){
11302             if(fn.call(scope || els[i], els[i], this, i) === false) {
11303                 break;
11304             }
11305         }
11306         return this;
11307     },
11308
11309     /**
11310      * Returns the Element object at the specified index
11311      * @param {Number} index
11312      * @return {Roo.Element}
11313      */
11314     item : function(index){
11315         return this.elements[index] || null;
11316     },
11317
11318     /**
11319      * Returns the first Element
11320      * @return {Roo.Element}
11321      */
11322     first : function(){
11323         return this.item(0);
11324     },
11325
11326     /**
11327      * Returns the last Element
11328      * @return {Roo.Element}
11329      */
11330     last : function(){
11331         return this.item(this.elements.length-1);
11332     },
11333
11334     /**
11335      * Returns the number of elements in this composite
11336      * @return Number
11337      */
11338     getCount : function(){
11339         return this.elements.length;
11340     },
11341
11342     /**
11343      * Returns true if this composite contains the passed element
11344      * @return Boolean
11345      */
11346     contains : function(el){
11347         return this.indexOf(el) !== -1;
11348     },
11349
11350     /**
11351      * Returns true if this composite contains the passed element
11352      * @return Boolean
11353      */
11354     indexOf : function(el){
11355         return this.elements.indexOf(Roo.get(el));
11356     },
11357
11358
11359     /**
11360     * Removes the specified element(s).
11361     * @param {Mixed} el The id of an element, the Element itself, the index of the element in this composite
11362     * or an array of any of those.
11363     * @param {Boolean} removeDom (optional) True to also remove the element from the document
11364     * @return {CompositeElement} this
11365     */
11366     removeElement : function(el, removeDom){
11367         if(el instanceof Array){
11368             for(var i = 0, len = el.length; i < len; i++){
11369                 this.removeElement(el[i]);
11370             }
11371             return this;
11372         }
11373         var index = typeof el == 'number' ? el : this.indexOf(el);
11374         if(index !== -1){
11375             if(removeDom){
11376                 var d = this.elements[index];
11377                 if(d.dom){
11378                     d.remove();
11379                 }else{
11380                     d.parentNode.removeChild(d);
11381                 }
11382             }
11383             this.elements.splice(index, 1);
11384         }
11385         return this;
11386     },
11387
11388     /**
11389     * Replaces the specified element with the passed element.
11390     * @param {String/HTMLElement/Element/Number} el The id of an element, the Element itself, the index of the element in this composite
11391     * to replace.
11392     * @param {String/HTMLElement/Element} replacement The id of an element or the Element itself.
11393     * @param {Boolean} domReplace (Optional) True to remove and replace the element in the document too.
11394     * @return {CompositeElement} this
11395     */
11396     replaceElement : function(el, replacement, domReplace){
11397         var index = typeof el == 'number' ? el : this.indexOf(el);
11398         if(index !== -1){
11399             if(domReplace){
11400                 this.elements[index].replaceWith(replacement);
11401             }else{
11402                 this.elements.splice(index, 1, Roo.get(replacement))
11403             }
11404         }
11405         return this;
11406     },
11407
11408     /**
11409      * Removes all elements.
11410      */
11411     clear : function(){
11412         this.elements = [];
11413     }
11414 };
11415 (function(){
11416     Roo.CompositeElement.createCall = function(proto, fnName){
11417         if(!proto[fnName]){
11418             proto[fnName] = function(){
11419                 return this.invoke(fnName, arguments);
11420             };
11421         }
11422     };
11423     for(var fnName in Roo.Element.prototype){
11424         if(typeof Roo.Element.prototype[fnName] == "function"){
11425             Roo.CompositeElement.createCall(Roo.CompositeElement.prototype, fnName);
11426         }
11427     };
11428 })();
11429 /*
11430  * Based on:
11431  * Ext JS Library 1.1.1
11432  * Copyright(c) 2006-2007, Ext JS, LLC.
11433  *
11434  * Originally Released Under LGPL - original licence link has changed is not relivant.
11435  *
11436  * Fork - LGPL
11437  * <script type="text/javascript">
11438  */
11439
11440 /**
11441  * @class Roo.CompositeElementLite
11442  * @extends Roo.CompositeElement
11443  * Flyweight composite class. Reuses the same Roo.Element for element operations.
11444  <pre><code>
11445  var els = Roo.select("#some-el div.some-class");
11446  // or select directly from an existing element
11447  var el = Roo.get('some-el');
11448  el.select('div.some-class');
11449
11450  els.setWidth(100); // all elements become 100 width
11451  els.hide(true); // all elements fade out and hide
11452  // or
11453  els.setWidth(100).hide(true);
11454  </code></pre><br><br>
11455  * <b>NOTE: Although they are not listed, this class supports all of the set/update methods of Roo.Element. All Roo.Element
11456  * actions will be performed on all the elements in this collection.</b>
11457  */
11458 Roo.CompositeElementLite = function(els){
11459     Roo.CompositeElementLite.superclass.constructor.call(this, els);
11460     this.el = new Roo.Element.Flyweight();
11461 };
11462 Roo.extend(Roo.CompositeElementLite, Roo.CompositeElement, {
11463     addElements : function(els){
11464         if(els){
11465             if(els instanceof Array){
11466                 this.elements = this.elements.concat(els);
11467             }else{
11468                 var yels = this.elements;
11469                 var index = yels.length-1;
11470                 for(var i = 0, len = els.length; i < len; i++) {
11471                     yels[++index] = els[i];
11472                 }
11473             }
11474         }
11475         return this;
11476     },
11477     invoke : function(fn, args){
11478         var els = this.elements;
11479         var el = this.el;
11480         for(var i = 0, len = els.length; i < len; i++) {
11481             el.dom = els[i];
11482                 Roo.Element.prototype[fn].apply(el, args);
11483         }
11484         return this;
11485     },
11486     /**
11487      * Returns a flyweight Element of the dom element object at the specified index
11488      * @param {Number} index
11489      * @return {Roo.Element}
11490      */
11491     item : function(index){
11492         if(!this.elements[index]){
11493             return null;
11494         }
11495         this.el.dom = this.elements[index];
11496         return this.el;
11497     },
11498
11499     // fixes scope with flyweight
11500     addListener : function(eventName, handler, scope, opt){
11501         var els = this.elements;
11502         for(var i = 0, len = els.length; i < len; i++) {
11503             Roo.EventManager.on(els[i], eventName, handler, scope || els[i], opt);
11504         }
11505         return this;
11506     },
11507
11508     /**
11509     * Calls the passed function passing (el, this, index) for each element in this composite. <b>The element
11510     * passed is the flyweight (shared) Roo.Element instance, so if you require a
11511     * a reference to the dom node, use el.dom.</b>
11512     * @param {Function} fn The function to call
11513     * @param {Object} scope (optional) The <i>this</i> object (defaults to the element)
11514     * @return {CompositeElement} this
11515     */
11516     each : function(fn, scope){
11517         var els = this.elements;
11518         var el = this.el;
11519         for(var i = 0, len = els.length; i < len; i++){
11520             el.dom = els[i];
11521                 if(fn.call(scope || el, el, this, i) === false){
11522                 break;
11523             }
11524         }
11525         return this;
11526     },
11527
11528     indexOf : function(el){
11529         return this.elements.indexOf(Roo.getDom(el));
11530     },
11531
11532     replaceElement : function(el, replacement, domReplace){
11533         var index = typeof el == 'number' ? el : this.indexOf(el);
11534         if(index !== -1){
11535             replacement = Roo.getDom(replacement);
11536             if(domReplace){
11537                 var d = this.elements[index];
11538                 d.parentNode.insertBefore(replacement, d);
11539                 d.parentNode.removeChild(d);
11540             }
11541             this.elements.splice(index, 1, replacement);
11542         }
11543         return this;
11544     }
11545 });
11546 Roo.CompositeElementLite.prototype.on = Roo.CompositeElementLite.prototype.addListener;
11547
11548 /*
11549  * Based on:
11550  * Ext JS Library 1.1.1
11551  * Copyright(c) 2006-2007, Ext JS, LLC.
11552  *
11553  * Originally Released Under LGPL - original licence link has changed is not relivant.
11554  *
11555  * Fork - LGPL
11556  * <script type="text/javascript">
11557  */
11558
11559  
11560
11561 /**
11562  * @class Roo.data.Connection
11563  * @extends Roo.util.Observable
11564  * The class encapsulates a connection to the page's originating domain, allowing requests to be made
11565  * either to a configured URL, or to a URL specified at request time. 
11566  * 
11567  * Requests made by this class are asynchronous, and will return immediately. No data from
11568  * the server will be available to the statement immediately following the {@link #request} call.
11569  * To process returned data, use a callback in the request options object, or an event listener.
11570  * 
11571  * Note: If you are doing a file upload, you will not get a normal response object sent back to
11572  * your callback or event handler.  Since the upload is handled via in IFRAME, there is no XMLHttpRequest.
11573  * The response object is created using the innerHTML of the IFRAME's document as the responseText
11574  * property and, if present, the IFRAME's XML document as the responseXML property.
11575  * 
11576  * This means that a valid XML or HTML document must be returned. If JSON data is required, it is suggested
11577  * that it be placed either inside a &lt;textarea> in an HTML document and retrieved from the responseText
11578  * using a regex, or inside a CDATA section in an XML document and retrieved from the responseXML using
11579  * standard DOM methods.
11580  * @constructor
11581  * @param {Object} config a configuration object.
11582  */
11583 Roo.data.Connection = function(config){
11584     Roo.apply(this, config);
11585     this.addEvents({
11586         /**
11587          * @event beforerequest
11588          * Fires before a network request is made to retrieve a data object.
11589          * @param {Connection} conn This Connection object.
11590          * @param {Object} options The options config object passed to the {@link #request} method.
11591          */
11592         "beforerequest" : true,
11593         /**
11594          * @event requestcomplete
11595          * Fires if the request was successfully completed.
11596          * @param {Connection} conn This Connection object.
11597          * @param {Object} response The XHR object containing the response data.
11598          * See {@link http://www.w3.org/TR/XMLHttpRequest/} for details.
11599          * @param {Object} options The options config object passed to the {@link #request} method.
11600          */
11601         "requestcomplete" : true,
11602         /**
11603          * @event requestexception
11604          * Fires if an error HTTP status was returned from the server.
11605          * See {@link http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html} for details of HTTP status codes.
11606          * @param {Connection} conn This Connection object.
11607          * @param {Object} response The XHR object containing the response data.
11608          * See {@link http://www.w3.org/TR/XMLHttpRequest/} for details.
11609          * @param {Object} options The options config object passed to the {@link #request} method.
11610          */
11611         "requestexception" : true
11612     });
11613     Roo.data.Connection.superclass.constructor.call(this);
11614 };
11615
11616 Roo.extend(Roo.data.Connection, Roo.util.Observable, {
11617     /**
11618      * @cfg {String} url (Optional) The default URL to be used for requests to the server. (defaults to undefined)
11619      */
11620     /**
11621      * @cfg {Object} extraParams (Optional) An object containing properties which are used as
11622      * extra parameters to each request made by this object. (defaults to undefined)
11623      */
11624     /**
11625      * @cfg {Object} defaultHeaders (Optional) An object containing request headers which are added
11626      *  to each request made by this object. (defaults to undefined)
11627      */
11628     /**
11629      * @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)
11630      */
11631     /**
11632      * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
11633      */
11634     timeout : 30000,
11635     /**
11636      * @cfg {Boolean} autoAbort (Optional) Whether this request should abort any pending requests. (defaults to false)
11637      * @type Boolean
11638      */
11639     autoAbort:false,
11640
11641     /**
11642      * @cfg {Boolean} disableCaching (Optional) True to add a unique cache-buster param to GET requests. (defaults to true)
11643      * @type Boolean
11644      */
11645     disableCaching: true,
11646
11647     /**
11648      * Sends an HTTP request to a remote server.
11649      * @param {Object} options An object which may contain the following properties:<ul>
11650      * <li><b>url</b> {String} (Optional) The URL to which to send the request. Defaults to configured URL</li>
11651      * <li><b>params</b> {Object/String/Function} (Optional) An object containing properties which are used as parameters to the
11652      * request, a url encoded string or a function to call to get either.</li>
11653      * <li><b>method</b> {String} (Optional) The HTTP method to use for the request. Defaults to the configured method, or
11654      * if no method was configured, "GET" if no parameters are being sent, and "POST" if parameters are being sent.</li>
11655      * <li><b>callback</b> {Function} (Optional) The function to be called upon receipt of the HTTP response.
11656      * The callback is called regardless of success or failure and is passed the following parameters:<ul>
11657      * <li>options {Object} The parameter to the request call.</li>
11658      * <li>success {Boolean} True if the request succeeded.</li>
11659      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
11660      * </ul></li>
11661      * <li><b>success</b> {Function} (Optional) The function to be called upon success of the request.
11662      * The callback is passed the following parameters:<ul>
11663      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
11664      * <li>options {Object} The parameter to the request call.</li>
11665      * </ul></li>
11666      * <li><b>failure</b> {Function} (Optional) The function to be called upon failure of the request.
11667      * The callback is passed the following parameters:<ul>
11668      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
11669      * <li>options {Object} The parameter to the request call.</li>
11670      * </ul></li>
11671      * <li><b>scope</b> {Object} (Optional) The scope in which to execute the callbacks: The "this" object
11672      * for the callback function. Defaults to the browser window.</li>
11673      * <li><b>form</b> {Object/String} (Optional) A form object or id to pull parameters from.</li>
11674      * <li><b>isUpload</b> {Boolean} (Optional) True if the form object is a file upload (will usually be automatically detected).</li>
11675      * <li><b>headers</b> {Object} (Optional) Request headers to set for the request.</li>
11676      * <li><b>xmlData</b> {Object} (Optional) XML document to use for the post. Note: This will be used instead of
11677      * params for the post data. Any params will be appended to the URL.</li>
11678      * <li><b>disableCaching</b> {Boolean} (Optional) True to add a unique cache-buster param to GET requests.</li>
11679      * </ul>
11680      * @return {Number} transactionId
11681      */
11682     request : function(o){
11683         if(this.fireEvent("beforerequest", this, o) !== false){
11684             var p = o.params;
11685
11686             if(typeof p == "function"){
11687                 p = p.call(o.scope||window, o);
11688             }
11689             if(typeof p == "object"){
11690                 p = Roo.urlEncode(o.params);
11691             }
11692             if(this.extraParams){
11693                 var extras = Roo.urlEncode(this.extraParams);
11694                 p = p ? (p + '&' + extras) : extras;
11695             }
11696
11697             var url = o.url || this.url;
11698             if(typeof url == 'function'){
11699                 url = url.call(o.scope||window, o);
11700             }
11701
11702             if(o.form){
11703                 var form = Roo.getDom(o.form);
11704                 url = url || form.action;
11705
11706                 var enctype = form.getAttribute("enctype");
11707                 
11708                 if (o.formData) {
11709                     return this.doFormDataUpload(o, url);
11710                 }
11711                 
11712                 if(o.isUpload || (enctype && enctype.toLowerCase() == 'multipart/form-data')){
11713                     return this.doFormUpload(o, p, url);
11714                 }
11715                 var f = Roo.lib.Ajax.serializeForm(form);
11716                 p = p ? (p + '&' + f) : f;
11717             }
11718             
11719             if (!o.form && o.formData) {
11720                 o.formData = o.formData === true ? new FormData() : o.formData;
11721                 for (var k in o.params) {
11722                     o.formData.append(k,o.params[k]);
11723                 }
11724                     
11725                 return this.doFormDataUpload(o, url);
11726             }
11727             
11728
11729             var hs = o.headers;
11730             if(this.defaultHeaders){
11731                 hs = Roo.apply(hs || {}, this.defaultHeaders);
11732                 if(!o.headers){
11733                     o.headers = hs;
11734                 }
11735             }
11736
11737             var cb = {
11738                 success: this.handleResponse,
11739                 failure: this.handleFailure,
11740                 scope: this,
11741                 argument: {options: o},
11742                 timeout : o.timeout || this.timeout
11743             };
11744
11745             var method = o.method||this.method||(p ? "POST" : "GET");
11746
11747             if(method == 'GET' && (this.disableCaching && o.disableCaching !== false) || o.disableCaching === true){
11748                 url += (url.indexOf('?') != -1 ? '&' : '?') + '_dc=' + (new Date().getTime());
11749             }
11750
11751             if(typeof o.autoAbort == 'boolean'){ // options gets top priority
11752                 if(o.autoAbort){
11753                     this.abort();
11754                 }
11755             }else if(this.autoAbort !== false){
11756                 this.abort();
11757             }
11758
11759             if((method == 'GET' && p) || o.xmlData){
11760                 url += (url.indexOf('?') != -1 ? '&' : '?') + p;
11761                 p = '';
11762             }
11763             Roo.lib.Ajax.useDefaultHeader = typeof(o.headers) == 'undefined' || typeof(o.headers['Content-Type']) == 'undefined';
11764             this.transId = Roo.lib.Ajax.request(method, url, cb, p, o);
11765             Roo.lib.Ajax.useDefaultHeader == true;
11766             return this.transId;
11767         }else{
11768             Roo.callback(o.callback, o.scope, [o, null, null]);
11769             return null;
11770         }
11771     },
11772
11773     /**
11774      * Determine whether this object has a request outstanding.
11775      * @param {Number} transactionId (Optional) defaults to the last transaction
11776      * @return {Boolean} True if there is an outstanding request.
11777      */
11778     isLoading : function(transId){
11779         if(transId){
11780             return Roo.lib.Ajax.isCallInProgress(transId);
11781         }else{
11782             return this.transId ? true : false;
11783         }
11784     },
11785
11786     /**
11787      * Aborts any outstanding request.
11788      * @param {Number} transactionId (Optional) defaults to the last transaction
11789      */
11790     abort : function(transId){
11791         if(transId || this.isLoading()){
11792             Roo.lib.Ajax.abort(transId || this.transId);
11793         }
11794     },
11795
11796     // private
11797     handleResponse : function(response){
11798         this.transId = false;
11799         var options = response.argument.options;
11800         response.argument = options ? options.argument : null;
11801         this.fireEvent("requestcomplete", this, response, options);
11802         Roo.callback(options.success, options.scope, [response, options]);
11803         Roo.callback(options.callback, options.scope, [options, true, response]);
11804     },
11805
11806     // private
11807     handleFailure : function(response, e){
11808         this.transId = false;
11809         var options = response.argument.options;
11810         response.argument = options ? options.argument : null;
11811         this.fireEvent("requestexception", this, response, options, e);
11812         Roo.callback(options.failure, options.scope, [response, options]);
11813         Roo.callback(options.callback, options.scope, [options, false, response]);
11814     },
11815
11816     // private
11817     doFormUpload : function(o, ps, url){
11818         var id = Roo.id();
11819         var frame = document.createElement('iframe');
11820         frame.id = id;
11821         frame.name = id;
11822         frame.className = 'x-hidden';
11823         if(Roo.isIE){
11824             frame.src = Roo.SSL_SECURE_URL;
11825         }
11826         document.body.appendChild(frame);
11827
11828         if(Roo.isIE){
11829            document.frames[id].name = id;
11830         }
11831
11832         var form = Roo.getDom(o.form);
11833         form.target = id;
11834         form.method = 'POST';
11835         form.enctype = form.encoding = 'multipart/form-data';
11836         if(url){
11837             form.action = url;
11838         }
11839
11840         var hiddens, hd;
11841         if(ps){ // add dynamic params
11842             hiddens = [];
11843             ps = Roo.urlDecode(ps, false);
11844             for(var k in ps){
11845                 if(ps.hasOwnProperty(k)){
11846                     hd = document.createElement('input');
11847                     hd.type = 'hidden';
11848                     hd.name = k;
11849                     hd.value = ps[k];
11850                     form.appendChild(hd);
11851                     hiddens.push(hd);
11852                 }
11853             }
11854         }
11855
11856         function cb(){
11857             var r = {  // bogus response object
11858                 responseText : '',
11859                 responseXML : null
11860             };
11861
11862             r.argument = o ? o.argument : null;
11863
11864             try { //
11865                 var doc;
11866                 if(Roo.isIE){
11867                     doc = frame.contentWindow.document;
11868                 }else {
11869                     doc = (frame.contentDocument || window.frames[id].document);
11870                 }
11871                 if(doc && doc.body){
11872                     r.responseText = doc.body.innerHTML;
11873                 }
11874                 if(doc && doc.XMLDocument){
11875                     r.responseXML = doc.XMLDocument;
11876                 }else {
11877                     r.responseXML = doc;
11878                 }
11879             }
11880             catch(e) {
11881                 // ignore
11882             }
11883
11884             Roo.EventManager.removeListener(frame, 'load', cb, this);
11885
11886             this.fireEvent("requestcomplete", this, r, o);
11887             Roo.callback(o.success, o.scope, [r, o]);
11888             Roo.callback(o.callback, o.scope, [o, true, r]);
11889
11890             setTimeout(function(){document.body.removeChild(frame);}, 100);
11891         }
11892
11893         Roo.EventManager.on(frame, 'load', cb, this);
11894         form.submit();
11895
11896         if(hiddens){ // remove dynamic params
11897             for(var i = 0, len = hiddens.length; i < len; i++){
11898                 form.removeChild(hiddens[i]);
11899             }
11900         }
11901     },
11902     // this is a 'formdata version???'
11903     
11904     
11905     doFormDataUpload : function(o,  url)
11906     {
11907         var formData;
11908         if (o.form) {
11909             var form =  Roo.getDom(o.form);
11910             form.enctype = form.encoding = 'multipart/form-data';
11911             formData = o.formData === true ? new FormData(form) : o.formData;
11912         } else {
11913             formData = o.formData === true ? new FormData() : o.formData;
11914         }
11915         
11916       
11917         var cb = {
11918             success: this.handleResponse,
11919             failure: this.handleFailure,
11920             scope: this,
11921             argument: {options: o},
11922             timeout : o.timeout || this.timeout
11923         };
11924  
11925         if(typeof o.autoAbort == 'boolean'){ // options gets top priority
11926             if(o.autoAbort){
11927                 this.abort();
11928             }
11929         }else if(this.autoAbort !== false){
11930             this.abort();
11931         }
11932
11933         //Roo.lib.Ajax.defaultPostHeader = null;
11934         Roo.lib.Ajax.useDefaultHeader = false;
11935         this.transId = Roo.lib.Ajax.request( "POST", url, cb,  formData, o);
11936         Roo.lib.Ajax.useDefaultHeader = true;
11937  
11938          
11939     }
11940     
11941 });
11942 /*
11943  * Based on:
11944  * Ext JS Library 1.1.1
11945  * Copyright(c) 2006-2007, Ext JS, LLC.
11946  *
11947  * Originally Released Under LGPL - original licence link has changed is not relivant.
11948  *
11949  * Fork - LGPL
11950  * <script type="text/javascript">
11951  */
11952  
11953 /**
11954  * Global Ajax request class.
11955  * 
11956  * @class Roo.Ajax
11957  * @extends Roo.data.Connection
11958  * @static
11959  * 
11960  * @cfg {String} url  The default URL to be used for requests to the server. (defaults to undefined)
11961  * @cfg {Object} extraParams  An object containing properties which are used as extra parameters to each request made by this object. (defaults to undefined)
11962  * @cfg {Object} defaultHeaders  An object containing request headers which are added to each request made by this object. (defaults to undefined)
11963  * @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)
11964  * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
11965  * @cfg {Boolean} autoAbort (Optional) Whether a new request should abort any pending requests. (defaults to false)
11966  * @cfg {Boolean} disableCaching (Optional)   True to add a unique cache-buster param to GET requests. (defaults to true)
11967  */
11968 Roo.Ajax = new Roo.data.Connection({
11969     // fix up the docs
11970     /**
11971      * @scope Roo.Ajax
11972      * @type {Boolear} 
11973      */
11974     autoAbort : false,
11975
11976     /**
11977      * Serialize the passed form into a url encoded string
11978      * @scope Roo.Ajax
11979      * @param {String/HTMLElement} form
11980      * @return {String}
11981      */
11982     serializeForm : function(form){
11983         return Roo.lib.Ajax.serializeForm(form);
11984     }
11985 });/*
11986  * Based on:
11987  * Ext JS Library 1.1.1
11988  * Copyright(c) 2006-2007, Ext JS, LLC.
11989  *
11990  * Originally Released Under LGPL - original licence link has changed is not relivant.
11991  *
11992  * Fork - LGPL
11993  * <script type="text/javascript">
11994  */
11995
11996  
11997 /**
11998  * @class Roo.UpdateManager
11999  * @extends Roo.util.Observable
12000  * Provides AJAX-style update for Element object.<br><br>
12001  * Usage:<br>
12002  * <pre><code>
12003  * // Get it from a Roo.Element object
12004  * var el = Roo.get("foo");
12005  * var mgr = el.getUpdateManager();
12006  * mgr.update("http://myserver.com/index.php", "param1=1&amp;param2=2");
12007  * ...
12008  * mgr.formUpdate("myFormId", "http://myserver.com/index.php");
12009  * <br>
12010  * // or directly (returns the same UpdateManager instance)
12011  * var mgr = new Roo.UpdateManager("myElementId");
12012  * mgr.startAutoRefresh(60, "http://myserver.com/index.php");
12013  * mgr.on("update", myFcnNeedsToKnow);
12014  * <br>
12015    // short handed call directly from the element object
12016    Roo.get("foo").load({
12017         url: "bar.php",
12018         scripts:true,
12019         params: "for=bar",
12020         text: "Loading Foo..."
12021    });
12022  * </code></pre>
12023  * @constructor
12024  * Create new UpdateManager directly.
12025  * @param {String/HTMLElement/Roo.Element} el The element to update
12026  * @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).
12027  */
12028 Roo.UpdateManager = function(el, forceNew){
12029     el = Roo.get(el);
12030     if(!forceNew && el.updateManager){
12031         return el.updateManager;
12032     }
12033     /**
12034      * The Element object
12035      * @type Roo.Element
12036      */
12037     this.el = el;
12038     /**
12039      * Cached url to use for refreshes. Overwritten every time update() is called unless "discardUrl" param is set to true.
12040      * @type String
12041      */
12042     this.defaultUrl = null;
12043
12044     this.addEvents({
12045         /**
12046          * @event beforeupdate
12047          * Fired before an update is made, return false from your handler and the update is cancelled.
12048          * @param {Roo.Element} el
12049          * @param {String/Object/Function} url
12050          * @param {String/Object} params
12051          */
12052         "beforeupdate": true,
12053         /**
12054          * @event update
12055          * Fired after successful update is made.
12056          * @param {Roo.Element} el
12057          * @param {Object} oResponseObject The response Object
12058          */
12059         "update": true,
12060         /**
12061          * @event failure
12062          * Fired on update failure.
12063          * @param {Roo.Element} el
12064          * @param {Object} oResponseObject The response Object
12065          */
12066         "failure": true
12067     });
12068     var d = Roo.UpdateManager.defaults;
12069     /**
12070      * Blank page URL to use with SSL file uploads (Defaults to Roo.UpdateManager.defaults.sslBlankUrl or "about:blank").
12071      * @type String
12072      */
12073     this.sslBlankUrl = d.sslBlankUrl;
12074     /**
12075      * Whether to append unique parameter on get request to disable caching (Defaults to Roo.UpdateManager.defaults.disableCaching or false).
12076      * @type Boolean
12077      */
12078     this.disableCaching = d.disableCaching;
12079     /**
12080      * Text for loading indicator (Defaults to Roo.UpdateManager.defaults.indicatorText or '&lt;div class="loading-indicator"&gt;Loading...&lt;/div&gt;').
12081      * @type String
12082      */
12083     this.indicatorText = d.indicatorText;
12084     /**
12085      * Whether to show indicatorText when loading (Defaults to Roo.UpdateManager.defaults.showLoadIndicator or true).
12086      * @type String
12087      */
12088     this.showLoadIndicator = d.showLoadIndicator;
12089     /**
12090      * Timeout for requests or form posts in seconds (Defaults to Roo.UpdateManager.defaults.timeout or 30 seconds).
12091      * @type Number
12092      */
12093     this.timeout = d.timeout;
12094
12095     /**
12096      * True to process scripts in the output (Defaults to Roo.UpdateManager.defaults.loadScripts (false)).
12097      * @type Boolean
12098      */
12099     this.loadScripts = d.loadScripts;
12100
12101     /**
12102      * Transaction object of current executing transaction
12103      */
12104     this.transaction = null;
12105
12106     /**
12107      * @private
12108      */
12109     this.autoRefreshProcId = null;
12110     /**
12111      * Delegate for refresh() prebound to "this", use myUpdater.refreshDelegate.createCallback(arg1, arg2) to bind arguments
12112      * @type Function
12113      */
12114     this.refreshDelegate = this.refresh.createDelegate(this);
12115     /**
12116      * Delegate for update() prebound to "this", use myUpdater.updateDelegate.createCallback(arg1, arg2) to bind arguments
12117      * @type Function
12118      */
12119     this.updateDelegate = this.update.createDelegate(this);
12120     /**
12121      * Delegate for formUpdate() prebound to "this", use myUpdater.formUpdateDelegate.createCallback(arg1, arg2) to bind arguments
12122      * @type Function
12123      */
12124     this.formUpdateDelegate = this.formUpdate.createDelegate(this);
12125     /**
12126      * @private
12127      */
12128     this.successDelegate = this.processSuccess.createDelegate(this);
12129     /**
12130      * @private
12131      */
12132     this.failureDelegate = this.processFailure.createDelegate(this);
12133
12134     if(!this.renderer){
12135      /**
12136       * The renderer for this UpdateManager. Defaults to {@link Roo.UpdateManager.BasicRenderer}.
12137       */
12138     this.renderer = new Roo.UpdateManager.BasicRenderer();
12139     }
12140     
12141     Roo.UpdateManager.superclass.constructor.call(this);
12142 };
12143
12144 Roo.extend(Roo.UpdateManager, Roo.util.Observable, {
12145     /**
12146      * Get the Element this UpdateManager is bound to
12147      * @return {Roo.Element} The element
12148      */
12149     getEl : function(){
12150         return this.el;
12151     },
12152     /**
12153      * Performs an async request, updating this element with the response. If params are specified it uses POST, otherwise it uses GET.
12154      * @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:
12155 <pre><code>
12156 um.update({<br/>
12157     url: "your-url.php",<br/>
12158     params: {param1: "foo", param2: "bar"}, // or a URL encoded string<br/>
12159     callback: yourFunction,<br/>
12160     scope: yourObject, //(optional scope)  <br/>
12161     discardUrl: false, <br/>
12162     nocache: false,<br/>
12163     text: "Loading...",<br/>
12164     timeout: 30,<br/>
12165     scripts: false<br/>
12166 });
12167 </code></pre>
12168      * The only required property is url. The optional properties nocache, text and scripts
12169      * are shorthand for disableCaching, indicatorText and loadScripts and are used to set their associated property on this UpdateManager instance.
12170      * @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}
12171      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess, oResponse)
12172      * @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.
12173      */
12174     update : function(url, params, callback, discardUrl){
12175         if(this.fireEvent("beforeupdate", this.el, url, params) !== false){
12176             var method = this.method,
12177                 cfg;
12178             if(typeof url == "object"){ // must be config object
12179                 cfg = url;
12180                 url = cfg.url;
12181                 params = params || cfg.params;
12182                 callback = callback || cfg.callback;
12183                 discardUrl = discardUrl || cfg.discardUrl;
12184                 if(callback && cfg.scope){
12185                     callback = callback.createDelegate(cfg.scope);
12186                 }
12187                 if(typeof cfg.method != "undefined"){method = cfg.method;};
12188                 if(typeof cfg.nocache != "undefined"){this.disableCaching = cfg.nocache;};
12189                 if(typeof cfg.text != "undefined"){this.indicatorText = '<div class="loading-indicator">'+cfg.text+"</div>";};
12190                 if(typeof cfg.scripts != "undefined"){this.loadScripts = cfg.scripts;};
12191                 if(typeof cfg.timeout != "undefined"){this.timeout = cfg.timeout;};
12192             }
12193             this.showLoading();
12194             if(!discardUrl){
12195                 this.defaultUrl = url;
12196             }
12197             if(typeof url == "function"){
12198                 url = url.call(this);
12199             }
12200
12201             method = method || (params ? "POST" : "GET");
12202             if(method == "GET"){
12203                 url = this.prepareUrl(url);
12204             }
12205
12206             var o = Roo.apply(cfg ||{}, {
12207                 url : url,
12208                 params: params,
12209                 success: this.successDelegate,
12210                 failure: this.failureDelegate,
12211                 callback: undefined,
12212                 timeout: (this.timeout*1000),
12213                 argument: {"url": url, "form": null, "callback": callback, "params": params}
12214             });
12215             Roo.log("updated manager called with timeout of " + o.timeout);
12216             this.transaction = Roo.Ajax.request(o);
12217         }
12218     },
12219
12220     /**
12221      * 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.
12222      * Uses this.sslBlankUrl for SSL file uploads to prevent IE security warning.
12223      * @param {String/HTMLElement} form The form Id or form element
12224      * @param {String} url (optional) The url to pass the form to. If omitted the action attribute on the form will be used.
12225      * @param {Boolean} reset (optional) Whether to try to reset the form after the update
12226      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess, oResponse)
12227      */
12228     formUpdate : function(form, url, reset, callback){
12229         if(this.fireEvent("beforeupdate", this.el, form, url) !== false){
12230             if(typeof url == "function"){
12231                 url = url.call(this);
12232             }
12233             form = Roo.getDom(form);
12234             this.transaction = Roo.Ajax.request({
12235                 form: form,
12236                 url:url,
12237                 success: this.successDelegate,
12238                 failure: this.failureDelegate,
12239                 timeout: (this.timeout*1000),
12240                 argument: {"url": url, "form": form, "callback": callback, "reset": reset}
12241             });
12242             this.showLoading.defer(1, this);
12243         }
12244     },
12245
12246     /**
12247      * Refresh the element with the last used url or defaultUrl. If there is no url, it returns immediately
12248      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
12249      */
12250     refresh : function(callback){
12251         if(this.defaultUrl == null){
12252             return;
12253         }
12254         this.update(this.defaultUrl, null, callback, true);
12255     },
12256
12257     /**
12258      * Set this element to auto refresh.
12259      * @param {Number} interval How often to update (in seconds).
12260      * @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)
12261      * @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}
12262      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
12263      * @param {Boolean} refreshNow (optional) Whether to execute the refresh now, or wait the interval
12264      */
12265     startAutoRefresh : function(interval, url, params, callback, refreshNow){
12266         if(refreshNow){
12267             this.update(url || this.defaultUrl, params, callback, true);
12268         }
12269         if(this.autoRefreshProcId){
12270             clearInterval(this.autoRefreshProcId);
12271         }
12272         this.autoRefreshProcId = setInterval(this.update.createDelegate(this, [url || this.defaultUrl, params, callback, true]), interval*1000);
12273     },
12274
12275     /**
12276      * Stop auto refresh on this element.
12277      */
12278      stopAutoRefresh : function(){
12279         if(this.autoRefreshProcId){
12280             clearInterval(this.autoRefreshProcId);
12281             delete this.autoRefreshProcId;
12282         }
12283     },
12284
12285     isAutoRefreshing : function(){
12286        return this.autoRefreshProcId ? true : false;
12287     },
12288     /**
12289      * Called to update the element to "Loading" state. Override to perform custom action.
12290      */
12291     showLoading : function(){
12292         if(this.showLoadIndicator){
12293             this.el.update(this.indicatorText);
12294         }
12295     },
12296
12297     /**
12298      * Adds unique parameter to query string if disableCaching = true
12299      * @private
12300      */
12301     prepareUrl : function(url){
12302         if(this.disableCaching){
12303             var append = "_dc=" + (new Date().getTime());
12304             if(url.indexOf("?") !== -1){
12305                 url += "&" + append;
12306             }else{
12307                 url += "?" + append;
12308             }
12309         }
12310         return url;
12311     },
12312
12313     /**
12314      * @private
12315      */
12316     processSuccess : function(response){
12317         this.transaction = null;
12318         if(response.argument.form && response.argument.reset){
12319             try{ // put in try/catch since some older FF releases had problems with this
12320                 response.argument.form.reset();
12321             }catch(e){}
12322         }
12323         if(this.loadScripts){
12324             this.renderer.render(this.el, response, this,
12325                 this.updateComplete.createDelegate(this, [response]));
12326         }else{
12327             this.renderer.render(this.el, response, this);
12328             this.updateComplete(response);
12329         }
12330     },
12331
12332     updateComplete : function(response){
12333         this.fireEvent("update", this.el, response);
12334         if(typeof response.argument.callback == "function"){
12335             response.argument.callback(this.el, true, response);
12336         }
12337     },
12338
12339     /**
12340      * @private
12341      */
12342     processFailure : function(response){
12343         this.transaction = null;
12344         this.fireEvent("failure", this.el, response);
12345         if(typeof response.argument.callback == "function"){
12346             response.argument.callback(this.el, false, response);
12347         }
12348     },
12349
12350     /**
12351      * Set the content renderer for this UpdateManager. See {@link Roo.UpdateManager.BasicRenderer#render} for more details.
12352      * @param {Object} renderer The object implementing the render() method
12353      */
12354     setRenderer : function(renderer){
12355         this.renderer = renderer;
12356     },
12357
12358     getRenderer : function(){
12359        return this.renderer;
12360     },
12361
12362     /**
12363      * Set the defaultUrl used for updates
12364      * @param {String/Function} defaultUrl The url or a function to call to get the url
12365      */
12366     setDefaultUrl : function(defaultUrl){
12367         this.defaultUrl = defaultUrl;
12368     },
12369
12370     /**
12371      * Aborts the executing transaction
12372      */
12373     abort : function(){
12374         if(this.transaction){
12375             Roo.Ajax.abort(this.transaction);
12376         }
12377     },
12378
12379     /**
12380      * Returns true if an update is in progress
12381      * @return {Boolean}
12382      */
12383     isUpdating : function(){
12384         if(this.transaction){
12385             return Roo.Ajax.isLoading(this.transaction);
12386         }
12387         return false;
12388     }
12389 });
12390
12391 /**
12392  * @class Roo.UpdateManager.defaults
12393  * @static (not really - but it helps the doc tool)
12394  * The defaults collection enables customizing the default properties of UpdateManager
12395  */
12396    Roo.UpdateManager.defaults = {
12397        /**
12398          * Timeout for requests or form posts in seconds (Defaults 30 seconds).
12399          * @type Number
12400          */
12401          timeout : 30,
12402
12403          /**
12404          * True to process scripts by default (Defaults to false).
12405          * @type Boolean
12406          */
12407         loadScripts : false,
12408
12409         /**
12410         * Blank page URL to use with SSL file uploads (Defaults to "javascript:false").
12411         * @type String
12412         */
12413         sslBlankUrl : (Roo.SSL_SECURE_URL || "javascript:false"),
12414         /**
12415          * Whether to append unique parameter on get request to disable caching (Defaults to false).
12416          * @type Boolean
12417          */
12418         disableCaching : false,
12419         /**
12420          * Whether to show indicatorText when loading (Defaults to true).
12421          * @type Boolean
12422          */
12423         showLoadIndicator : true,
12424         /**
12425          * Text for loading indicator (Defaults to '&lt;div class="loading-indicator"&gt;Loading...&lt;/div&gt;').
12426          * @type String
12427          */
12428         indicatorText : '<div class="loading-indicator">Loading...</div>'
12429    };
12430
12431 /**
12432  * Static convenience method. This method is deprecated in favor of el.load({url:'foo.php', ...}).
12433  *Usage:
12434  * <pre><code>Roo.UpdateManager.updateElement("my-div", "stuff.php");</code></pre>
12435  * @param {String/HTMLElement/Roo.Element} el The element to update
12436  * @param {String} url The url
12437  * @param {String/Object} params (optional) Url encoded param string or an object of name/value pairs
12438  * @param {Object} options (optional) A config object with any of the UpdateManager properties you want to set - for example: {disableCaching:true, indicatorText: "Loading data..."}
12439  * @static
12440  * @deprecated
12441  * @member Roo.UpdateManager
12442  */
12443 Roo.UpdateManager.updateElement = function(el, url, params, options){
12444     var um = Roo.get(el, true).getUpdateManager();
12445     Roo.apply(um, options);
12446     um.update(url, params, options ? options.callback : null);
12447 };
12448 // alias for backwards compat
12449 Roo.UpdateManager.update = Roo.UpdateManager.updateElement;
12450 /**
12451  * @class Roo.UpdateManager.BasicRenderer
12452  * Default Content renderer. Updates the elements innerHTML with the responseText.
12453  */
12454 Roo.UpdateManager.BasicRenderer = function(){};
12455
12456 Roo.UpdateManager.BasicRenderer.prototype = {
12457     /**
12458      * This is called when the transaction is completed and it's time to update the element - The BasicRenderer
12459      * updates the elements innerHTML with the responseText - To perform a custom render (i.e. XML or JSON processing),
12460      * create an object with a "render(el, response)" method and pass it to setRenderer on the UpdateManager.
12461      * @param {Roo.Element} el The element being rendered
12462      * @param {Object} response The YUI Connect response object
12463      * @param {UpdateManager} updateManager The calling update manager
12464      * @param {Function} callback A callback that will need to be called if loadScripts is true on the UpdateManager
12465      */
12466      render : function(el, response, updateManager, callback){
12467         el.update(response.responseText, updateManager.loadScripts, callback);
12468     }
12469 };
12470 /*
12471  * Based on:
12472  * Roo JS
12473  * (c)) Alan Knowles
12474  * Licence : LGPL
12475  */
12476
12477
12478 /**
12479  * @class Roo.DomTemplate
12480  * @extends Roo.Template
12481  * An effort at a dom based template engine..
12482  *
12483  * Similar to XTemplate, except it uses dom parsing to create the template..
12484  *
12485  * Supported features:
12486  *
12487  *  Tags:
12488
12489 <pre><code>
12490       {a_variable} - output encoded.
12491       {a_variable.format:("Y-m-d")} - call a method on the variable
12492       {a_variable:raw} - unencoded output
12493       {a_variable:toFixed(1,2)} - Roo.util.Format."toFixed"
12494       {a_variable:this.method_on_template(...)} - call a method on the template object.
12495  
12496 </code></pre>
12497  *  The tpl tag:
12498 <pre><code>
12499         &lt;div roo-for="a_variable or condition.."&gt;&lt;/div&gt;
12500         &lt;div roo-if="a_variable or condition"&gt;&lt;/div&gt;
12501         &lt;div roo-exec="some javascript"&gt;&lt;/div&gt;
12502         &lt;div roo-name="named_template"&gt;&lt;/div&gt; 
12503   
12504 </code></pre>
12505  *      
12506  */
12507 Roo.DomTemplate = function()
12508 {
12509      Roo.DomTemplate.superclass.constructor.apply(this, arguments);
12510      if (this.html) {
12511         this.compile();
12512      }
12513 };
12514
12515
12516 Roo.extend(Roo.DomTemplate, Roo.Template, {
12517     /**
12518      * id counter for sub templates.
12519      */
12520     id : 0,
12521     /**
12522      * flag to indicate if dom parser is inside a pre,
12523      * it will strip whitespace if not.
12524      */
12525     inPre : false,
12526     
12527     /**
12528      * The various sub templates
12529      */
12530     tpls : false,
12531     
12532     
12533     
12534     /**
12535      *
12536      * basic tag replacing syntax
12537      * WORD:WORD()
12538      *
12539      * // you can fake an object call by doing this
12540      *  x.t:(test,tesT) 
12541      * 
12542      */
12543     re : /(\{|\%7B)([\w-\.]+)(?:\:([\w\.]*)(?:\(([^)]*?)?\))?)?(\}|\%7D)/g,
12544     //re : /\{([\w-\.]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
12545     
12546     iterChild : function (node, method) {
12547         
12548         var oldPre = this.inPre;
12549         if (node.tagName == 'PRE') {
12550             this.inPre = true;
12551         }
12552         for( var i = 0; i < node.childNodes.length; i++) {
12553             method.call(this, node.childNodes[i]);
12554         }
12555         this.inPre = oldPre;
12556     },
12557     
12558     
12559     
12560     /**
12561      * compile the template
12562      *
12563      * This is not recursive, so I'm not sure how nested templates are really going to be handled..
12564      *
12565      */
12566     compile: function()
12567     {
12568         var s = this.html;
12569         
12570         // covert the html into DOM...
12571         var doc = false;
12572         var div =false;
12573         try {
12574             doc = document.implementation.createHTMLDocument("");
12575             doc.documentElement.innerHTML =   this.html  ;
12576             div = doc.documentElement;
12577         } catch (e) {
12578             // old IE... - nasty -- it causes all sorts of issues.. with
12579             // images getting pulled from server..
12580             div = document.createElement('div');
12581             div.innerHTML = this.html;
12582         }
12583         //doc.documentElement.innerHTML = htmlBody
12584          
12585         
12586         
12587         this.tpls = [];
12588         var _t = this;
12589         this.iterChild(div, function(n) {_t.compileNode(n, true); });
12590         
12591         var tpls = this.tpls;
12592         
12593         // create a top level template from the snippet..
12594         
12595         //Roo.log(div.innerHTML);
12596         
12597         var tpl = {
12598             uid : 'master',
12599             id : this.id++,
12600             attr : false,
12601             value : false,
12602             body : div.innerHTML,
12603             
12604             forCall : false,
12605             execCall : false,
12606             dom : div,
12607             isTop : true
12608             
12609         };
12610         tpls.unshift(tpl);
12611         
12612         
12613         // compile them...
12614         this.tpls = [];
12615         Roo.each(tpls, function(tp){
12616             this.compileTpl(tp);
12617             this.tpls[tp.id] = tp;
12618         }, this);
12619         
12620         this.master = tpls[0];
12621         return this;
12622         
12623         
12624     },
12625     
12626     compileNode : function(node, istop) {
12627         // test for
12628         //Roo.log(node);
12629         
12630         
12631         // skip anything not a tag..
12632         if (node.nodeType != 1) {
12633             if (node.nodeType == 3 && !this.inPre) {
12634                 // reduce white space..
12635                 node.nodeValue = node.nodeValue.replace(/\s+/g, ' '); 
12636                 
12637             }
12638             return;
12639         }
12640         
12641         var tpl = {
12642             uid : false,
12643             id : false,
12644             attr : false,
12645             value : false,
12646             body : '',
12647             
12648             forCall : false,
12649             execCall : false,
12650             dom : false,
12651             isTop : istop
12652             
12653             
12654         };
12655         
12656         
12657         switch(true) {
12658             case (node.hasAttribute('roo-for')): tpl.attr = 'for'; break;
12659             case (node.hasAttribute('roo-if')): tpl.attr = 'if'; break;
12660             case (node.hasAttribute('roo-name')): tpl.attr = 'name'; break;
12661             case (node.hasAttribute('roo-exec')): tpl.attr = 'exec'; break;
12662             // no default..
12663         }
12664         
12665         
12666         if (!tpl.attr) {
12667             // just itterate children..
12668             this.iterChild(node,this.compileNode);
12669             return;
12670         }
12671         tpl.uid = this.id++;
12672         tpl.value = node.getAttribute('roo-' +  tpl.attr);
12673         node.removeAttribute('roo-'+ tpl.attr);
12674         if (tpl.attr != 'name') {
12675             var placeholder = document.createTextNode('{domtpl' + tpl.uid + '}');
12676             node.parentNode.replaceChild(placeholder,  node);
12677         } else {
12678             
12679             var placeholder =  document.createElement('span');
12680             placeholder.className = 'roo-tpl-' + tpl.value;
12681             node.parentNode.replaceChild(placeholder,  node);
12682         }
12683         
12684         // parent now sees '{domtplXXXX}
12685         this.iterChild(node,this.compileNode);
12686         
12687         // we should now have node body...
12688         var div = document.createElement('div');
12689         div.appendChild(node);
12690         tpl.dom = node;
12691         // this has the unfortunate side effect of converting tagged attributes
12692         // eg. href="{...}" into %7C...%7D
12693         // this has been fixed by searching for those combo's although it's a bit hacky..
12694         
12695         
12696         tpl.body = div.innerHTML;
12697         
12698         
12699          
12700         tpl.id = tpl.uid;
12701         switch(tpl.attr) {
12702             case 'for' :
12703                 switch (tpl.value) {
12704                     case '.':  tpl.forCall = new Function('values', 'parent', 'with(values){ return values; }'); break;
12705                     case '..': tpl.forCall= new Function('values', 'parent', 'with(values){ return parent; }'); break;
12706                     default:   tpl.forCall= new Function('values', 'parent', 'with(values){ return '+tpl.value+'; }');
12707                 }
12708                 break;
12709             
12710             case 'exec':
12711                 tpl.execCall = new Function('values', 'parent', 'with(values){ '+(Roo.util.Format.htmlDecode(tpl.value))+'; }');
12712                 break;
12713             
12714             case 'if':     
12715                 tpl.ifCall = new Function('values', 'parent', 'with(values){ return '+(Roo.util.Format.htmlDecode(tpl.value))+'; }');
12716                 break;
12717             
12718             case 'name':
12719                 tpl.id  = tpl.value; // replace non characters???
12720                 break;
12721             
12722         }
12723         
12724         
12725         this.tpls.push(tpl);
12726         
12727         
12728         
12729     },
12730     
12731     
12732     
12733     
12734     /**
12735      * Compile a segment of the template into a 'sub-template'
12736      *
12737      * 
12738      * 
12739      *
12740      */
12741     compileTpl : function(tpl)
12742     {
12743         var fm = Roo.util.Format;
12744         var useF = this.disableFormats !== true;
12745         
12746         var sep = Roo.isGecko ? "+\n" : ",\n";
12747         
12748         var undef = function(str) {
12749             Roo.debug && Roo.log("Property not found :"  + str);
12750             return '';
12751         };
12752           
12753         //Roo.log(tpl.body);
12754         
12755         
12756         
12757         var fn = function(m, lbrace, name, format, args)
12758         {
12759             //Roo.log("ARGS");
12760             //Roo.log(arguments);
12761             args = args ? args.replace(/\\'/g,"'") : args;
12762             //["{TEST:(a,b,c)}", "TEST", "", "a,b,c", 0, "{TEST:(a,b,c)}"]
12763             if (typeof(format) == 'undefined') {
12764                 format =  'htmlEncode'; 
12765             }
12766             if (format == 'raw' ) {
12767                 format = false;
12768             }
12769             
12770             if(name.substr(0, 6) == 'domtpl'){
12771                 return "'"+ sep +'this.applySubTemplate('+name.substr(6)+', values, parent)'+sep+"'";
12772             }
12773             
12774             // build an array of options to determine if value is undefined..
12775             
12776             // basically get 'xxxx.yyyy' then do
12777             // (typeof(xxxx) == 'undefined' || typeof(xxx.yyyy) == 'undefined') ?
12778             //    (function () { Roo.log("Property not found"); return ''; })() :
12779             //    ......
12780             
12781             var udef_ar = [];
12782             var lookfor = '';
12783             Roo.each(name.split('.'), function(st) {
12784                 lookfor += (lookfor.length ? '.': '') + st;
12785                 udef_ar.push(  "(typeof(" + lookfor + ") == 'undefined')"  );
12786             });
12787             
12788             var udef_st = '((' + udef_ar.join(" || ") +") ? undef('" + name + "') : "; // .. needs )
12789             
12790             
12791             if(format && useF){
12792                 
12793                 args = args ? ',' + args : "";
12794                  
12795                 if(format.substr(0, 5) != "this."){
12796                     format = "fm." + format + '(';
12797                 }else{
12798                     format = 'this.call("'+ format.substr(5) + '", ';
12799                     args = ", values";
12800                 }
12801                 
12802                 return "'"+ sep +   udef_st   +    format + name + args + "))"+sep+"'";
12803             }
12804              
12805             if (args && args.length) {
12806                 // called with xxyx.yuu:(test,test)
12807                 // change to ()
12808                 return "'"+ sep + udef_st  + name + '(' +  args + "))"+sep+"'";
12809             }
12810             // raw.. - :raw modifier..
12811             return "'"+ sep + udef_st  + name + ")"+sep+"'";
12812             
12813         };
12814         var body;
12815         // branched to use + in gecko and [].join() in others
12816         if(Roo.isGecko){
12817             body = "tpl.compiled = function(values, parent){  with(values) { return '" +
12818                    tpl.body.replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
12819                     "';};};";
12820         }else{
12821             body = ["tpl.compiled = function(values, parent){  with (values) { return ['"];
12822             body.push(tpl.body.replace(/(\r\n|\n)/g,
12823                             '\\n').replace(/'/g, "\\'").replace(this.re, fn));
12824             body.push("'].join('');};};");
12825             body = body.join('');
12826         }
12827         
12828         Roo.debug && Roo.log(body.replace(/\\n/,'\n'));
12829        
12830         /** eval:var:tpl eval:var:fm eval:var:useF eval:var:undef  */
12831         eval(body);
12832         
12833         return this;
12834     },
12835      
12836     /**
12837      * same as applyTemplate, except it's done to one of the subTemplates
12838      * when using named templates, you can do:
12839      *
12840      * var str = pl.applySubTemplate('your-name', values);
12841      *
12842      * 
12843      * @param {Number} id of the template
12844      * @param {Object} values to apply to template
12845      * @param {Object} parent (normaly the instance of this object)
12846      */
12847     applySubTemplate : function(id, values, parent)
12848     {
12849         
12850         
12851         var t = this.tpls[id];
12852         
12853         
12854         try { 
12855             if(t.ifCall && !t.ifCall.call(this, values, parent)){
12856                 Roo.debug && Roo.log('if call on ' + t.value + ' return false');
12857                 return '';
12858             }
12859         } catch(e) {
12860             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-if="' + t.value + '" - ' + e.toString());
12861             Roo.log(values);
12862           
12863             return '';
12864         }
12865         try { 
12866             
12867             if(t.execCall && t.execCall.call(this, values, parent)){
12868                 return '';
12869             }
12870         } catch(e) {
12871             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-for="' + t.value + '" - ' + e.toString());
12872             Roo.log(values);
12873             return '';
12874         }
12875         
12876         try {
12877             var vs = t.forCall ? t.forCall.call(this, values, parent) : values;
12878             parent = t.target ? values : parent;
12879             if(t.forCall && vs instanceof Array){
12880                 var buf = [];
12881                 for(var i = 0, len = vs.length; i < len; i++){
12882                     try {
12883                         buf[buf.length] = t.compiled.call(this, vs[i], parent);
12884                     } catch (e) {
12885                         Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on body="' + t.value + '" - ' + e.toString());
12886                         Roo.log(e.body);
12887                         //Roo.log(t.compiled);
12888                         Roo.log(vs[i]);
12889                     }   
12890                 }
12891                 return buf.join('');
12892             }
12893         } catch (e) {
12894             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-for="' + t.value + '" - ' + e.toString());
12895             Roo.log(values);
12896             return '';
12897         }
12898         try {
12899             return t.compiled.call(this, vs, parent);
12900         } catch (e) {
12901             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on body="' + t.value + '" - ' + e.toString());
12902             Roo.log(e.body);
12903             //Roo.log(t.compiled);
12904             Roo.log(values);
12905             return '';
12906         }
12907     },
12908
12909    
12910
12911     applyTemplate : function(values){
12912         return this.master.compiled.call(this, values, {});
12913         //var s = this.subs;
12914     },
12915
12916     apply : function(){
12917         return this.applyTemplate.apply(this, arguments);
12918     }
12919
12920  });
12921
12922 Roo.DomTemplate.from = function(el){
12923     el = Roo.getDom(el);
12924     return new Roo.Domtemplate(el.value || el.innerHTML);
12925 };/*
12926  * Based on:
12927  * Ext JS Library 1.1.1
12928  * Copyright(c) 2006-2007, Ext JS, LLC.
12929  *
12930  * Originally Released Under LGPL - original licence link has changed is not relivant.
12931  *
12932  * Fork - LGPL
12933  * <script type="text/javascript">
12934  */
12935
12936 /**
12937  * @class Roo.util.DelayedTask
12938  * Provides a convenient method of performing setTimeout where a new
12939  * timeout cancels the old timeout. An example would be performing validation on a keypress.
12940  * You can use this class to buffer
12941  * the keypress events for a certain number of milliseconds, and perform only if they stop
12942  * for that amount of time.
12943  * @constructor The parameters to this constructor serve as defaults and are not required.
12944  * @param {Function} fn (optional) The default function to timeout
12945  * @param {Object} scope (optional) The default scope of that timeout
12946  * @param {Array} args (optional) The default Array of arguments
12947  */
12948 Roo.util.DelayedTask = function(fn, scope, args){
12949     var id = null, d, t;
12950
12951     var call = function(){
12952         var now = new Date().getTime();
12953         if(now - t >= d){
12954             clearInterval(id);
12955             id = null;
12956             fn.apply(scope, args || []);
12957         }
12958     };
12959     /**
12960      * Cancels any pending timeout and queues a new one
12961      * @param {Number} delay The milliseconds to delay
12962      * @param {Function} newFn (optional) Overrides function passed to constructor
12963      * @param {Object} newScope (optional) Overrides scope passed to constructor
12964      * @param {Array} newArgs (optional) Overrides args passed to constructor
12965      */
12966     this.delay = function(delay, newFn, newScope, newArgs){
12967         if(id && delay != d){
12968             this.cancel();
12969         }
12970         d = delay;
12971         t = new Date().getTime();
12972         fn = newFn || fn;
12973         scope = newScope || scope;
12974         args = newArgs || args;
12975         if(!id){
12976             id = setInterval(call, d);
12977         }
12978     };
12979
12980     /**
12981      * Cancel the last queued timeout
12982      */
12983     this.cancel = function(){
12984         if(id){
12985             clearInterval(id);
12986             id = null;
12987         }
12988     };
12989 };/*
12990  * Based on:
12991  * Ext JS Library 1.1.1
12992  * Copyright(c) 2006-2007, Ext JS, LLC.
12993  *
12994  * Originally Released Under LGPL - original licence link has changed is not relivant.
12995  *
12996  * Fork - LGPL
12997  * <script type="text/javascript">
12998  */
12999  
13000  
13001 Roo.util.TaskRunner = function(interval){
13002     interval = interval || 10;
13003     var tasks = [], removeQueue = [];
13004     var id = 0;
13005     var running = false;
13006
13007     var stopThread = function(){
13008         running = false;
13009         clearInterval(id);
13010         id = 0;
13011     };
13012
13013     var startThread = function(){
13014         if(!running){
13015             running = true;
13016             id = setInterval(runTasks, interval);
13017         }
13018     };
13019
13020     var removeTask = function(task){
13021         removeQueue.push(task);
13022         if(task.onStop){
13023             task.onStop();
13024         }
13025     };
13026
13027     var runTasks = function(){
13028         if(removeQueue.length > 0){
13029             for(var i = 0, len = removeQueue.length; i < len; i++){
13030                 tasks.remove(removeQueue[i]);
13031             }
13032             removeQueue = [];
13033             if(tasks.length < 1){
13034                 stopThread();
13035                 return;
13036             }
13037         }
13038         var now = new Date().getTime();
13039         for(var i = 0, len = tasks.length; i < len; ++i){
13040             var t = tasks[i];
13041             var itime = now - t.taskRunTime;
13042             if(t.interval <= itime){
13043                 var rt = t.run.apply(t.scope || t, t.args || [++t.taskRunCount]);
13044                 t.taskRunTime = now;
13045                 if(rt === false || t.taskRunCount === t.repeat){
13046                     removeTask(t);
13047                     return;
13048                 }
13049             }
13050             if(t.duration && t.duration <= (now - t.taskStartTime)){
13051                 removeTask(t);
13052             }
13053         }
13054     };
13055
13056     /**
13057      * Queues a new task.
13058      * @param {Object} task
13059      */
13060     this.start = function(task){
13061         tasks.push(task);
13062         task.taskStartTime = new Date().getTime();
13063         task.taskRunTime = 0;
13064         task.taskRunCount = 0;
13065         startThread();
13066         return task;
13067     };
13068
13069     this.stop = function(task){
13070         removeTask(task);
13071         return task;
13072     };
13073
13074     this.stopAll = function(){
13075         stopThread();
13076         for(var i = 0, len = tasks.length; i < len; i++){
13077             if(tasks[i].onStop){
13078                 tasks[i].onStop();
13079             }
13080         }
13081         tasks = [];
13082         removeQueue = [];
13083     };
13084 };
13085
13086 Roo.TaskMgr = new Roo.util.TaskRunner();/*
13087  * Based on:
13088  * Ext JS Library 1.1.1
13089  * Copyright(c) 2006-2007, Ext JS, LLC.
13090  *
13091  * Originally Released Under LGPL - original licence link has changed is not relivant.
13092  *
13093  * Fork - LGPL
13094  * <script type="text/javascript">
13095  */
13096
13097  
13098 /**
13099  * @class Roo.util.MixedCollection
13100  * @extends Roo.util.Observable
13101  * A Collection class that maintains both numeric indexes and keys and exposes events.
13102  * @constructor
13103  * @param {Boolean} allowFunctions True if the addAll function should add function references to the
13104  * collection (defaults to false)
13105  * @param {Function} keyFn A function that can accept an item of the type(s) stored in this MixedCollection
13106  * and return the key value for that item.  This is used when available to look up the key on items that
13107  * were passed without an explicit key parameter to a MixedCollection method.  Passing this parameter is
13108  * equivalent to providing an implementation for the {@link #getKey} method.
13109  */
13110 Roo.util.MixedCollection = function(allowFunctions, keyFn){
13111     this.items = [];
13112     this.map = {};
13113     this.keys = [];
13114     this.length = 0;
13115     this.addEvents({
13116         /**
13117          * @event clear
13118          * Fires when the collection is cleared.
13119          */
13120         "clear" : true,
13121         /**
13122          * @event add
13123          * Fires when an item is added to the collection.
13124          * @param {Number} index The index at which the item was added.
13125          * @param {Object} o The item added.
13126          * @param {String} key The key associated with the added item.
13127          */
13128         "add" : true,
13129         /**
13130          * @event replace
13131          * Fires when an item is replaced in the collection.
13132          * @param {String} key he key associated with the new added.
13133          * @param {Object} old The item being replaced.
13134          * @param {Object} new The new item.
13135          */
13136         "replace" : true,
13137         /**
13138          * @event remove
13139          * Fires when an item is removed from the collection.
13140          * @param {Object} o The item being removed.
13141          * @param {String} key (optional) The key associated with the removed item.
13142          */
13143         "remove" : true,
13144         "sort" : true
13145     });
13146     this.allowFunctions = allowFunctions === true;
13147     if(keyFn){
13148         this.getKey = keyFn;
13149     }
13150     Roo.util.MixedCollection.superclass.constructor.call(this);
13151 };
13152
13153 Roo.extend(Roo.util.MixedCollection, Roo.util.Observable, {
13154     allowFunctions : false,
13155     
13156 /**
13157  * Adds an item to the collection.
13158  * @param {String} key The key to associate with the item
13159  * @param {Object} o The item to add.
13160  * @return {Object} The item added.
13161  */
13162     add : function(key, o){
13163         if(arguments.length == 1){
13164             o = arguments[0];
13165             key = this.getKey(o);
13166         }
13167         if(typeof key == "undefined" || key === null){
13168             this.length++;
13169             this.items.push(o);
13170             this.keys.push(null);
13171         }else{
13172             var old = this.map[key];
13173             if(old){
13174                 return this.replace(key, o);
13175             }
13176             this.length++;
13177             this.items.push(o);
13178             this.map[key] = o;
13179             this.keys.push(key);
13180         }
13181         this.fireEvent("add", this.length-1, o, key);
13182         return o;
13183     },
13184        
13185 /**
13186   * MixedCollection has a generic way to fetch keys if you implement getKey.
13187 <pre><code>
13188 // normal way
13189 var mc = new Roo.util.MixedCollection();
13190 mc.add(someEl.dom.id, someEl);
13191 mc.add(otherEl.dom.id, otherEl);
13192 //and so on
13193
13194 // using getKey
13195 var mc = new Roo.util.MixedCollection();
13196 mc.getKey = function(el){
13197    return el.dom.id;
13198 };
13199 mc.add(someEl);
13200 mc.add(otherEl);
13201
13202 // or via the constructor
13203 var mc = new Roo.util.MixedCollection(false, function(el){
13204    return el.dom.id;
13205 });
13206 mc.add(someEl);
13207 mc.add(otherEl);
13208 </code></pre>
13209  * @param o {Object} The item for which to find the key.
13210  * @return {Object} The key for the passed item.
13211  */
13212     getKey : function(o){
13213          return o.id; 
13214     },
13215    
13216 /**
13217  * Replaces an item in the collection.
13218  * @param {String} key The key associated with the item to replace, or the item to replace.
13219  * @param o {Object} o (optional) If the first parameter passed was a key, the item to associate with that key.
13220  * @return {Object}  The new item.
13221  */
13222     replace : function(key, o){
13223         if(arguments.length == 1){
13224             o = arguments[0];
13225             key = this.getKey(o);
13226         }
13227         var old = this.item(key);
13228         if(typeof key == "undefined" || key === null || typeof old == "undefined"){
13229              return this.add(key, o);
13230         }
13231         var index = this.indexOfKey(key);
13232         this.items[index] = o;
13233         this.map[key] = o;
13234         this.fireEvent("replace", key, old, o);
13235         return o;
13236     },
13237    
13238 /**
13239  * Adds all elements of an Array or an Object to the collection.
13240  * @param {Object/Array} objs An Object containing properties which will be added to the collection, or
13241  * an Array of values, each of which are added to the collection.
13242  */
13243     addAll : function(objs){
13244         if(arguments.length > 1 || objs instanceof Array){
13245             var args = arguments.length > 1 ? arguments : objs;
13246             for(var i = 0, len = args.length; i < len; i++){
13247                 this.add(args[i]);
13248             }
13249         }else{
13250             for(var key in objs){
13251                 if(this.allowFunctions || typeof objs[key] != "function"){
13252                     this.add(key, objs[key]);
13253                 }
13254             }
13255         }
13256     },
13257    
13258 /**
13259  * Executes the specified function once for every item in the collection, passing each
13260  * item as the first and only parameter. returning false from the function will stop the iteration.
13261  * @param {Function} fn The function to execute for each item.
13262  * @param {Object} scope (optional) The scope in which to execute the function.
13263  */
13264     each : function(fn, scope){
13265         var items = [].concat(this.items); // each safe for removal
13266         for(var i = 0, len = items.length; i < len; i++){
13267             if(fn.call(scope || items[i], items[i], i, len) === false){
13268                 break;
13269             }
13270         }
13271     },
13272    
13273 /**
13274  * Executes the specified function once for every key in the collection, passing each
13275  * key, and its associated item as the first two parameters.
13276  * @param {Function} fn The function to execute for each item.
13277  * @param {Object} scope (optional) The scope in which to execute the function.
13278  */
13279     eachKey : function(fn, scope){
13280         for(var i = 0, len = this.keys.length; i < len; i++){
13281             fn.call(scope || window, this.keys[i], this.items[i], i, len);
13282         }
13283     },
13284    
13285 /**
13286  * Returns the first item in the collection which elicits a true return value from the
13287  * passed selection function.
13288  * @param {Function} fn The selection function to execute for each item.
13289  * @param {Object} scope (optional) The scope in which to execute the function.
13290  * @return {Object} The first item in the collection which returned true from the selection function.
13291  */
13292     find : function(fn, scope){
13293         for(var i = 0, len = this.items.length; i < len; i++){
13294             if(fn.call(scope || window, this.items[i], this.keys[i])){
13295                 return this.items[i];
13296             }
13297         }
13298         return null;
13299     },
13300    
13301 /**
13302  * Inserts an item at the specified index in the collection.
13303  * @param {Number} index The index to insert the item at.
13304  * @param {String} key The key to associate with the new item, or the item itself.
13305  * @param {Object} o  (optional) If the second parameter was a key, the new item.
13306  * @return {Object} The item inserted.
13307  */
13308     insert : function(index, key, o){
13309         if(arguments.length == 2){
13310             o = arguments[1];
13311             key = this.getKey(o);
13312         }
13313         if(index >= this.length){
13314             return this.add(key, o);
13315         }
13316         this.length++;
13317         this.items.splice(index, 0, o);
13318         if(typeof key != "undefined" && key != null){
13319             this.map[key] = o;
13320         }
13321         this.keys.splice(index, 0, key);
13322         this.fireEvent("add", index, o, key);
13323         return o;
13324     },
13325    
13326 /**
13327  * Removed an item from the collection.
13328  * @param {Object} o The item to remove.
13329  * @return {Object} The item removed.
13330  */
13331     remove : function(o){
13332         return this.removeAt(this.indexOf(o));
13333     },
13334    
13335 /**
13336  * Remove an item from a specified index in the collection.
13337  * @param {Number} index The index within the collection of the item to remove.
13338  */
13339     removeAt : function(index){
13340         if(index < this.length && index >= 0){
13341             this.length--;
13342             var o = this.items[index];
13343             this.items.splice(index, 1);
13344             var key = this.keys[index];
13345             if(typeof key != "undefined"){
13346                 delete this.map[key];
13347             }
13348             this.keys.splice(index, 1);
13349             this.fireEvent("remove", o, key);
13350         }
13351     },
13352    
13353 /**
13354  * Removed an item associated with the passed key fom the collection.
13355  * @param {String} key The key of the item to remove.
13356  */
13357     removeKey : function(key){
13358         return this.removeAt(this.indexOfKey(key));
13359     },
13360    
13361 /**
13362  * Returns the number of items in the collection.
13363  * @return {Number} the number of items in the collection.
13364  */
13365     getCount : function(){
13366         return this.length; 
13367     },
13368    
13369 /**
13370  * Returns index within the collection of the passed Object.
13371  * @param {Object} o The item to find the index of.
13372  * @return {Number} index of the item.
13373  */
13374     indexOf : function(o){
13375         if(!this.items.indexOf){
13376             for(var i = 0, len = this.items.length; i < len; i++){
13377                 if(this.items[i] == o) {
13378                     return i;
13379                 }
13380             }
13381             return -1;
13382         }else{
13383             return this.items.indexOf(o);
13384         }
13385     },
13386    
13387 /**
13388  * Returns index within the collection of the passed key.
13389  * @param {String} key The key to find the index of.
13390  * @return {Number} index of the key.
13391  */
13392     indexOfKey : function(key){
13393         if(!this.keys.indexOf){
13394             for(var i = 0, len = this.keys.length; i < len; i++){
13395                 if(this.keys[i] == key) {
13396                     return i;
13397                 }
13398             }
13399             return -1;
13400         }else{
13401             return this.keys.indexOf(key);
13402         }
13403     },
13404    
13405 /**
13406  * Returns the item associated with the passed key OR index. Key has priority over index.
13407  * @param {String/Number} key The key or index of the item.
13408  * @return {Object} The item associated with the passed key.
13409  */
13410     item : function(key){
13411         if (key === 'length') {
13412             return null;
13413         }
13414         var item = typeof this.map[key] != "undefined" ? this.map[key] : this.items[key];
13415         return typeof item != 'function' || this.allowFunctions ? item : null; // for prototype!
13416     },
13417     
13418 /**
13419  * Returns the item at the specified index.
13420  * @param {Number} index The index of the item.
13421  * @return {Object}
13422  */
13423     itemAt : function(index){
13424         return this.items[index];
13425     },
13426     
13427 /**
13428  * Returns the item associated with the passed key.
13429  * @param {String/Number} key The key of the item.
13430  * @return {Object} The item associated with the passed key.
13431  */
13432     key : function(key){
13433         return this.map[key];
13434     },
13435    
13436 /**
13437  * Returns true if the collection contains the passed Object as an item.
13438  * @param {Object} o  The Object to look for in the collection.
13439  * @return {Boolean} True if the collection contains the Object as an item.
13440  */
13441     contains : function(o){
13442         return this.indexOf(o) != -1;
13443     },
13444    
13445 /**
13446  * Returns true if the collection contains the passed Object as a key.
13447  * @param {String} key The key to look for in the collection.
13448  * @return {Boolean} True if the collection contains the Object as a key.
13449  */
13450     containsKey : function(key){
13451         return typeof this.map[key] != "undefined";
13452     },
13453    
13454 /**
13455  * Removes all items from the collection.
13456  */
13457     clear : function(){
13458         this.length = 0;
13459         this.items = [];
13460         this.keys = [];
13461         this.map = {};
13462         this.fireEvent("clear");
13463     },
13464    
13465 /**
13466  * Returns the first item in the collection.
13467  * @return {Object} the first item in the collection..
13468  */
13469     first : function(){
13470         return this.items[0]; 
13471     },
13472    
13473 /**
13474  * Returns the last item in the collection.
13475  * @return {Object} the last item in the collection..
13476  */
13477     last : function(){
13478         return this.items[this.length-1];   
13479     },
13480     
13481     _sort : function(property, dir, fn){
13482         var dsc = String(dir).toUpperCase() == "DESC" ? -1 : 1;
13483         fn = fn || function(a, b){
13484             return a-b;
13485         };
13486         var c = [], k = this.keys, items = this.items;
13487         for(var i = 0, len = items.length; i < len; i++){
13488             c[c.length] = {key: k[i], value: items[i], index: i};
13489         }
13490         c.sort(function(a, b){
13491             var v = fn(a[property], b[property]) * dsc;
13492             if(v == 0){
13493                 v = (a.index < b.index ? -1 : 1);
13494             }
13495             return v;
13496         });
13497         for(var i = 0, len = c.length; i < len; i++){
13498             items[i] = c[i].value;
13499             k[i] = c[i].key;
13500         }
13501         this.fireEvent("sort", this);
13502     },
13503     
13504     /**
13505      * Sorts this collection with the passed comparison function
13506      * @param {String} direction (optional) "ASC" or "DESC"
13507      * @param {Function} fn (optional) comparison function
13508      */
13509     sort : function(dir, fn){
13510         this._sort("value", dir, fn);
13511     },
13512     
13513     /**
13514      * Sorts this collection by keys
13515      * @param {String} direction (optional) "ASC" or "DESC"
13516      * @param {Function} fn (optional) a comparison function (defaults to case insensitive string)
13517      */
13518     keySort : function(dir, fn){
13519         this._sort("key", dir, fn || function(a, b){
13520             return String(a).toUpperCase()-String(b).toUpperCase();
13521         });
13522     },
13523     
13524     /**
13525      * Returns a range of items in this collection
13526      * @param {Number} startIndex (optional) defaults to 0
13527      * @param {Number} endIndex (optional) default to the last item
13528      * @return {Array} An array of items
13529      */
13530     getRange : function(start, end){
13531         var items = this.items;
13532         if(items.length < 1){
13533             return [];
13534         }
13535         start = start || 0;
13536         end = Math.min(typeof end == "undefined" ? this.length-1 : end, this.length-1);
13537         var r = [];
13538         if(start <= end){
13539             for(var i = start; i <= end; i++) {
13540                     r[r.length] = items[i];
13541             }
13542         }else{
13543             for(var i = start; i >= end; i--) {
13544                     r[r.length] = items[i];
13545             }
13546         }
13547         return r;
13548     },
13549         
13550     /**
13551      * Filter the <i>objects</i> in this collection by a specific property. 
13552      * Returns a new collection that has been filtered.
13553      * @param {String} property A property on your objects
13554      * @param {String/RegExp} value Either string that the property values 
13555      * should start with or a RegExp to test against the property
13556      * @return {MixedCollection} The new filtered collection
13557      */
13558     filter : function(property, value){
13559         if(!value.exec){ // not a regex
13560             value = String(value);
13561             if(value.length == 0){
13562                 return this.clone();
13563             }
13564             value = new RegExp("^" + Roo.escapeRe(value), "i");
13565         }
13566         return this.filterBy(function(o){
13567             return o && value.test(o[property]);
13568         });
13569         },
13570     
13571     /**
13572      * Filter by a function. * Returns a new collection that has been filtered.
13573      * The passed function will be called with each 
13574      * object in the collection. If the function returns true, the value is included 
13575      * otherwise it is filtered.
13576      * @param {Function} fn The function to be called, it will receive the args o (the object), k (the key)
13577      * @param {Object} scope (optional) The scope of the function (defaults to this) 
13578      * @return {MixedCollection} The new filtered collection
13579      */
13580     filterBy : function(fn, scope){
13581         var r = new Roo.util.MixedCollection();
13582         r.getKey = this.getKey;
13583         var k = this.keys, it = this.items;
13584         for(var i = 0, len = it.length; i < len; i++){
13585             if(fn.call(scope||this, it[i], k[i])){
13586                                 r.add(k[i], it[i]);
13587                         }
13588         }
13589         return r;
13590     },
13591     
13592     /**
13593      * Creates a duplicate of this collection
13594      * @return {MixedCollection}
13595      */
13596     clone : function(){
13597         var r = new Roo.util.MixedCollection();
13598         var k = this.keys, it = this.items;
13599         for(var i = 0, len = it.length; i < len; i++){
13600             r.add(k[i], it[i]);
13601         }
13602         r.getKey = this.getKey;
13603         return r;
13604     }
13605 });
13606 /**
13607  * Returns the item associated with the passed key or index.
13608  * @method
13609  * @param {String/Number} key The key or index of the item.
13610  * @return {Object} The item associated with the passed key.
13611  */
13612 Roo.util.MixedCollection.prototype.get = Roo.util.MixedCollection.prototype.item;/*
13613  * Based on:
13614  * Ext JS Library 1.1.1
13615  * Copyright(c) 2006-2007, Ext JS, LLC.
13616  *
13617  * Originally Released Under LGPL - original licence link has changed is not relivant.
13618  *
13619  * Fork - LGPL
13620  * <script type="text/javascript">
13621  */
13622 /**
13623  * @class Roo.util.JSON
13624  * Modified version of Douglas Crockford"s json.js that doesn"t
13625  * mess with the Object prototype 
13626  * http://www.json.org/js.html
13627  * @singleton
13628  */
13629 Roo.util.JSON = new (function(){
13630     var useHasOwn = {}.hasOwnProperty ? true : false;
13631     
13632     // crashes Safari in some instances
13633     //var validRE = /^("(\\.|[^"\\\n\r])*?"|[,:{}\[\]0-9.\-+Eaeflnr-u \n\r\t])+?$/;
13634     
13635     var pad = function(n) {
13636         return n < 10 ? "0" + n : n;
13637     };
13638     
13639     var m = {
13640         "\b": '\\b',
13641         "\t": '\\t',
13642         "\n": '\\n',
13643         "\f": '\\f',
13644         "\r": '\\r',
13645         '"' : '\\"',
13646         "\\": '\\\\'
13647     };
13648
13649     var encodeString = function(s){
13650         if (/["\\\x00-\x1f]/.test(s)) {
13651             return '"' + s.replace(/([\x00-\x1f\\"])/g, function(a, b) {
13652                 var c = m[b];
13653                 if(c){
13654                     return c;
13655                 }
13656                 c = b.charCodeAt();
13657                 return "\\u00" +
13658                     Math.floor(c / 16).toString(16) +
13659                     (c % 16).toString(16);
13660             }) + '"';
13661         }
13662         return '"' + s + '"';
13663     };
13664     
13665     var encodeArray = function(o){
13666         var a = ["["], b, i, l = o.length, v;
13667             for (i = 0; i < l; i += 1) {
13668                 v = o[i];
13669                 switch (typeof v) {
13670                     case "undefined":
13671                     case "function":
13672                     case "unknown":
13673                         break;
13674                     default:
13675                         if (b) {
13676                             a.push(',');
13677                         }
13678                         a.push(v === null ? "null" : Roo.util.JSON.encode(v));
13679                         b = true;
13680                 }
13681             }
13682             a.push("]");
13683             return a.join("");
13684     };
13685     
13686     var encodeDate = function(o){
13687         return '"' + o.getFullYear() + "-" +
13688                 pad(o.getMonth() + 1) + "-" +
13689                 pad(o.getDate()) + "T" +
13690                 pad(o.getHours()) + ":" +
13691                 pad(o.getMinutes()) + ":" +
13692                 pad(o.getSeconds()) + '"';
13693     };
13694     
13695     /**
13696      * Encodes an Object, Array or other value
13697      * @param {Mixed} o The variable to encode
13698      * @return {String} The JSON string
13699      */
13700     this.encode = function(o)
13701     {
13702         // should this be extended to fully wrap stringify..
13703         
13704         if(typeof o == "undefined" || o === null){
13705             return "null";
13706         }else if(o instanceof Array){
13707             return encodeArray(o);
13708         }else if(o instanceof Date){
13709             return encodeDate(o);
13710         }else if(typeof o == "string"){
13711             return encodeString(o);
13712         }else if(typeof o == "number"){
13713             return isFinite(o) ? String(o) : "null";
13714         }else if(typeof o == "boolean"){
13715             return String(o);
13716         }else {
13717             var a = ["{"], b, i, v;
13718             for (i in o) {
13719                 if(!useHasOwn || o.hasOwnProperty(i)) {
13720                     v = o[i];
13721                     switch (typeof v) {
13722                     case "undefined":
13723                     case "function":
13724                     case "unknown":
13725                         break;
13726                     default:
13727                         if(b){
13728                             a.push(',');
13729                         }
13730                         a.push(this.encode(i), ":",
13731                                 v === null ? "null" : this.encode(v));
13732                         b = true;
13733                     }
13734                 }
13735             }
13736             a.push("}");
13737             return a.join("");
13738         }
13739     };
13740     
13741     /**
13742      * Decodes (parses) a JSON string to an object. If the JSON is invalid, this function throws a SyntaxError.
13743      * @param {String} json The JSON string
13744      * @return {Object} The resulting object
13745      */
13746     this.decode = function(json){
13747         
13748         return  /** eval:var:json */ eval("(" + json + ')');
13749     };
13750 })();
13751 /** 
13752  * Shorthand for {@link Roo.util.JSON#encode}
13753  * @member Roo encode 
13754  * @method */
13755 Roo.encode = typeof(JSON) != 'undefined' && JSON.stringify ? JSON.stringify : Roo.util.JSON.encode;
13756 /** 
13757  * Shorthand for {@link Roo.util.JSON#decode}
13758  * @member Roo decode 
13759  * @method */
13760 Roo.decode = typeof(JSON) != 'undefined' && JSON.parse ? JSON.parse : Roo.util.JSON.decode;
13761 /*
13762  * Based on:
13763  * Ext JS Library 1.1.1
13764  * Copyright(c) 2006-2007, Ext JS, LLC.
13765  *
13766  * Originally Released Under LGPL - original licence link has changed is not relivant.
13767  *
13768  * Fork - LGPL
13769  * <script type="text/javascript">
13770  */
13771  
13772 /**
13773  * @class Roo.util.Format
13774  * Reusable data formatting functions
13775  * @singleton
13776  */
13777 Roo.util.Format = function(){
13778     var trimRe = /^\s+|\s+$/g;
13779     return {
13780         /**
13781          * Truncate a string and add an ellipsis ('...') to the end if it exceeds the specified length
13782          * @param {String} value The string to truncate
13783          * @param {Number} length The maximum length to allow before truncating
13784          * @return {String} The converted text
13785          */
13786         ellipsis : function(value, len){
13787             if(value && value.length > len){
13788                 return value.substr(0, len-3)+"...";
13789             }
13790             return value;
13791         },
13792
13793         /**
13794          * Checks a reference and converts it to empty string if it is undefined
13795          * @param {Mixed} value Reference to check
13796          * @return {Mixed} Empty string if converted, otherwise the original value
13797          */
13798         undef : function(value){
13799             return typeof value != "undefined" ? value : "";
13800         },
13801
13802         /**
13803          * Convert certain characters (&, <, >, and ') to their HTML character equivalents for literal display in web pages.
13804          * @param {String} value The string to encode
13805          * @return {String} The encoded text
13806          */
13807         htmlEncode : function(value){
13808             return !value ? value : String(value).replace(/&/g, "&amp;").replace(/>/g, "&gt;").replace(/</g, "&lt;").replace(/"/g, "&quot;");
13809         },
13810
13811         /**
13812          * Convert certain characters (&, <, >, and ') from their HTML character equivalents.
13813          * @param {String} value The string to decode
13814          * @return {String} The decoded text
13815          */
13816         htmlDecode : function(value){
13817             return !value ? value : String(value).replace(/&amp;/g, "&").replace(/&gt;/g, ">").replace(/&lt;/g, "<").replace(/&quot;/g, '"');
13818         },
13819
13820         /**
13821          * Trims any whitespace from either side of a string
13822          * @param {String} value The text to trim
13823          * @return {String} The trimmed text
13824          */
13825         trim : function(value){
13826             return String(value).replace(trimRe, "");
13827         },
13828
13829         /**
13830          * Returns a substring from within an original string
13831          * @param {String} value The original text
13832          * @param {Number} start The start index of the substring
13833          * @param {Number} length The length of the substring
13834          * @return {String} The substring
13835          */
13836         substr : function(value, start, length){
13837             return String(value).substr(start, length);
13838         },
13839
13840         /**
13841          * Converts a string to all lower case letters
13842          * @param {String} value The text to convert
13843          * @return {String} The converted text
13844          */
13845         lowercase : function(value){
13846             return String(value).toLowerCase();
13847         },
13848
13849         /**
13850          * Converts a string to all upper case letters
13851          * @param {String} value The text to convert
13852          * @return {String} The converted text
13853          */
13854         uppercase : function(value){
13855             return String(value).toUpperCase();
13856         },
13857
13858         /**
13859          * Converts the first character only of a string to upper case
13860          * @param {String} value The text to convert
13861          * @return {String} The converted text
13862          */
13863         capitalize : function(value){
13864             return !value ? value : value.charAt(0).toUpperCase() + value.substr(1).toLowerCase();
13865         },
13866
13867         // private
13868         call : function(value, fn){
13869             if(arguments.length > 2){
13870                 var args = Array.prototype.slice.call(arguments, 2);
13871                 args.unshift(value);
13872                  
13873                 return /** eval:var:value */  eval(fn).apply(window, args);
13874             }else{
13875                 /** eval:var:value */
13876                 return /** eval:var:value */ eval(fn).call(window, value);
13877             }
13878         },
13879
13880        
13881         /**
13882          * safer version of Math.toFixed..??/
13883          * @param {Number/String} value The numeric value to format
13884          * @param {Number/String} value Decimal places 
13885          * @return {String} The formatted currency string
13886          */
13887         toFixed : function(v, n)
13888         {
13889             // why not use to fixed - precision is buggered???
13890             if (!n) {
13891                 return Math.round(v-0);
13892             }
13893             var fact = Math.pow(10,n+1);
13894             v = (Math.round((v-0)*fact))/fact;
13895             var z = (''+fact).substring(2);
13896             if (v == Math.floor(v)) {
13897                 return Math.floor(v) + '.' + z;
13898             }
13899             
13900             // now just padd decimals..
13901             var ps = String(v).split('.');
13902             var fd = (ps[1] + z);
13903             var r = fd.substring(0,n); 
13904             var rm = fd.substring(n); 
13905             if (rm < 5) {
13906                 return ps[0] + '.' + r;
13907             }
13908             r*=1; // turn it into a number;
13909             r++;
13910             if (String(r).length != n) {
13911                 ps[0]*=1;
13912                 ps[0]++;
13913                 r = String(r).substring(1); // chop the end off.
13914             }
13915             
13916             return ps[0] + '.' + r;
13917              
13918         },
13919         
13920         /**
13921          * Format a number as US currency
13922          * @param {Number/String} value The numeric value to format
13923          * @return {String} The formatted currency string
13924          */
13925         usMoney : function(v){
13926             return '$' + Roo.util.Format.number(v);
13927         },
13928         
13929         /**
13930          * Format a number
13931          * eventually this should probably emulate php's number_format
13932          * @param {Number/String} value The numeric value to format
13933          * @param {Number} decimals number of decimal places
13934          * @param {String} delimiter for thousands (default comma)
13935          * @return {String} The formatted currency string
13936          */
13937         number : function(v, decimals, thousandsDelimiter)
13938         {
13939             // multiply and round.
13940             decimals = typeof(decimals) == 'undefined' ? 2 : decimals;
13941             thousandsDelimiter = typeof(thousandsDelimiter) == 'undefined' ? ',' : thousandsDelimiter;
13942             
13943             var mul = Math.pow(10, decimals);
13944             var zero = String(mul).substring(1);
13945             v = (Math.round((v-0)*mul))/mul;
13946             
13947             // if it's '0' number.. then
13948             
13949             //v = (v == Math.floor(v)) ? v + "." + zero : ((v*10 == Math.floor(v*10)) ? v + "0" : v);
13950             v = String(v);
13951             var ps = v.split('.');
13952             var whole = ps[0];
13953             
13954             var r = /(\d+)(\d{3})/;
13955             // add comma's
13956             
13957             if(thousandsDelimiter.length != 0) {
13958                 whole = whole.replace(/\B(?=(\d{3})+(?!\d))/g, thousandsDelimiter );
13959             } 
13960             
13961             var sub = ps[1] ?
13962                     // has decimals..
13963                     (decimals ?  ('.'+ ps[1] + zero.substring(ps[1].length)) : '') :
13964                     // does not have decimals
13965                     (decimals ? ('.' + zero) : '');
13966             
13967             
13968             return whole + sub ;
13969         },
13970         
13971         /**
13972          * Parse a value into a formatted date using the specified format pattern.
13973          * @param {Mixed} value The value to format
13974          * @param {String} format (optional) Any valid date format string (defaults to 'm/d/Y')
13975          * @return {String} The formatted date string
13976          */
13977         date : function(v, format){
13978             if(!v){
13979                 return "";
13980             }
13981             if(!(v instanceof Date)){
13982                 v = new Date(Date.parse(v));
13983             }
13984             return v.dateFormat(format || Roo.util.Format.defaults.date);
13985         },
13986
13987         /**
13988          * Returns a date rendering function that can be reused to apply a date format multiple times efficiently
13989          * @param {String} format Any valid date format string
13990          * @return {Function} The date formatting function
13991          */
13992         dateRenderer : function(format){
13993             return function(v){
13994                 return Roo.util.Format.date(v, format);  
13995             };
13996         },
13997
13998         // private
13999         stripTagsRE : /<\/?[^>]+>/gi,
14000         
14001         /**
14002          * Strips all HTML tags
14003          * @param {Mixed} value The text from which to strip tags
14004          * @return {String} The stripped text
14005          */
14006         stripTags : function(v){
14007             return !v ? v : String(v).replace(this.stripTagsRE, "");
14008         },
14009         
14010         /**
14011          * Size in Mb,Gb etc.
14012          * @param {Number} value The number to be formated
14013          * @param {number} decimals how many decimal places
14014          * @return {String} the formated string
14015          */
14016         size : function(value, decimals)
14017         {
14018             var sizes = ['b', 'k', 'M', 'G', 'T'];
14019             if (value == 0) {
14020                 return 0;
14021             }
14022             var i = parseInt(Math.floor(Math.log(value) / Math.log(1024)));
14023             return Roo.util.Format.number(value/ Math.pow(1024, i) ,decimals)   + sizes[i];
14024         }
14025         
14026         
14027         
14028     };
14029 }();
14030 Roo.util.Format.defaults = {
14031     date : 'd/M/Y'
14032 };/*
14033  * Based on:
14034  * Ext JS Library 1.1.1
14035  * Copyright(c) 2006-2007, Ext JS, LLC.
14036  *
14037  * Originally Released Under LGPL - original licence link has changed is not relivant.
14038  *
14039  * Fork - LGPL
14040  * <script type="text/javascript">
14041  */
14042
14043
14044  
14045
14046 /**
14047  * @class Roo.MasterTemplate
14048  * @extends Roo.Template
14049  * Provides a template that can have child templates. The syntax is:
14050 <pre><code>
14051 var t = new Roo.MasterTemplate(
14052         '&lt;select name="{name}"&gt;',
14053                 '&lt;tpl name="options"&gt;&lt;option value="{value:trim}"&gt;{text:ellipsis(10)}&lt;/option&gt;&lt;/tpl&gt;',
14054         '&lt;/select&gt;'
14055 );
14056 t.add('options', {value: 'foo', text: 'bar'});
14057 // or you can add multiple child elements in one shot
14058 t.addAll('options', [
14059     {value: 'foo', text: 'bar'},
14060     {value: 'foo2', text: 'bar2'},
14061     {value: 'foo3', text: 'bar3'}
14062 ]);
14063 // then append, applying the master template values
14064 t.append('my-form', {name: 'my-select'});
14065 </code></pre>
14066 * A name attribute for the child template is not required if you have only one child
14067 * template or you want to refer to them by index.
14068  */
14069 Roo.MasterTemplate = function(){
14070     Roo.MasterTemplate.superclass.constructor.apply(this, arguments);
14071     this.originalHtml = this.html;
14072     var st = {};
14073     var m, re = this.subTemplateRe;
14074     re.lastIndex = 0;
14075     var subIndex = 0;
14076     while(m = re.exec(this.html)){
14077         var name = m[1], content = m[2];
14078         st[subIndex] = {
14079             name: name,
14080             index: subIndex,
14081             buffer: [],
14082             tpl : new Roo.Template(content)
14083         };
14084         if(name){
14085             st[name] = st[subIndex];
14086         }
14087         st[subIndex].tpl.compile();
14088         st[subIndex].tpl.call = this.call.createDelegate(this);
14089         subIndex++;
14090     }
14091     this.subCount = subIndex;
14092     this.subs = st;
14093 };
14094 Roo.extend(Roo.MasterTemplate, Roo.Template, {
14095     /**
14096     * The regular expression used to match sub templates
14097     * @type RegExp
14098     * @property
14099     */
14100     subTemplateRe : /<tpl(?:\sname="([\w-]+)")?>((?:.|\n)*?)<\/tpl>/gi,
14101
14102     /**
14103      * Applies the passed values to a child template.
14104      * @param {String/Number} name (optional) The name or index of the child template
14105      * @param {Array/Object} values The values to be applied to the template
14106      * @return {MasterTemplate} this
14107      */
14108      add : function(name, values){
14109         if(arguments.length == 1){
14110             values = arguments[0];
14111             name = 0;
14112         }
14113         var s = this.subs[name];
14114         s.buffer[s.buffer.length] = s.tpl.apply(values);
14115         return this;
14116     },
14117
14118     /**
14119      * Applies all the passed values to a child template.
14120      * @param {String/Number} name (optional) The name or index of the child template
14121      * @param {Array} values The values to be applied to the template, this should be an array of objects.
14122      * @param {Boolean} reset (optional) True to reset the template first
14123      * @return {MasterTemplate} this
14124      */
14125     fill : function(name, values, reset){
14126         var a = arguments;
14127         if(a.length == 1 || (a.length == 2 && typeof a[1] == "boolean")){
14128             values = a[0];
14129             name = 0;
14130             reset = a[1];
14131         }
14132         if(reset){
14133             this.reset();
14134         }
14135         for(var i = 0, len = values.length; i < len; i++){
14136             this.add(name, values[i]);
14137         }
14138         return this;
14139     },
14140
14141     /**
14142      * Resets the template for reuse
14143      * @return {MasterTemplate} this
14144      */
14145      reset : function(){
14146         var s = this.subs;
14147         for(var i = 0; i < this.subCount; i++){
14148             s[i].buffer = [];
14149         }
14150         return this;
14151     },
14152
14153     applyTemplate : function(values){
14154         var s = this.subs;
14155         var replaceIndex = -1;
14156         this.html = this.originalHtml.replace(this.subTemplateRe, function(m, name){
14157             return s[++replaceIndex].buffer.join("");
14158         });
14159         return Roo.MasterTemplate.superclass.applyTemplate.call(this, values);
14160     },
14161
14162     apply : function(){
14163         return this.applyTemplate.apply(this, arguments);
14164     },
14165
14166     compile : function(){return this;}
14167 });
14168
14169 /**
14170  * Alias for fill().
14171  * @method
14172  */
14173 Roo.MasterTemplate.prototype.addAll = Roo.MasterTemplate.prototype.fill;
14174  /**
14175  * Creates a template from the passed element's value (display:none textarea, preferred) or innerHTML. e.g.
14176  * var tpl = Roo.MasterTemplate.from('element-id');
14177  * @param {String/HTMLElement} el
14178  * @param {Object} config
14179  * @static
14180  */
14181 Roo.MasterTemplate.from = function(el, config){
14182     el = Roo.getDom(el);
14183     return new Roo.MasterTemplate(el.value || el.innerHTML, config || '');
14184 };/*
14185  * Based on:
14186  * Ext JS Library 1.1.1
14187  * Copyright(c) 2006-2007, Ext JS, LLC.
14188  *
14189  * Originally Released Under LGPL - original licence link has changed is not relivant.
14190  *
14191  * Fork - LGPL
14192  * <script type="text/javascript">
14193  */
14194
14195  
14196 /**
14197  * @class Roo.util.CSS
14198  * Utility class for manipulating CSS rules
14199  * @singleton
14200  */
14201 Roo.util.CSS = function(){
14202         var rules = null;
14203         var doc = document;
14204
14205     var camelRe = /(-[a-z])/gi;
14206     var camelFn = function(m, a){ return a.charAt(1).toUpperCase(); };
14207
14208    return {
14209    /**
14210     * Very simple dynamic creation of stylesheets from a text blob of rules.  The text will wrapped in a style
14211     * tag and appended to the HEAD of the document.
14212     * @param {String|Object} cssText The text containing the css rules
14213     * @param {String} id An id to add to the stylesheet for later removal
14214     * @return {StyleSheet}
14215     */
14216     createStyleSheet : function(cssText, id){
14217         var ss;
14218         var head = doc.getElementsByTagName("head")[0];
14219         var nrules = doc.createElement("style");
14220         nrules.setAttribute("type", "text/css");
14221         if(id){
14222             nrules.setAttribute("id", id);
14223         }
14224         if (typeof(cssText) != 'string') {
14225             // support object maps..
14226             // not sure if this a good idea.. 
14227             // perhaps it should be merged with the general css handling
14228             // and handle js style props.
14229             var cssTextNew = [];
14230             for(var n in cssText) {
14231                 var citems = [];
14232                 for(var k in cssText[n]) {
14233                     citems.push( k + ' : ' +cssText[n][k] + ';' );
14234                 }
14235                 cssTextNew.push( n + ' { ' + citems.join(' ') + '} ');
14236                 
14237             }
14238             cssText = cssTextNew.join("\n");
14239             
14240         }
14241        
14242        
14243        if(Roo.isIE){
14244            head.appendChild(nrules);
14245            ss = nrules.styleSheet;
14246            ss.cssText = cssText;
14247        }else{
14248            try{
14249                 nrules.appendChild(doc.createTextNode(cssText));
14250            }catch(e){
14251                nrules.cssText = cssText; 
14252            }
14253            head.appendChild(nrules);
14254            ss = nrules.styleSheet ? nrules.styleSheet : (nrules.sheet || doc.styleSheets[doc.styleSheets.length-1]);
14255        }
14256        this.cacheStyleSheet(ss);
14257        return ss;
14258    },
14259
14260    /**
14261     * Removes a style or link tag by id
14262     * @param {String} id The id of the tag
14263     */
14264    removeStyleSheet : function(id){
14265        var existing = doc.getElementById(id);
14266        if(existing){
14267            existing.parentNode.removeChild(existing);
14268        }
14269    },
14270
14271    /**
14272     * Dynamically swaps an existing stylesheet reference for a new one
14273     * @param {String} id The id of an existing link tag to remove
14274     * @param {String} url The href of the new stylesheet to include
14275     */
14276    swapStyleSheet : function(id, url){
14277        this.removeStyleSheet(id);
14278        var ss = doc.createElement("link");
14279        ss.setAttribute("rel", "stylesheet");
14280        ss.setAttribute("type", "text/css");
14281        ss.setAttribute("id", id);
14282        ss.setAttribute("href", url);
14283        doc.getElementsByTagName("head")[0].appendChild(ss);
14284    },
14285    
14286    /**
14287     * Refresh the rule cache if you have dynamically added stylesheets
14288     * @return {Object} An object (hash) of rules indexed by selector
14289     */
14290    refreshCache : function(){
14291        return this.getRules(true);
14292    },
14293
14294    // private
14295    cacheStyleSheet : function(stylesheet){
14296        if(!rules){
14297            rules = {};
14298        }
14299        try{// try catch for cross domain access issue
14300            var ssRules = stylesheet.cssRules || stylesheet.rules;
14301            for(var j = ssRules.length-1; j >= 0; --j){
14302                rules[ssRules[j].selectorText] = ssRules[j];
14303            }
14304        }catch(e){}
14305    },
14306    
14307    /**
14308     * Gets all css rules for the document
14309     * @param {Boolean} refreshCache true to refresh the internal cache
14310     * @return {Object} An object (hash) of rules indexed by selector
14311     */
14312    getRules : function(refreshCache){
14313                 if(rules == null || refreshCache){
14314                         rules = {};
14315                         var ds = doc.styleSheets;
14316                         for(var i =0, len = ds.length; i < len; i++){
14317                             try{
14318                         this.cacheStyleSheet(ds[i]);
14319                     }catch(e){} 
14320                 }
14321                 }
14322                 return rules;
14323         },
14324         
14325         /**
14326     * Gets an an individual CSS rule by selector(s)
14327     * @param {String/Array} selector The CSS selector or an array of selectors to try. The first selector that is found is returned.
14328     * @param {Boolean} refreshCache true to refresh the internal cache if you have recently updated any rules or added styles dynamically
14329     * @return {CSSRule} The CSS rule or null if one is not found
14330     */
14331    getRule : function(selector, refreshCache){
14332                 var rs = this.getRules(refreshCache);
14333                 if(!(selector instanceof Array)){
14334                     return rs[selector];
14335                 }
14336                 for(var i = 0; i < selector.length; i++){
14337                         if(rs[selector[i]]){
14338                                 return rs[selector[i]];
14339                         }
14340                 }
14341                 return null;
14342         },
14343         
14344         
14345         /**
14346     * Updates a rule property
14347     * @param {String/Array} selector If it's an array it tries each selector until it finds one. Stops immediately once one is found.
14348     * @param {String} property The css property
14349     * @param {String} value The new value for the property
14350     * @return {Boolean} true If a rule was found and updated
14351     */
14352    updateRule : function(selector, property, value){
14353                 if(!(selector instanceof Array)){
14354                         var rule = this.getRule(selector);
14355                         if(rule){
14356                                 rule.style[property.replace(camelRe, camelFn)] = value;
14357                                 return true;
14358                         }
14359                 }else{
14360                         for(var i = 0; i < selector.length; i++){
14361                                 if(this.updateRule(selector[i], property, value)){
14362                                         return true;
14363                                 }
14364                         }
14365                 }
14366                 return false;
14367         }
14368    };   
14369 }();/*
14370  * Based on:
14371  * Ext JS Library 1.1.1
14372  * Copyright(c) 2006-2007, Ext JS, LLC.
14373  *
14374  * Originally Released Under LGPL - original licence link has changed is not relivant.
14375  *
14376  * Fork - LGPL
14377  * <script type="text/javascript">
14378  */
14379
14380  
14381
14382 /**
14383  * @class Roo.util.ClickRepeater
14384  * @extends Roo.util.Observable
14385  * 
14386  * A wrapper class which can be applied to any element. Fires a "click" event while the
14387  * mouse is pressed. The interval between firings may be specified in the config but
14388  * defaults to 10 milliseconds.
14389  * 
14390  * Optionally, a CSS class may be applied to the element during the time it is pressed.
14391  * 
14392  * @cfg {String/HTMLElement/Element} el The element to act as a button.
14393  * @cfg {Number} delay The initial delay before the repeating event begins firing.
14394  * Similar to an autorepeat key delay.
14395  * @cfg {Number} interval The interval between firings of the "click" event. Default 10 ms.
14396  * @cfg {String} pressClass A CSS class name to be applied to the element while pressed.
14397  * @cfg {Boolean} accelerate True if autorepeating should start slowly and accelerate.
14398  *           "interval" and "delay" are ignored. "immediate" is honored.
14399  * @cfg {Boolean} preventDefault True to prevent the default click event
14400  * @cfg {Boolean} stopDefault True to stop the default click event
14401  * 
14402  * @history
14403  *     2007-02-02 jvs Original code contributed by Nige "Animal" White
14404  *     2007-02-02 jvs Renamed to ClickRepeater
14405  *   2007-02-03 jvs Modifications for FF Mac and Safari 
14406  *
14407  *  @constructor
14408  * @param {String/HTMLElement/Element} el The element to listen on
14409  * @param {Object} config
14410  **/
14411 Roo.util.ClickRepeater = function(el, config)
14412 {
14413     this.el = Roo.get(el);
14414     this.el.unselectable();
14415
14416     Roo.apply(this, config);
14417
14418     this.addEvents({
14419     /**
14420      * @event mousedown
14421      * Fires when the mouse button is depressed.
14422      * @param {Roo.util.ClickRepeater} this
14423      */
14424         "mousedown" : true,
14425     /**
14426      * @event click
14427      * Fires on a specified interval during the time the element is pressed.
14428      * @param {Roo.util.ClickRepeater} this
14429      */
14430         "click" : true,
14431     /**
14432      * @event mouseup
14433      * Fires when the mouse key is released.
14434      * @param {Roo.util.ClickRepeater} this
14435      */
14436         "mouseup" : true
14437     });
14438
14439     this.el.on("mousedown", this.handleMouseDown, this);
14440     if(this.preventDefault || this.stopDefault){
14441         this.el.on("click", function(e){
14442             if(this.preventDefault){
14443                 e.preventDefault();
14444             }
14445             if(this.stopDefault){
14446                 e.stopEvent();
14447             }
14448         }, this);
14449     }
14450
14451     // allow inline handler
14452     if(this.handler){
14453         this.on("click", this.handler,  this.scope || this);
14454     }
14455
14456     Roo.util.ClickRepeater.superclass.constructor.call(this);
14457 };
14458
14459 Roo.extend(Roo.util.ClickRepeater, Roo.util.Observable, {
14460     interval : 20,
14461     delay: 250,
14462     preventDefault : true,
14463     stopDefault : false,
14464     timer : 0,
14465
14466     // private
14467     handleMouseDown : function(){
14468         clearTimeout(this.timer);
14469         this.el.blur();
14470         if(this.pressClass){
14471             this.el.addClass(this.pressClass);
14472         }
14473         this.mousedownTime = new Date();
14474
14475         Roo.get(document).on("mouseup", this.handleMouseUp, this);
14476         this.el.on("mouseout", this.handleMouseOut, this);
14477
14478         this.fireEvent("mousedown", this);
14479         this.fireEvent("click", this);
14480         
14481         this.timer = this.click.defer(this.delay || this.interval, this);
14482     },
14483
14484     // private
14485     click : function(){
14486         this.fireEvent("click", this);
14487         this.timer = this.click.defer(this.getInterval(), this);
14488     },
14489
14490     // private
14491     getInterval: function(){
14492         if(!this.accelerate){
14493             return this.interval;
14494         }
14495         var pressTime = this.mousedownTime.getElapsed();
14496         if(pressTime < 500){
14497             return 400;
14498         }else if(pressTime < 1700){
14499             return 320;
14500         }else if(pressTime < 2600){
14501             return 250;
14502         }else if(pressTime < 3500){
14503             return 180;
14504         }else if(pressTime < 4400){
14505             return 140;
14506         }else if(pressTime < 5300){
14507             return 80;
14508         }else if(pressTime < 6200){
14509             return 50;
14510         }else{
14511             return 10;
14512         }
14513     },
14514
14515     // private
14516     handleMouseOut : function(){
14517         clearTimeout(this.timer);
14518         if(this.pressClass){
14519             this.el.removeClass(this.pressClass);
14520         }
14521         this.el.on("mouseover", this.handleMouseReturn, this);
14522     },
14523
14524     // private
14525     handleMouseReturn : function(){
14526         this.el.un("mouseover", this.handleMouseReturn);
14527         if(this.pressClass){
14528             this.el.addClass(this.pressClass);
14529         }
14530         this.click();
14531     },
14532
14533     // private
14534     handleMouseUp : function(){
14535         clearTimeout(this.timer);
14536         this.el.un("mouseover", this.handleMouseReturn);
14537         this.el.un("mouseout", this.handleMouseOut);
14538         Roo.get(document).un("mouseup", this.handleMouseUp);
14539         this.el.removeClass(this.pressClass);
14540         this.fireEvent("mouseup", this);
14541     }
14542 });/**
14543  * @class Roo.util.Clipboard
14544  * @static
14545  * 
14546  * Clipboard UTILS
14547  * 
14548  **/
14549 Roo.util.Clipboard = {
14550     /**
14551      * Writes a string to the clipboard - using the Clipboard API if https, otherwise using text area.
14552      * @param {String} text to copy to clipboard
14553      */
14554     write : function(text) {
14555         // navigator clipboard api needs a secure context (https)
14556         if (navigator.clipboard && window.isSecureContext) {
14557             // navigator clipboard api method'
14558             navigator.clipboard.writeText(text);
14559             return ;
14560         } 
14561         // text area method
14562         var ta = document.createElement("textarea");
14563         ta.value = text;
14564         // make the textarea out of viewport
14565         ta.style.position = "fixed";
14566         ta.style.left = "-999999px";
14567         ta.style.top = "-999999px";
14568         document.body.appendChild(ta);
14569         ta.focus();
14570         ta.select();
14571         document.execCommand('copy');
14572         (function() {
14573             ta.remove();
14574         }).defer(100);
14575         
14576     }
14577         
14578 }
14579     /*
14580  * Based on:
14581  * Ext JS Library 1.1.1
14582  * Copyright(c) 2006-2007, Ext JS, LLC.
14583  *
14584  * Originally Released Under LGPL - original licence link has changed is not relivant.
14585  *
14586  * Fork - LGPL
14587  * <script type="text/javascript">
14588  */
14589
14590  
14591 /**
14592  * @class Roo.KeyNav
14593  * <p>Provides a convenient wrapper for normalized keyboard navigation.  KeyNav allows you to bind
14594  * navigation keys to function calls that will get called when the keys are pressed, providing an easy
14595  * way to implement custom navigation schemes for any UI component.</p>
14596  * <p>The following are all of the possible keys that can be implemented: enter, left, right, up, down, tab, esc,
14597  * pageUp, pageDown, del, home, end.  Usage:</p>
14598  <pre><code>
14599 var nav = new Roo.KeyNav("my-element", {
14600     "left" : function(e){
14601         this.moveLeft(e.ctrlKey);
14602     },
14603     "right" : function(e){
14604         this.moveRight(e.ctrlKey);
14605     },
14606     "enter" : function(e){
14607         this.save();
14608     },
14609     scope : this
14610 });
14611 </code></pre>
14612  * @constructor
14613  * @param {String/HTMLElement/Roo.Element} el The element to bind to
14614  * @param {Object} config The config
14615  */
14616 Roo.KeyNav = function(el, config){
14617     this.el = Roo.get(el);
14618     Roo.apply(this, config);
14619     if(!this.disabled){
14620         this.disabled = true;
14621         this.enable();
14622     }
14623 };
14624
14625 Roo.KeyNav.prototype = {
14626     /**
14627      * @cfg {Boolean} disabled
14628      * True to disable this KeyNav instance (defaults to false)
14629      */
14630     disabled : false,
14631     /**
14632      * @cfg {String} defaultEventAction
14633      * The method to call on the {@link Roo.EventObject} after this KeyNav intercepts a key.  Valid values are
14634      * {@link Roo.EventObject#stopEvent}, {@link Roo.EventObject#preventDefault} and
14635      * {@link Roo.EventObject#stopPropagation} (defaults to 'stopEvent')
14636      */
14637     defaultEventAction: "stopEvent",
14638     /**
14639      * @cfg {Boolean} forceKeyDown
14640      * Handle the keydown event instead of keypress (defaults to false).  KeyNav automatically does this for IE since
14641      * IE does not propagate special keys on keypress, but setting this to true will force other browsers to also
14642      * handle keydown instead of keypress.
14643      */
14644     forceKeyDown : false,
14645
14646     // private
14647     prepareEvent : function(e){
14648         var k = e.getKey();
14649         var h = this.keyToHandler[k];
14650         //if(h && this[h]){
14651         //    e.stopPropagation();
14652         //}
14653         if(Roo.isSafari && h && k >= 37 && k <= 40){
14654             e.stopEvent();
14655         }
14656     },
14657
14658     // private
14659     relay : function(e){
14660         var k = e.getKey();
14661         var h = this.keyToHandler[k];
14662         if(h && this[h]){
14663             if(this.doRelay(e, this[h], h) !== true){
14664                 e[this.defaultEventAction]();
14665             }
14666         }
14667     },
14668
14669     // private
14670     doRelay : function(e, h, hname){
14671         return h.call(this.scope || this, e);
14672     },
14673
14674     // possible handlers
14675     enter : false,
14676     left : false,
14677     right : false,
14678     up : false,
14679     down : false,
14680     tab : false,
14681     esc : false,
14682     pageUp : false,
14683     pageDown : false,
14684     del : false,
14685     home : false,
14686     end : false,
14687
14688     // quick lookup hash
14689     keyToHandler : {
14690         37 : "left",
14691         39 : "right",
14692         38 : "up",
14693         40 : "down",
14694         33 : "pageUp",
14695         34 : "pageDown",
14696         46 : "del",
14697         36 : "home",
14698         35 : "end",
14699         13 : "enter",
14700         27 : "esc",
14701         9  : "tab"
14702     },
14703
14704         /**
14705          * Enable this KeyNav
14706          */
14707         enable: function(){
14708                 if(this.disabled){
14709             // ie won't do special keys on keypress, no one else will repeat keys with keydown
14710             // the EventObject will normalize Safari automatically
14711             if(this.forceKeyDown || Roo.isIE || Roo.isAir){
14712                 this.el.on("keydown", this.relay,  this);
14713             }else{
14714                 this.el.on("keydown", this.prepareEvent,  this);
14715                 this.el.on("keypress", this.relay,  this);
14716             }
14717                     this.disabled = false;
14718                 }
14719         },
14720
14721         /**
14722          * Disable this KeyNav
14723          */
14724         disable: function(){
14725                 if(!this.disabled){
14726                     if(this.forceKeyDown || Roo.isIE || Roo.isAir){
14727                 this.el.un("keydown", this.relay);
14728             }else{
14729                 this.el.un("keydown", this.prepareEvent);
14730                 this.el.un("keypress", this.relay);
14731             }
14732                     this.disabled = true;
14733                 }
14734         }
14735 };/*
14736  * Based on:
14737  * Ext JS Library 1.1.1
14738  * Copyright(c) 2006-2007, Ext JS, LLC.
14739  *
14740  * Originally Released Under LGPL - original licence link has changed is not relivant.
14741  *
14742  * Fork - LGPL
14743  * <script type="text/javascript">
14744  */
14745
14746  
14747 /**
14748  * @class Roo.KeyMap
14749  * Handles mapping keys to actions for an element. One key map can be used for multiple actions.
14750  * The constructor accepts the same config object as defined by {@link #addBinding}.
14751  * If you bind a callback function to a KeyMap, anytime the KeyMap handles an expected key
14752  * combination it will call the function with this signature (if the match is a multi-key
14753  * combination the callback will still be called only once): (String key, Roo.EventObject e)
14754  * A KeyMap can also handle a string representation of keys.<br />
14755  * Usage:
14756  <pre><code>
14757 // map one key by key code
14758 var map = new Roo.KeyMap("my-element", {
14759     key: 13, // or Roo.EventObject.ENTER
14760     fn: myHandler,
14761     scope: myObject
14762 });
14763
14764 // map multiple keys to one action by string
14765 var map = new Roo.KeyMap("my-element", {
14766     key: "a\r\n\t",
14767     fn: myHandler,
14768     scope: myObject
14769 });
14770
14771 // map multiple keys to multiple actions by strings and array of codes
14772 var map = new Roo.KeyMap("my-element", [
14773     {
14774         key: [10,13],
14775         fn: function(){ alert("Return was pressed"); }
14776     }, {
14777         key: "abc",
14778         fn: function(){ alert('a, b or c was pressed'); }
14779     }, {
14780         key: "\t",
14781         ctrl:true,
14782         shift:true,
14783         fn: function(){ alert('Control + shift + tab was pressed.'); }
14784     }
14785 ]);
14786 </code></pre>
14787  * <b>Note: A KeyMap starts enabled</b>
14788  * @constructor
14789  * @param {String/HTMLElement/Roo.Element} el The element to bind to
14790  * @param {Object} config The config (see {@link #addBinding})
14791  * @param {String} eventName (optional) The event to bind to (defaults to "keydown")
14792  */
14793 Roo.KeyMap = function(el, config, eventName){
14794     this.el  = Roo.get(el);
14795     this.eventName = eventName || "keydown";
14796     this.bindings = [];
14797     if(config){
14798         this.addBinding(config);
14799     }
14800     this.enable();
14801 };
14802
14803 Roo.KeyMap.prototype = {
14804     /**
14805      * True to stop the event from bubbling and prevent the default browser action if the
14806      * key was handled by the KeyMap (defaults to false)
14807      * @type Boolean
14808      */
14809     stopEvent : false,
14810
14811     /**
14812      * Add a new binding to this KeyMap. The following config object properties are supported:
14813      * <pre>
14814 Property    Type             Description
14815 ----------  ---------------  ----------------------------------------------------------------------
14816 key         String/Array     A single keycode or an array of keycodes to handle
14817 shift       Boolean          True to handle key only when shift is pressed (defaults to false)
14818 ctrl        Boolean          True to handle key only when ctrl is pressed (defaults to false)
14819 alt         Boolean          True to handle key only when alt is pressed (defaults to false)
14820 fn          Function         The function to call when KeyMap finds the expected key combination
14821 scope       Object           The scope of the callback function
14822 </pre>
14823      *
14824      * Usage:
14825      * <pre><code>
14826 // Create a KeyMap
14827 var map = new Roo.KeyMap(document, {
14828     key: Roo.EventObject.ENTER,
14829     fn: handleKey,
14830     scope: this
14831 });
14832
14833 //Add a new binding to the existing KeyMap later
14834 map.addBinding({
14835     key: 'abc',
14836     shift: true,
14837     fn: handleKey,
14838     scope: this
14839 });
14840 </code></pre>
14841      * @param {Object/Array} config A single KeyMap config or an array of configs
14842      */
14843         addBinding : function(config){
14844         if(config instanceof Array){
14845             for(var i = 0, len = config.length; i < len; i++){
14846                 this.addBinding(config[i]);
14847             }
14848             return;
14849         }
14850         var keyCode = config.key,
14851             shift = config.shift, 
14852             ctrl = config.ctrl, 
14853             alt = config.alt,
14854             fn = config.fn,
14855             scope = config.scope;
14856         if(typeof keyCode == "string"){
14857             var ks = [];
14858             var keyString = keyCode.toUpperCase();
14859             for(var j = 0, len = keyString.length; j < len; j++){
14860                 ks.push(keyString.charCodeAt(j));
14861             }
14862             keyCode = ks;
14863         }
14864         var keyArray = keyCode instanceof Array;
14865         var handler = function(e){
14866             if((!shift || e.shiftKey) && (!ctrl || e.ctrlKey) &&  (!alt || e.altKey)){
14867                 var k = e.getKey();
14868                 if(keyArray){
14869                     for(var i = 0, len = keyCode.length; i < len; i++){
14870                         if(keyCode[i] == k){
14871                           if(this.stopEvent){
14872                               e.stopEvent();
14873                           }
14874                           fn.call(scope || window, k, e);
14875                           return;
14876                         }
14877                     }
14878                 }else{
14879                     if(k == keyCode){
14880                         if(this.stopEvent){
14881                            e.stopEvent();
14882                         }
14883                         fn.call(scope || window, k, e);
14884                     }
14885                 }
14886             }
14887         };
14888         this.bindings.push(handler);  
14889         },
14890
14891     /**
14892      * Shorthand for adding a single key listener
14893      * @param {Number/Array/Object} key Either the numeric key code, array of key codes or an object with the
14894      * following options:
14895      * {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
14896      * @param {Function} fn The function to call
14897      * @param {Object} scope (optional) The scope of the function
14898      */
14899     on : function(key, fn, scope){
14900         var keyCode, shift, ctrl, alt;
14901         if(typeof key == "object" && !(key instanceof Array)){
14902             keyCode = key.key;
14903             shift = key.shift;
14904             ctrl = key.ctrl;
14905             alt = key.alt;
14906         }else{
14907             keyCode = key;
14908         }
14909         this.addBinding({
14910             key: keyCode,
14911             shift: shift,
14912             ctrl: ctrl,
14913             alt: alt,
14914             fn: fn,
14915             scope: scope
14916         })
14917     },
14918
14919     // private
14920     handleKeyDown : function(e){
14921             if(this.enabled){ //just in case
14922             var b = this.bindings;
14923             for(var i = 0, len = b.length; i < len; i++){
14924                 b[i].call(this, e);
14925             }
14926             }
14927         },
14928         
14929         /**
14930          * Returns true if this KeyMap is enabled
14931          * @return {Boolean} 
14932          */
14933         isEnabled : function(){
14934             return this.enabled;  
14935         },
14936         
14937         /**
14938          * Enables this KeyMap
14939          */
14940         enable: function(){
14941                 if(!this.enabled){
14942                     this.el.on(this.eventName, this.handleKeyDown, this);
14943                     this.enabled = true;
14944                 }
14945         },
14946
14947         /**
14948          * Disable this KeyMap
14949          */
14950         disable: function(){
14951                 if(this.enabled){
14952                     this.el.removeListener(this.eventName, this.handleKeyDown, this);
14953                     this.enabled = false;
14954                 }
14955         }
14956 };/*
14957  * Based on:
14958  * Ext JS Library 1.1.1
14959  * Copyright(c) 2006-2007, Ext JS, LLC.
14960  *
14961  * Originally Released Under LGPL - original licence link has changed is not relivant.
14962  *
14963  * Fork - LGPL
14964  * <script type="text/javascript">
14965  */
14966
14967  
14968 /**
14969  * @class Roo.util.TextMetrics
14970  * Provides precise pixel measurements for blocks of text so that you can determine exactly how high and
14971  * wide, in pixels, a given block of text will be.
14972  * @singleton
14973  */
14974 Roo.util.TextMetrics = function(){
14975     var shared;
14976     return {
14977         /**
14978          * Measures the size of the specified text
14979          * @param {String/HTMLElement} el The element, dom node or id from which to copy existing CSS styles
14980          * that can affect the size of the rendered text
14981          * @param {String} text The text to measure
14982          * @param {Number} fixedWidth (optional) If the text will be multiline, you have to set a fixed width
14983          * in order to accurately measure the text height
14984          * @return {Object} An object containing the text's size {width: (width), height: (height)}
14985          */
14986         measure : function(el, text, fixedWidth){
14987             if(!shared){
14988                 shared = Roo.util.TextMetrics.Instance(el, fixedWidth);
14989             }
14990             shared.bind(el);
14991             shared.setFixedWidth(fixedWidth || 'auto');
14992             return shared.getSize(text);
14993         },
14994
14995         /**
14996          * Return a unique TextMetrics instance that can be bound directly to an element and reused.  This reduces
14997          * the overhead of multiple calls to initialize the style properties on each measurement.
14998          * @param {String/HTMLElement} el The element, dom node or id that the instance will be bound to
14999          * @param {Number} fixedWidth (optional) If the text will be multiline, you have to set a fixed width
15000          * in order to accurately measure the text height
15001          * @return {Roo.util.TextMetrics.Instance} instance The new instance
15002          */
15003         createInstance : function(el, fixedWidth){
15004             return Roo.util.TextMetrics.Instance(el, fixedWidth);
15005         }
15006     };
15007 }();
15008
15009  
15010
15011 Roo.util.TextMetrics.Instance = function(bindTo, fixedWidth){
15012     var ml = new Roo.Element(document.createElement('div'));
15013     document.body.appendChild(ml.dom);
15014     ml.position('absolute');
15015     ml.setLeftTop(-1000, -1000);
15016     ml.hide();
15017
15018     if(fixedWidth){
15019         ml.setWidth(fixedWidth);
15020     }
15021      
15022     var instance = {
15023         /**
15024          * Returns the size of the specified text based on the internal element's style and width properties
15025          * @memberOf Roo.util.TextMetrics.Instance#
15026          * @param {String} text The text to measure
15027          * @return {Object} An object containing the text's size {width: (width), height: (height)}
15028          */
15029         getSize : function(text){
15030             ml.update(text);
15031             var s = ml.getSize();
15032             ml.update('');
15033             return s;
15034         },
15035
15036         /**
15037          * Binds this TextMetrics instance to an element from which to copy existing CSS styles
15038          * that can affect the size of the rendered text
15039          * @memberOf Roo.util.TextMetrics.Instance#
15040          * @param {String/HTMLElement} el The element, dom node or id
15041          */
15042         bind : function(el){
15043             ml.setStyle(
15044                 Roo.fly(el).getStyles('font-size','font-style', 'font-weight', 'font-family','line-height')
15045             );
15046         },
15047
15048         /**
15049          * Sets a fixed width on the internal measurement element.  If the text will be multiline, you have
15050          * to set a fixed width in order to accurately measure the text height.
15051          * @memberOf Roo.util.TextMetrics.Instance#
15052          * @param {Number} width The width to set on the element
15053          */
15054         setFixedWidth : function(width){
15055             ml.setWidth(width);
15056         },
15057
15058         /**
15059          * Returns the measured width of the specified text
15060          * @memberOf Roo.util.TextMetrics.Instance#
15061          * @param {String} text The text to measure
15062          * @return {Number} width The width in pixels
15063          */
15064         getWidth : function(text){
15065             ml.dom.style.width = 'auto';
15066             return this.getSize(text).width;
15067         },
15068
15069         /**
15070          * Returns the measured height of the specified text.  For multiline text, be sure to call
15071          * {@link #setFixedWidth} if necessary.
15072          * @memberOf Roo.util.TextMetrics.Instance#
15073          * @param {String} text The text to measure
15074          * @return {Number} height The height in pixels
15075          */
15076         getHeight : function(text){
15077             return this.getSize(text).height;
15078         }
15079     };
15080
15081     instance.bind(bindTo);
15082
15083     return instance;
15084 };
15085
15086 // backwards compat
15087 Roo.Element.measureText = Roo.util.TextMetrics.measure;/*
15088  * Based on:
15089  * Ext JS Library 1.1.1
15090  * Copyright(c) 2006-2007, Ext JS, LLC.
15091  *
15092  * Originally Released Under LGPL - original licence link has changed is not relivant.
15093  *
15094  * Fork - LGPL
15095  * <script type="text/javascript">
15096  */
15097
15098 /**
15099  * @class Roo.state.Provider
15100  * Abstract base class for state provider implementations. This class provides methods
15101  * for encoding and decoding <b>typed</b> variables including dates and defines the 
15102  * Provider interface.
15103  */
15104 Roo.state.Provider = function(){
15105     /**
15106      * @event statechange
15107      * Fires when a state change occurs.
15108      * @param {Provider} this This state provider
15109      * @param {String} key The state key which was changed
15110      * @param {String} value The encoded value for the state
15111      */
15112     this.addEvents({
15113         "statechange": true
15114     });
15115     this.state = {};
15116     Roo.state.Provider.superclass.constructor.call(this);
15117 };
15118 Roo.extend(Roo.state.Provider, Roo.util.Observable, {
15119     /**
15120      * Returns the current value for a key
15121      * @param {String} name The key name
15122      * @param {Mixed} defaultValue A default value to return if the key's value is not found
15123      * @return {Mixed} The state data
15124      */
15125     get : function(name, defaultValue){
15126         return typeof this.state[name] == "undefined" ?
15127             defaultValue : this.state[name];
15128     },
15129     
15130     /**
15131      * Clears a value from the state
15132      * @param {String} name The key name
15133      */
15134     clear : function(name){
15135         delete this.state[name];
15136         this.fireEvent("statechange", this, name, null);
15137     },
15138     
15139     /**
15140      * Sets the value for a key
15141      * @param {String} name The key name
15142      * @param {Mixed} value The value to set
15143      */
15144     set : function(name, value){
15145         this.state[name] = value;
15146         this.fireEvent("statechange", this, name, value);
15147     },
15148     
15149     /**
15150      * Decodes a string previously encoded with {@link #encodeValue}.
15151      * @param {String} value The value to decode
15152      * @return {Mixed} The decoded value
15153      */
15154     decodeValue : function(cookie){
15155         var re = /^(a|n|d|b|s|o)\:(.*)$/;
15156         var matches = re.exec(unescape(cookie));
15157         if(!matches || !matches[1]) {
15158             return; // non state cookie
15159         }
15160         var type = matches[1];
15161         var v = matches[2];
15162         switch(type){
15163             case "n":
15164                 return parseFloat(v);
15165             case "d":
15166                 return new Date(Date.parse(v));
15167             case "b":
15168                 return (v == "1");
15169             case "a":
15170                 var all = [];
15171                 var values = v.split("^");
15172                 for(var i = 0, len = values.length; i < len; i++){
15173                     all.push(this.decodeValue(values[i]));
15174                 }
15175                 return all;
15176            case "o":
15177                 var all = {};
15178                 var values = v.split("^");
15179                 for(var i = 0, len = values.length; i < len; i++){
15180                     var kv = values[i].split("=");
15181                     all[kv[0]] = this.decodeValue(kv[1]);
15182                 }
15183                 return all;
15184            default:
15185                 return v;
15186         }
15187     },
15188     
15189     /**
15190      * Encodes a value including type information.  Decode with {@link #decodeValue}.
15191      * @param {Mixed} value The value to encode
15192      * @return {String} The encoded value
15193      */
15194     encodeValue : function(v){
15195         var enc;
15196         if(typeof v == "number"){
15197             enc = "n:" + v;
15198         }else if(typeof v == "boolean"){
15199             enc = "b:" + (v ? "1" : "0");
15200         }else if(v instanceof Date){
15201             enc = "d:" + v.toGMTString();
15202         }else if(v instanceof Array){
15203             var flat = "";
15204             for(var i = 0, len = v.length; i < len; i++){
15205                 flat += this.encodeValue(v[i]);
15206                 if(i != len-1) {
15207                     flat += "^";
15208                 }
15209             }
15210             enc = "a:" + flat;
15211         }else if(typeof v == "object"){
15212             var flat = "";
15213             for(var key in v){
15214                 if(typeof v[key] != "function"){
15215                     flat += key + "=" + this.encodeValue(v[key]) + "^";
15216                 }
15217             }
15218             enc = "o:" + flat.substring(0, flat.length-1);
15219         }else{
15220             enc = "s:" + v;
15221         }
15222         return escape(enc);        
15223     }
15224 });
15225
15226 /*
15227  * Based on:
15228  * Ext JS Library 1.1.1
15229  * Copyright(c) 2006-2007, Ext JS, LLC.
15230  *
15231  * Originally Released Under LGPL - original licence link has changed is not relivant.
15232  *
15233  * Fork - LGPL
15234  * <script type="text/javascript">
15235  */
15236 /**
15237  * @class Roo.state.Manager
15238  * This is the global state manager. By default all components that are "state aware" check this class
15239  * for state information if you don't pass them a custom state provider. In order for this class
15240  * to be useful, it must be initialized with a provider when your application initializes.
15241  <pre><code>
15242 // in your initialization function
15243 init : function(){
15244    Roo.state.Manager.setProvider(new Roo.state.CookieProvider());
15245    ...
15246    // supposed you have a {@link Roo.BorderLayout}
15247    var layout = new Roo.BorderLayout(...);
15248    layout.restoreState();
15249    // or a {Roo.BasicDialog}
15250    var dialog = new Roo.BasicDialog(...);
15251    dialog.restoreState();
15252  </code></pre>
15253  * @singleton
15254  */
15255 Roo.state.Manager = function(){
15256     var provider = new Roo.state.Provider();
15257     
15258     return {
15259         /**
15260          * Configures the default state provider for your application
15261          * @param {Provider} stateProvider The state provider to set
15262          */
15263         setProvider : function(stateProvider){
15264             provider = stateProvider;
15265         },
15266         
15267         /**
15268          * Returns the current value for a key
15269          * @param {String} name The key name
15270          * @param {Mixed} defaultValue The default value to return if the key lookup does not match
15271          * @return {Mixed} The state data
15272          */
15273         get : function(key, defaultValue){
15274             return provider.get(key, defaultValue);
15275         },
15276         
15277         /**
15278          * Sets the value for a key
15279          * @param {String} name The key name
15280          * @param {Mixed} value The state data
15281          */
15282          set : function(key, value){
15283             provider.set(key, value);
15284         },
15285         
15286         /**
15287          * Clears a value from the state
15288          * @param {String} name The key name
15289          */
15290         clear : function(key){
15291             provider.clear(key);
15292         },
15293         
15294         /**
15295          * Gets the currently configured state provider
15296          * @return {Provider} The state provider
15297          */
15298         getProvider : function(){
15299             return provider;
15300         }
15301     };
15302 }();
15303 /*
15304  * Based on:
15305  * Ext JS Library 1.1.1
15306  * Copyright(c) 2006-2007, Ext JS, LLC.
15307  *
15308  * Originally Released Under LGPL - original licence link has changed is not relivant.
15309  *
15310  * Fork - LGPL
15311  * <script type="text/javascript">
15312  */
15313 /**
15314  * @class Roo.state.CookieProvider
15315  * @extends Roo.state.Provider
15316  * The default Provider implementation which saves state via cookies.
15317  * <br />Usage:
15318  <pre><code>
15319    var cp = new Roo.state.CookieProvider({
15320        path: "/cgi-bin/",
15321        expires: new Date(new Date().getTime()+(1000*60*60*24*30)); //30 days
15322        domain: "roojs.com"
15323    })
15324    Roo.state.Manager.setProvider(cp);
15325  </code></pre>
15326  * @cfg {String} path The path for which the cookie is active (defaults to root '/' which makes it active for all pages in the site)
15327  * @cfg {Date} expires The cookie expiration date (defaults to 7 days from now)
15328  * @cfg {String} domain The domain to save the cookie for.  Note that you cannot specify a different domain than
15329  * your page is on, but you can specify a sub-domain, or simply the domain itself like 'roojs.com' to include
15330  * all sub-domains if you need to access cookies across different sub-domains (defaults to null which uses the same
15331  * domain the page is running on including the 'www' like 'www.roojs.com')
15332  * @cfg {Boolean} secure True if the site is using SSL (defaults to false)
15333  * @constructor
15334  * Create a new CookieProvider
15335  * @param {Object} config The configuration object
15336  */
15337 Roo.state.CookieProvider = function(config){
15338     Roo.state.CookieProvider.superclass.constructor.call(this);
15339     this.path = "/";
15340     this.expires = new Date(new Date().getTime()+(1000*60*60*24*7)); //7 days
15341     this.domain = null;
15342     this.secure = false;
15343     Roo.apply(this, config);
15344     this.state = this.readCookies();
15345 };
15346
15347 Roo.extend(Roo.state.CookieProvider, Roo.state.Provider, {
15348     // private
15349     set : function(name, value){
15350         if(typeof value == "undefined" || value === null){
15351             this.clear(name);
15352             return;
15353         }
15354         this.setCookie(name, value);
15355         Roo.state.CookieProvider.superclass.set.call(this, name, value);
15356     },
15357
15358     // private
15359     clear : function(name){
15360         this.clearCookie(name);
15361         Roo.state.CookieProvider.superclass.clear.call(this, name);
15362     },
15363
15364     // private
15365     readCookies : function(){
15366         var cookies = {};
15367         var c = document.cookie + ";";
15368         var re = /\s?(.*?)=(.*?);/g;
15369         var matches;
15370         while((matches = re.exec(c)) != null){
15371             var name = matches[1];
15372             var value = matches[2];
15373             if(name && name.substring(0,3) == "ys-"){
15374                 cookies[name.substr(3)] = this.decodeValue(value);
15375             }
15376         }
15377         return cookies;
15378     },
15379
15380     // private
15381     setCookie : function(name, value){
15382         document.cookie = "ys-"+ name + "=" + this.encodeValue(value) +
15383            ((this.expires == null) ? "" : ("; expires=" + this.expires.toGMTString())) +
15384            ((this.path == null) ? "" : ("; path=" + this.path)) +
15385            ((this.domain == null) ? "" : ("; domain=" + this.domain)) +
15386            ((this.secure == true) ? "; secure" : "");
15387     },
15388
15389     // private
15390     clearCookie : function(name){
15391         document.cookie = "ys-" + name + "=null; expires=Thu, 01-Jan-70 00:00:01 GMT" +
15392            ((this.path == null) ? "" : ("; path=" + this.path)) +
15393            ((this.domain == null) ? "" : ("; domain=" + this.domain)) +
15394            ((this.secure == true) ? "; secure" : "");
15395     }
15396 });/*
15397  * Based on:
15398  * Ext JS Library 1.1.1
15399  * Copyright(c) 2006-2007, Ext JS, LLC.
15400  *
15401  * Originally Released Under LGPL - original licence link has changed is not relivant.
15402  *
15403  * Fork - LGPL
15404  * <script type="text/javascript">
15405  */
15406  
15407
15408 /**
15409  * @class Roo.ComponentMgr
15410  * Provides a common registry of all components on a page so that they can be easily accessed by component id (see {@link Roo.getCmp}).
15411  * @singleton
15412  */
15413 Roo.ComponentMgr = function(){
15414     var all = new Roo.util.MixedCollection();
15415
15416     return {
15417         /**
15418          * Registers a component.
15419          * @param {Roo.Component} c The component
15420          */
15421         register : function(c){
15422             all.add(c);
15423         },
15424
15425         /**
15426          * Unregisters a component.
15427          * @param {Roo.Component} c The component
15428          */
15429         unregister : function(c){
15430             all.remove(c);
15431         },
15432
15433         /**
15434          * Returns a component by id
15435          * @param {String} id The component id
15436          */
15437         get : function(id){
15438             return all.get(id);
15439         },
15440
15441         /**
15442          * Registers a function that will be called when a specified component is added to ComponentMgr
15443          * @param {String} id The component id
15444          * @param {Funtction} fn The callback function
15445          * @param {Object} scope The scope of the callback
15446          */
15447         onAvailable : function(id, fn, scope){
15448             all.on("add", function(index, o){
15449                 if(o.id == id){
15450                     fn.call(scope || o, o);
15451                     all.un("add", fn, scope);
15452                 }
15453             });
15454         }
15455     };
15456 }();/*
15457  * Based on:
15458  * Ext JS Library 1.1.1
15459  * Copyright(c) 2006-2007, Ext JS, LLC.
15460  *
15461  * Originally Released Under LGPL - original licence link has changed is not relivant.
15462  *
15463  * Fork - LGPL
15464  * <script type="text/javascript">
15465  */
15466  
15467 /**
15468  * @class Roo.Component
15469  * @extends Roo.util.Observable
15470  * Base class for all major Roo components.  All subclasses of Component can automatically participate in the standard
15471  * Roo component lifecycle of creation, rendering and destruction.  They also have automatic support for basic hide/show
15472  * and enable/disable behavior.  Component allows any subclass to be lazy-rendered into any {@link Roo.Container} and
15473  * to be automatically registered with the {@link Roo.ComponentMgr} so that it can be referenced at any time via {@link Roo.getCmp}.
15474  * All visual components (widgets) that require rendering into a layout should subclass Component.
15475  * @constructor
15476  * @param {Roo.Element/String/Object} config The configuration options.  If an element is passed, it is set as the internal
15477  * 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
15478  * and is used as the component id.  Otherwise, it is assumed to be a standard config object and is applied to the component.
15479  */
15480 Roo.Component = function(config){
15481     config = config || {};
15482     if(config.tagName || config.dom || typeof config == "string"){ // element object
15483         config = {el: config, id: config.id || config};
15484     }
15485     this.initialConfig = config;
15486
15487     Roo.apply(this, config);
15488     this.addEvents({
15489         /**
15490          * @event disable
15491          * Fires after the component is disabled.
15492              * @param {Roo.Component} this
15493              */
15494         disable : true,
15495         /**
15496          * @event enable
15497          * Fires after the component is enabled.
15498              * @param {Roo.Component} this
15499              */
15500         enable : true,
15501         /**
15502          * @event beforeshow
15503          * Fires before the component is shown.  Return false to stop the show.
15504              * @param {Roo.Component} this
15505              */
15506         beforeshow : true,
15507         /**
15508          * @event show
15509          * Fires after the component is shown.
15510              * @param {Roo.Component} this
15511              */
15512         show : true,
15513         /**
15514          * @event beforehide
15515          * Fires before the component is hidden. Return false to stop the hide.
15516              * @param {Roo.Component} this
15517              */
15518         beforehide : true,
15519         /**
15520          * @event hide
15521          * Fires after the component is hidden.
15522              * @param {Roo.Component} this
15523              */
15524         hide : true,
15525         /**
15526          * @event beforerender
15527          * Fires before the component is rendered. Return false to stop the render.
15528              * @param {Roo.Component} this
15529              */
15530         beforerender : true,
15531         /**
15532          * @event render
15533          * Fires after the component is rendered.
15534              * @param {Roo.Component} this
15535              */
15536         render : true,
15537         /**
15538          * @event beforedestroy
15539          * Fires before the component is destroyed. Return false to stop the destroy.
15540              * @param {Roo.Component} this
15541              */
15542         beforedestroy : true,
15543         /**
15544          * @event destroy
15545          * Fires after the component is destroyed.
15546              * @param {Roo.Component} this
15547              */
15548         destroy : true
15549     });
15550     if(!this.id){
15551         this.id = "roo-comp-" + (++Roo.Component.AUTO_ID);
15552     }
15553     Roo.ComponentMgr.register(this);
15554     Roo.Component.superclass.constructor.call(this);
15555     this.initComponent();
15556     if(this.renderTo){ // not supported by all components yet. use at your own risk!
15557         this.render(this.renderTo);
15558         delete this.renderTo;
15559     }
15560 };
15561
15562 /** @private */
15563 Roo.Component.AUTO_ID = 1000;
15564
15565 Roo.extend(Roo.Component, Roo.util.Observable, {
15566     /**
15567      * @scope Roo.Component.prototype
15568      * @type {Boolean}
15569      * true if this component is hidden. Read-only.
15570      */
15571     hidden : false,
15572     /**
15573      * @type {Boolean}
15574      * true if this component is disabled. Read-only.
15575      */
15576     disabled : false,
15577     /**
15578      * @type {Boolean}
15579      * true if this component has been rendered. Read-only.
15580      */
15581     rendered : false,
15582     
15583     /** @cfg {String} disableClass
15584      * CSS class added to the component when it is disabled (defaults to "x-item-disabled").
15585      */
15586     disabledClass : "x-item-disabled",
15587         /** @cfg {Boolean} allowDomMove
15588          * Whether the component can move the Dom node when rendering (defaults to true).
15589          */
15590     allowDomMove : true,
15591     /** @cfg {String} hideMode (display|visibility)
15592      * How this component should hidden. Supported values are
15593      * "visibility" (css visibility), "offsets" (negative offset position) and
15594      * "display" (css display) - defaults to "display".
15595      */
15596     hideMode: 'display',
15597
15598     /** @private */
15599     ctype : "Roo.Component",
15600
15601     /**
15602      * @cfg {String} actionMode 
15603      * which property holds the element that used for  hide() / show() / disable() / enable()
15604      * default is 'el' for forms you probably want to set this to fieldEl 
15605      */
15606     actionMode : "el",
15607
15608     /** @private */
15609     getActionEl : function(){
15610         return this[this.actionMode];
15611     },
15612
15613     initComponent : Roo.emptyFn,
15614     /**
15615      * If this is a lazy rendering component, render it to its container element.
15616      * @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.
15617      */
15618     render : function(container, position){
15619         
15620         if(this.rendered){
15621             return this;
15622         }
15623         
15624         if(this.fireEvent("beforerender", this) === false){
15625             return false;
15626         }
15627         
15628         if(!container && this.el){
15629             this.el = Roo.get(this.el);
15630             container = this.el.dom.parentNode;
15631             this.allowDomMove = false;
15632         }
15633         this.container = Roo.get(container);
15634         this.rendered = true;
15635         if(position !== undefined){
15636             if(typeof position == 'number'){
15637                 position = this.container.dom.childNodes[position];
15638             }else{
15639                 position = Roo.getDom(position);
15640             }
15641         }
15642         this.onRender(this.container, position || null);
15643         if(this.cls){
15644             this.el.addClass(this.cls);
15645             delete this.cls;
15646         }
15647         if(this.style){
15648             this.el.applyStyles(this.style);
15649             delete this.style;
15650         }
15651         this.fireEvent("render", this);
15652         this.afterRender(this.container);
15653         if(this.hidden){
15654             this.hide();
15655         }
15656         if(this.disabled){
15657             this.disable();
15658         }
15659
15660         return this;
15661         
15662     },
15663
15664     /** @private */
15665     // default function is not really useful
15666     onRender : function(ct, position){
15667         if(this.el){
15668             this.el = Roo.get(this.el);
15669             if(this.allowDomMove !== false){
15670                 ct.dom.insertBefore(this.el.dom, position);
15671             }
15672         }
15673     },
15674
15675     /** @private */
15676     getAutoCreate : function(){
15677         var cfg = typeof this.autoCreate == "object" ?
15678                       this.autoCreate : Roo.apply({}, this.defaultAutoCreate);
15679         if(this.id && !cfg.id){
15680             cfg.id = this.id;
15681         }
15682         return cfg;
15683     },
15684
15685     /** @private */
15686     afterRender : Roo.emptyFn,
15687
15688     /**
15689      * Destroys this component by purging any event listeners, removing the component's element from the DOM,
15690      * removing the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}.
15691      */
15692     destroy : function(){
15693         if(this.fireEvent("beforedestroy", this) !== false){
15694             this.purgeListeners();
15695             this.beforeDestroy();
15696             if(this.rendered){
15697                 this.el.removeAllListeners();
15698                 this.el.remove();
15699                 if(this.actionMode == "container"){
15700                     this.container.remove();
15701                 }
15702             }
15703             this.onDestroy();
15704             Roo.ComponentMgr.unregister(this);
15705             this.fireEvent("destroy", this);
15706         }
15707     },
15708
15709         /** @private */
15710     beforeDestroy : function(){
15711
15712     },
15713
15714         /** @private */
15715         onDestroy : function(){
15716
15717     },
15718
15719     /**
15720      * Returns the underlying {@link Roo.Element}.
15721      * @return {Roo.Element} The element
15722      */
15723     getEl : function(){
15724         return this.el;
15725     },
15726
15727     /**
15728      * Returns the id of this component.
15729      * @return {String}
15730      */
15731     getId : function(){
15732         return this.id;
15733     },
15734
15735     /**
15736      * Try to focus this component.
15737      * @param {Boolean} selectText True to also select the text in this component (if applicable)
15738      * @return {Roo.Component} this
15739      */
15740     focus : function(selectText){
15741         if(this.rendered){
15742             this.el.focus();
15743             if(selectText === true){
15744                 this.el.dom.select();
15745             }
15746         }
15747         return this;
15748     },
15749
15750     /** @private */
15751     blur : function(){
15752         if(this.rendered){
15753             this.el.blur();
15754         }
15755         return this;
15756     },
15757
15758     /**
15759      * Disable this component.
15760      * @return {Roo.Component} this
15761      */
15762     disable : function(){
15763         if(this.rendered){
15764             this.onDisable();
15765         }
15766         this.disabled = true;
15767         this.fireEvent("disable", this);
15768         return this;
15769     },
15770
15771         // private
15772     onDisable : function(){
15773         this.getActionEl().addClass(this.disabledClass);
15774         this.el.dom.disabled = true;
15775     },
15776
15777     /**
15778      * Enable this component.
15779      * @return {Roo.Component} this
15780      */
15781     enable : function(){
15782         if(this.rendered){
15783             this.onEnable();
15784         }
15785         this.disabled = false;
15786         this.fireEvent("enable", this);
15787         return this;
15788     },
15789
15790         // private
15791     onEnable : function(){
15792         this.getActionEl().removeClass(this.disabledClass);
15793         this.el.dom.disabled = false;
15794     },
15795
15796     /**
15797      * Convenience function for setting disabled/enabled by boolean.
15798      * @param {Boolean} disabled
15799      */
15800     setDisabled : function(disabled){
15801         this[disabled ? "disable" : "enable"]();
15802     },
15803
15804     /**
15805      * Show this component.
15806      * @return {Roo.Component} this
15807      */
15808     show: function(){
15809         if(this.fireEvent("beforeshow", this) !== false){
15810             this.hidden = false;
15811             if(this.rendered){
15812                 this.onShow();
15813             }
15814             this.fireEvent("show", this);
15815         }
15816         return this;
15817     },
15818
15819     // private
15820     onShow : function(){
15821         var ae = this.getActionEl();
15822         if(this.hideMode == 'visibility'){
15823             ae.dom.style.visibility = "visible";
15824         }else if(this.hideMode == 'offsets'){
15825             ae.removeClass('x-hidden');
15826         }else{
15827             ae.dom.style.display = "";
15828         }
15829     },
15830
15831     /**
15832      * Hide this component.
15833      * @return {Roo.Component} this
15834      */
15835     hide: function(){
15836         if(this.fireEvent("beforehide", this) !== false){
15837             this.hidden = true;
15838             if(this.rendered){
15839                 this.onHide();
15840             }
15841             this.fireEvent("hide", this);
15842         }
15843         return this;
15844     },
15845
15846     // private
15847     onHide : function(){
15848         var ae = this.getActionEl();
15849         if(this.hideMode == 'visibility'){
15850             ae.dom.style.visibility = "hidden";
15851         }else if(this.hideMode == 'offsets'){
15852             ae.addClass('x-hidden');
15853         }else{
15854             ae.dom.style.display = "none";
15855         }
15856     },
15857
15858     /**
15859      * Convenience function to hide or show this component by boolean.
15860      * @param {Boolean} visible True to show, false to hide
15861      * @return {Roo.Component} this
15862      */
15863     setVisible: function(visible){
15864         if(visible) {
15865             this.show();
15866         }else{
15867             this.hide();
15868         }
15869         return this;
15870     },
15871
15872     /**
15873      * Returns true if this component is visible.
15874      */
15875     isVisible : function(){
15876         return this.getActionEl().isVisible();
15877     },
15878
15879     cloneConfig : function(overrides){
15880         overrides = overrides || {};
15881         var id = overrides.id || Roo.id();
15882         var cfg = Roo.applyIf(overrides, this.initialConfig);
15883         cfg.id = id; // prevent dup id
15884         return new this.constructor(cfg);
15885     }
15886 });/*
15887  * Based on:
15888  * Ext JS Library 1.1.1
15889  * Copyright(c) 2006-2007, Ext JS, LLC.
15890  *
15891  * Originally Released Under LGPL - original licence link has changed is not relivant.
15892  *
15893  * Fork - LGPL
15894  * <script type="text/javascript">
15895  */
15896
15897 /**
15898  * @class Roo.BoxComponent
15899  * @extends Roo.Component
15900  * Base class for any visual {@link Roo.Component} that uses a box container.  BoxComponent provides automatic box
15901  * model adjustments for sizing and positioning and will work correctly withnin the Component rendering model.  All
15902  * container classes should subclass BoxComponent so that they will work consistently when nested within other Ext
15903  * layout containers.
15904  * @constructor
15905  * @param {Roo.Element/String/Object} config The configuration options.
15906  */
15907 Roo.BoxComponent = function(config){
15908     Roo.Component.call(this, config);
15909     this.addEvents({
15910         /**
15911          * @event resize
15912          * Fires after the component is resized.
15913              * @param {Roo.Component} this
15914              * @param {Number} adjWidth The box-adjusted width that was set
15915              * @param {Number} adjHeight The box-adjusted height that was set
15916              * @param {Number} rawWidth The width that was originally specified
15917              * @param {Number} rawHeight The height that was originally specified
15918              */
15919         resize : true,
15920         /**
15921          * @event move
15922          * Fires after the component is moved.
15923              * @param {Roo.Component} this
15924              * @param {Number} x The new x position
15925              * @param {Number} y The new y position
15926              */
15927         move : true
15928     });
15929 };
15930
15931 Roo.extend(Roo.BoxComponent, Roo.Component, {
15932     // private, set in afterRender to signify that the component has been rendered
15933     boxReady : false,
15934     // private, used to defer height settings to subclasses
15935     deferHeight: false,
15936     /** @cfg {Number} width
15937      * width (optional) size of component
15938      */
15939      /** @cfg {Number} height
15940      * height (optional) size of component
15941      */
15942      
15943     /**
15944      * Sets the width and height of the component.  This method fires the resize event.  This method can accept
15945      * either width and height as separate numeric arguments, or you can pass a size object like {width:10, height:20}.
15946      * @param {Number/Object} width The new width to set, or a size object in the format {width, height}
15947      * @param {Number} height The new height to set (not required if a size object is passed as the first arg)
15948      * @return {Roo.BoxComponent} this
15949      */
15950     setSize : function(w, h){
15951         // support for standard size objects
15952         if(typeof w == 'object'){
15953             h = w.height;
15954             w = w.width;
15955         }
15956         // not rendered
15957         if(!this.boxReady){
15958             this.width = w;
15959             this.height = h;
15960             return this;
15961         }
15962
15963         // prevent recalcs when not needed
15964         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
15965             return this;
15966         }
15967         this.lastSize = {width: w, height: h};
15968
15969         var adj = this.adjustSize(w, h);
15970         var aw = adj.width, ah = adj.height;
15971         if(aw !== undefined || ah !== undefined){ // this code is nasty but performs better with floaters
15972             var rz = this.getResizeEl();
15973             if(!this.deferHeight && aw !== undefined && ah !== undefined){
15974                 rz.setSize(aw, ah);
15975             }else if(!this.deferHeight && ah !== undefined){
15976                 rz.setHeight(ah);
15977             }else if(aw !== undefined){
15978                 rz.setWidth(aw);
15979             }
15980             this.onResize(aw, ah, w, h);
15981             this.fireEvent('resize', this, aw, ah, w, h);
15982         }
15983         return this;
15984     },
15985
15986     /**
15987      * Gets the current size of the component's underlying element.
15988      * @return {Object} An object containing the element's size {width: (element width), height: (element height)}
15989      */
15990     getSize : function(){
15991         return this.el.getSize();
15992     },
15993
15994     /**
15995      * Gets the current XY position of the component's underlying element.
15996      * @param {Boolean} local (optional) If true the element's left and top are returned instead of page XY (defaults to false)
15997      * @return {Array} The XY position of the element (e.g., [100, 200])
15998      */
15999     getPosition : function(local){
16000         if(local === true){
16001             return [this.el.getLeft(true), this.el.getTop(true)];
16002         }
16003         return this.xy || this.el.getXY();
16004     },
16005
16006     /**
16007      * Gets the current box measurements of the component's underlying element.
16008      * @param {Boolean} local (optional) If true the element's left and top are returned instead of page XY (defaults to false)
16009      * @returns {Object} box An object in the format {x, y, width, height}
16010      */
16011     getBox : function(local){
16012         var s = this.el.getSize();
16013         if(local){
16014             s.x = this.el.getLeft(true);
16015             s.y = this.el.getTop(true);
16016         }else{
16017             var xy = this.xy || this.el.getXY();
16018             s.x = xy[0];
16019             s.y = xy[1];
16020         }
16021         return s;
16022     },
16023
16024     /**
16025      * Sets the current box measurements of the component's underlying element.
16026      * @param {Object} box An object in the format {x, y, width, height}
16027      * @returns {Roo.BoxComponent} this
16028      */
16029     updateBox : function(box){
16030         this.setSize(box.width, box.height);
16031         this.setPagePosition(box.x, box.y);
16032         return this;
16033     },
16034
16035     // protected
16036     getResizeEl : function(){
16037         return this.resizeEl || this.el;
16038     },
16039
16040     // protected
16041     getPositionEl : function(){
16042         return this.positionEl || this.el;
16043     },
16044
16045     /**
16046      * Sets the left and top of the component.  To set the page XY position instead, use {@link #setPagePosition}.
16047      * This method fires the move event.
16048      * @param {Number} left The new left
16049      * @param {Number} top The new top
16050      * @returns {Roo.BoxComponent} this
16051      */
16052     setPosition : function(x, y){
16053         this.x = x;
16054         this.y = y;
16055         if(!this.boxReady){
16056             return this;
16057         }
16058         var adj = this.adjustPosition(x, y);
16059         var ax = adj.x, ay = adj.y;
16060
16061         var el = this.getPositionEl();
16062         if(ax !== undefined || ay !== undefined){
16063             if(ax !== undefined && ay !== undefined){
16064                 el.setLeftTop(ax, ay);
16065             }else if(ax !== undefined){
16066                 el.setLeft(ax);
16067             }else if(ay !== undefined){
16068                 el.setTop(ay);
16069             }
16070             this.onPosition(ax, ay);
16071             this.fireEvent('move', this, ax, ay);
16072         }
16073         return this;
16074     },
16075
16076     /**
16077      * Sets the page XY position of the component.  To set the left and top instead, use {@link #setPosition}.
16078      * This method fires the move event.
16079      * @param {Number} x The new x position
16080      * @param {Number} y The new y position
16081      * @returns {Roo.BoxComponent} this
16082      */
16083     setPagePosition : function(x, y){
16084         this.pageX = x;
16085         this.pageY = y;
16086         if(!this.boxReady){
16087             return;
16088         }
16089         if(x === undefined || y === undefined){ // cannot translate undefined points
16090             return;
16091         }
16092         var p = this.el.translatePoints(x, y);
16093         this.setPosition(p.left, p.top);
16094         return this;
16095     },
16096
16097     // private
16098     onRender : function(ct, position){
16099         Roo.BoxComponent.superclass.onRender.call(this, ct, position);
16100         if(this.resizeEl){
16101             this.resizeEl = Roo.get(this.resizeEl);
16102         }
16103         if(this.positionEl){
16104             this.positionEl = Roo.get(this.positionEl);
16105         }
16106     },
16107
16108     // private
16109     afterRender : function(){
16110         Roo.BoxComponent.superclass.afterRender.call(this);
16111         this.boxReady = true;
16112         this.setSize(this.width, this.height);
16113         if(this.x || this.y){
16114             this.setPosition(this.x, this.y);
16115         }
16116         if(this.pageX || this.pageY){
16117             this.setPagePosition(this.pageX, this.pageY);
16118         }
16119     },
16120
16121     /**
16122      * Force the component's size to recalculate based on the underlying element's current height and width.
16123      * @returns {Roo.BoxComponent} this
16124      */
16125     syncSize : function(){
16126         delete this.lastSize;
16127         this.setSize(this.el.getWidth(), this.el.getHeight());
16128         return this;
16129     },
16130
16131     /**
16132      * Called after the component is resized, this method is empty by default but can be implemented by any
16133      * subclass that needs to perform custom logic after a resize occurs.
16134      * @param {Number} adjWidth The box-adjusted width that was set
16135      * @param {Number} adjHeight The box-adjusted height that was set
16136      * @param {Number} rawWidth The width that was originally specified
16137      * @param {Number} rawHeight The height that was originally specified
16138      */
16139     onResize : function(adjWidth, adjHeight, rawWidth, rawHeight){
16140
16141     },
16142
16143     /**
16144      * Called after the component is moved, this method is empty by default but can be implemented by any
16145      * subclass that needs to perform custom logic after a move occurs.
16146      * @param {Number} x The new x position
16147      * @param {Number} y The new y position
16148      */
16149     onPosition : function(x, y){
16150
16151     },
16152
16153     // private
16154     adjustSize : function(w, h){
16155         if(this.autoWidth){
16156             w = 'auto';
16157         }
16158         if(this.autoHeight){
16159             h = 'auto';
16160         }
16161         return {width : w, height: h};
16162     },
16163
16164     // private
16165     adjustPosition : function(x, y){
16166         return {x : x, y: y};
16167     }
16168 });/*
16169  * Based on:
16170  * Ext JS Library 1.1.1
16171  * Copyright(c) 2006-2007, Ext JS, LLC.
16172  *
16173  * Originally Released Under LGPL - original licence link has changed is not relivant.
16174  *
16175  * Fork - LGPL
16176  * <script type="text/javascript">
16177  */
16178  (function(){ 
16179 /**
16180  * @class Roo.Layer
16181  * @extends Roo.Element
16182  * An extended {@link Roo.Element} object that supports a shadow and shim, constrain to viewport and
16183  * automatic maintaining of shadow/shim positions.
16184  * @cfg {Boolean} shim False to disable the iframe shim in browsers which need one (defaults to true)
16185  * @cfg {String/Boolean} shadow True to create a shadow element with default class "x-layer-shadow", or
16186  * you can pass a string with a CSS class name. False turns off the shadow.
16187  * @cfg {Object} dh DomHelper object config to create element with (defaults to {tag: "div", cls: "x-layer"}).
16188  * @cfg {Boolean} constrain False to disable constrain to viewport (defaults to true)
16189  * @cfg {String} cls CSS class to add to the element
16190  * @cfg {Number} zindex Starting z-index (defaults to 11000)
16191  * @cfg {Number} shadowOffset Number of pixels to offset the shadow (defaults to 3)
16192  * @constructor
16193  * @param {Object} config An object with config options.
16194  * @param {String/HTMLElement} existingEl (optional) Uses an existing DOM element. If the element is not found it creates it.
16195  */
16196
16197 Roo.Layer = function(config, existingEl){
16198     config = config || {};
16199     var dh = Roo.DomHelper;
16200     var cp = config.parentEl, pel = cp ? Roo.getDom(cp) : document.body;
16201     if(existingEl){
16202         this.dom = Roo.getDom(existingEl);
16203     }
16204     if(!this.dom){
16205         var o = config.dh || {tag: "div", cls: "x-layer"};
16206         this.dom = dh.append(pel, o);
16207     }
16208     if(config.cls){
16209         this.addClass(config.cls);
16210     }
16211     this.constrain = config.constrain !== false;
16212     this.visibilityMode = Roo.Element.VISIBILITY;
16213     if(config.id){
16214         this.id = this.dom.id = config.id;
16215     }else{
16216         this.id = Roo.id(this.dom);
16217     }
16218     this.zindex = config.zindex || this.getZIndex();
16219     this.position("absolute", this.zindex);
16220     if(config.shadow){
16221         this.shadowOffset = config.shadowOffset || 4;
16222         this.shadow = new Roo.Shadow({
16223             offset : this.shadowOffset,
16224             mode : config.shadow
16225         });
16226     }else{
16227         this.shadowOffset = 0;
16228     }
16229     this.useShim = config.shim !== false && Roo.useShims;
16230     this.useDisplay = config.useDisplay;
16231     this.hide();
16232 };
16233
16234 var supr = Roo.Element.prototype;
16235
16236 // shims are shared among layer to keep from having 100 iframes
16237 var shims = [];
16238
16239 Roo.extend(Roo.Layer, Roo.Element, {
16240
16241     getZIndex : function(){
16242         return this.zindex || parseInt(this.getStyle("z-index"), 10) || 11000;
16243     },
16244
16245     getShim : function(){
16246         if(!this.useShim){
16247             return null;
16248         }
16249         if(this.shim){
16250             return this.shim;
16251         }
16252         var shim = shims.shift();
16253         if(!shim){
16254             shim = this.createShim();
16255             shim.enableDisplayMode('block');
16256             shim.dom.style.display = 'none';
16257             shim.dom.style.visibility = 'visible';
16258         }
16259         var pn = this.dom.parentNode;
16260         if(shim.dom.parentNode != pn){
16261             pn.insertBefore(shim.dom, this.dom);
16262         }
16263         shim.setStyle('z-index', this.getZIndex()-2);
16264         this.shim = shim;
16265         return shim;
16266     },
16267
16268     hideShim : function(){
16269         if(this.shim){
16270             this.shim.setDisplayed(false);
16271             shims.push(this.shim);
16272             delete this.shim;
16273         }
16274     },
16275
16276     disableShadow : function(){
16277         if(this.shadow){
16278             this.shadowDisabled = true;
16279             this.shadow.hide();
16280             this.lastShadowOffset = this.shadowOffset;
16281             this.shadowOffset = 0;
16282         }
16283     },
16284
16285     enableShadow : function(show){
16286         if(this.shadow){
16287             this.shadowDisabled = false;
16288             this.shadowOffset = this.lastShadowOffset;
16289             delete this.lastShadowOffset;
16290             if(show){
16291                 this.sync(true);
16292             }
16293         }
16294     },
16295
16296     // private
16297     // this code can execute repeatedly in milliseconds (i.e. during a drag) so
16298     // code size was sacrificed for effeciency (e.g. no getBox/setBox, no XY calls)
16299     sync : function(doShow){
16300         var sw = this.shadow;
16301         if(!this.updating && this.isVisible() && (sw || this.useShim)){
16302             var sh = this.getShim();
16303
16304             var w = this.getWidth(),
16305                 h = this.getHeight();
16306
16307             var l = this.getLeft(true),
16308                 t = this.getTop(true);
16309
16310             if(sw && !this.shadowDisabled){
16311                 if(doShow && !sw.isVisible()){
16312                     sw.show(this);
16313                 }else{
16314                     sw.realign(l, t, w, h);
16315                 }
16316                 if(sh){
16317                     if(doShow){
16318                        sh.show();
16319                     }
16320                     // fit the shim behind the shadow, so it is shimmed too
16321                     var a = sw.adjusts, s = sh.dom.style;
16322                     s.left = (Math.min(l, l+a.l))+"px";
16323                     s.top = (Math.min(t, t+a.t))+"px";
16324                     s.width = (w+a.w)+"px";
16325                     s.height = (h+a.h)+"px";
16326                 }
16327             }else if(sh){
16328                 if(doShow){
16329                    sh.show();
16330                 }
16331                 sh.setSize(w, h);
16332                 sh.setLeftTop(l, t);
16333             }
16334             
16335         }
16336     },
16337
16338     // private
16339     destroy : function(){
16340         this.hideShim();
16341         if(this.shadow){
16342             this.shadow.hide();
16343         }
16344         this.removeAllListeners();
16345         var pn = this.dom.parentNode;
16346         if(pn){
16347             pn.removeChild(this.dom);
16348         }
16349         Roo.Element.uncache(this.id);
16350     },
16351
16352     remove : function(){
16353         this.destroy();
16354     },
16355
16356     // private
16357     beginUpdate : function(){
16358         this.updating = true;
16359     },
16360
16361     // private
16362     endUpdate : function(){
16363         this.updating = false;
16364         this.sync(true);
16365     },
16366
16367     // private
16368     hideUnders : function(negOffset){
16369         if(this.shadow){
16370             this.shadow.hide();
16371         }
16372         this.hideShim();
16373     },
16374
16375     // private
16376     constrainXY : function(){
16377         if(this.constrain){
16378             var vw = Roo.lib.Dom.getViewWidth(),
16379                 vh = Roo.lib.Dom.getViewHeight();
16380             var s = Roo.get(document).getScroll();
16381
16382             var xy = this.getXY();
16383             var x = xy[0], y = xy[1];   
16384             var w = this.dom.offsetWidth+this.shadowOffset, h = this.dom.offsetHeight+this.shadowOffset;
16385             // only move it if it needs it
16386             var moved = false;
16387             // first validate right/bottom
16388             if((x + w) > vw+s.left){
16389                 x = vw - w - this.shadowOffset;
16390                 moved = true;
16391             }
16392             if((y + h) > vh+s.top){
16393                 y = vh - h - this.shadowOffset;
16394                 moved = true;
16395             }
16396             // then make sure top/left isn't negative
16397             if(x < s.left){
16398                 x = s.left;
16399                 moved = true;
16400             }
16401             if(y < s.top){
16402                 y = s.top;
16403                 moved = true;
16404             }
16405             if(moved){
16406                 if(this.avoidY){
16407                     var ay = this.avoidY;
16408                     if(y <= ay && (y+h) >= ay){
16409                         y = ay-h-5;   
16410                     }
16411                 }
16412                 xy = [x, y];
16413                 this.storeXY(xy);
16414                 supr.setXY.call(this, xy);
16415                 this.sync();
16416             }
16417         }
16418     },
16419
16420     isVisible : function(){
16421         return this.visible;    
16422     },
16423
16424     // private
16425     showAction : function(){
16426         this.visible = true; // track visibility to prevent getStyle calls
16427         if(this.useDisplay === true){
16428             this.setDisplayed("");
16429         }else if(this.lastXY){
16430             supr.setXY.call(this, this.lastXY);
16431         }else if(this.lastLT){
16432             supr.setLeftTop.call(this, this.lastLT[0], this.lastLT[1]);
16433         }
16434     },
16435
16436     // private
16437     hideAction : function(){
16438         this.visible = false;
16439         if(this.useDisplay === true){
16440             this.setDisplayed(false);
16441         }else{
16442             this.setLeftTop(-10000,-10000);
16443         }
16444     },
16445
16446     // overridden Element method
16447     setVisible : function(v, a, d, c, e){
16448         if(v){
16449             this.showAction();
16450         }
16451         if(a && v){
16452             var cb = function(){
16453                 this.sync(true);
16454                 if(c){
16455                     c();
16456                 }
16457             }.createDelegate(this);
16458             supr.setVisible.call(this, true, true, d, cb, e);
16459         }else{
16460             if(!v){
16461                 this.hideUnders(true);
16462             }
16463             var cb = c;
16464             if(a){
16465                 cb = function(){
16466                     this.hideAction();
16467                     if(c){
16468                         c();
16469                     }
16470                 }.createDelegate(this);
16471             }
16472             supr.setVisible.call(this, v, a, d, cb, e);
16473             if(v){
16474                 this.sync(true);
16475             }else if(!a){
16476                 this.hideAction();
16477             }
16478         }
16479     },
16480
16481     storeXY : function(xy){
16482         delete this.lastLT;
16483         this.lastXY = xy;
16484     },
16485
16486     storeLeftTop : function(left, top){
16487         delete this.lastXY;
16488         this.lastLT = [left, top];
16489     },
16490
16491     // private
16492     beforeFx : function(){
16493         this.beforeAction();
16494         return Roo.Layer.superclass.beforeFx.apply(this, arguments);
16495     },
16496
16497     // private
16498     afterFx : function(){
16499         Roo.Layer.superclass.afterFx.apply(this, arguments);
16500         this.sync(this.isVisible());
16501     },
16502
16503     // private
16504     beforeAction : function(){
16505         if(!this.updating && this.shadow){
16506             this.shadow.hide();
16507         }
16508     },
16509
16510     // overridden Element method
16511     setLeft : function(left){
16512         this.storeLeftTop(left, this.getTop(true));
16513         supr.setLeft.apply(this, arguments);
16514         this.sync();
16515     },
16516
16517     setTop : function(top){
16518         this.storeLeftTop(this.getLeft(true), top);
16519         supr.setTop.apply(this, arguments);
16520         this.sync();
16521     },
16522
16523     setLeftTop : function(left, top){
16524         this.storeLeftTop(left, top);
16525         supr.setLeftTop.apply(this, arguments);
16526         this.sync();
16527     },
16528
16529     setXY : function(xy, a, d, c, e){
16530         this.fixDisplay();
16531         this.beforeAction();
16532         this.storeXY(xy);
16533         var cb = this.createCB(c);
16534         supr.setXY.call(this, xy, a, d, cb, e);
16535         if(!a){
16536             cb();
16537         }
16538     },
16539
16540     // private
16541     createCB : function(c){
16542         var el = this;
16543         return function(){
16544             el.constrainXY();
16545             el.sync(true);
16546             if(c){
16547                 c();
16548             }
16549         };
16550     },
16551
16552     // overridden Element method
16553     setX : function(x, a, d, c, e){
16554         this.setXY([x, this.getY()], a, d, c, e);
16555     },
16556
16557     // overridden Element method
16558     setY : function(y, a, d, c, e){
16559         this.setXY([this.getX(), y], a, d, c, e);
16560     },
16561
16562     // overridden Element method
16563     setSize : function(w, h, a, d, c, e){
16564         this.beforeAction();
16565         var cb = this.createCB(c);
16566         supr.setSize.call(this, w, h, a, d, cb, e);
16567         if(!a){
16568             cb();
16569         }
16570     },
16571
16572     // overridden Element method
16573     setWidth : function(w, a, d, c, e){
16574         this.beforeAction();
16575         var cb = this.createCB(c);
16576         supr.setWidth.call(this, w, a, d, cb, e);
16577         if(!a){
16578             cb();
16579         }
16580     },
16581
16582     // overridden Element method
16583     setHeight : function(h, a, d, c, e){
16584         this.beforeAction();
16585         var cb = this.createCB(c);
16586         supr.setHeight.call(this, h, a, d, cb, e);
16587         if(!a){
16588             cb();
16589         }
16590     },
16591
16592     // overridden Element method
16593     setBounds : function(x, y, w, h, a, d, c, e){
16594         this.beforeAction();
16595         var cb = this.createCB(c);
16596         if(!a){
16597             this.storeXY([x, y]);
16598             supr.setXY.call(this, [x, y]);
16599             supr.setSize.call(this, w, h, a, d, cb, e);
16600             cb();
16601         }else{
16602             supr.setBounds.call(this, x, y, w, h, a, d, cb, e);
16603         }
16604         return this;
16605     },
16606     
16607     /**
16608      * Sets the z-index of this layer and adjusts any shadow and shim z-indexes. The layer z-index is automatically
16609      * incremented by two more than the value passed in so that it always shows above any shadow or shim (the shadow
16610      * element, if any, will be assigned z-index + 1, and the shim element, if any, will be assigned the unmodified z-index).
16611      * @param {Number} zindex The new z-index to set
16612      * @return {this} The Layer
16613      */
16614     setZIndex : function(zindex){
16615         this.zindex = zindex;
16616         this.setStyle("z-index", zindex + 2);
16617         if(this.shadow){
16618             this.shadow.setZIndex(zindex + 1);
16619         }
16620         if(this.shim){
16621             this.shim.setStyle("z-index", zindex);
16622         }
16623     }
16624 });
16625 })();/*
16626  * Original code for Roojs - LGPL
16627  * <script type="text/javascript">
16628  */
16629  
16630 /**
16631  * @class Roo.XComponent
16632  * A delayed Element creator...
16633  * Or a way to group chunks of interface together.
16634  * technically this is a wrapper around a tree of Roo elements (which defines a 'module'),
16635  *  used in conjunction with XComponent.build() it will create an instance of each element,
16636  *  then call addxtype() to build the User interface.
16637  * 
16638  * Mypart.xyx = new Roo.XComponent({
16639
16640     parent : 'Mypart.xyz', // empty == document.element.!!
16641     order : '001',
16642     name : 'xxxx'
16643     region : 'xxxx'
16644     disabled : function() {} 
16645      
16646     tree : function() { // return an tree of xtype declared components
16647         var MODULE = this;
16648         return 
16649         {
16650             xtype : 'NestedLayoutPanel',
16651             // technicall
16652         }
16653      ]
16654  *})
16655  *
16656  *
16657  * It can be used to build a big heiracy, with parent etc.
16658  * or you can just use this to render a single compoent to a dom element
16659  * MYPART.render(Roo.Element | String(id) | dom_element )
16660  *
16661  *
16662  * Usage patterns.
16663  *
16664  * Classic Roo
16665  *
16666  * Roo is designed primarily as a single page application, so the UI build for a standard interface will
16667  * expect a single 'TOP' level module normally indicated by the 'parent' of the XComponent definition being defined as false.
16668  *
16669  * Each sub module is expected to have a parent pointing to the class name of it's parent module.
16670  *
16671  * When the top level is false, a 'Roo.BorderLayout' is created and the element is flagged as 'topModule'
16672  * - if mulitple topModules exist, the last one is defined as the top module.
16673  *
16674  * Embeded Roo
16675  * 
16676  * When the top level or multiple modules are to embedded into a existing HTML page,
16677  * the parent element can container '#id' of the element where the module will be drawn.
16678  *
16679  * Bootstrap Roo
16680  *
16681  * Unlike classic Roo, the bootstrap tends not to be used as a single page.
16682  * it relies more on a include mechanism, where sub modules are included into an outer page.
16683  * This is normally managed by the builder tools using Roo.apply( options, Included.Sub.Module )
16684  * 
16685  * Bootstrap Roo Included elements
16686  *
16687  * Our builder application needs the ability to preview these sub compoennts. They will normally have parent=false set,
16688  * hence confusing the component builder as it thinks there are multiple top level elements. 
16689  *
16690  * String Over-ride & Translations
16691  *
16692  * Our builder application writes all the strings as _strings and _named_strings. This is to enable the translation of elements,
16693  * and also the 'overlaying of string values - needed when different versions of the same application with different text content
16694  * are needed. @see Roo.XComponent.overlayString  
16695  * 
16696  * 
16697  * 
16698  * @extends Roo.util.Observable
16699  * @constructor
16700  * @param cfg {Object} configuration of component
16701  * 
16702  */
16703 Roo.XComponent = function(cfg) {
16704     Roo.apply(this, cfg);
16705     this.addEvents({ 
16706         /**
16707              * @event built
16708              * Fires when this the componnt is built
16709              * @param {Roo.XComponent} c the component
16710              */
16711         'built' : true
16712         
16713     });
16714     this.region = this.region || 'center'; // default..
16715     Roo.XComponent.register(this);
16716     this.modules = false;
16717     this.el = false; // where the layout goes..
16718     
16719     
16720 }
16721 Roo.extend(Roo.XComponent, Roo.util.Observable, {
16722     /**
16723      * @property el
16724      * The created element (with Roo.factory())
16725      * @type {Roo.Layout}
16726      */
16727     el  : false,
16728     
16729     /**
16730      * @property el
16731      * for BC  - use el in new code
16732      * @type {Roo.Layout}
16733      */
16734     panel : false,
16735     
16736     /**
16737      * @property layout
16738      * for BC  - use el in new code
16739      * @type {Roo.Layout}
16740      */
16741     layout : false,
16742     
16743      /**
16744      * @cfg {Function|boolean} disabled
16745      * If this module is disabled by some rule, return true from the funtion
16746      */
16747     disabled : false,
16748     
16749     /**
16750      * @cfg {String} parent 
16751      * Name of parent element which it get xtype added to..
16752      */
16753     parent: false,
16754     
16755     /**
16756      * @cfg {String} order
16757      * Used to set the order in which elements are created (usefull for multiple tabs)
16758      */
16759     
16760     order : false,
16761     /**
16762      * @cfg {String} name
16763      * String to display while loading.
16764      */
16765     name : false,
16766     /**
16767      * @cfg {String} region
16768      * Region to render component to (defaults to center)
16769      */
16770     region : 'center',
16771     
16772     /**
16773      * @cfg {Array} items
16774      * A single item array - the first element is the root of the tree..
16775      * It's done this way to stay compatible with the Xtype system...
16776      */
16777     items : false,
16778     
16779     /**
16780      * @property _tree
16781      * The method that retuns the tree of parts that make up this compoennt 
16782      * @type {function}
16783      */
16784     _tree  : false,
16785     
16786      /**
16787      * render
16788      * render element to dom or tree
16789      * @param {Roo.Element|String|DomElement} optional render to if parent is not set.
16790      */
16791     
16792     render : function(el)
16793     {
16794         
16795         el = el || false;
16796         var hp = this.parent ? 1 : 0;
16797         Roo.debug &&  Roo.log(this);
16798         
16799         var tree = this._tree ? this._tree() : this.tree();
16800
16801         
16802         if (!el && typeof(this.parent) == 'string' && this.parent.substring(0,1) == '#') {
16803             // if parent is a '#.....' string, then let's use that..
16804             var ename = this.parent.substr(1);
16805             this.parent = false;
16806             Roo.debug && Roo.log(ename);
16807             switch (ename) {
16808                 case 'bootstrap-body':
16809                     if (typeof(tree.el) != 'undefined' && tree.el == document.body)  {
16810                         // this is the BorderLayout standard?
16811                        this.parent = { el : true };
16812                        break;
16813                     }
16814                     if (["Nest", "Content", "Grid", "Tree"].indexOf(tree.xtype)  > -1)  {
16815                         // need to insert stuff...
16816                         this.parent =  {
16817                              el : new Roo.bootstrap.layout.Border({
16818                                  el : document.body, 
16819                      
16820                                  center: {
16821                                     titlebar: false,
16822                                     autoScroll:false,
16823                                     closeOnTab: true,
16824                                     tabPosition: 'top',
16825                                       //resizeTabs: true,
16826                                     alwaysShowTabs: true,
16827                                     hideTabs: false
16828                                      //minTabWidth: 140
16829                                  }
16830                              })
16831                         
16832                          };
16833                          break;
16834                     }
16835                          
16836                     if (typeof(Roo.bootstrap.Body) != 'undefined' ) {
16837                         this.parent = { el :  new  Roo.bootstrap.Body() };
16838                         Roo.debug && Roo.log("setting el to doc body");
16839                          
16840                     } else {
16841                         throw "Container is bootstrap body, but Roo.bootstrap.Body is not defined";
16842                     }
16843                     break;
16844                 case 'bootstrap':
16845                     this.parent = { el : true};
16846                     // fall through
16847                 default:
16848                     el = Roo.get(ename);
16849                     if (typeof(Roo.bootstrap) != 'undefined' && tree['|xns'] == 'Roo.bootstrap') {
16850                         this.parent = { el : true};
16851                     }
16852                     
16853                     break;
16854             }
16855                 
16856             
16857             if (!el && !this.parent) {
16858                 Roo.debug && Roo.log("Warning - element can not be found :#" + ename );
16859                 return;
16860             }
16861         }
16862         
16863         Roo.debug && Roo.log("EL:");
16864         Roo.debug && Roo.log(el);
16865         Roo.debug && Roo.log("this.parent.el:");
16866         Roo.debug && Roo.log(this.parent.el);
16867         
16868
16869         // altertive root elements ??? - we need a better way to indicate these.
16870         var is_alt = Roo.XComponent.is_alt ||
16871                     (typeof(tree.el) != 'undefined' && tree.el == document.body) ||
16872                     (typeof(Roo.bootstrap) != 'undefined' && tree.xns == Roo.bootstrap) ||
16873                     (typeof(Roo.mailer) != 'undefined' && tree.xns == Roo.mailer) ;
16874         
16875         
16876         
16877         if (!this.parent && is_alt) {
16878             //el = Roo.get(document.body);
16879             this.parent = { el : true };
16880         }
16881             
16882             
16883         
16884         if (!this.parent) {
16885             
16886             Roo.debug && Roo.log("no parent - creating one");
16887             
16888             el = el ? Roo.get(el) : false;      
16889             
16890             if (typeof(Roo.BorderLayout) == 'undefined' ) {
16891                 
16892                 this.parent =  {
16893                     el : new Roo.bootstrap.layout.Border({
16894                         el: el || document.body,
16895                     
16896                         center: {
16897                             titlebar: false,
16898                             autoScroll:false,
16899                             closeOnTab: true,
16900                             tabPosition: 'top',
16901                              //resizeTabs: true,
16902                             alwaysShowTabs: false,
16903                             hideTabs: true,
16904                             minTabWidth: 140,
16905                             overflow: 'visible'
16906                          }
16907                      })
16908                 };
16909             } else {
16910             
16911                 // it's a top level one..
16912                 this.parent =  {
16913                     el : new Roo.BorderLayout(el || document.body, {
16914                         center: {
16915                             titlebar: false,
16916                             autoScroll:false,
16917                             closeOnTab: true,
16918                             tabPosition: 'top',
16919                              //resizeTabs: true,
16920                             alwaysShowTabs: el && hp? false :  true,
16921                             hideTabs: el || !hp ? true :  false,
16922                             minTabWidth: 140
16923                          }
16924                     })
16925                 };
16926             }
16927         }
16928         
16929         if (!this.parent.el) {
16930                 // probably an old style ctor, which has been disabled.
16931                 return;
16932
16933         }
16934                 // The 'tree' method is  '_tree now' 
16935             
16936         tree.region = tree.region || this.region;
16937         var is_body = false;
16938         if (this.parent.el === true) {
16939             // bootstrap... - body..
16940             if (el) {
16941                 tree.el = el;
16942             }
16943             this.parent.el = Roo.factory(tree);
16944             is_body = true;
16945         }
16946         
16947         this.el = this.parent.el.addxtype(tree, undefined, is_body);
16948         this.fireEvent('built', this);
16949         
16950         this.panel = this.el;
16951         this.layout = this.panel.layout;
16952         this.parentLayout = this.parent.layout  || false;  
16953          
16954     }
16955     
16956 });
16957
16958 Roo.apply(Roo.XComponent, {
16959     /**
16960      * @property  hideProgress
16961      * true to disable the building progress bar.. usefull on single page renders.
16962      * @type Boolean
16963      */
16964     hideProgress : false,
16965     /**
16966      * @property  buildCompleted
16967      * True when the builder has completed building the interface.
16968      * @type Boolean
16969      */
16970     buildCompleted : false,
16971      
16972     /**
16973      * @property  topModule
16974      * the upper most module - uses document.element as it's constructor.
16975      * @type Object
16976      */
16977      
16978     topModule  : false,
16979       
16980     /**
16981      * @property  modules
16982      * array of modules to be created by registration system.
16983      * @type {Array} of Roo.XComponent
16984      */
16985     
16986     modules : [],
16987     /**
16988      * @property  elmodules
16989      * array of modules to be created by which use #ID 
16990      * @type {Array} of Roo.XComponent
16991      */
16992      
16993     elmodules : [],
16994
16995      /**
16996      * @property  is_alt
16997      * Is an alternative Root - normally used by bootstrap or other systems,
16998      *    where the top element in the tree can wrap 'body' 
16999      * @type {boolean}  (default false)
17000      */
17001      
17002     is_alt : false,
17003     /**
17004      * @property  build_from_html
17005      * Build elements from html - used by bootstrap HTML stuff 
17006      *    - this is cleared after build is completed
17007      * @type {boolean}    (default false)
17008      */
17009      
17010     build_from_html : false,
17011     /**
17012      * Register components to be built later.
17013      *
17014      * This solves the following issues
17015      * - Building is not done on page load, but after an authentication process has occured.
17016      * - Interface elements are registered on page load
17017      * - Parent Interface elements may not be loaded before child, so this handles that..
17018      * 
17019      *
17020      * example:
17021      * 
17022      * MyApp.register({
17023           order : '000001',
17024           module : 'Pman.Tab.projectMgr',
17025           region : 'center',
17026           parent : 'Pman.layout',
17027           disabled : false,  // or use a function..
17028         })
17029      
17030      * * @param {Object} details about module
17031      */
17032     register : function(obj) {
17033                 
17034         Roo.XComponent.event.fireEvent('register', obj);
17035         switch(typeof(obj.disabled) ) {
17036                 
17037             case 'undefined':
17038                 break;
17039             
17040             case 'function':
17041                 if ( obj.disabled() ) {
17042                         return;
17043                 }
17044                 break;
17045             
17046             default:
17047                 if (obj.disabled || obj.region == '#disabled') {
17048                         return;
17049                 }
17050                 break;
17051         }
17052                 
17053         this.modules.push(obj);
17054          
17055     },
17056     /**
17057      * convert a string to an object..
17058      * eg. 'AAA.BBB' -> finds AAA.BBB
17059
17060      */
17061     
17062     toObject : function(str)
17063     {
17064         if (!str || typeof(str) == 'object') {
17065             return str;
17066         }
17067         if (str.substring(0,1) == '#') {
17068             return str;
17069         }
17070
17071         var ar = str.split('.');
17072         var rt, o;
17073         rt = ar.shift();
17074             /** eval:var:o */
17075         try {
17076             eval('if (typeof ' + rt + ' == "undefined"){ o = false;} o = ' + rt + ';');
17077         } catch (e) {
17078             throw "Module not found : " + str;
17079         }
17080         
17081         if (o === false) {
17082             throw "Module not found : " + str;
17083         }
17084         Roo.each(ar, function(e) {
17085             if (typeof(o[e]) == 'undefined') {
17086                 throw "Module not found : " + str;
17087             }
17088             o = o[e];
17089         });
17090         
17091         return o;
17092         
17093     },
17094     
17095     
17096     /**
17097      * move modules into their correct place in the tree..
17098      * 
17099      */
17100     preBuild : function ()
17101     {
17102         var _t = this;
17103         Roo.each(this.modules , function (obj)
17104         {
17105             Roo.XComponent.event.fireEvent('beforebuild', obj);
17106             
17107             var opar = obj.parent;
17108             try { 
17109                 obj.parent = this.toObject(opar);
17110             } catch(e) {
17111                 Roo.debug && Roo.log("parent:toObject failed: " + e.toString());
17112                 return;
17113             }
17114             
17115             if (!obj.parent) {
17116                 Roo.debug && Roo.log("GOT top level module");
17117                 Roo.debug && Roo.log(obj);
17118                 obj.modules = new Roo.util.MixedCollection(false, 
17119                     function(o) { return o.order + '' }
17120                 );
17121                 this.topModule = obj;
17122                 return;
17123             }
17124                         // parent is a string (usually a dom element name..)
17125             if (typeof(obj.parent) == 'string') {
17126                 this.elmodules.push(obj);
17127                 return;
17128             }
17129             if (obj.parent.constructor != Roo.XComponent) {
17130                 Roo.debug && Roo.log("Warning : Object Parent is not instance of XComponent:" + obj.name)
17131             }
17132             if (!obj.parent.modules) {
17133                 obj.parent.modules = new Roo.util.MixedCollection(false, 
17134                     function(o) { return o.order + '' }
17135                 );
17136             }
17137             if (obj.parent.disabled) {
17138                 obj.disabled = true;
17139             }
17140             obj.parent.modules.add(obj);
17141         }, this);
17142     },
17143     
17144      /**
17145      * make a list of modules to build.
17146      * @return {Array} list of modules. 
17147      */ 
17148     
17149     buildOrder : function()
17150     {
17151         var _this = this;
17152         var cmp = function(a,b) {   
17153             return String(a).toUpperCase() > String(b).toUpperCase() ? 1 : -1;
17154         };
17155         if ((!this.topModule || !this.topModule.modules) && !this.elmodules.length) {
17156             throw "No top level modules to build";
17157         }
17158         
17159         // make a flat list in order of modules to build.
17160         var mods = this.topModule ? [ this.topModule ] : [];
17161                 
17162         
17163         // elmodules (is a list of DOM based modules )
17164         Roo.each(this.elmodules, function(e) {
17165             mods.push(e);
17166             if (!this.topModule &&
17167                 typeof(e.parent) == 'string' &&
17168                 e.parent.substring(0,1) == '#' &&
17169                 Roo.get(e.parent.substr(1))
17170                ) {
17171                 
17172                 _this.topModule = e;
17173             }
17174             
17175         });
17176
17177         
17178         // add modules to their parents..
17179         var addMod = function(m) {
17180             Roo.debug && Roo.log("build Order: add: " + m.name);
17181                 
17182             mods.push(m);
17183             if (m.modules && !m.disabled) {
17184                 Roo.debug && Roo.log("build Order: " + m.modules.length + " child modules");
17185                 m.modules.keySort('ASC',  cmp );
17186                 Roo.debug && Roo.log("build Order: " + m.modules.length + " child modules (after sort)");
17187     
17188                 m.modules.each(addMod);
17189             } else {
17190                 Roo.debug && Roo.log("build Order: no child modules");
17191             }
17192             // not sure if this is used any more..
17193             if (m.finalize) {
17194                 m.finalize.name = m.name + " (clean up) ";
17195                 mods.push(m.finalize);
17196             }
17197             
17198         }
17199         if (this.topModule && this.topModule.modules) { 
17200             this.topModule.modules.keySort('ASC',  cmp );
17201             this.topModule.modules.each(addMod);
17202         } 
17203         return mods;
17204     },
17205     
17206      /**
17207      * Build the registered modules.
17208      * @param {Object} parent element.
17209      * @param {Function} optional method to call after module has been added.
17210      * 
17211      */ 
17212    
17213     build : function(opts) 
17214     {
17215         
17216         if (typeof(opts) != 'undefined') {
17217             Roo.apply(this,opts);
17218         }
17219         
17220         this.preBuild();
17221         var mods = this.buildOrder();
17222       
17223         //this.allmods = mods;
17224         //Roo.debug && Roo.log(mods);
17225         //return;
17226         if (!mods.length) { // should not happen
17227             throw "NO modules!!!";
17228         }
17229         
17230         
17231         var msg = "Building Interface...";
17232         // flash it up as modal - so we store the mask!?
17233         if (!this.hideProgress && Roo.MessageBox) {
17234             Roo.MessageBox.show({ title: 'loading' });
17235             Roo.MessageBox.show({
17236                title: "Please wait...",
17237                msg: msg,
17238                width:450,
17239                progress:true,
17240                buttons : false,
17241                closable:false,
17242                modal: false
17243               
17244             });
17245         }
17246         var total = mods.length;
17247         
17248         var _this = this;
17249         var progressRun = function() {
17250             if (!mods.length) {
17251                 Roo.debug && Roo.log('hide?');
17252                 if (!this.hideProgress && Roo.MessageBox) {
17253                     Roo.MessageBox.hide();
17254                 }
17255                 Roo.XComponent.build_from_html = false; // reset, so dialogs will be build from javascript
17256                 
17257                 Roo.XComponent.event.fireEvent('buildcomplete', _this.topModule);
17258                 
17259                 // THE END...
17260                 return false;   
17261             }
17262             
17263             var m = mods.shift();
17264             
17265             
17266             Roo.debug && Roo.log(m);
17267             // not sure if this is supported any more.. - modules that are are just function
17268             if (typeof(m) == 'function') { 
17269                 m.call(this);
17270                 return progressRun.defer(10, _this);
17271             } 
17272             
17273             
17274             msg = "Building Interface " + (total  - mods.length) + 
17275                     " of " + total + 
17276                     (m.name ? (' - ' + m.name) : '');
17277                         Roo.debug && Roo.log(msg);
17278             if (!_this.hideProgress &&  Roo.MessageBox) { 
17279                 Roo.MessageBox.updateProgress(  (total  - mods.length)/total, msg  );
17280             }
17281             
17282          
17283             // is the module disabled?
17284             var disabled = (typeof(m.disabled) == 'function') ?
17285                 m.disabled.call(m.module.disabled) : m.disabled;    
17286             
17287             
17288             if (disabled) {
17289                 return progressRun(); // we do not update the display!
17290             }
17291             
17292             // now build 
17293             
17294                         
17295                         
17296             m.render();
17297             // it's 10 on top level, and 1 on others??? why...
17298             return progressRun.defer(10, _this);
17299              
17300         }
17301         progressRun.defer(1, _this);
17302      
17303         
17304         
17305     },
17306     /**
17307      * Overlay a set of modified strings onto a component
17308      * This is dependant on our builder exporting the strings and 'named strings' elements.
17309      * 
17310      * @param {Object} element to overlay on - eg. Pman.Dialog.Login
17311      * @param {Object} associative array of 'named' string and it's new value.
17312      * 
17313      */
17314         overlayStrings : function( component, strings )
17315     {
17316         if (typeof(component['_named_strings']) == 'undefined') {
17317             throw "ERROR: component does not have _named_strings";
17318         }
17319         for ( var k in strings ) {
17320             var md = typeof(component['_named_strings'][k]) == 'undefined' ? false : component['_named_strings'][k];
17321             if (md !== false) {
17322                 component['_strings'][md] = strings[k];
17323             } else {
17324                 Roo.log('could not find named string: ' + k + ' in');
17325                 Roo.log(component);
17326             }
17327             
17328         }
17329         
17330     },
17331     
17332         
17333         /**
17334          * Event Object.
17335          *
17336          *
17337          */
17338         event: false, 
17339     /**
17340          * wrapper for event.on - aliased later..  
17341          * Typically use to register a event handler for register:
17342          *
17343          * eg. Roo.XComponent.on('register', function(comp) { comp.disable = true } );
17344          *
17345          */
17346     on : false
17347    
17348     
17349     
17350 });
17351
17352 Roo.XComponent.event = new Roo.util.Observable({
17353                 events : { 
17354                         /**
17355                          * @event register
17356                          * Fires when an Component is registered,
17357                          * set the disable property on the Component to stop registration.
17358                          * @param {Roo.XComponent} c the component being registerd.
17359                          * 
17360                          */
17361                         'register' : true,
17362             /**
17363                          * @event beforebuild
17364                          * Fires before each Component is built
17365                          * can be used to apply permissions.
17366                          * @param {Roo.XComponent} c the component being registerd.
17367                          * 
17368                          */
17369                         'beforebuild' : true,
17370                         /**
17371                          * @event buildcomplete
17372                          * Fires on the top level element when all elements have been built
17373                          * @param {Roo.XComponent} the top level component.
17374                          */
17375                         'buildcomplete' : true
17376                         
17377                 }
17378 });
17379
17380 Roo.XComponent.on = Roo.XComponent.event.on.createDelegate(Roo.XComponent.event); 
17381  //
17382  /**
17383  * marked - a markdown parser
17384  * Copyright (c) 2011-2014, Christopher Jeffrey. (MIT Licensed)
17385  * https://github.com/chjj/marked
17386  */
17387
17388
17389 /**
17390  *
17391  * Roo.Markdown - is a very crude wrapper around marked..
17392  *
17393  * usage:
17394  * 
17395  * alert( Roo.Markdown.toHtml("Markdown *rocks*.") );
17396  * 
17397  * Note: move the sample code to the bottom of this
17398  * file before uncommenting it.
17399  *
17400  */
17401
17402 Roo.Markdown = {};
17403 Roo.Markdown.toHtml = function(text) {
17404     
17405     var c = new Roo.Markdown.marked.setOptions({
17406             renderer: new Roo.Markdown.marked.Renderer(),
17407             gfm: true,
17408             tables: true,
17409             breaks: false,
17410             pedantic: false,
17411             sanitize: false,
17412             smartLists: true,
17413             smartypants: false
17414           });
17415     // A FEW HACKS!!?
17416     
17417     text = text.replace(/\\\n/g,' ');
17418     return Roo.Markdown.marked(text);
17419 };
17420 //
17421 // converter
17422 //
17423 // Wraps all "globals" so that the only thing
17424 // exposed is makeHtml().
17425 //
17426 (function() {
17427     
17428      /**
17429          * eval:var:escape
17430          * eval:var:unescape
17431          * eval:var:replace
17432          */
17433       
17434     /**
17435      * Helpers
17436      */
17437     
17438     var escape = function (html, encode) {
17439       return html
17440         .replace(!encode ? /&(?!#?\w+;)/g : /&/g, '&amp;')
17441         .replace(/</g, '&lt;')
17442         .replace(/>/g, '&gt;')
17443         .replace(/"/g, '&quot;')
17444         .replace(/'/g, '&#39;');
17445     }
17446     
17447     var unescape = function (html) {
17448         // explicitly match decimal, hex, and named HTML entities 
17449       return html.replace(/&(#(?:\d+)|(?:#x[0-9A-Fa-f]+)|(?:\w+));?/g, function(_, n) {
17450         n = n.toLowerCase();
17451         if (n === 'colon') { return ':'; }
17452         if (n.charAt(0) === '#') {
17453           return n.charAt(1) === 'x'
17454             ? String.fromCharCode(parseInt(n.substring(2), 16))
17455             : String.fromCharCode(+n.substring(1));
17456         }
17457         return '';
17458       });
17459     }
17460     
17461     var replace = function (regex, opt) {
17462       regex = regex.source;
17463       opt = opt || '';
17464       return function self(name, val) {
17465         if (!name) { return new RegExp(regex, opt); }
17466         val = val.source || val;
17467         val = val.replace(/(^|[^\[])\^/g, '$1');
17468         regex = regex.replace(name, val);
17469         return self;
17470       };
17471     }
17472
17473
17474          /**
17475          * eval:var:noop
17476     */
17477     var noop = function () {}
17478     noop.exec = noop;
17479     
17480          /**
17481          * eval:var:merge
17482     */
17483     var merge = function (obj) {
17484       var i = 1
17485         , target
17486         , key;
17487     
17488       for (; i < arguments.length; i++) {
17489         target = arguments[i];
17490         for (key in target) {
17491           if (Object.prototype.hasOwnProperty.call(target, key)) {
17492             obj[key] = target[key];
17493           }
17494         }
17495       }
17496     
17497       return obj;
17498     }
17499     
17500     
17501     /**
17502      * Block-Level Grammar
17503      */
17504     
17505     
17506     
17507     
17508     var block = {
17509       newline: /^\n+/,
17510       code: /^( {4}[^\n]+\n*)+/,
17511       fences: noop,
17512       hr: /^( *[-*_]){3,} *(?:\n+|$)/,
17513       heading: /^ *(#{1,6}) *([^\n]+?) *#* *(?:\n+|$)/,
17514       nptable: noop,
17515       lheading: /^([^\n]+)\n *(=|-){2,} *(?:\n+|$)/,
17516       blockquote: /^( *>[^\n]+(\n(?!def)[^\n]+)*\n*)+/,
17517       list: /^( *)(bull) [\s\S]+?(?:hr|def|\n{2,}(?! )(?!\1bull )\n*|\s*$)/,
17518       html: /^ *(?:comment *(?:\n|\s*$)|closed *(?:\n{2,}|\s*$)|closing *(?:\n{2,}|\s*$))/,
17519       def: /^ *\[([^\]]+)\]: *<?([^\s>]+)>?(?: +["(]([^\n]+)[")])? *(?:\n+|$)/,
17520       table: noop,
17521       paragraph: /^((?:[^\n]+\n?(?!hr|heading|lheading|blockquote|tag|def))+)\n*/,
17522       text: /^[^\n]+/
17523     };
17524     
17525     block.bullet = /(?:[*+-]|\d+\.)/;
17526     block.item = /^( *)(bull) [^\n]*(?:\n(?!\1bull )[^\n]*)*/;
17527     block.item = replace(block.item, 'gm')
17528       (/bull/g, block.bullet)
17529       ();
17530     
17531     block.list = replace(block.list)
17532       (/bull/g, block.bullet)
17533       ('hr', '\\n+(?=\\1?(?:[-*_] *){3,}(?:\\n+|$))')
17534       ('def', '\\n+(?=' + block.def.source + ')')
17535       ();
17536     
17537     block.blockquote = replace(block.blockquote)
17538       ('def', block.def)
17539       ();
17540     
17541     block._tag = '(?!(?:'
17542       + 'a|em|strong|small|s|cite|q|dfn|abbr|data|time|code'
17543       + '|var|samp|kbd|sub|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo'
17544       + '|span|br|wbr|ins|del|img)\\b)\\w+(?!:/|[^\\w\\s@]*@)\\b';
17545     
17546     block.html = replace(block.html)
17547       ('comment', /<!--[\s\S]*?-->/)
17548       ('closed', /<(tag)[\s\S]+?<\/\1>/)
17549       ('closing', /<tag(?:"[^"]*"|'[^']*'|[^'">])*?>/)
17550       (/tag/g, block._tag)
17551       ();
17552     
17553     block.paragraph = replace(block.paragraph)
17554       ('hr', block.hr)
17555       ('heading', block.heading)
17556       ('lheading', block.lheading)
17557       ('blockquote', block.blockquote)
17558       ('tag', '<' + block._tag)
17559       ('def', block.def)
17560       ();
17561     
17562     /**
17563      * Normal Block Grammar
17564      */
17565     
17566     block.normal = merge({}, block);
17567     
17568     /**
17569      * GFM Block Grammar
17570      */
17571     
17572     block.gfm = merge({}, block.normal, {
17573       fences: /^ *(`{3,}|~{3,})[ \.]*(\S+)? *\n([\s\S]*?)\s*\1 *(?:\n+|$)/,
17574       paragraph: /^/,
17575       heading: /^ *(#{1,6}) +([^\n]+?) *#* *(?:\n+|$)/
17576     });
17577     
17578     block.gfm.paragraph = replace(block.paragraph)
17579       ('(?!', '(?!'
17580         + block.gfm.fences.source.replace('\\1', '\\2') + '|'
17581         + block.list.source.replace('\\1', '\\3') + '|')
17582       ();
17583     
17584     /**
17585      * GFM + Tables Block Grammar
17586      */
17587     
17588     block.tables = merge({}, block.gfm, {
17589       nptable: /^ *(\S.*\|.*)\n *([-:]+ *\|[-| :]*)\n((?:.*\|.*(?:\n|$))*)\n*/,
17590       table: /^ *\|(.+)\n *\|( *[-:]+[-| :]*)\n((?: *\|.*(?:\n|$))*)\n*/
17591     });
17592     
17593     /**
17594      * Block Lexer
17595      */
17596     
17597     var Lexer = function (options) {
17598       this.tokens = [];
17599       this.tokens.links = {};
17600       this.options = options || marked.defaults;
17601       this.rules = block.normal;
17602     
17603       if (this.options.gfm) {
17604         if (this.options.tables) {
17605           this.rules = block.tables;
17606         } else {
17607           this.rules = block.gfm;
17608         }
17609       }
17610     }
17611     
17612     /**
17613      * Expose Block Rules
17614      */
17615     
17616     Lexer.rules = block;
17617     
17618     /**
17619      * Static Lex Method
17620      */
17621     
17622     Lexer.lex = function(src, options) {
17623       var lexer = new Lexer(options);
17624       return lexer.lex(src);
17625     };
17626     
17627     /**
17628      * Preprocessing
17629      */
17630     
17631     Lexer.prototype.lex = function(src) {
17632       src = src
17633         .replace(/\r\n|\r/g, '\n')
17634         .replace(/\t/g, '    ')
17635         .replace(/\u00a0/g, ' ')
17636         .replace(/\u2424/g, '\n');
17637     
17638       return this.token(src, true);
17639     };
17640     
17641     /**
17642      * Lexing
17643      */
17644     
17645     Lexer.prototype.token = function(src, top, bq) {
17646       var src = src.replace(/^ +$/gm, '')
17647         , next
17648         , loose
17649         , cap
17650         , bull
17651         , b
17652         , item
17653         , space
17654         , i
17655         , l;
17656     
17657       while (src) {
17658         // newline
17659         if (cap = this.rules.newline.exec(src)) {
17660           src = src.substring(cap[0].length);
17661           if (cap[0].length > 1) {
17662             this.tokens.push({
17663               type: 'space'
17664             });
17665           }
17666         }
17667     
17668         // code
17669         if (cap = this.rules.code.exec(src)) {
17670           src = src.substring(cap[0].length);
17671           cap = cap[0].replace(/^ {4}/gm, '');
17672           this.tokens.push({
17673             type: 'code',
17674             text: !this.options.pedantic
17675               ? cap.replace(/\n+$/, '')
17676               : cap
17677           });
17678           continue;
17679         }
17680     
17681         // fences (gfm)
17682         if (cap = this.rules.fences.exec(src)) {
17683           src = src.substring(cap[0].length);
17684           this.tokens.push({
17685             type: 'code',
17686             lang: cap[2],
17687             text: cap[3] || ''
17688           });
17689           continue;
17690         }
17691     
17692         // heading
17693         if (cap = this.rules.heading.exec(src)) {
17694           src = src.substring(cap[0].length);
17695           this.tokens.push({
17696             type: 'heading',
17697             depth: cap[1].length,
17698             text: cap[2]
17699           });
17700           continue;
17701         }
17702     
17703         // table no leading pipe (gfm)
17704         if (top && (cap = this.rules.nptable.exec(src))) {
17705           src = src.substring(cap[0].length);
17706     
17707           item = {
17708             type: 'table',
17709             header: cap[1].replace(/^ *| *\| *$/g, '').split(/ *\| */),
17710             align: cap[2].replace(/^ *|\| *$/g, '').split(/ *\| */),
17711             cells: cap[3].replace(/\n$/, '').split('\n')
17712           };
17713     
17714           for (i = 0; i < item.align.length; i++) {
17715             if (/^ *-+: *$/.test(item.align[i])) {
17716               item.align[i] = 'right';
17717             } else if (/^ *:-+: *$/.test(item.align[i])) {
17718               item.align[i] = 'center';
17719             } else if (/^ *:-+ *$/.test(item.align[i])) {
17720               item.align[i] = 'left';
17721             } else {
17722               item.align[i] = null;
17723             }
17724           }
17725     
17726           for (i = 0; i < item.cells.length; i++) {
17727             item.cells[i] = item.cells[i].split(/ *\| */);
17728           }
17729     
17730           this.tokens.push(item);
17731     
17732           continue;
17733         }
17734     
17735         // lheading
17736         if (cap = this.rules.lheading.exec(src)) {
17737           src = src.substring(cap[0].length);
17738           this.tokens.push({
17739             type: 'heading',
17740             depth: cap[2] === '=' ? 1 : 2,
17741             text: cap[1]
17742           });
17743           continue;
17744         }
17745     
17746         // hr
17747         if (cap = this.rules.hr.exec(src)) {
17748           src = src.substring(cap[0].length);
17749           this.tokens.push({
17750             type: 'hr'
17751           });
17752           continue;
17753         }
17754     
17755         // blockquote
17756         if (cap = this.rules.blockquote.exec(src)) {
17757           src = src.substring(cap[0].length);
17758     
17759           this.tokens.push({
17760             type: 'blockquote_start'
17761           });
17762     
17763           cap = cap[0].replace(/^ *> ?/gm, '');
17764     
17765           // Pass `top` to keep the current
17766           // "toplevel" state. This is exactly
17767           // how markdown.pl works.
17768           this.token(cap, top, true);
17769     
17770           this.tokens.push({
17771             type: 'blockquote_end'
17772           });
17773     
17774           continue;
17775         }
17776     
17777         // list
17778         if (cap = this.rules.list.exec(src)) {
17779           src = src.substring(cap[0].length);
17780           bull = cap[2];
17781     
17782           this.tokens.push({
17783             type: 'list_start',
17784             ordered: bull.length > 1
17785           });
17786     
17787           // Get each top-level item.
17788           cap = cap[0].match(this.rules.item);
17789     
17790           next = false;
17791           l = cap.length;
17792           i = 0;
17793     
17794           for (; i < l; i++) {
17795             item = cap[i];
17796     
17797             // Remove the list item's bullet
17798             // so it is seen as the next token.
17799             space = item.length;
17800             item = item.replace(/^ *([*+-]|\d+\.) +/, '');
17801     
17802             // Outdent whatever the
17803             // list item contains. Hacky.
17804             if (~item.indexOf('\n ')) {
17805               space -= item.length;
17806               item = !this.options.pedantic
17807                 ? item.replace(new RegExp('^ {1,' + space + '}', 'gm'), '')
17808                 : item.replace(/^ {1,4}/gm, '');
17809             }
17810     
17811             // Determine whether the next list item belongs here.
17812             // Backpedal if it does not belong in this list.
17813             if (this.options.smartLists && i !== l - 1) {
17814               b = block.bullet.exec(cap[i + 1])[0];
17815               if (bull !== b && !(bull.length > 1 && b.length > 1)) {
17816                 src = cap.slice(i + 1).join('\n') + src;
17817                 i = l - 1;
17818               }
17819             }
17820     
17821             // Determine whether item is loose or not.
17822             // Use: /(^|\n)(?! )[^\n]+\n\n(?!\s*$)/
17823             // for discount behavior.
17824             loose = next || /\n\n(?!\s*$)/.test(item);
17825             if (i !== l - 1) {
17826               next = item.charAt(item.length - 1) === '\n';
17827               if (!loose) { loose = next; }
17828             }
17829     
17830             this.tokens.push({
17831               type: loose
17832                 ? 'loose_item_start'
17833                 : 'list_item_start'
17834             });
17835     
17836             // Recurse.
17837             this.token(item, false, bq);
17838     
17839             this.tokens.push({
17840               type: 'list_item_end'
17841             });
17842           }
17843     
17844           this.tokens.push({
17845             type: 'list_end'
17846           });
17847     
17848           continue;
17849         }
17850     
17851         // html
17852         if (cap = this.rules.html.exec(src)) {
17853           src = src.substring(cap[0].length);
17854           this.tokens.push({
17855             type: this.options.sanitize
17856               ? 'paragraph'
17857               : 'html',
17858             pre: !this.options.sanitizer
17859               && (cap[1] === 'pre' || cap[1] === 'script' || cap[1] === 'style'),
17860             text: cap[0]
17861           });
17862           continue;
17863         }
17864     
17865         // def
17866         if ((!bq && top) && (cap = this.rules.def.exec(src))) {
17867           src = src.substring(cap[0].length);
17868           this.tokens.links[cap[1].toLowerCase()] = {
17869             href: cap[2],
17870             title: cap[3]
17871           };
17872           continue;
17873         }
17874     
17875         // table (gfm)
17876         if (top && (cap = this.rules.table.exec(src))) {
17877           src = src.substring(cap[0].length);
17878     
17879           item = {
17880             type: 'table',
17881             header: cap[1].replace(/^ *| *\| *$/g, '').split(/ *\| */),
17882             align: cap[2].replace(/^ *|\| *$/g, '').split(/ *\| */),
17883             cells: cap[3].replace(/(?: *\| *)?\n$/, '').split('\n')
17884           };
17885     
17886           for (i = 0; i < item.align.length; i++) {
17887             if (/^ *-+: *$/.test(item.align[i])) {
17888               item.align[i] = 'right';
17889             } else if (/^ *:-+: *$/.test(item.align[i])) {
17890               item.align[i] = 'center';
17891             } else if (/^ *:-+ *$/.test(item.align[i])) {
17892               item.align[i] = 'left';
17893             } else {
17894               item.align[i] = null;
17895             }
17896           }
17897     
17898           for (i = 0; i < item.cells.length; i++) {
17899             item.cells[i] = item.cells[i]
17900               .replace(/^ *\| *| *\| *$/g, '')
17901               .split(/ *\| */);
17902           }
17903     
17904           this.tokens.push(item);
17905     
17906           continue;
17907         }
17908     
17909         // top-level paragraph
17910         if (top && (cap = this.rules.paragraph.exec(src))) {
17911           src = src.substring(cap[0].length);
17912           this.tokens.push({
17913             type: 'paragraph',
17914             text: cap[1].charAt(cap[1].length - 1) === '\n'
17915               ? cap[1].slice(0, -1)
17916               : cap[1]
17917           });
17918           continue;
17919         }
17920     
17921         // text
17922         if (cap = this.rules.text.exec(src)) {
17923           // Top-level should never reach here.
17924           src = src.substring(cap[0].length);
17925           this.tokens.push({
17926             type: 'text',
17927             text: cap[0]
17928           });
17929           continue;
17930         }
17931     
17932         if (src) {
17933           throw new
17934             Error('Infinite loop on byte: ' + src.charCodeAt(0));
17935         }
17936       }
17937     
17938       return this.tokens;
17939     };
17940     
17941     /**
17942      * Inline-Level Grammar
17943      */
17944     
17945     var inline = {
17946       escape: /^\\([\\`*{}\[\]()#+\-.!_>])/,
17947       autolink: /^<([^ >]+(@|:\/)[^ >]+)>/,
17948       url: noop,
17949       tag: /^<!--[\s\S]*?-->|^<\/?\w+(?:"[^"]*"|'[^']*'|[^'">])*?>/,
17950       link: /^!?\[(inside)\]\(href\)/,
17951       reflink: /^!?\[(inside)\]\s*\[([^\]]*)\]/,
17952       nolink: /^!?\[((?:\[[^\]]*\]|[^\[\]])*)\]/,
17953       strong: /^__([\s\S]+?)__(?!_)|^\*\*([\s\S]+?)\*\*(?!\*)/,
17954       em: /^\b_((?:[^_]|__)+?)_\b|^\*((?:\*\*|[\s\S])+?)\*(?!\*)/,
17955       code: /^(`+)\s*([\s\S]*?[^`])\s*\1(?!`)/,
17956       br: /^ {2,}\n(?!\s*$)/,
17957       del: noop,
17958       text: /^[\s\S]+?(?=[\\<!\[_*`]| {2,}\n|$)/
17959     };
17960     
17961     inline._inside = /(?:\[[^\]]*\]|[^\[\]]|\](?=[^\[]*\]))*/;
17962     inline._href = /\s*<?([\s\S]*?)>?(?:\s+['"]([\s\S]*?)['"])?\s*/;
17963     
17964     inline.link = replace(inline.link)
17965       ('inside', inline._inside)
17966       ('href', inline._href)
17967       ();
17968     
17969     inline.reflink = replace(inline.reflink)
17970       ('inside', inline._inside)
17971       ();
17972     
17973     /**
17974      * Normal Inline Grammar
17975      */
17976     
17977     inline.normal = merge({}, inline);
17978     
17979     /**
17980      * Pedantic Inline Grammar
17981      */
17982     
17983     inline.pedantic = merge({}, inline.normal, {
17984       strong: /^__(?=\S)([\s\S]*?\S)__(?!_)|^\*\*(?=\S)([\s\S]*?\S)\*\*(?!\*)/,
17985       em: /^_(?=\S)([\s\S]*?\S)_(?!_)|^\*(?=\S)([\s\S]*?\S)\*(?!\*)/
17986     });
17987     
17988     /**
17989      * GFM Inline Grammar
17990      */
17991     
17992     inline.gfm = merge({}, inline.normal, {
17993       escape: replace(inline.escape)('])', '~|])')(),
17994       url: /^(https?:\/\/[^\s<]+[^<.,:;"')\]\s])/,
17995       del: /^~~(?=\S)([\s\S]*?\S)~~/,
17996       text: replace(inline.text)
17997         (']|', '~]|')
17998         ('|', '|https?://|')
17999         ()
18000     });
18001     
18002     /**
18003      * GFM + Line Breaks Inline Grammar
18004      */
18005     
18006     inline.breaks = merge({}, inline.gfm, {
18007       br: replace(inline.br)('{2,}', '*')(),
18008       text: replace(inline.gfm.text)('{2,}', '*')()
18009     });
18010     
18011     /**
18012      * Inline Lexer & Compiler
18013      */
18014     
18015     var InlineLexer  = function (links, options) {
18016       this.options = options || marked.defaults;
18017       this.links = links;
18018       this.rules = inline.normal;
18019       this.renderer = this.options.renderer || new Renderer;
18020       this.renderer.options = this.options;
18021     
18022       if (!this.links) {
18023         throw new
18024           Error('Tokens array requires a `links` property.');
18025       }
18026     
18027       if (this.options.gfm) {
18028         if (this.options.breaks) {
18029           this.rules = inline.breaks;
18030         } else {
18031           this.rules = inline.gfm;
18032         }
18033       } else if (this.options.pedantic) {
18034         this.rules = inline.pedantic;
18035       }
18036     }
18037     
18038     /**
18039      * Expose Inline Rules
18040      */
18041     
18042     InlineLexer.rules = inline;
18043     
18044     /**
18045      * Static Lexing/Compiling Method
18046      */
18047     
18048     InlineLexer.output = function(src, links, options) {
18049       var inline = new InlineLexer(links, options);
18050       return inline.output(src);
18051     };
18052     
18053     /**
18054      * Lexing/Compiling
18055      */
18056     
18057     InlineLexer.prototype.output = function(src) {
18058       var out = ''
18059         , link
18060         , text
18061         , href
18062         , cap;
18063     
18064       while (src) {
18065         // escape
18066         if (cap = this.rules.escape.exec(src)) {
18067           src = src.substring(cap[0].length);
18068           out += cap[1];
18069           continue;
18070         }
18071     
18072         // autolink
18073         if (cap = this.rules.autolink.exec(src)) {
18074           src = src.substring(cap[0].length);
18075           if (cap[2] === '@') {
18076             text = cap[1].charAt(6) === ':'
18077               ? this.mangle(cap[1].substring(7))
18078               : this.mangle(cap[1]);
18079             href = this.mangle('mailto:') + text;
18080           } else {
18081             text = escape(cap[1]);
18082             href = text;
18083           }
18084           out += this.renderer.link(href, null, text);
18085           continue;
18086         }
18087     
18088         // url (gfm)
18089         if (!this.inLink && (cap = this.rules.url.exec(src))) {
18090           src = src.substring(cap[0].length);
18091           text = escape(cap[1]);
18092           href = text;
18093           out += this.renderer.link(href, null, text);
18094           continue;
18095         }
18096     
18097         // tag
18098         if (cap = this.rules.tag.exec(src)) {
18099           if (!this.inLink && /^<a /i.test(cap[0])) {
18100             this.inLink = true;
18101           } else if (this.inLink && /^<\/a>/i.test(cap[0])) {
18102             this.inLink = false;
18103           }
18104           src = src.substring(cap[0].length);
18105           out += this.options.sanitize
18106             ? this.options.sanitizer
18107               ? this.options.sanitizer(cap[0])
18108               : escape(cap[0])
18109             : cap[0];
18110           continue;
18111         }
18112     
18113         // link
18114         if (cap = this.rules.link.exec(src)) {
18115           src = src.substring(cap[0].length);
18116           this.inLink = true;
18117           out += this.outputLink(cap, {
18118             href: cap[2],
18119             title: cap[3]
18120           });
18121           this.inLink = false;
18122           continue;
18123         }
18124     
18125         // reflink, nolink
18126         if ((cap = this.rules.reflink.exec(src))
18127             || (cap = this.rules.nolink.exec(src))) {
18128           src = src.substring(cap[0].length);
18129           link = (cap[2] || cap[1]).replace(/\s+/g, ' ');
18130           link = this.links[link.toLowerCase()];
18131           if (!link || !link.href) {
18132             out += cap[0].charAt(0);
18133             src = cap[0].substring(1) + src;
18134             continue;
18135           }
18136           this.inLink = true;
18137           out += this.outputLink(cap, link);
18138           this.inLink = false;
18139           continue;
18140         }
18141     
18142         // strong
18143         if (cap = this.rules.strong.exec(src)) {
18144           src = src.substring(cap[0].length);
18145           out += this.renderer.strong(this.output(cap[2] || cap[1]));
18146           continue;
18147         }
18148     
18149         // em
18150         if (cap = this.rules.em.exec(src)) {
18151           src = src.substring(cap[0].length);
18152           out += this.renderer.em(this.output(cap[2] || cap[1]));
18153           continue;
18154         }
18155     
18156         // code
18157         if (cap = this.rules.code.exec(src)) {
18158           src = src.substring(cap[0].length);
18159           out += this.renderer.codespan(escape(cap[2], true));
18160           continue;
18161         }
18162     
18163         // br
18164         if (cap = this.rules.br.exec(src)) {
18165           src = src.substring(cap[0].length);
18166           out += this.renderer.br();
18167           continue;
18168         }
18169     
18170         // del (gfm)
18171         if (cap = this.rules.del.exec(src)) {
18172           src = src.substring(cap[0].length);
18173           out += this.renderer.del(this.output(cap[1]));
18174           continue;
18175         }
18176     
18177         // text
18178         if (cap = this.rules.text.exec(src)) {
18179           src = src.substring(cap[0].length);
18180           out += this.renderer.text(escape(this.smartypants(cap[0])));
18181           continue;
18182         }
18183     
18184         if (src) {
18185           throw new
18186             Error('Infinite loop on byte: ' + src.charCodeAt(0));
18187         }
18188       }
18189     
18190       return out;
18191     };
18192     
18193     /**
18194      * Compile Link
18195      */
18196     
18197     InlineLexer.prototype.outputLink = function(cap, link) {
18198       var href = escape(link.href)
18199         , title = link.title ? escape(link.title) : null;
18200     
18201       return cap[0].charAt(0) !== '!'
18202         ? this.renderer.link(href, title, this.output(cap[1]))
18203         : this.renderer.image(href, title, escape(cap[1]));
18204     };
18205     
18206     /**
18207      * Smartypants Transformations
18208      */
18209     
18210     InlineLexer.prototype.smartypants = function(text) {
18211       if (!this.options.smartypants)  { return text; }
18212       return text
18213         // em-dashes
18214         .replace(/---/g, '\u2014')
18215         // en-dashes
18216         .replace(/--/g, '\u2013')
18217         // opening singles
18218         .replace(/(^|[-\u2014/(\[{"\s])'/g, '$1\u2018')
18219         // closing singles & apostrophes
18220         .replace(/'/g, '\u2019')
18221         // opening doubles
18222         .replace(/(^|[-\u2014/(\[{\u2018\s])"/g, '$1\u201c')
18223         // closing doubles
18224         .replace(/"/g, '\u201d')
18225         // ellipses
18226         .replace(/\.{3}/g, '\u2026');
18227     };
18228     
18229     /**
18230      * Mangle Links
18231      */
18232     
18233     InlineLexer.prototype.mangle = function(text) {
18234       if (!this.options.mangle) { return text; }
18235       var out = ''
18236         , l = text.length
18237         , i = 0
18238         , ch;
18239     
18240       for (; i < l; i++) {
18241         ch = text.charCodeAt(i);
18242         if (Math.random() > 0.5) {
18243           ch = 'x' + ch.toString(16);
18244         }
18245         out += '&#' + ch + ';';
18246       }
18247     
18248       return out;
18249     };
18250     
18251     /**
18252      * Renderer
18253      */
18254     
18255      /**
18256          * eval:var:Renderer
18257     */
18258     
18259     var Renderer   = function (options) {
18260       this.options = options || {};
18261     }
18262     
18263     Renderer.prototype.code = function(code, lang, escaped) {
18264       if (this.options.highlight) {
18265         var out = this.options.highlight(code, lang);
18266         if (out != null && out !== code) {
18267           escaped = true;
18268           code = out;
18269         }
18270       } else {
18271             // hack!!! - it's already escapeD?
18272             escaped = true;
18273       }
18274     
18275       if (!lang) {
18276         return '<pre><code>'
18277           + (escaped ? code : escape(code, true))
18278           + '\n</code></pre>';
18279       }
18280     
18281       return '<pre><code class="'
18282         + this.options.langPrefix
18283         + escape(lang, true)
18284         + '">'
18285         + (escaped ? code : escape(code, true))
18286         + '\n</code></pre>\n';
18287     };
18288     
18289     Renderer.prototype.blockquote = function(quote) {
18290       return '<blockquote>\n' + quote + '</blockquote>\n';
18291     };
18292     
18293     Renderer.prototype.html = function(html) {
18294       return html;
18295     };
18296     
18297     Renderer.prototype.heading = function(text, level, raw) {
18298       return '<h'
18299         + level
18300         + ' id="'
18301         + this.options.headerPrefix
18302         + raw.toLowerCase().replace(/[^\w]+/g, '-')
18303         + '">'
18304         + text
18305         + '</h'
18306         + level
18307         + '>\n';
18308     };
18309     
18310     Renderer.prototype.hr = function() {
18311       return this.options.xhtml ? '<hr/>\n' : '<hr>\n';
18312     };
18313     
18314     Renderer.prototype.list = function(body, ordered) {
18315       var type = ordered ? 'ol' : 'ul';
18316       return '<' + type + '>\n' + body + '</' + type + '>\n';
18317     };
18318     
18319     Renderer.prototype.listitem = function(text) {
18320       return '<li>' + text + '</li>\n';
18321     };
18322     
18323     Renderer.prototype.paragraph = function(text) {
18324       return '<p>' + text + '</p>\n';
18325     };
18326     
18327     Renderer.prototype.table = function(header, body) {
18328       return '<table class="table table-striped">\n'
18329         + '<thead>\n'
18330         + header
18331         + '</thead>\n'
18332         + '<tbody>\n'
18333         + body
18334         + '</tbody>\n'
18335         + '</table>\n';
18336     };
18337     
18338     Renderer.prototype.tablerow = function(content) {
18339       return '<tr>\n' + content + '</tr>\n';
18340     };
18341     
18342     Renderer.prototype.tablecell = function(content, flags) {
18343       var type = flags.header ? 'th' : 'td';
18344       var tag = flags.align
18345         ? '<' + type + ' style="text-align:' + flags.align + '">'
18346         : '<' + type + '>';
18347       return tag + content + '</' + type + '>\n';
18348     };
18349     
18350     // span level renderer
18351     Renderer.prototype.strong = function(text) {
18352       return '<strong>' + text + '</strong>';
18353     };
18354     
18355     Renderer.prototype.em = function(text) {
18356       return '<em>' + text + '</em>';
18357     };
18358     
18359     Renderer.prototype.codespan = function(text) {
18360       return '<code>' + text + '</code>';
18361     };
18362     
18363     Renderer.prototype.br = function() {
18364       return this.options.xhtml ? '<br/>' : '<br>';
18365     };
18366     
18367     Renderer.prototype.del = function(text) {
18368       return '<del>' + text + '</del>';
18369     };
18370     
18371     Renderer.prototype.link = function(href, title, text) {
18372       if (this.options.sanitize) {
18373         try {
18374           var prot = decodeURIComponent(unescape(href))
18375             .replace(/[^\w:]/g, '')
18376             .toLowerCase();
18377         } catch (e) {
18378           return '';
18379         }
18380         if (prot.indexOf('javascript:') === 0 || prot.indexOf('vbscript:') === 0) {
18381           return '';
18382         }
18383       }
18384       var out = '<a href="' + href + '"';
18385       if (title) {
18386         out += ' title="' + title + '"';
18387       }
18388       out += '>' + text + '</a>';
18389       return out;
18390     };
18391     
18392     Renderer.prototype.image = function(href, title, text) {
18393       var out = '<img src="' + href + '" alt="' + text + '"';
18394       if (title) {
18395         out += ' title="' + title + '"';
18396       }
18397       out += this.options.xhtml ? '/>' : '>';
18398       return out;
18399     };
18400     
18401     Renderer.prototype.text = function(text) {
18402       return text;
18403     };
18404     
18405     /**
18406      * Parsing & Compiling
18407      */
18408          /**
18409          * eval:var:Parser
18410     */
18411     
18412     var Parser= function (options) {
18413       this.tokens = [];
18414       this.token = null;
18415       this.options = options || marked.defaults;
18416       this.options.renderer = this.options.renderer || new Renderer;
18417       this.renderer = this.options.renderer;
18418       this.renderer.options = this.options;
18419     }
18420     
18421     /**
18422      * Static Parse Method
18423      */
18424     
18425     Parser.parse = function(src, options, renderer) {
18426       var parser = new Parser(options, renderer);
18427       return parser.parse(src);
18428     };
18429     
18430     /**
18431      * Parse Loop
18432      */
18433     
18434     Parser.prototype.parse = function(src) {
18435       this.inline = new InlineLexer(src.links, this.options, this.renderer);
18436       this.tokens = src.reverse();
18437     
18438       var out = '';
18439       while (this.next()) {
18440         out += this.tok();
18441       }
18442     
18443       return out;
18444     };
18445     
18446     /**
18447      * Next Token
18448      */
18449     
18450     Parser.prototype.next = function() {
18451       return this.token = this.tokens.pop();
18452     };
18453     
18454     /**
18455      * Preview Next Token
18456      */
18457     
18458     Parser.prototype.peek = function() {
18459       return this.tokens[this.tokens.length - 1] || 0;
18460     };
18461     
18462     /**
18463      * Parse Text Tokens
18464      */
18465     
18466     Parser.prototype.parseText = function() {
18467       var body = this.token.text;
18468     
18469       while (this.peek().type === 'text') {
18470         body += '\n' + this.next().text;
18471       }
18472     
18473       return this.inline.output(body);
18474     };
18475     
18476     /**
18477      * Parse Current Token
18478      */
18479     
18480     Parser.prototype.tok = function() {
18481       switch (this.token.type) {
18482         case 'space': {
18483           return '';
18484         }
18485         case 'hr': {
18486           return this.renderer.hr();
18487         }
18488         case 'heading': {
18489           return this.renderer.heading(
18490             this.inline.output(this.token.text),
18491             this.token.depth,
18492             this.token.text);
18493         }
18494         case 'code': {
18495           return this.renderer.code(this.token.text,
18496             this.token.lang,
18497             this.token.escaped);
18498         }
18499         case 'table': {
18500           var header = ''
18501             , body = ''
18502             , i
18503             , row
18504             , cell
18505             , flags
18506             , j;
18507     
18508           // header
18509           cell = '';
18510           for (i = 0; i < this.token.header.length; i++) {
18511             flags = { header: true, align: this.token.align[i] };
18512             cell += this.renderer.tablecell(
18513               this.inline.output(this.token.header[i]),
18514               { header: true, align: this.token.align[i] }
18515             );
18516           }
18517           header += this.renderer.tablerow(cell);
18518     
18519           for (i = 0; i < this.token.cells.length; i++) {
18520             row = this.token.cells[i];
18521     
18522             cell = '';
18523             for (j = 0; j < row.length; j++) {
18524               cell += this.renderer.tablecell(
18525                 this.inline.output(row[j]),
18526                 { header: false, align: this.token.align[j] }
18527               );
18528             }
18529     
18530             body += this.renderer.tablerow(cell);
18531           }
18532           return this.renderer.table(header, body);
18533         }
18534         case 'blockquote_start': {
18535           var body = '';
18536     
18537           while (this.next().type !== 'blockquote_end') {
18538             body += this.tok();
18539           }
18540     
18541           return this.renderer.blockquote(body);
18542         }
18543         case 'list_start': {
18544           var body = ''
18545             , ordered = this.token.ordered;
18546     
18547           while (this.next().type !== 'list_end') {
18548             body += this.tok();
18549           }
18550     
18551           return this.renderer.list(body, ordered);
18552         }
18553         case 'list_item_start': {
18554           var body = '';
18555     
18556           while (this.next().type !== 'list_item_end') {
18557             body += this.token.type === 'text'
18558               ? this.parseText()
18559               : this.tok();
18560           }
18561     
18562           return this.renderer.listitem(body);
18563         }
18564         case 'loose_item_start': {
18565           var body = '';
18566     
18567           while (this.next().type !== 'list_item_end') {
18568             body += this.tok();
18569           }
18570     
18571           return this.renderer.listitem(body);
18572         }
18573         case 'html': {
18574           var html = !this.token.pre && !this.options.pedantic
18575             ? this.inline.output(this.token.text)
18576             : this.token.text;
18577           return this.renderer.html(html);
18578         }
18579         case 'paragraph': {
18580           return this.renderer.paragraph(this.inline.output(this.token.text));
18581         }
18582         case 'text': {
18583           return this.renderer.paragraph(this.parseText());
18584         }
18585       }
18586     };
18587   
18588     
18589     /**
18590      * Marked
18591      */
18592          /**
18593          * eval:var:marked
18594     */
18595     var marked = function (src, opt, callback) {
18596       if (callback || typeof opt === 'function') {
18597         if (!callback) {
18598           callback = opt;
18599           opt = null;
18600         }
18601     
18602         opt = merge({}, marked.defaults, opt || {});
18603     
18604         var highlight = opt.highlight
18605           , tokens
18606           , pending
18607           , i = 0;
18608     
18609         try {
18610           tokens = Lexer.lex(src, opt)
18611         } catch (e) {
18612           return callback(e);
18613         }
18614     
18615         pending = tokens.length;
18616          /**
18617          * eval:var:done
18618     */
18619         var done = function(err) {
18620           if (err) {
18621             opt.highlight = highlight;
18622             return callback(err);
18623           }
18624     
18625           var out;
18626     
18627           try {
18628             out = Parser.parse(tokens, opt);
18629           } catch (e) {
18630             err = e;
18631           }
18632     
18633           opt.highlight = highlight;
18634     
18635           return err
18636             ? callback(err)
18637             : callback(null, out);
18638         };
18639     
18640         if (!highlight || highlight.length < 3) {
18641           return done();
18642         }
18643     
18644         delete opt.highlight;
18645     
18646         if (!pending) { return done(); }
18647     
18648         for (; i < tokens.length; i++) {
18649           (function(token) {
18650             if (token.type !== 'code') {
18651               return --pending || done();
18652             }
18653             return highlight(token.text, token.lang, function(err, code) {
18654               if (err) { return done(err); }
18655               if (code == null || code === token.text) {
18656                 return --pending || done();
18657               }
18658               token.text = code;
18659               token.escaped = true;
18660               --pending || done();
18661             });
18662           })(tokens[i]);
18663         }
18664     
18665         return;
18666       }
18667       try {
18668         if (opt) { opt = merge({}, marked.defaults, opt); }
18669         return Parser.parse(Lexer.lex(src, opt), opt);
18670       } catch (e) {
18671         e.message += '\nPlease report this to https://github.com/chjj/marked.';
18672         if ((opt || marked.defaults).silent) {
18673           return '<p>An error occured:</p><pre>'
18674             + escape(e.message + '', true)
18675             + '</pre>';
18676         }
18677         throw e;
18678       }
18679     }
18680     
18681     /**
18682      * Options
18683      */
18684     
18685     marked.options =
18686     marked.setOptions = function(opt) {
18687       merge(marked.defaults, opt);
18688       return marked;
18689     };
18690     
18691     marked.defaults = {
18692       gfm: true,
18693       tables: true,
18694       breaks: false,
18695       pedantic: false,
18696       sanitize: false,
18697       sanitizer: null,
18698       mangle: true,
18699       smartLists: false,
18700       silent: false,
18701       highlight: null,
18702       langPrefix: 'lang-',
18703       smartypants: false,
18704       headerPrefix: '',
18705       renderer: new Renderer,
18706       xhtml: false
18707     };
18708     
18709     /**
18710      * Expose
18711      */
18712     
18713     marked.Parser = Parser;
18714     marked.parser = Parser.parse;
18715     
18716     marked.Renderer = Renderer;
18717     
18718     marked.Lexer = Lexer;
18719     marked.lexer = Lexer.lex;
18720     
18721     marked.InlineLexer = InlineLexer;
18722     marked.inlineLexer = InlineLexer.output;
18723     
18724     marked.parse = marked;
18725     
18726     Roo.Markdown.marked = marked;
18727
18728 })();/*
18729  * Based on:
18730  * Ext JS Library 1.1.1
18731  * Copyright(c) 2006-2007, Ext JS, LLC.
18732  *
18733  * Originally Released Under LGPL - original licence link has changed is not relivant.
18734  *
18735  * Fork - LGPL
18736  * <script type="text/javascript">
18737  */
18738
18739
18740
18741 /*
18742  * These classes are derivatives of the similarly named classes in the YUI Library.
18743  * The original license:
18744  * Copyright (c) 2006, Yahoo! Inc. All rights reserved.
18745  * Code licensed under the BSD License:
18746  * http://developer.yahoo.net/yui/license.txt
18747  */
18748
18749 (function() {
18750
18751 var Event=Roo.EventManager;
18752 var Dom=Roo.lib.Dom;
18753
18754 /**
18755  * @class Roo.dd.DragDrop
18756  * @extends Roo.util.Observable
18757  * Defines the interface and base operation of items that that can be
18758  * dragged or can be drop targets.  It was designed to be extended, overriding
18759  * the event handlers for startDrag, onDrag, onDragOver and onDragOut.
18760  * Up to three html elements can be associated with a DragDrop instance:
18761  * <ul>
18762  * <li>linked element: the element that is passed into the constructor.
18763  * This is the element which defines the boundaries for interaction with
18764  * other DragDrop objects.</li>
18765  * <li>handle element(s): The drag operation only occurs if the element that
18766  * was clicked matches a handle element.  By default this is the linked
18767  * element, but there are times that you will want only a portion of the
18768  * linked element to initiate the drag operation, and the setHandleElId()
18769  * method provides a way to define this.</li>
18770  * <li>drag element: this represents the element that would be moved along
18771  * with the cursor during a drag operation.  By default, this is the linked
18772  * element itself as in {@link Roo.dd.DD}.  setDragElId() lets you define
18773  * a separate element that would be moved, as in {@link Roo.dd.DDProxy}.
18774  * </li>
18775  * </ul>
18776  * This class should not be instantiated until the onload event to ensure that
18777  * the associated elements are available.
18778  * The following would define a DragDrop obj that would interact with any
18779  * other DragDrop obj in the "group1" group:
18780  * <pre>
18781  *  dd = new Roo.dd.DragDrop("div1", "group1");
18782  * </pre>
18783  * Since none of the event handlers have been implemented, nothing would
18784  * actually happen if you were to run the code above.  Normally you would
18785  * override this class or one of the default implementations, but you can
18786  * also override the methods you want on an instance of the class...
18787  * <pre>
18788  *  dd.onDragDrop = function(e, id) {
18789  *  &nbsp;&nbsp;alert("dd was dropped on " + id);
18790  *  }
18791  * </pre>
18792  * @constructor
18793  * @param {String} id of the element that is linked to this instance
18794  * @param {String} sGroup the group of related DragDrop objects
18795  * @param {object} config an object containing configurable attributes
18796  *                Valid properties for DragDrop:
18797  *                    padding, isTarget, maintainOffset, primaryButtonOnly
18798  */
18799 Roo.dd.DragDrop = function(id, sGroup, config) {
18800     if (id) {
18801         this.init(id, sGroup, config);
18802     }
18803     
18804 };
18805
18806 Roo.extend(Roo.dd.DragDrop, Roo.util.Observable , {
18807
18808     /**
18809      * The id of the element associated with this object.  This is what we
18810      * refer to as the "linked element" because the size and position of
18811      * this element is used to determine when the drag and drop objects have
18812      * interacted.
18813      * @property id
18814      * @type String
18815      */
18816     id: null,
18817
18818     /**
18819      * Configuration attributes passed into the constructor
18820      * @property config
18821      * @type object
18822      */
18823     config: null,
18824
18825     /**
18826      * The id of the element that will be dragged.  By default this is same
18827      * as the linked element , but could be changed to another element. Ex:
18828      * Roo.dd.DDProxy
18829      * @property dragElId
18830      * @type String
18831      * @private
18832      */
18833     dragElId: null,
18834
18835     /**
18836      * the id of the element that initiates the drag operation.  By default
18837      * this is the linked element, but could be changed to be a child of this
18838      * element.  This lets us do things like only starting the drag when the
18839      * header element within the linked html element is clicked.
18840      * @property handleElId
18841      * @type String
18842      * @private
18843      */
18844     handleElId: null,
18845
18846     /**
18847      * An associative array of HTML tags that will be ignored if clicked.
18848      * @property invalidHandleTypes
18849      * @type {string: string}
18850      */
18851     invalidHandleTypes: null,
18852
18853     /**
18854      * An associative array of ids for elements that will be ignored if clicked
18855      * @property invalidHandleIds
18856      * @type {string: string}
18857      */
18858     invalidHandleIds: null,
18859
18860     /**
18861      * An indexted array of css class names for elements that will be ignored
18862      * if clicked.
18863      * @property invalidHandleClasses
18864      * @type string[]
18865      */
18866     invalidHandleClasses: null,
18867
18868     /**
18869      * The linked element's absolute X position at the time the drag was
18870      * started
18871      * @property startPageX
18872      * @type int
18873      * @private
18874      */
18875     startPageX: 0,
18876
18877     /**
18878      * The linked element's absolute X position at the time the drag was
18879      * started
18880      * @property startPageY
18881      * @type int
18882      * @private
18883      */
18884     startPageY: 0,
18885
18886     /**
18887      * The group defines a logical collection of DragDrop objects that are
18888      * related.  Instances only get events when interacting with other
18889      * DragDrop object in the same group.  This lets us define multiple
18890      * groups using a single DragDrop subclass if we want.
18891      * @property groups
18892      * @type {string: string}
18893      */
18894     groups: null,
18895
18896     /**
18897      * Individual drag/drop instances can be locked.  This will prevent
18898      * onmousedown start drag.
18899      * @property locked
18900      * @type boolean
18901      * @private
18902      */
18903     locked: false,
18904
18905     /**
18906      * Lock this instance
18907      * @method lock
18908      */
18909     lock: function() { this.locked = true; },
18910
18911     /**
18912      * Unlock this instace
18913      * @method unlock
18914      */
18915     unlock: function() { this.locked = false; },
18916
18917     /**
18918      * By default, all insances can be a drop target.  This can be disabled by
18919      * setting isTarget to false.
18920      * @method isTarget
18921      * @type boolean
18922      */
18923     isTarget: true,
18924
18925     /**
18926      * The padding configured for this drag and drop object for calculating
18927      * the drop zone intersection with this object.
18928      * @method padding
18929      * @type int[]
18930      */
18931     padding: null,
18932
18933     /**
18934      * Cached reference to the linked element
18935      * @property _domRef
18936      * @private
18937      */
18938     _domRef: null,
18939
18940     /**
18941      * Internal typeof flag
18942      * @property __ygDragDrop
18943      * @private
18944      */
18945     __ygDragDrop: true,
18946
18947     /**
18948      * Set to true when horizontal contraints are applied
18949      * @property constrainX
18950      * @type boolean
18951      * @private
18952      */
18953     constrainX: false,
18954
18955     /**
18956      * Set to true when vertical contraints are applied
18957      * @property constrainY
18958      * @type boolean
18959      * @private
18960      */
18961     constrainY: false,
18962
18963     /**
18964      * The left constraint
18965      * @property minX
18966      * @type int
18967      * @private
18968      */
18969     minX: 0,
18970
18971     /**
18972      * The right constraint
18973      * @property maxX
18974      * @type int
18975      * @private
18976      */
18977     maxX: 0,
18978
18979     /**
18980      * The up constraint
18981      * @property minY
18982      * @type int
18983      * @type int
18984      * @private
18985      */
18986     minY: 0,
18987
18988     /**
18989      * The down constraint
18990      * @property maxY
18991      * @type int
18992      * @private
18993      */
18994     maxY: 0,
18995
18996     /**
18997      * Maintain offsets when we resetconstraints.  Set to true when you want
18998      * the position of the element relative to its parent to stay the same
18999      * when the page changes
19000      *
19001      * @property maintainOffset
19002      * @type boolean
19003      */
19004     maintainOffset: false,
19005
19006     /**
19007      * Array of pixel locations the element will snap to if we specified a
19008      * horizontal graduation/interval.  This array is generated automatically
19009      * when you define a tick interval.
19010      * @property xTicks
19011      * @type int[]
19012      */
19013     xTicks: null,
19014
19015     /**
19016      * Array of pixel locations the element will snap to if we specified a
19017      * vertical graduation/interval.  This array is generated automatically
19018      * when you define a tick interval.
19019      * @property yTicks
19020      * @type int[]
19021      */
19022     yTicks: null,
19023
19024     /**
19025      * By default the drag and drop instance will only respond to the primary
19026      * button click (left button for a right-handed mouse).  Set to true to
19027      * allow drag and drop to start with any mouse click that is propogated
19028      * by the browser
19029      * @property primaryButtonOnly
19030      * @type boolean
19031      */
19032     primaryButtonOnly: true,
19033
19034     /**
19035      * The availabe property is false until the linked dom element is accessible.
19036      * @property available
19037      * @type boolean
19038      */
19039     available: false,
19040
19041     /**
19042      * By default, drags can only be initiated if the mousedown occurs in the
19043      * region the linked element is.  This is done in part to work around a
19044      * bug in some browsers that mis-report the mousedown if the previous
19045      * mouseup happened outside of the window.  This property is set to true
19046      * if outer handles are defined.
19047      *
19048      * @property hasOuterHandles
19049      * @type boolean
19050      * @default false
19051      */
19052     hasOuterHandles: false,
19053
19054     /**
19055      * Code that executes immediately before the startDrag event
19056      * @method b4StartDrag
19057      * @private
19058      */
19059     b4StartDrag: function(x, y) { },
19060
19061     /**
19062      * Abstract method called after a drag/drop object is clicked
19063      * and the drag or mousedown time thresholds have beeen met.
19064      * @method startDrag
19065      * @param {int} X click location
19066      * @param {int} Y click location
19067      */
19068     startDrag: function(x, y) { /* override this */ },
19069
19070     /**
19071      * Code that executes immediately before the onDrag event
19072      * @method b4Drag
19073      * @private
19074      */
19075     b4Drag: function(e) { },
19076
19077     /**
19078      * Abstract method called during the onMouseMove event while dragging an
19079      * object.
19080      * @method onDrag
19081      * @param {Event} e the mousemove event
19082      */
19083     onDrag: function(e) { /* override this */ },
19084
19085     /**
19086      * Abstract method called when this element fist begins hovering over
19087      * another DragDrop obj
19088      * @method onDragEnter
19089      * @param {Event} e the mousemove event
19090      * @param {String|DragDrop[]} id In POINT mode, the element
19091      * id this is hovering over.  In INTERSECT mode, an array of one or more
19092      * dragdrop items being hovered over.
19093      */
19094     onDragEnter: function(e, id) { /* override this */ },
19095
19096     /**
19097      * Code that executes immediately before the onDragOver event
19098      * @method b4DragOver
19099      * @private
19100      */
19101     b4DragOver: function(e) { },
19102
19103     /**
19104      * Abstract method called when this element is hovering over another
19105      * DragDrop obj
19106      * @method onDragOver
19107      * @param {Event} e the mousemove event
19108      * @param {String|DragDrop[]} id In POINT mode, the element
19109      * id this is hovering over.  In INTERSECT mode, an array of dd items
19110      * being hovered over.
19111      */
19112     onDragOver: function(e, id) { /* override this */ },
19113
19114     /**
19115      * Code that executes immediately before the onDragOut event
19116      * @method b4DragOut
19117      * @private
19118      */
19119     b4DragOut: function(e) { },
19120
19121     /**
19122      * Abstract method called when we are no longer hovering over an element
19123      * @method onDragOut
19124      * @param {Event} e the mousemove event
19125      * @param {String|DragDrop[]} id In POINT mode, the element
19126      * id this was hovering over.  In INTERSECT mode, an array of dd items
19127      * that the mouse is no longer over.
19128      */
19129     onDragOut: function(e, id) { /* override this */ },
19130
19131     /**
19132      * Code that executes immediately before the onDragDrop event
19133      * @method b4DragDrop
19134      * @private
19135      */
19136     b4DragDrop: function(e) { },
19137
19138     /**
19139      * Abstract method called when this item is dropped on another DragDrop
19140      * obj
19141      * @method onDragDrop
19142      * @param {Event} e the mouseup event
19143      * @param {String|DragDrop[]} id In POINT mode, the element
19144      * id this was dropped on.  In INTERSECT mode, an array of dd items this
19145      * was dropped on.
19146      */
19147     onDragDrop: function(e, id) { /* override this */ },
19148
19149     /**
19150      * Abstract method called when this item is dropped on an area with no
19151      * drop target
19152      * @method onInvalidDrop
19153      * @param {Event} e the mouseup event
19154      */
19155     onInvalidDrop: function(e) { /* override this */ },
19156
19157     /**
19158      * Code that executes immediately before the endDrag event
19159      * @method b4EndDrag
19160      * @private
19161      */
19162     b4EndDrag: function(e) { },
19163
19164     /**
19165      * Fired when we are done dragging the object
19166      * @method endDrag
19167      * @param {Event} e the mouseup event
19168      */
19169     endDrag: function(e) { /* override this */ },
19170
19171     /**
19172      * Code executed immediately before the onMouseDown event
19173      * @method b4MouseDown
19174      * @param {Event} e the mousedown event
19175      * @private
19176      */
19177     b4MouseDown: function(e) {  },
19178
19179     /**
19180      * Event handler that fires when a drag/drop obj gets a mousedown
19181      * @method onMouseDown
19182      * @param {Event} e the mousedown event
19183      */
19184     onMouseDown: function(e) { /* override this */ },
19185
19186     /**
19187      * Event handler that fires when a drag/drop obj gets a mouseup
19188      * @method onMouseUp
19189      * @param {Event} e the mouseup event
19190      */
19191     onMouseUp: function(e) { /* override this */ },
19192
19193     /**
19194      * Override the onAvailable method to do what is needed after the initial
19195      * position was determined.
19196      * @method onAvailable
19197      */
19198     onAvailable: function () {
19199     },
19200
19201     /*
19202      * Provides default constraint padding to "constrainTo" elements (defaults to {left: 0, right:0, top:0, bottom:0}).
19203      * @type Object
19204      */
19205     defaultPadding : {left:0, right:0, top:0, bottom:0},
19206
19207     /*
19208      * Initializes the drag drop object's constraints to restrict movement to a certain element.
19209  *
19210  * Usage:
19211  <pre><code>
19212  var dd = new Roo.dd.DDProxy("dragDiv1", "proxytest",
19213                 { dragElId: "existingProxyDiv" });
19214  dd.startDrag = function(){
19215      this.constrainTo("parent-id");
19216  };
19217  </code></pre>
19218  * Or you can initalize it using the {@link Roo.Element} object:
19219  <pre><code>
19220  Roo.get("dragDiv1").initDDProxy("proxytest", {dragElId: "existingProxyDiv"}, {
19221      startDrag : function(){
19222          this.constrainTo("parent-id");
19223      }
19224  });
19225  </code></pre>
19226      * @param {String/HTMLElement/Element} constrainTo The element to constrain to.
19227      * @param {Object/Number} pad (optional) Pad provides a way to specify "padding" of the constraints,
19228      * and can be either a number for symmetrical padding (4 would be equal to {left:4, right:4, top:4, bottom:4}) or
19229      * an object containing the sides to pad. For example: {right:10, bottom:10}
19230      * @param {Boolean} inContent (optional) Constrain the draggable in the content box of the element (inside padding and borders)
19231      */
19232     constrainTo : function(constrainTo, pad, inContent){
19233         if(typeof pad == "number"){
19234             pad = {left: pad, right:pad, top:pad, bottom:pad};
19235         }
19236         pad = pad || this.defaultPadding;
19237         var b = Roo.get(this.getEl()).getBox();
19238         var ce = Roo.get(constrainTo);
19239         var s = ce.getScroll();
19240         var c, cd = ce.dom;
19241         if(cd == document.body){
19242             c = { x: s.left, y: s.top, width: Roo.lib.Dom.getViewWidth(), height: Roo.lib.Dom.getViewHeight()};
19243         }else{
19244             xy = ce.getXY();
19245             c = {x : xy[0]+s.left, y: xy[1]+s.top, width: cd.clientWidth, height: cd.clientHeight};
19246         }
19247
19248
19249         var topSpace = b.y - c.y;
19250         var leftSpace = b.x - c.x;
19251
19252         this.resetConstraints();
19253         this.setXConstraint(leftSpace - (pad.left||0), // left
19254                 c.width - leftSpace - b.width - (pad.right||0) //right
19255         );
19256         this.setYConstraint(topSpace - (pad.top||0), //top
19257                 c.height - topSpace - b.height - (pad.bottom||0) //bottom
19258         );
19259     },
19260
19261     /**
19262      * Returns a reference to the linked element
19263      * @method getEl
19264      * @return {HTMLElement} the html element
19265      */
19266     getEl: function() {
19267         if (!this._domRef) {
19268             this._domRef = Roo.getDom(this.id);
19269         }
19270
19271         return this._domRef;
19272     },
19273
19274     /**
19275      * Returns a reference to the actual element to drag.  By default this is
19276      * the same as the html element, but it can be assigned to another
19277      * element. An example of this can be found in Roo.dd.DDProxy
19278      * @method getDragEl
19279      * @return {HTMLElement} the html element
19280      */
19281     getDragEl: function() {
19282         return Roo.getDom(this.dragElId);
19283     },
19284
19285     /**
19286      * Sets up the DragDrop object.  Must be called in the constructor of any
19287      * Roo.dd.DragDrop subclass
19288      * @method init
19289      * @param id the id of the linked element
19290      * @param {String} sGroup the group of related items
19291      * @param {object} config configuration attributes
19292      */
19293     init: function(id, sGroup, config) {
19294         this.initTarget(id, sGroup, config);
19295         if (!Roo.isTouch) {
19296             Event.on(this.id, "mousedown", this.handleMouseDown, this);
19297         }
19298         Event.on(this.id, "touchstart", this.handleMouseDown, this);
19299         // Event.on(this.id, "selectstart", Event.preventDefault);
19300     },
19301
19302     /**
19303      * Initializes Targeting functionality only... the object does not
19304      * get a mousedown handler.
19305      * @method initTarget
19306      * @param id the id of the linked element
19307      * @param {String} sGroup the group of related items
19308      * @param {object} config configuration attributes
19309      */
19310     initTarget: function(id, sGroup, config) {
19311
19312         // configuration attributes
19313         this.config = config || {};
19314
19315         // create a local reference to the drag and drop manager
19316         this.DDM = Roo.dd.DDM;
19317         // initialize the groups array
19318         this.groups = {};
19319
19320         // assume that we have an element reference instead of an id if the
19321         // parameter is not a string
19322         if (typeof id !== "string") {
19323             id = Roo.id(id);
19324         }
19325
19326         // set the id
19327         this.id = id;
19328
19329         // add to an interaction group
19330         this.addToGroup((sGroup) ? sGroup : "default");
19331
19332         // We don't want to register this as the handle with the manager
19333         // so we just set the id rather than calling the setter.
19334         this.handleElId = id;
19335
19336         // the linked element is the element that gets dragged by default
19337         this.setDragElId(id);
19338
19339         // by default, clicked anchors will not start drag operations.
19340         this.invalidHandleTypes = { A: "A" };
19341         this.invalidHandleIds = {};
19342         this.invalidHandleClasses = [];
19343
19344         this.applyConfig();
19345
19346         this.handleOnAvailable();
19347     },
19348
19349     /**
19350      * Applies the configuration parameters that were passed into the constructor.
19351      * This is supposed to happen at each level through the inheritance chain.  So
19352      * a DDProxy implentation will execute apply config on DDProxy, DD, and
19353      * DragDrop in order to get all of the parameters that are available in
19354      * each object.
19355      * @method applyConfig
19356      */
19357     applyConfig: function() {
19358
19359         // configurable properties:
19360         //    padding, isTarget, maintainOffset, primaryButtonOnly
19361         this.padding           = this.config.padding || [0, 0, 0, 0];
19362         this.isTarget          = (this.config.isTarget !== false);
19363         this.maintainOffset    = (this.config.maintainOffset);
19364         this.primaryButtonOnly = (this.config.primaryButtonOnly !== false);
19365
19366     },
19367
19368     /**
19369      * Executed when the linked element is available
19370      * @method handleOnAvailable
19371      * @private
19372      */
19373     handleOnAvailable: function() {
19374         this.available = true;
19375         this.resetConstraints();
19376         this.onAvailable();
19377     },
19378
19379      /**
19380      * Configures the padding for the target zone in px.  Effectively expands
19381      * (or reduces) the virtual object size for targeting calculations.
19382      * Supports css-style shorthand; if only one parameter is passed, all sides
19383      * will have that padding, and if only two are passed, the top and bottom
19384      * will have the first param, the left and right the second.
19385      * @method setPadding
19386      * @param {int} iTop    Top pad
19387      * @param {int} iRight  Right pad
19388      * @param {int} iBot    Bot pad
19389      * @param {int} iLeft   Left pad
19390      */
19391     setPadding: function(iTop, iRight, iBot, iLeft) {
19392         // this.padding = [iLeft, iRight, iTop, iBot];
19393         if (!iRight && 0 !== iRight) {
19394             this.padding = [iTop, iTop, iTop, iTop];
19395         } else if (!iBot && 0 !== iBot) {
19396             this.padding = [iTop, iRight, iTop, iRight];
19397         } else {
19398             this.padding = [iTop, iRight, iBot, iLeft];
19399         }
19400     },
19401
19402     /**
19403      * Stores the initial placement of the linked element.
19404      * @method setInitialPosition
19405      * @param {int} diffX   the X offset, default 0
19406      * @param {int} diffY   the Y offset, default 0
19407      */
19408     setInitPosition: function(diffX, diffY) {
19409         var el = this.getEl();
19410
19411         if (!this.DDM.verifyEl(el)) {
19412             return;
19413         }
19414
19415         var dx = diffX || 0;
19416         var dy = diffY || 0;
19417
19418         var p = Dom.getXY( el );
19419
19420         this.initPageX = p[0] - dx;
19421         this.initPageY = p[1] - dy;
19422
19423         this.lastPageX = p[0];
19424         this.lastPageY = p[1];
19425
19426
19427         this.setStartPosition(p);
19428     },
19429
19430     /**
19431      * Sets the start position of the element.  This is set when the obj
19432      * is initialized, the reset when a drag is started.
19433      * @method setStartPosition
19434      * @param pos current position (from previous lookup)
19435      * @private
19436      */
19437     setStartPosition: function(pos) {
19438         var p = pos || Dom.getXY( this.getEl() );
19439         this.deltaSetXY = null;
19440
19441         this.startPageX = p[0];
19442         this.startPageY = p[1];
19443     },
19444
19445     /**
19446      * Add this instance to a group of related drag/drop objects.  All
19447      * instances belong to at least one group, and can belong to as many
19448      * groups as needed.
19449      * @method addToGroup
19450      * @param sGroup {string} the name of the group
19451      */
19452     addToGroup: function(sGroup) {
19453         this.groups[sGroup] = true;
19454         this.DDM.regDragDrop(this, sGroup);
19455     },
19456
19457     /**
19458      * Remove's this instance from the supplied interaction group
19459      * @method removeFromGroup
19460      * @param {string}  sGroup  The group to drop
19461      */
19462     removeFromGroup: function(sGroup) {
19463         if (this.groups[sGroup]) {
19464             delete this.groups[sGroup];
19465         }
19466
19467         this.DDM.removeDDFromGroup(this, sGroup);
19468     },
19469
19470     /**
19471      * Allows you to specify that an element other than the linked element
19472      * will be moved with the cursor during a drag
19473      * @method setDragElId
19474      * @param id {string} the id of the element that will be used to initiate the drag
19475      */
19476     setDragElId: function(id) {
19477         this.dragElId = id;
19478     },
19479
19480     /**
19481      * Allows you to specify a child of the linked element that should be
19482      * used to initiate the drag operation.  An example of this would be if
19483      * you have a content div with text and links.  Clicking anywhere in the
19484      * content area would normally start the drag operation.  Use this method
19485      * to specify that an element inside of the content div is the element
19486      * that starts the drag operation.
19487      * @method setHandleElId
19488      * @param id {string} the id of the element that will be used to
19489      * initiate the drag.
19490      */
19491     setHandleElId: function(id) {
19492         if (typeof id !== "string") {
19493             id = Roo.id(id);
19494         }
19495         this.handleElId = id;
19496         this.DDM.regHandle(this.id, id);
19497     },
19498
19499     /**
19500      * Allows you to set an element outside of the linked element as a drag
19501      * handle
19502      * @method setOuterHandleElId
19503      * @param id the id of the element that will be used to initiate the drag
19504      */
19505     setOuterHandleElId: function(id) {
19506         if (typeof id !== "string") {
19507             id = Roo.id(id);
19508         }
19509         Event.on(id, "mousedown",
19510                 this.handleMouseDown, this);
19511         this.setHandleElId(id);
19512
19513         this.hasOuterHandles = true;
19514     },
19515
19516     /**
19517      * Remove all drag and drop hooks for this element
19518      * @method unreg
19519      */
19520     unreg: function() {
19521         Event.un(this.id, "mousedown",
19522                 this.handleMouseDown);
19523         Event.un(this.id, "touchstart",
19524                 this.handleMouseDown);
19525         this._domRef = null;
19526         this.DDM._remove(this);
19527     },
19528
19529     destroy : function(){
19530         this.unreg();
19531     },
19532
19533     /**
19534      * Returns true if this instance is locked, or the drag drop mgr is locked
19535      * (meaning that all drag/drop is disabled on the page.)
19536      * @method isLocked
19537      * @return {boolean} true if this obj or all drag/drop is locked, else
19538      * false
19539      */
19540     isLocked: function() {
19541         return (this.DDM.isLocked() || this.locked);
19542     },
19543
19544     /**
19545      * Fired when this object is clicked
19546      * @method handleMouseDown
19547      * @param {Event} e
19548      * @param {Roo.dd.DragDrop} oDD the clicked dd object (this dd obj)
19549      * @private
19550      */
19551     handleMouseDown: function(e, oDD){
19552      
19553         if (!Roo.isTouch && this.primaryButtonOnly && e.button != 0) {
19554             //Roo.log('not touch/ button !=0');
19555             return;
19556         }
19557         if (e.browserEvent.touches && e.browserEvent.touches.length != 1) {
19558             return; // double touch..
19559         }
19560         
19561
19562         if (this.isLocked()) {
19563             //Roo.log('locked');
19564             return;
19565         }
19566
19567         this.DDM.refreshCache(this.groups);
19568 //        Roo.log([Roo.lib.Event.getPageX(e), Roo.lib.Event.getPageY(e)]);
19569         var pt = new Roo.lib.Point(Roo.lib.Event.getPageX(e), Roo.lib.Event.getPageY(e));
19570         if (!this.hasOuterHandles && !this.DDM.isOverTarget(pt, this) )  {
19571             //Roo.log('no outer handes or not over target');
19572                 // do nothing.
19573         } else {
19574 //            Roo.log('check validator');
19575             if (this.clickValidator(e)) {
19576 //                Roo.log('validate success');
19577                 // set the initial element position
19578                 this.setStartPosition();
19579
19580
19581                 this.b4MouseDown(e);
19582                 this.onMouseDown(e);
19583
19584                 this.DDM.handleMouseDown(e, this);
19585
19586                 this.DDM.stopEvent(e);
19587             } else {
19588
19589
19590             }
19591         }
19592     },
19593
19594     clickValidator: function(e) {
19595         var target = e.getTarget();
19596         return ( this.isValidHandleChild(target) &&
19597                     (this.id == this.handleElId ||
19598                         this.DDM.handleWasClicked(target, this.id)) );
19599     },
19600
19601     /**
19602      * Allows you to specify a tag name that should not start a drag operation
19603      * when clicked.  This is designed to facilitate embedding links within a
19604      * drag handle that do something other than start the drag.
19605      * @method addInvalidHandleType
19606      * @param {string} tagName the type of element to exclude
19607      */
19608     addInvalidHandleType: function(tagName) {
19609         var type = tagName.toUpperCase();
19610         this.invalidHandleTypes[type] = type;
19611     },
19612
19613     /**
19614      * Lets you to specify an element id for a child of a drag handle
19615      * that should not initiate a drag
19616      * @method addInvalidHandleId
19617      * @param {string} id the element id of the element you wish to ignore
19618      */
19619     addInvalidHandleId: function(id) {
19620         if (typeof id !== "string") {
19621             id = Roo.id(id);
19622         }
19623         this.invalidHandleIds[id] = id;
19624     },
19625
19626     /**
19627      * Lets you specify a css class of elements that will not initiate a drag
19628      * @method addInvalidHandleClass
19629      * @param {string} cssClass the class of the elements you wish to ignore
19630      */
19631     addInvalidHandleClass: function(cssClass) {
19632         this.invalidHandleClasses.push(cssClass);
19633     },
19634
19635     /**
19636      * Unsets an excluded tag name set by addInvalidHandleType
19637      * @method removeInvalidHandleType
19638      * @param {string} tagName the type of element to unexclude
19639      */
19640     removeInvalidHandleType: function(tagName) {
19641         var type = tagName.toUpperCase();
19642         // this.invalidHandleTypes[type] = null;
19643         delete this.invalidHandleTypes[type];
19644     },
19645
19646     /**
19647      * Unsets an invalid handle id
19648      * @method removeInvalidHandleId
19649      * @param {string} id the id of the element to re-enable
19650      */
19651     removeInvalidHandleId: function(id) {
19652         if (typeof id !== "string") {
19653             id = Roo.id(id);
19654         }
19655         delete this.invalidHandleIds[id];
19656     },
19657
19658     /**
19659      * Unsets an invalid css class
19660      * @method removeInvalidHandleClass
19661      * @param {string} cssClass the class of the element(s) you wish to
19662      * re-enable
19663      */
19664     removeInvalidHandleClass: function(cssClass) {
19665         for (var i=0, len=this.invalidHandleClasses.length; i<len; ++i) {
19666             if (this.invalidHandleClasses[i] == cssClass) {
19667                 delete this.invalidHandleClasses[i];
19668             }
19669         }
19670     },
19671
19672     /**
19673      * Checks the tag exclusion list to see if this click should be ignored
19674      * @method isValidHandleChild
19675      * @param {HTMLElement} node the HTMLElement to evaluate
19676      * @return {boolean} true if this is a valid tag type, false if not
19677      */
19678     isValidHandleChild: function(node) {
19679
19680         var valid = true;
19681         // var n = (node.nodeName == "#text") ? node.parentNode : node;
19682         var nodeName;
19683         try {
19684             nodeName = node.nodeName.toUpperCase();
19685         } catch(e) {
19686             nodeName = node.nodeName;
19687         }
19688         valid = valid && !this.invalidHandleTypes[nodeName];
19689         valid = valid && !this.invalidHandleIds[node.id];
19690
19691         for (var i=0, len=this.invalidHandleClasses.length; valid && i<len; ++i) {
19692             valid = !Dom.hasClass(node, this.invalidHandleClasses[i]);
19693         }
19694
19695
19696         return valid;
19697
19698     },
19699
19700     /**
19701      * Create the array of horizontal tick marks if an interval was specified
19702      * in setXConstraint().
19703      * @method setXTicks
19704      * @private
19705      */
19706     setXTicks: function(iStartX, iTickSize) {
19707         this.xTicks = [];
19708         this.xTickSize = iTickSize;
19709
19710         var tickMap = {};
19711
19712         for (var i = this.initPageX; i >= this.minX; i = i - iTickSize) {
19713             if (!tickMap[i]) {
19714                 this.xTicks[this.xTicks.length] = i;
19715                 tickMap[i] = true;
19716             }
19717         }
19718
19719         for (i = this.initPageX; i <= this.maxX; i = i + iTickSize) {
19720             if (!tickMap[i]) {
19721                 this.xTicks[this.xTicks.length] = i;
19722                 tickMap[i] = true;
19723             }
19724         }
19725
19726         this.xTicks.sort(this.DDM.numericSort) ;
19727     },
19728
19729     /**
19730      * Create the array of vertical tick marks if an interval was specified in
19731      * setYConstraint().
19732      * @method setYTicks
19733      * @private
19734      */
19735     setYTicks: function(iStartY, iTickSize) {
19736         this.yTicks = [];
19737         this.yTickSize = iTickSize;
19738
19739         var tickMap = {};
19740
19741         for (var i = this.initPageY; i >= this.minY; i = i - iTickSize) {
19742             if (!tickMap[i]) {
19743                 this.yTicks[this.yTicks.length] = i;
19744                 tickMap[i] = true;
19745             }
19746         }
19747
19748         for (i = this.initPageY; i <= this.maxY; i = i + iTickSize) {
19749             if (!tickMap[i]) {
19750                 this.yTicks[this.yTicks.length] = i;
19751                 tickMap[i] = true;
19752             }
19753         }
19754
19755         this.yTicks.sort(this.DDM.numericSort) ;
19756     },
19757
19758     /**
19759      * By default, the element can be dragged any place on the screen.  Use
19760      * this method to limit the horizontal travel of the element.  Pass in
19761      * 0,0 for the parameters if you want to lock the drag to the y axis.
19762      * @method setXConstraint
19763      * @param {int} iLeft the number of pixels the element can move to the left
19764      * @param {int} iRight the number of pixels the element can move to the
19765      * right
19766      * @param {int} iTickSize optional parameter for specifying that the
19767      * element
19768      * should move iTickSize pixels at a time.
19769      */
19770     setXConstraint: function(iLeft, iRight, iTickSize) {
19771         this.leftConstraint = iLeft;
19772         this.rightConstraint = iRight;
19773
19774         this.minX = this.initPageX - iLeft;
19775         this.maxX = this.initPageX + iRight;
19776         if (iTickSize) { this.setXTicks(this.initPageX, iTickSize); }
19777
19778         this.constrainX = true;
19779     },
19780
19781     /**
19782      * Clears any constraints applied to this instance.  Also clears ticks
19783      * since they can't exist independent of a constraint at this time.
19784      * @method clearConstraints
19785      */
19786     clearConstraints: function() {
19787         this.constrainX = false;
19788         this.constrainY = false;
19789         this.clearTicks();
19790     },
19791
19792     /**
19793      * Clears any tick interval defined for this instance
19794      * @method clearTicks
19795      */
19796     clearTicks: function() {
19797         this.xTicks = null;
19798         this.yTicks = null;
19799         this.xTickSize = 0;
19800         this.yTickSize = 0;
19801     },
19802
19803     /**
19804      * By default, the element can be dragged any place on the screen.  Set
19805      * this to limit the vertical travel of the element.  Pass in 0,0 for the
19806      * parameters if you want to lock the drag to the x axis.
19807      * @method setYConstraint
19808      * @param {int} iUp the number of pixels the element can move up
19809      * @param {int} iDown the number of pixels the element can move down
19810      * @param {int} iTickSize optional parameter for specifying that the
19811      * element should move iTickSize pixels at a time.
19812      */
19813     setYConstraint: function(iUp, iDown, iTickSize) {
19814         this.topConstraint = iUp;
19815         this.bottomConstraint = iDown;
19816
19817         this.minY = this.initPageY - iUp;
19818         this.maxY = this.initPageY + iDown;
19819         if (iTickSize) { this.setYTicks(this.initPageY, iTickSize); }
19820
19821         this.constrainY = true;
19822
19823     },
19824
19825     /**
19826      * resetConstraints must be called if you manually reposition a dd element.
19827      * @method resetConstraints
19828      * @param {boolean} maintainOffset
19829      */
19830     resetConstraints: function() {
19831
19832
19833         // Maintain offsets if necessary
19834         if (this.initPageX || this.initPageX === 0) {
19835             // figure out how much this thing has moved
19836             var dx = (this.maintainOffset) ? this.lastPageX - this.initPageX : 0;
19837             var dy = (this.maintainOffset) ? this.lastPageY - this.initPageY : 0;
19838
19839             this.setInitPosition(dx, dy);
19840
19841         // This is the first time we have detected the element's position
19842         } else {
19843             this.setInitPosition();
19844         }
19845
19846         if (this.constrainX) {
19847             this.setXConstraint( this.leftConstraint,
19848                                  this.rightConstraint,
19849                                  this.xTickSize        );
19850         }
19851
19852         if (this.constrainY) {
19853             this.setYConstraint( this.topConstraint,
19854                                  this.bottomConstraint,
19855                                  this.yTickSize         );
19856         }
19857     },
19858
19859     /**
19860      * Normally the drag element is moved pixel by pixel, but we can specify
19861      * that it move a number of pixels at a time.  This method resolves the
19862      * location when we have it set up like this.
19863      * @method getTick
19864      * @param {int} val where we want to place the object
19865      * @param {int[]} tickArray sorted array of valid points
19866      * @return {int} the closest tick
19867      * @private
19868      */
19869     getTick: function(val, tickArray) {
19870
19871         if (!tickArray) {
19872             // If tick interval is not defined, it is effectively 1 pixel,
19873             // so we return the value passed to us.
19874             return val;
19875         } else if (tickArray[0] >= val) {
19876             // The value is lower than the first tick, so we return the first
19877             // tick.
19878             return tickArray[0];
19879         } else {
19880             for (var i=0, len=tickArray.length; i<len; ++i) {
19881                 var next = i + 1;
19882                 if (tickArray[next] && tickArray[next] >= val) {
19883                     var diff1 = val - tickArray[i];
19884                     var diff2 = tickArray[next] - val;
19885                     return (diff2 > diff1) ? tickArray[i] : tickArray[next];
19886                 }
19887             }
19888
19889             // The value is larger than the last tick, so we return the last
19890             // tick.
19891             return tickArray[tickArray.length - 1];
19892         }
19893     },
19894
19895     /**
19896      * toString method
19897      * @method toString
19898      * @return {string} string representation of the dd obj
19899      */
19900     toString: function() {
19901         return ("DragDrop " + this.id);
19902     }
19903
19904 });
19905
19906 })();
19907 /*
19908  * Based on:
19909  * Ext JS Library 1.1.1
19910  * Copyright(c) 2006-2007, Ext JS, LLC.
19911  *
19912  * Originally Released Under LGPL - original licence link has changed is not relivant.
19913  *
19914  * Fork - LGPL
19915  * <script type="text/javascript">
19916  */
19917
19918
19919 /**
19920  * The drag and drop utility provides a framework for building drag and drop
19921  * applications.  In addition to enabling drag and drop for specific elements,
19922  * the drag and drop elements are tracked by the manager class, and the
19923  * interactions between the various elements are tracked during the drag and
19924  * the implementing code is notified about these important moments.
19925  */
19926
19927 // Only load the library once.  Rewriting the manager class would orphan
19928 // existing drag and drop instances.
19929 if (!Roo.dd.DragDropMgr) {
19930
19931 /**
19932  * @class Roo.dd.DragDropMgr
19933  * DragDropMgr is a singleton that tracks the element interaction for
19934  * all DragDrop items in the window.  Generally, you will not call
19935  * this class directly, but it does have helper methods that could
19936  * be useful in your DragDrop implementations.
19937  * @singleton
19938  */
19939 Roo.dd.DragDropMgr = function() {
19940
19941     var Event = Roo.EventManager;
19942
19943     return {
19944
19945         /**
19946          * Two dimensional Array of registered DragDrop objects.  The first
19947          * dimension is the DragDrop item group, the second the DragDrop
19948          * object.
19949          * @property ids
19950          * @type {string: string}
19951          * @private
19952          * @static
19953          */
19954         ids: {},
19955
19956         /**
19957          * Array of element ids defined as drag handles.  Used to determine
19958          * if the element that generated the mousedown event is actually the
19959          * handle and not the html element itself.
19960          * @property handleIds
19961          * @type {string: string}
19962          * @private
19963          * @static
19964          */
19965         handleIds: {},
19966
19967         /**
19968          * the DragDrop object that is currently being dragged
19969          * @property dragCurrent
19970          * @type DragDrop
19971          * @private
19972          * @static
19973          **/
19974         dragCurrent: null,
19975
19976         /**
19977          * the DragDrop object(s) that are being hovered over
19978          * @property dragOvers
19979          * @type Array
19980          * @private
19981          * @static
19982          */
19983         dragOvers: {},
19984
19985         /**
19986          * the X distance between the cursor and the object being dragged
19987          * @property deltaX
19988          * @type int
19989          * @private
19990          * @static
19991          */
19992         deltaX: 0,
19993
19994         /**
19995          * the Y distance between the cursor and the object being dragged
19996          * @property deltaY
19997          * @type int
19998          * @private
19999          * @static
20000          */
20001         deltaY: 0,
20002
20003         /**
20004          * Flag to determine if we should prevent the default behavior of the
20005          * events we define. By default this is true, but this can be set to
20006          * false if you need the default behavior (not recommended)
20007          * @property preventDefault
20008          * @type boolean
20009          * @static
20010          */
20011         preventDefault: true,
20012
20013         /**
20014          * Flag to determine if we should stop the propagation of the events
20015          * we generate. This is true by default but you may want to set it to
20016          * false if the html element contains other features that require the
20017          * mouse click.
20018          * @property stopPropagation
20019          * @type boolean
20020          * @static
20021          */
20022         stopPropagation: true,
20023
20024         /**
20025          * Internal flag that is set to true when drag and drop has been
20026          * intialized
20027          * @property initialized
20028          * @private
20029          * @static
20030          */
20031         initalized: false,
20032
20033         /**
20034          * All drag and drop can be disabled.
20035          * @property locked
20036          * @private
20037          * @static
20038          */
20039         locked: false,
20040
20041         /**
20042          * Called the first time an element is registered.
20043          * @method init
20044          * @private
20045          * @static
20046          */
20047         init: function() {
20048             this.initialized = true;
20049         },
20050
20051         /**
20052          * In point mode, drag and drop interaction is defined by the
20053          * location of the cursor during the drag/drop
20054          * @property POINT
20055          * @type int
20056          * @static
20057          */
20058         POINT: 0,
20059
20060         /**
20061          * In intersect mode, drag and drop interactio nis defined by the
20062          * overlap of two or more drag and drop objects.
20063          * @property INTERSECT
20064          * @type int
20065          * @static
20066          */
20067         INTERSECT: 1,
20068
20069         /**
20070          * The current drag and drop mode.  Default: POINT
20071          * @property mode
20072          * @type int
20073          * @static
20074          */
20075         mode: 0,
20076
20077         /**
20078          * Runs method on all drag and drop objects
20079          * @method _execOnAll
20080          * @private
20081          * @static
20082          */
20083         _execOnAll: function(sMethod, args) {
20084             for (var i in this.ids) {
20085                 for (var j in this.ids[i]) {
20086                     var oDD = this.ids[i][j];
20087                     if (! this.isTypeOfDD(oDD)) {
20088                         continue;
20089                     }
20090                     oDD[sMethod].apply(oDD, args);
20091                 }
20092             }
20093         },
20094
20095         /**
20096          * Drag and drop initialization.  Sets up the global event handlers
20097          * @method _onLoad
20098          * @private
20099          * @static
20100          */
20101         _onLoad: function() {
20102
20103             this.init();
20104
20105             if (!Roo.isTouch) {
20106                 Event.on(document, "mouseup",   this.handleMouseUp, this, true);
20107                 Event.on(document, "mousemove", this.handleMouseMove, this, true);
20108             }
20109             Event.on(document, "touchend",   this.handleMouseUp, this, true);
20110             Event.on(document, "touchmove", this.handleMouseMove, this, true);
20111             
20112             Event.on(window,   "unload",    this._onUnload, this, true);
20113             Event.on(window,   "resize",    this._onResize, this, true);
20114             // Event.on(window,   "mouseout",    this._test);
20115
20116         },
20117
20118         /**
20119          * Reset constraints on all drag and drop objs
20120          * @method _onResize
20121          * @private
20122          * @static
20123          */
20124         _onResize: function(e) {
20125             this._execOnAll("resetConstraints", []);
20126         },
20127
20128         /**
20129          * Lock all drag and drop functionality
20130          * @method lock
20131          * @static
20132          */
20133         lock: function() { this.locked = true; },
20134
20135         /**
20136          * Unlock all drag and drop functionality
20137          * @method unlock
20138          * @static
20139          */
20140         unlock: function() { this.locked = false; },
20141
20142         /**
20143          * Is drag and drop locked?
20144          * @method isLocked
20145          * @return {boolean} True if drag and drop is locked, false otherwise.
20146          * @static
20147          */
20148         isLocked: function() { return this.locked; },
20149
20150         /**
20151          * Location cache that is set for all drag drop objects when a drag is
20152          * initiated, cleared when the drag is finished.
20153          * @property locationCache
20154          * @private
20155          * @static
20156          */
20157         locationCache: {},
20158
20159         /**
20160          * Set useCache to false if you want to force object the lookup of each
20161          * drag and drop linked element constantly during a drag.
20162          * @property useCache
20163          * @type boolean
20164          * @static
20165          */
20166         useCache: true,
20167
20168         /**
20169          * The number of pixels that the mouse needs to move after the
20170          * mousedown before the drag is initiated.  Default=3;
20171          * @property clickPixelThresh
20172          * @type int
20173          * @static
20174          */
20175         clickPixelThresh: 3,
20176
20177         /**
20178          * The number of milliseconds after the mousedown event to initiate the
20179          * drag if we don't get a mouseup event. Default=1000
20180          * @property clickTimeThresh
20181          * @type int
20182          * @static
20183          */
20184         clickTimeThresh: 350,
20185
20186         /**
20187          * Flag that indicates that either the drag pixel threshold or the
20188          * mousdown time threshold has been met
20189          * @property dragThreshMet
20190          * @type boolean
20191          * @private
20192          * @static
20193          */
20194         dragThreshMet: false,
20195
20196         /**
20197          * Timeout used for the click time threshold
20198          * @property clickTimeout
20199          * @type Object
20200          * @private
20201          * @static
20202          */
20203         clickTimeout: null,
20204
20205         /**
20206          * The X position of the mousedown event stored for later use when a
20207          * drag threshold is met.
20208          * @property startX
20209          * @type int
20210          * @private
20211          * @static
20212          */
20213         startX: 0,
20214
20215         /**
20216          * The Y position of the mousedown event stored for later use when a
20217          * drag threshold is met.
20218          * @property startY
20219          * @type int
20220          * @private
20221          * @static
20222          */
20223         startY: 0,
20224
20225         /**
20226          * Each DragDrop instance must be registered with the DragDropMgr.
20227          * This is executed in DragDrop.init()
20228          * @method regDragDrop
20229          * @param {DragDrop} oDD the DragDrop object to register
20230          * @param {String} sGroup the name of the group this element belongs to
20231          * @static
20232          */
20233         regDragDrop: function(oDD, sGroup) {
20234             if (!this.initialized) { this.init(); }
20235
20236             if (!this.ids[sGroup]) {
20237                 this.ids[sGroup] = {};
20238             }
20239             this.ids[sGroup][oDD.id] = oDD;
20240         },
20241
20242         /**
20243          * Removes the supplied dd instance from the supplied group. Executed
20244          * by DragDrop.removeFromGroup, so don't call this function directly.
20245          * @method removeDDFromGroup
20246          * @private
20247          * @static
20248          */
20249         removeDDFromGroup: function(oDD, sGroup) {
20250             if (!this.ids[sGroup]) {
20251                 this.ids[sGroup] = {};
20252             }
20253
20254             var obj = this.ids[sGroup];
20255             if (obj && obj[oDD.id]) {
20256                 delete obj[oDD.id];
20257             }
20258         },
20259
20260         /**
20261          * Unregisters a drag and drop item.  This is executed in
20262          * DragDrop.unreg, use that method instead of calling this directly.
20263          * @method _remove
20264          * @private
20265          * @static
20266          */
20267         _remove: function(oDD) {
20268             for (var g in oDD.groups) {
20269                 if (g && this.ids[g][oDD.id]) {
20270                     delete this.ids[g][oDD.id];
20271                 }
20272             }
20273             delete this.handleIds[oDD.id];
20274         },
20275
20276         /**
20277          * Each DragDrop handle element must be registered.  This is done
20278          * automatically when executing DragDrop.setHandleElId()
20279          * @method regHandle
20280          * @param {String} sDDId the DragDrop id this element is a handle for
20281          * @param {String} sHandleId the id of the element that is the drag
20282          * handle
20283          * @static
20284          */
20285         regHandle: function(sDDId, sHandleId) {
20286             if (!this.handleIds[sDDId]) {
20287                 this.handleIds[sDDId] = {};
20288             }
20289             this.handleIds[sDDId][sHandleId] = sHandleId;
20290         },
20291
20292         /**
20293          * Utility function to determine if a given element has been
20294          * registered as a drag drop item.
20295          * @method isDragDrop
20296          * @param {String} id the element id to check
20297          * @return {boolean} true if this element is a DragDrop item,
20298          * false otherwise
20299          * @static
20300          */
20301         isDragDrop: function(id) {
20302             return ( this.getDDById(id) ) ? true : false;
20303         },
20304
20305         /**
20306          * Returns the drag and drop instances that are in all groups the
20307          * passed in instance belongs to.
20308          * @method getRelated
20309          * @param {DragDrop} p_oDD the obj to get related data for
20310          * @param {boolean} bTargetsOnly if true, only return targetable objs
20311          * @return {DragDrop[]} the related instances
20312          * @static
20313          */
20314         getRelated: function(p_oDD, bTargetsOnly) {
20315             var oDDs = [];
20316             for (var i in p_oDD.groups) {
20317                 for (j in this.ids[i]) {
20318                     var dd = this.ids[i][j];
20319                     if (! this.isTypeOfDD(dd)) {
20320                         continue;
20321                     }
20322                     if (!bTargetsOnly || dd.isTarget) {
20323                         oDDs[oDDs.length] = dd;
20324                     }
20325                 }
20326             }
20327
20328             return oDDs;
20329         },
20330
20331         /**
20332          * Returns true if the specified dd target is a legal target for
20333          * the specifice drag obj
20334          * @method isLegalTarget
20335          * @param {DragDrop} the drag obj
20336          * @param {DragDrop} the target
20337          * @return {boolean} true if the target is a legal target for the
20338          * dd obj
20339          * @static
20340          */
20341         isLegalTarget: function (oDD, oTargetDD) {
20342             var targets = this.getRelated(oDD, true);
20343             for (var i=0, len=targets.length;i<len;++i) {
20344                 if (targets[i].id == oTargetDD.id) {
20345                     return true;
20346                 }
20347             }
20348
20349             return false;
20350         },
20351
20352         /**
20353          * My goal is to be able to transparently determine if an object is
20354          * typeof DragDrop, and the exact subclass of DragDrop.  typeof
20355          * returns "object", oDD.constructor.toString() always returns
20356          * "DragDrop" and not the name of the subclass.  So for now it just
20357          * evaluates a well-known variable in DragDrop.
20358          * @method isTypeOfDD
20359          * @param {Object} the object to evaluate
20360          * @return {boolean} true if typeof oDD = DragDrop
20361          * @static
20362          */
20363         isTypeOfDD: function (oDD) {
20364             return (oDD && oDD.__ygDragDrop);
20365         },
20366
20367         /**
20368          * Utility function to determine if a given element has been
20369          * registered as a drag drop handle for the given Drag Drop object.
20370          * @method isHandle
20371          * @param {String} id the element id to check
20372          * @return {boolean} true if this element is a DragDrop handle, false
20373          * otherwise
20374          * @static
20375          */
20376         isHandle: function(sDDId, sHandleId) {
20377             return ( this.handleIds[sDDId] &&
20378                             this.handleIds[sDDId][sHandleId] );
20379         },
20380
20381         /**
20382          * Returns the DragDrop instance for a given id
20383          * @method getDDById
20384          * @param {String} id the id of the DragDrop object
20385          * @return {DragDrop} the drag drop object, null if it is not found
20386          * @static
20387          */
20388         getDDById: function(id) {
20389             for (var i in this.ids) {
20390                 if (this.ids[i][id]) {
20391                     return this.ids[i][id];
20392                 }
20393             }
20394             return null;
20395         },
20396
20397         /**
20398          * Fired after a registered DragDrop object gets the mousedown event.
20399          * Sets up the events required to track the object being dragged
20400          * @method handleMouseDown
20401          * @param {Event} e the event
20402          * @param oDD the DragDrop object being dragged
20403          * @private
20404          * @static
20405          */
20406         handleMouseDown: function(e, oDD) {
20407             if(Roo.QuickTips){
20408                 Roo.QuickTips.disable();
20409             }
20410             this.currentTarget = e.getTarget();
20411
20412             this.dragCurrent = oDD;
20413
20414             var el = oDD.getEl();
20415
20416             // track start position
20417             this.startX = e.getPageX();
20418             this.startY = e.getPageY();
20419
20420             this.deltaX = this.startX - el.offsetLeft;
20421             this.deltaY = this.startY - el.offsetTop;
20422
20423             this.dragThreshMet = false;
20424
20425             this.clickTimeout = setTimeout(
20426                     function() {
20427                         var DDM = Roo.dd.DDM;
20428                         DDM.startDrag(DDM.startX, DDM.startY);
20429                     },
20430                     this.clickTimeThresh );
20431         },
20432
20433         /**
20434          * Fired when either the drag pixel threshol or the mousedown hold
20435          * time threshold has been met.
20436          * @method startDrag
20437          * @param x {int} the X position of the original mousedown
20438          * @param y {int} the Y position of the original mousedown
20439          * @static
20440          */
20441         startDrag: function(x, y) {
20442             clearTimeout(this.clickTimeout);
20443             if (this.dragCurrent) {
20444                 this.dragCurrent.b4StartDrag(x, y);
20445                 this.dragCurrent.startDrag(x, y);
20446             }
20447             this.dragThreshMet = true;
20448         },
20449
20450         /**
20451          * Internal function to handle the mouseup event.  Will be invoked
20452          * from the context of the document.
20453          * @method handleMouseUp
20454          * @param {Event} e the event
20455          * @private
20456          * @static
20457          */
20458         handleMouseUp: function(e) {
20459
20460             if(Roo.QuickTips){
20461                 Roo.QuickTips.enable();
20462             }
20463             if (! this.dragCurrent) {
20464                 return;
20465             }
20466
20467             clearTimeout(this.clickTimeout);
20468
20469             if (this.dragThreshMet) {
20470                 this.fireEvents(e, true);
20471             } else {
20472             }
20473
20474             this.stopDrag(e);
20475
20476             this.stopEvent(e);
20477         },
20478
20479         /**
20480          * Utility to stop event propagation and event default, if these
20481          * features are turned on.
20482          * @method stopEvent
20483          * @param {Event} e the event as returned by this.getEvent()
20484          * @static
20485          */
20486         stopEvent: function(e){
20487             if(this.stopPropagation) {
20488                 e.stopPropagation();
20489             }
20490
20491             if (this.preventDefault) {
20492                 e.preventDefault();
20493             }
20494         },
20495
20496         /**
20497          * Internal function to clean up event handlers after the drag
20498          * operation is complete
20499          * @method stopDrag
20500          * @param {Event} e the event
20501          * @private
20502          * @static
20503          */
20504         stopDrag: function(e) {
20505             // Fire the drag end event for the item that was dragged
20506             if (this.dragCurrent) {
20507                 if (this.dragThreshMet) {
20508                     this.dragCurrent.b4EndDrag(e);
20509                     this.dragCurrent.endDrag(e);
20510                 }
20511
20512                 this.dragCurrent.onMouseUp(e);
20513             }
20514
20515             this.dragCurrent = null;
20516             this.dragOvers = {};
20517         },
20518
20519         /**
20520          * Internal function to handle the mousemove event.  Will be invoked
20521          * from the context of the html element.
20522          *
20523          * @TODO figure out what we can do about mouse events lost when the
20524          * user drags objects beyond the window boundary.  Currently we can
20525          * detect this in internet explorer by verifying that the mouse is
20526          * down during the mousemove event.  Firefox doesn't give us the
20527          * button state on the mousemove event.
20528          * @method handleMouseMove
20529          * @param {Event} e the event
20530          * @private
20531          * @static
20532          */
20533         handleMouseMove: function(e) {
20534             if (! this.dragCurrent) {
20535                 return true;
20536             }
20537
20538             // var button = e.which || e.button;
20539
20540             // check for IE mouseup outside of page boundary
20541             if (Roo.isIE && (e.button !== 0 && e.button !== 1 && e.button !== 2)) {
20542                 this.stopEvent(e);
20543                 return this.handleMouseUp(e);
20544             }
20545
20546             if (!this.dragThreshMet) {
20547                 var diffX = Math.abs(this.startX - e.getPageX());
20548                 var diffY = Math.abs(this.startY - e.getPageY());
20549                 if (diffX > this.clickPixelThresh ||
20550                             diffY > this.clickPixelThresh) {
20551                     this.startDrag(this.startX, this.startY);
20552                 }
20553             }
20554
20555             if (this.dragThreshMet) {
20556                 this.dragCurrent.b4Drag(e);
20557                 this.dragCurrent.onDrag(e);
20558                 if(!this.dragCurrent.moveOnly){
20559                     this.fireEvents(e, false);
20560                 }
20561             }
20562
20563             this.stopEvent(e);
20564
20565             return true;
20566         },
20567
20568         /**
20569          * Iterates over all of the DragDrop elements to find ones we are
20570          * hovering over or dropping on
20571          * @method fireEvents
20572          * @param {Event} e the event
20573          * @param {boolean} isDrop is this a drop op or a mouseover op?
20574          * @private
20575          * @static
20576          */
20577         fireEvents: function(e, isDrop) {
20578             var dc = this.dragCurrent;
20579
20580             // If the user did the mouse up outside of the window, we could
20581             // get here even though we have ended the drag.
20582             if (!dc || dc.isLocked()) {
20583                 return;
20584             }
20585
20586             var pt = e.getPoint();
20587
20588             // cache the previous dragOver array
20589             var oldOvers = [];
20590
20591             var outEvts   = [];
20592             var overEvts  = [];
20593             var dropEvts  = [];
20594             var enterEvts = [];
20595
20596             // Check to see if the object(s) we were hovering over is no longer
20597             // being hovered over so we can fire the onDragOut event
20598             for (var i in this.dragOvers) {
20599
20600                 var ddo = this.dragOvers[i];
20601
20602                 if (! this.isTypeOfDD(ddo)) {
20603                     continue;
20604                 }
20605
20606                 if (! this.isOverTarget(pt, ddo, this.mode)) {
20607                     outEvts.push( ddo );
20608                 }
20609
20610                 oldOvers[i] = true;
20611                 delete this.dragOvers[i];
20612             }
20613
20614             for (var sGroup in dc.groups) {
20615
20616                 if ("string" != typeof sGroup) {
20617                     continue;
20618                 }
20619
20620                 for (i in this.ids[sGroup]) {
20621                     var oDD = this.ids[sGroup][i];
20622                     if (! this.isTypeOfDD(oDD)) {
20623                         continue;
20624                     }
20625
20626                     if (oDD.isTarget && !oDD.isLocked() && oDD != dc) {
20627                         if (this.isOverTarget(pt, oDD, this.mode)) {
20628                             // look for drop interactions
20629                             if (isDrop) {
20630                                 dropEvts.push( oDD );
20631                             // look for drag enter and drag over interactions
20632                             } else {
20633
20634                                 // initial drag over: dragEnter fires
20635                                 if (!oldOvers[oDD.id]) {
20636                                     enterEvts.push( oDD );
20637                                 // subsequent drag overs: dragOver fires
20638                                 } else {
20639                                     overEvts.push( oDD );
20640                                 }
20641
20642                                 this.dragOvers[oDD.id] = oDD;
20643                             }
20644                         }
20645                     }
20646                 }
20647             }
20648
20649             if (this.mode) {
20650                 if (outEvts.length) {
20651                     dc.b4DragOut(e, outEvts);
20652                     dc.onDragOut(e, outEvts);
20653                 }
20654
20655                 if (enterEvts.length) {
20656                     dc.onDragEnter(e, enterEvts);
20657                 }
20658
20659                 if (overEvts.length) {
20660                     dc.b4DragOver(e, overEvts);
20661                     dc.onDragOver(e, overEvts);
20662                 }
20663
20664                 if (dropEvts.length) {
20665                     dc.b4DragDrop(e, dropEvts);
20666                     dc.onDragDrop(e, dropEvts);
20667                 }
20668
20669             } else {
20670                 // fire dragout events
20671                 var len = 0;
20672                 for (i=0, len=outEvts.length; i<len; ++i) {
20673                     dc.b4DragOut(e, outEvts[i].id);
20674                     dc.onDragOut(e, outEvts[i].id);
20675                 }
20676
20677                 // fire enter events
20678                 for (i=0,len=enterEvts.length; i<len; ++i) {
20679                     // dc.b4DragEnter(e, oDD.id);
20680                     dc.onDragEnter(e, enterEvts[i].id);
20681                 }
20682
20683                 // fire over events
20684                 for (i=0,len=overEvts.length; i<len; ++i) {
20685                     dc.b4DragOver(e, overEvts[i].id);
20686                     dc.onDragOver(e, overEvts[i].id);
20687                 }
20688
20689                 // fire drop events
20690                 for (i=0, len=dropEvts.length; i<len; ++i) {
20691                     dc.b4DragDrop(e, dropEvts[i].id);
20692                     dc.onDragDrop(e, dropEvts[i].id);
20693                 }
20694
20695             }
20696
20697             // notify about a drop that did not find a target
20698             if (isDrop && !dropEvts.length) {
20699                 dc.onInvalidDrop(e);
20700             }
20701
20702         },
20703
20704         /**
20705          * Helper function for getting the best match from the list of drag
20706          * and drop objects returned by the drag and drop events when we are
20707          * in INTERSECT mode.  It returns either the first object that the
20708          * cursor is over, or the object that has the greatest overlap with
20709          * the dragged element.
20710          * @method getBestMatch
20711          * @param  {DragDrop[]} dds The array of drag and drop objects
20712          * targeted
20713          * @return {DragDrop}       The best single match
20714          * @static
20715          */
20716         getBestMatch: function(dds) {
20717             var winner = null;
20718             // Return null if the input is not what we expect
20719             //if (!dds || !dds.length || dds.length == 0) {
20720                // winner = null;
20721             // If there is only one item, it wins
20722             //} else if (dds.length == 1) {
20723
20724             var len = dds.length;
20725
20726             if (len == 1) {
20727                 winner = dds[0];
20728             } else {
20729                 // Loop through the targeted items
20730                 for (var i=0; i<len; ++i) {
20731                     var dd = dds[i];
20732                     // If the cursor is over the object, it wins.  If the
20733                     // cursor is over multiple matches, the first one we come
20734                     // to wins.
20735                     if (dd.cursorIsOver) {
20736                         winner = dd;
20737                         break;
20738                     // Otherwise the object with the most overlap wins
20739                     } else {
20740                         if (!winner ||
20741                             winner.overlap.getArea() < dd.overlap.getArea()) {
20742                             winner = dd;
20743                         }
20744                     }
20745                 }
20746             }
20747
20748             return winner;
20749         },
20750
20751         /**
20752          * Refreshes the cache of the top-left and bottom-right points of the
20753          * drag and drop objects in the specified group(s).  This is in the
20754          * format that is stored in the drag and drop instance, so typical
20755          * usage is:
20756          * <code>
20757          * Roo.dd.DragDropMgr.refreshCache(ddinstance.groups);
20758          * </code>
20759          * Alternatively:
20760          * <code>
20761          * Roo.dd.DragDropMgr.refreshCache({group1:true, group2:true});
20762          * </code>
20763          * @TODO this really should be an indexed array.  Alternatively this
20764          * method could accept both.
20765          * @method refreshCache
20766          * @param {Object} groups an associative array of groups to refresh
20767          * @static
20768          */
20769         refreshCache: function(groups) {
20770             for (var sGroup in groups) {
20771                 if ("string" != typeof sGroup) {
20772                     continue;
20773                 }
20774                 for (var i in this.ids[sGroup]) {
20775                     var oDD = this.ids[sGroup][i];
20776
20777                     if (this.isTypeOfDD(oDD)) {
20778                     // if (this.isTypeOfDD(oDD) && oDD.isTarget) {
20779                         var loc = this.getLocation(oDD);
20780                         if (loc) {
20781                             this.locationCache[oDD.id] = loc;
20782                         } else {
20783                             delete this.locationCache[oDD.id];
20784                             // this will unregister the drag and drop object if
20785                             // the element is not in a usable state
20786                             // oDD.unreg();
20787                         }
20788                     }
20789                 }
20790             }
20791         },
20792
20793         /**
20794          * This checks to make sure an element exists and is in the DOM.  The
20795          * main purpose is to handle cases where innerHTML is used to remove
20796          * drag and drop objects from the DOM.  IE provides an 'unspecified
20797          * error' when trying to access the offsetParent of such an element
20798          * @method verifyEl
20799          * @param {HTMLElement} el the element to check
20800          * @return {boolean} true if the element looks usable
20801          * @static
20802          */
20803         verifyEl: function(el) {
20804             if (el) {
20805                 var parent;
20806                 if(Roo.isIE){
20807                     try{
20808                         parent = el.offsetParent;
20809                     }catch(e){}
20810                 }else{
20811                     parent = el.offsetParent;
20812                 }
20813                 if (parent) {
20814                     return true;
20815                 }
20816             }
20817
20818             return false;
20819         },
20820
20821         /**
20822          * Returns a Region object containing the drag and drop element's position
20823          * and size, including the padding configured for it
20824          * @method getLocation
20825          * @param {DragDrop} oDD the drag and drop object to get the
20826          *                       location for
20827          * @return {Roo.lib.Region} a Region object representing the total area
20828          *                             the element occupies, including any padding
20829          *                             the instance is configured for.
20830          * @static
20831          */
20832         getLocation: function(oDD) {
20833             if (! this.isTypeOfDD(oDD)) {
20834                 return null;
20835             }
20836
20837             var el = oDD.getEl(), pos, x1, x2, y1, y2, t, r, b, l;
20838
20839             try {
20840                 pos= Roo.lib.Dom.getXY(el);
20841             } catch (e) { }
20842
20843             if (!pos) {
20844                 return null;
20845             }
20846
20847             x1 = pos[0];
20848             x2 = x1 + el.offsetWidth;
20849             y1 = pos[1];
20850             y2 = y1 + el.offsetHeight;
20851
20852             t = y1 - oDD.padding[0];
20853             r = x2 + oDD.padding[1];
20854             b = y2 + oDD.padding[2];
20855             l = x1 - oDD.padding[3];
20856
20857             return new Roo.lib.Region( t, r, b, l );
20858         },
20859
20860         /**
20861          * Checks the cursor location to see if it over the target
20862          * @method isOverTarget
20863          * @param {Roo.lib.Point} pt The point to evaluate
20864          * @param {DragDrop} oTarget the DragDrop object we are inspecting
20865          * @return {boolean} true if the mouse is over the target
20866          * @private
20867          * @static
20868          */
20869         isOverTarget: function(pt, oTarget, intersect) {
20870             // use cache if available
20871             var loc = this.locationCache[oTarget.id];
20872             if (!loc || !this.useCache) {
20873                 loc = this.getLocation(oTarget);
20874                 this.locationCache[oTarget.id] = loc;
20875
20876             }
20877
20878             if (!loc) {
20879                 return false;
20880             }
20881
20882             oTarget.cursorIsOver = loc.contains( pt );
20883
20884             // DragDrop is using this as a sanity check for the initial mousedown
20885             // in this case we are done.  In POINT mode, if the drag obj has no
20886             // contraints, we are also done. Otherwise we need to evaluate the
20887             // location of the target as related to the actual location of the
20888             // dragged element.
20889             var dc = this.dragCurrent;
20890             if (!dc || !dc.getTargetCoord ||
20891                     (!intersect && !dc.constrainX && !dc.constrainY)) {
20892                 return oTarget.cursorIsOver;
20893             }
20894
20895             oTarget.overlap = null;
20896
20897             // Get the current location of the drag element, this is the
20898             // location of the mouse event less the delta that represents
20899             // where the original mousedown happened on the element.  We
20900             // need to consider constraints and ticks as well.
20901             var pos = dc.getTargetCoord(pt.x, pt.y);
20902
20903             var el = dc.getDragEl();
20904             var curRegion = new Roo.lib.Region( pos.y,
20905                                                    pos.x + el.offsetWidth,
20906                                                    pos.y + el.offsetHeight,
20907                                                    pos.x );
20908
20909             var overlap = curRegion.intersect(loc);
20910
20911             if (overlap) {
20912                 oTarget.overlap = overlap;
20913                 return (intersect) ? true : oTarget.cursorIsOver;
20914             } else {
20915                 return false;
20916             }
20917         },
20918
20919         /**
20920          * unload event handler
20921          * @method _onUnload
20922          * @private
20923          * @static
20924          */
20925         _onUnload: function(e, me) {
20926             Roo.dd.DragDropMgr.unregAll();
20927         },
20928
20929         /**
20930          * Cleans up the drag and drop events and objects.
20931          * @method unregAll
20932          * @private
20933          * @static
20934          */
20935         unregAll: function() {
20936
20937             if (this.dragCurrent) {
20938                 this.stopDrag();
20939                 this.dragCurrent = null;
20940             }
20941
20942             this._execOnAll("unreg", []);
20943
20944             for (i in this.elementCache) {
20945                 delete this.elementCache[i];
20946             }
20947
20948             this.elementCache = {};
20949             this.ids = {};
20950         },
20951
20952         /**
20953          * A cache of DOM elements
20954          * @property elementCache
20955          * @private
20956          * @static
20957          */
20958         elementCache: {},
20959
20960         /**
20961          * Get the wrapper for the DOM element specified
20962          * @method getElWrapper
20963          * @param {String} id the id of the element to get
20964          * @return {Roo.dd.DDM.ElementWrapper} the wrapped element
20965          * @private
20966          * @deprecated This wrapper isn't that useful
20967          * @static
20968          */
20969         getElWrapper: function(id) {
20970             var oWrapper = this.elementCache[id];
20971             if (!oWrapper || !oWrapper.el) {
20972                 oWrapper = this.elementCache[id] =
20973                     new this.ElementWrapper(Roo.getDom(id));
20974             }
20975             return oWrapper;
20976         },
20977
20978         /**
20979          * Returns the actual DOM element
20980          * @method getElement
20981          * @param {String} id the id of the elment to get
20982          * @return {Object} The element
20983          * @deprecated use Roo.getDom instead
20984          * @static
20985          */
20986         getElement: function(id) {
20987             return Roo.getDom(id);
20988         },
20989
20990         /**
20991          * Returns the style property for the DOM element (i.e.,
20992          * document.getElById(id).style)
20993          * @method getCss
20994          * @param {String} id the id of the elment to get
20995          * @return {Object} The style property of the element
20996          * @deprecated use Roo.getDom instead
20997          * @static
20998          */
20999         getCss: function(id) {
21000             var el = Roo.getDom(id);
21001             return (el) ? el.style : null;
21002         },
21003
21004         /**
21005          * Inner class for cached elements
21006          * @class DragDropMgr.ElementWrapper
21007          * @for DragDropMgr
21008          * @private
21009          * @deprecated
21010          */
21011         ElementWrapper: function(el) {
21012                 /**
21013                  * The element
21014                  * @property el
21015                  */
21016                 this.el = el || null;
21017                 /**
21018                  * The element id
21019                  * @property id
21020                  */
21021                 this.id = this.el && el.id;
21022                 /**
21023                  * A reference to the style property
21024                  * @property css
21025                  */
21026                 this.css = this.el && el.style;
21027             },
21028
21029         /**
21030          * Returns the X position of an html element
21031          * @method getPosX
21032          * @param el the element for which to get the position
21033          * @return {int} the X coordinate
21034          * @for DragDropMgr
21035          * @deprecated use Roo.lib.Dom.getX instead
21036          * @static
21037          */
21038         getPosX: function(el) {
21039             return Roo.lib.Dom.getX(el);
21040         },
21041
21042         /**
21043          * Returns the Y position of an html element
21044          * @method getPosY
21045          * @param el the element for which to get the position
21046          * @return {int} the Y coordinate
21047          * @deprecated use Roo.lib.Dom.getY instead
21048          * @static
21049          */
21050         getPosY: function(el) {
21051             return Roo.lib.Dom.getY(el);
21052         },
21053
21054         /**
21055          * Swap two nodes.  In IE, we use the native method, for others we
21056          * emulate the IE behavior
21057          * @method swapNode
21058          * @param n1 the first node to swap
21059          * @param n2 the other node to swap
21060          * @static
21061          */
21062         swapNode: function(n1, n2) {
21063             if (n1.swapNode) {
21064                 n1.swapNode(n2);
21065             } else {
21066                 var p = n2.parentNode;
21067                 var s = n2.nextSibling;
21068
21069                 if (s == n1) {
21070                     p.insertBefore(n1, n2);
21071                 } else if (n2 == n1.nextSibling) {
21072                     p.insertBefore(n2, n1);
21073                 } else {
21074                     n1.parentNode.replaceChild(n2, n1);
21075                     p.insertBefore(n1, s);
21076                 }
21077             }
21078         },
21079
21080         /**
21081          * Returns the current scroll position
21082          * @method getScroll
21083          * @private
21084          * @static
21085          */
21086         getScroll: function () {
21087             var t, l, dde=document.documentElement, db=document.body;
21088             if (dde && (dde.scrollTop || dde.scrollLeft)) {
21089                 t = dde.scrollTop;
21090                 l = dde.scrollLeft;
21091             } else if (db) {
21092                 t = db.scrollTop;
21093                 l = db.scrollLeft;
21094             } else {
21095
21096             }
21097             return { top: t, left: l };
21098         },
21099
21100         /**
21101          * Returns the specified element style property
21102          * @method getStyle
21103          * @param {HTMLElement} el          the element
21104          * @param {string}      styleProp   the style property
21105          * @return {string} The value of the style property
21106          * @deprecated use Roo.lib.Dom.getStyle
21107          * @static
21108          */
21109         getStyle: function(el, styleProp) {
21110             return Roo.fly(el).getStyle(styleProp);
21111         },
21112
21113         /**
21114          * Gets the scrollTop
21115          * @method getScrollTop
21116          * @return {int} the document's scrollTop
21117          * @static
21118          */
21119         getScrollTop: function () { return this.getScroll().top; },
21120
21121         /**
21122          * Gets the scrollLeft
21123          * @method getScrollLeft
21124          * @return {int} the document's scrollTop
21125          * @static
21126          */
21127         getScrollLeft: function () { return this.getScroll().left; },
21128
21129         /**
21130          * Sets the x/y position of an element to the location of the
21131          * target element.
21132          * @method moveToEl
21133          * @param {HTMLElement} moveEl      The element to move
21134          * @param {HTMLElement} targetEl    The position reference element
21135          * @static
21136          */
21137         moveToEl: function (moveEl, targetEl) {
21138             var aCoord = Roo.lib.Dom.getXY(targetEl);
21139             Roo.lib.Dom.setXY(moveEl, aCoord);
21140         },
21141
21142         /**
21143          * Numeric array sort function
21144          * @method numericSort
21145          * @static
21146          */
21147         numericSort: function(a, b) { return (a - b); },
21148
21149         /**
21150          * Internal counter
21151          * @property _timeoutCount
21152          * @private
21153          * @static
21154          */
21155         _timeoutCount: 0,
21156
21157         /**
21158          * Trying to make the load order less important.  Without this we get
21159          * an error if this file is loaded before the Event Utility.
21160          * @method _addListeners
21161          * @private
21162          * @static
21163          */
21164         _addListeners: function() {
21165             var DDM = Roo.dd.DDM;
21166             if ( Roo.lib.Event && document ) {
21167                 DDM._onLoad();
21168             } else {
21169                 if (DDM._timeoutCount > 2000) {
21170                 } else {
21171                     setTimeout(DDM._addListeners, 10);
21172                     if (document && document.body) {
21173                         DDM._timeoutCount += 1;
21174                     }
21175                 }
21176             }
21177         },
21178
21179         /**
21180          * Recursively searches the immediate parent and all child nodes for
21181          * the handle element in order to determine wheter or not it was
21182          * clicked.
21183          * @method handleWasClicked
21184          * @param node the html element to inspect
21185          * @static
21186          */
21187         handleWasClicked: function(node, id) {
21188             if (this.isHandle(id, node.id)) {
21189                 return true;
21190             } else {
21191                 // check to see if this is a text node child of the one we want
21192                 var p = node.parentNode;
21193
21194                 while (p) {
21195                     if (this.isHandle(id, p.id)) {
21196                         return true;
21197                     } else {
21198                         p = p.parentNode;
21199                     }
21200                 }
21201             }
21202
21203             return false;
21204         }
21205
21206     };
21207
21208 }();
21209
21210 // shorter alias, save a few bytes
21211 Roo.dd.DDM = Roo.dd.DragDropMgr;
21212 Roo.dd.DDM._addListeners();
21213
21214 }/*
21215  * Based on:
21216  * Ext JS Library 1.1.1
21217  * Copyright(c) 2006-2007, Ext JS, LLC.
21218  *
21219  * Originally Released Under LGPL - original licence link has changed is not relivant.
21220  *
21221  * Fork - LGPL
21222  * <script type="text/javascript">
21223  */
21224
21225 /**
21226  * @class Roo.dd.DD
21227  * A DragDrop implementation where the linked element follows the
21228  * mouse cursor during a drag.
21229  * @extends Roo.dd.DragDrop
21230  * @constructor
21231  * @param {String} id the id of the linked element
21232  * @param {String} sGroup the group of related DragDrop items
21233  * @param {object} config an object containing configurable attributes
21234  *                Valid properties for DD:
21235  *                    scroll
21236  */
21237 Roo.dd.DD = function(id, sGroup, config) {
21238     if (id) {
21239         this.init(id, sGroup, config);
21240     }
21241 };
21242
21243 Roo.extend(Roo.dd.DD, Roo.dd.DragDrop, {
21244
21245     /**
21246      * When set to true, the utility automatically tries to scroll the browser
21247      * window wehn a drag and drop element is dragged near the viewport boundary.
21248      * Defaults to true.
21249      * @property scroll
21250      * @type boolean
21251      */
21252     scroll: true,
21253
21254     /**
21255      * Sets the pointer offset to the distance between the linked element's top
21256      * left corner and the location the element was clicked
21257      * @method autoOffset
21258      * @param {int} iPageX the X coordinate of the click
21259      * @param {int} iPageY the Y coordinate of the click
21260      */
21261     autoOffset: function(iPageX, iPageY) {
21262         var x = iPageX - this.startPageX;
21263         var y = iPageY - this.startPageY;
21264         this.setDelta(x, y);
21265     },
21266
21267     /**
21268      * Sets the pointer offset.  You can call this directly to force the
21269      * offset to be in a particular location (e.g., pass in 0,0 to set it
21270      * to the center of the object)
21271      * @method setDelta
21272      * @param {int} iDeltaX the distance from the left
21273      * @param {int} iDeltaY the distance from the top
21274      */
21275     setDelta: function(iDeltaX, iDeltaY) {
21276         this.deltaX = iDeltaX;
21277         this.deltaY = iDeltaY;
21278     },
21279
21280     /**
21281      * Sets the drag element to the location of the mousedown or click event,
21282      * maintaining the cursor location relative to the location on the element
21283      * that was clicked.  Override this if you want to place the element in a
21284      * location other than where the cursor is.
21285      * @method setDragElPos
21286      * @param {int} iPageX the X coordinate of the mousedown or drag event
21287      * @param {int} iPageY the Y coordinate of the mousedown or drag event
21288      */
21289     setDragElPos: function(iPageX, iPageY) {
21290         // the first time we do this, we are going to check to make sure
21291         // the element has css positioning
21292
21293         var el = this.getDragEl();
21294         this.alignElWithMouse(el, iPageX, iPageY);
21295     },
21296
21297     /**
21298      * Sets the element to the location of the mousedown or click event,
21299      * maintaining the cursor location relative to the location on the element
21300      * that was clicked.  Override this if you want to place the element in a
21301      * location other than where the cursor is.
21302      * @method alignElWithMouse
21303      * @param {HTMLElement} el the element to move
21304      * @param {int} iPageX the X coordinate of the mousedown or drag event
21305      * @param {int} iPageY the Y coordinate of the mousedown or drag event
21306      */
21307     alignElWithMouse: function(el, iPageX, iPageY) {
21308         var oCoord = this.getTargetCoord(iPageX, iPageY);
21309         var fly = el.dom ? el : Roo.fly(el);
21310         if (!this.deltaSetXY) {
21311             var aCoord = [oCoord.x, oCoord.y];
21312             fly.setXY(aCoord);
21313             var newLeft = fly.getLeft(true);
21314             var newTop  = fly.getTop(true);
21315             this.deltaSetXY = [ newLeft - oCoord.x, newTop - oCoord.y ];
21316         } else {
21317             fly.setLeftTop(oCoord.x + this.deltaSetXY[0], oCoord.y + this.deltaSetXY[1]);
21318         }
21319
21320         this.cachePosition(oCoord.x, oCoord.y);
21321         this.autoScroll(oCoord.x, oCoord.y, el.offsetHeight, el.offsetWidth);
21322         return oCoord;
21323     },
21324
21325     /**
21326      * Saves the most recent position so that we can reset the constraints and
21327      * tick marks on-demand.  We need to know this so that we can calculate the
21328      * number of pixels the element is offset from its original position.
21329      * @method cachePosition
21330      * @param iPageX the current x position (optional, this just makes it so we
21331      * don't have to look it up again)
21332      * @param iPageY the current y position (optional, this just makes it so we
21333      * don't have to look it up again)
21334      */
21335     cachePosition: function(iPageX, iPageY) {
21336         if (iPageX) {
21337             this.lastPageX = iPageX;
21338             this.lastPageY = iPageY;
21339         } else {
21340             var aCoord = Roo.lib.Dom.getXY(this.getEl());
21341             this.lastPageX = aCoord[0];
21342             this.lastPageY = aCoord[1];
21343         }
21344     },
21345
21346     /**
21347      * Auto-scroll the window if the dragged object has been moved beyond the
21348      * visible window boundary.
21349      * @method autoScroll
21350      * @param {int} x the drag element's x position
21351      * @param {int} y the drag element's y position
21352      * @param {int} h the height of the drag element
21353      * @param {int} w the width of the drag element
21354      * @private
21355      */
21356     autoScroll: function(x, y, h, w) {
21357
21358         if (this.scroll) {
21359             // The client height
21360             var clientH = Roo.lib.Dom.getViewWidth();
21361
21362             // The client width
21363             var clientW = Roo.lib.Dom.getViewHeight();
21364
21365             // The amt scrolled down
21366             var st = this.DDM.getScrollTop();
21367
21368             // The amt scrolled right
21369             var sl = this.DDM.getScrollLeft();
21370
21371             // Location of the bottom of the element
21372             var bot = h + y;
21373
21374             // Location of the right of the element
21375             var right = w + x;
21376
21377             // The distance from the cursor to the bottom of the visible area,
21378             // adjusted so that we don't scroll if the cursor is beyond the
21379             // element drag constraints
21380             var toBot = (clientH + st - y - this.deltaY);
21381
21382             // The distance from the cursor to the right of the visible area
21383             var toRight = (clientW + sl - x - this.deltaX);
21384
21385
21386             // How close to the edge the cursor must be before we scroll
21387             // var thresh = (document.all) ? 100 : 40;
21388             var thresh = 40;
21389
21390             // How many pixels to scroll per autoscroll op.  This helps to reduce
21391             // clunky scrolling. IE is more sensitive about this ... it needs this
21392             // value to be higher.
21393             var scrAmt = (document.all) ? 80 : 30;
21394
21395             // Scroll down if we are near the bottom of the visible page and the
21396             // obj extends below the crease
21397             if ( bot > clientH && toBot < thresh ) {
21398                 window.scrollTo(sl, st + scrAmt);
21399             }
21400
21401             // Scroll up if the window is scrolled down and the top of the object
21402             // goes above the top border
21403             if ( y < st && st > 0 && y - st < thresh ) {
21404                 window.scrollTo(sl, st - scrAmt);
21405             }
21406
21407             // Scroll right if the obj is beyond the right border and the cursor is
21408             // near the border.
21409             if ( right > clientW && toRight < thresh ) {
21410                 window.scrollTo(sl + scrAmt, st);
21411             }
21412
21413             // Scroll left if the window has been scrolled to the right and the obj
21414             // extends past the left border
21415             if ( x < sl && sl > 0 && x - sl < thresh ) {
21416                 window.scrollTo(sl - scrAmt, st);
21417             }
21418         }
21419     },
21420
21421     /**
21422      * Finds the location the element should be placed if we want to move
21423      * it to where the mouse location less the click offset would place us.
21424      * @method getTargetCoord
21425      * @param {int} iPageX the X coordinate of the click
21426      * @param {int} iPageY the Y coordinate of the click
21427      * @return an object that contains the coordinates (Object.x and Object.y)
21428      * @private
21429      */
21430     getTargetCoord: function(iPageX, iPageY) {
21431
21432
21433         var x = iPageX - this.deltaX;
21434         var y = iPageY - this.deltaY;
21435
21436         if (this.constrainX) {
21437             if (x < this.minX) { x = this.minX; }
21438             if (x > this.maxX) { x = this.maxX; }
21439         }
21440
21441         if (this.constrainY) {
21442             if (y < this.minY) { y = this.minY; }
21443             if (y > this.maxY) { y = this.maxY; }
21444         }
21445
21446         x = this.getTick(x, this.xTicks);
21447         y = this.getTick(y, this.yTicks);
21448
21449
21450         return {x:x, y:y};
21451     },
21452
21453     /*
21454      * Sets up config options specific to this class. Overrides
21455      * Roo.dd.DragDrop, but all versions of this method through the
21456      * inheritance chain are called
21457      */
21458     applyConfig: function() {
21459         Roo.dd.DD.superclass.applyConfig.call(this);
21460         this.scroll = (this.config.scroll !== false);
21461     },
21462
21463     /*
21464      * Event that fires prior to the onMouseDown event.  Overrides
21465      * Roo.dd.DragDrop.
21466      */
21467     b4MouseDown: function(e) {
21468         // this.resetConstraints();
21469         this.autoOffset(e.getPageX(),
21470                             e.getPageY());
21471     },
21472
21473     /*
21474      * Event that fires prior to the onDrag event.  Overrides
21475      * Roo.dd.DragDrop.
21476      */
21477     b4Drag: function(e) {
21478         this.setDragElPos(e.getPageX(),
21479                             e.getPageY());
21480     },
21481
21482     toString: function() {
21483         return ("DD " + this.id);
21484     }
21485
21486     //////////////////////////////////////////////////////////////////////////
21487     // Debugging ygDragDrop events that can be overridden
21488     //////////////////////////////////////////////////////////////////////////
21489     /*
21490     startDrag: function(x, y) {
21491     },
21492
21493     onDrag: function(e) {
21494     },
21495
21496     onDragEnter: function(e, id) {
21497     },
21498
21499     onDragOver: function(e, id) {
21500     },
21501
21502     onDragOut: function(e, id) {
21503     },
21504
21505     onDragDrop: function(e, id) {
21506     },
21507
21508     endDrag: function(e) {
21509     }
21510
21511     */
21512
21513 });/*
21514  * Based on:
21515  * Ext JS Library 1.1.1
21516  * Copyright(c) 2006-2007, Ext JS, LLC.
21517  *
21518  * Originally Released Under LGPL - original licence link has changed is not relivant.
21519  *
21520  * Fork - LGPL
21521  * <script type="text/javascript">
21522  */
21523
21524 /**
21525  * @class Roo.dd.DDProxy
21526  * A DragDrop implementation that inserts an empty, bordered div into
21527  * the document that follows the cursor during drag operations.  At the time of
21528  * the click, the frame div is resized to the dimensions of the linked html
21529  * element, and moved to the exact location of the linked element.
21530  *
21531  * References to the "frame" element refer to the single proxy element that
21532  * was created to be dragged in place of all DDProxy elements on the
21533  * page.
21534  *
21535  * @extends Roo.dd.DD
21536  * @constructor
21537  * @param {String} id the id of the linked html element
21538  * @param {String} sGroup the group of related DragDrop objects
21539  * @param {object} config an object containing configurable attributes
21540  *                Valid properties for DDProxy in addition to those in DragDrop:
21541  *                   resizeFrame, centerFrame, dragElId
21542  */
21543 Roo.dd.DDProxy = function(id, sGroup, config) {
21544     if (id) {
21545         this.init(id, sGroup, config);
21546         this.initFrame();
21547     }
21548 };
21549
21550 /**
21551  * The default drag frame div id
21552  * @property Roo.dd.DDProxy.dragElId
21553  * @type String
21554  * @static
21555  */
21556 Roo.dd.DDProxy.dragElId = "ygddfdiv";
21557
21558 Roo.extend(Roo.dd.DDProxy, Roo.dd.DD, {
21559
21560     /**
21561      * By default we resize the drag frame to be the same size as the element
21562      * we want to drag (this is to get the frame effect).  We can turn it off
21563      * if we want a different behavior.
21564      * @property resizeFrame
21565      * @type boolean
21566      */
21567     resizeFrame: true,
21568
21569     /**
21570      * By default the frame is positioned exactly where the drag element is, so
21571      * we use the cursor offset provided by Roo.dd.DD.  Another option that works only if
21572      * you do not have constraints on the obj is to have the drag frame centered
21573      * around the cursor.  Set centerFrame to true for this effect.
21574      * @property centerFrame
21575      * @type boolean
21576      */
21577     centerFrame: false,
21578
21579     /**
21580      * Creates the proxy element if it does not yet exist
21581      * @method createFrame
21582      */
21583     createFrame: function() {
21584         var self = this;
21585         var body = document.body;
21586
21587         if (!body || !body.firstChild) {
21588             setTimeout( function() { self.createFrame(); }, 50 );
21589             return;
21590         }
21591
21592         var div = this.getDragEl();
21593
21594         if (!div) {
21595             div    = document.createElement("div");
21596             div.id = this.dragElId;
21597             var s  = div.style;
21598
21599             s.position   = "absolute";
21600             s.visibility = "hidden";
21601             s.cursor     = "move";
21602             s.border     = "2px solid #aaa";
21603             s.zIndex     = 999;
21604
21605             // appendChild can blow up IE if invoked prior to the window load event
21606             // while rendering a table.  It is possible there are other scenarios
21607             // that would cause this to happen as well.
21608             body.insertBefore(div, body.firstChild);
21609         }
21610     },
21611
21612     /**
21613      * Initialization for the drag frame element.  Must be called in the
21614      * constructor of all subclasses
21615      * @method initFrame
21616      */
21617     initFrame: function() {
21618         this.createFrame();
21619     },
21620
21621     applyConfig: function() {
21622         Roo.dd.DDProxy.superclass.applyConfig.call(this);
21623
21624         this.resizeFrame = (this.config.resizeFrame !== false);
21625         this.centerFrame = (this.config.centerFrame);
21626         this.setDragElId(this.config.dragElId || Roo.dd.DDProxy.dragElId);
21627     },
21628
21629     /**
21630      * Resizes the drag frame to the dimensions of the clicked object, positions
21631      * it over the object, and finally displays it
21632      * @method showFrame
21633      * @param {int} iPageX X click position
21634      * @param {int} iPageY Y click position
21635      * @private
21636      */
21637     showFrame: function(iPageX, iPageY) {
21638         var el = this.getEl();
21639         var dragEl = this.getDragEl();
21640         var s = dragEl.style;
21641
21642         this._resizeProxy();
21643
21644         if (this.centerFrame) {
21645             this.setDelta( Math.round(parseInt(s.width,  10)/2),
21646                            Math.round(parseInt(s.height, 10)/2) );
21647         }
21648
21649         this.setDragElPos(iPageX, iPageY);
21650
21651         Roo.fly(dragEl).show();
21652     },
21653
21654     /**
21655      * The proxy is automatically resized to the dimensions of the linked
21656      * element when a drag is initiated, unless resizeFrame is set to false
21657      * @method _resizeProxy
21658      * @private
21659      */
21660     _resizeProxy: function() {
21661         if (this.resizeFrame) {
21662             var el = this.getEl();
21663             Roo.fly(this.getDragEl()).setSize(el.offsetWidth, el.offsetHeight);
21664         }
21665     },
21666
21667     // overrides Roo.dd.DragDrop
21668     b4MouseDown: function(e) {
21669         var x = e.getPageX();
21670         var y = e.getPageY();
21671         this.autoOffset(x, y);
21672         this.setDragElPos(x, y);
21673     },
21674
21675     // overrides Roo.dd.DragDrop
21676     b4StartDrag: function(x, y) {
21677         // show the drag frame
21678         this.showFrame(x, y);
21679     },
21680
21681     // overrides Roo.dd.DragDrop
21682     b4EndDrag: function(e) {
21683         Roo.fly(this.getDragEl()).hide();
21684     },
21685
21686     // overrides Roo.dd.DragDrop
21687     // By default we try to move the element to the last location of the frame.
21688     // This is so that the default behavior mirrors that of Roo.dd.DD.
21689     endDrag: function(e) {
21690
21691         var lel = this.getEl();
21692         var del = this.getDragEl();
21693
21694         // Show the drag frame briefly so we can get its position
21695         del.style.visibility = "";
21696
21697         this.beforeMove();
21698         // Hide the linked element before the move to get around a Safari
21699         // rendering bug.
21700         lel.style.visibility = "hidden";
21701         Roo.dd.DDM.moveToEl(lel, del);
21702         del.style.visibility = "hidden";
21703         lel.style.visibility = "";
21704
21705         this.afterDrag();
21706     },
21707
21708     beforeMove : function(){
21709
21710     },
21711
21712     afterDrag : function(){
21713
21714     },
21715
21716     toString: function() {
21717         return ("DDProxy " + this.id);
21718     }
21719
21720 });
21721 /*
21722  * Based on:
21723  * Ext JS Library 1.1.1
21724  * Copyright(c) 2006-2007, Ext JS, LLC.
21725  *
21726  * Originally Released Under LGPL - original licence link has changed is not relivant.
21727  *
21728  * Fork - LGPL
21729  * <script type="text/javascript">
21730  */
21731
21732  /**
21733  * @class Roo.dd.DDTarget
21734  * A DragDrop implementation that does not move, but can be a drop
21735  * target.  You would get the same result by simply omitting implementation
21736  * for the event callbacks, but this way we reduce the processing cost of the
21737  * event listener and the callbacks.
21738  * @extends Roo.dd.DragDrop
21739  * @constructor
21740  * @param {String} id the id of the element that is a drop target
21741  * @param {String} sGroup the group of related DragDrop objects
21742  * @param {object} config an object containing configurable attributes
21743  *                 Valid properties for DDTarget in addition to those in
21744  *                 DragDrop:
21745  *                    none
21746  */
21747 Roo.dd.DDTarget = function(id, sGroup, config) {
21748     if (id) {
21749         this.initTarget(id, sGroup, config);
21750     }
21751     if (config && (config.listeners || config.events)) { 
21752         Roo.dd.DragDrop.superclass.constructor.call(this,  { 
21753             listeners : config.listeners || {}, 
21754             events : config.events || {} 
21755         });    
21756     }
21757 };
21758
21759 // Roo.dd.DDTarget.prototype = new Roo.dd.DragDrop();
21760 Roo.extend(Roo.dd.DDTarget, Roo.dd.DragDrop, {
21761     toString: function() {
21762         return ("DDTarget " + this.id);
21763     }
21764 });
21765 /*
21766  * Based on:
21767  * Ext JS Library 1.1.1
21768  * Copyright(c) 2006-2007, Ext JS, LLC.
21769  *
21770  * Originally Released Under LGPL - original licence link has changed is not relivant.
21771  *
21772  * Fork - LGPL
21773  * <script type="text/javascript">
21774  */
21775  
21776
21777 /**
21778  * @class Roo.dd.ScrollManager
21779  * Provides automatic scrolling of overflow regions in the page during drag operations.<br><br>
21780  * <b>Note: This class uses "Point Mode" and is untested in "Intersect Mode".</b>
21781  * @singleton
21782  */
21783 Roo.dd.ScrollManager = function(){
21784     var ddm = Roo.dd.DragDropMgr;
21785     var els = {};
21786     var dragEl = null;
21787     var proc = {};
21788     
21789     
21790     
21791     var onStop = function(e){
21792         dragEl = null;
21793         clearProc();
21794     };
21795     
21796     var triggerRefresh = function(){
21797         if(ddm.dragCurrent){
21798              ddm.refreshCache(ddm.dragCurrent.groups);
21799         }
21800     };
21801     
21802     var doScroll = function(){
21803         if(ddm.dragCurrent){
21804             var dds = Roo.dd.ScrollManager;
21805             if(!dds.animate){
21806                 if(proc.el.scroll(proc.dir, dds.increment)){
21807                     triggerRefresh();
21808                 }
21809             }else{
21810                 proc.el.scroll(proc.dir, dds.increment, true, dds.animDuration, triggerRefresh);
21811             }
21812         }
21813     };
21814     
21815     var clearProc = function(){
21816         if(proc.id){
21817             clearInterval(proc.id);
21818         }
21819         proc.id = 0;
21820         proc.el = null;
21821         proc.dir = "";
21822     };
21823     
21824     var startProc = function(el, dir){
21825          Roo.log('scroll startproc');
21826         clearProc();
21827         proc.el = el;
21828         proc.dir = dir;
21829         proc.id = setInterval(doScroll, Roo.dd.ScrollManager.frequency);
21830     };
21831     
21832     var onFire = function(e, isDrop){
21833        
21834         if(isDrop || !ddm.dragCurrent){ return; }
21835         var dds = Roo.dd.ScrollManager;
21836         if(!dragEl || dragEl != ddm.dragCurrent){
21837             dragEl = ddm.dragCurrent;
21838             // refresh regions on drag start
21839             dds.refreshCache();
21840         }
21841         
21842         var xy = Roo.lib.Event.getXY(e);
21843         var pt = new Roo.lib.Point(xy[0], xy[1]);
21844         for(var id in els){
21845             var el = els[id], r = el._region;
21846             if(r && r.contains(pt) && el.isScrollable()){
21847                 if(r.bottom - pt.y <= dds.thresh){
21848                     if(proc.el != el){
21849                         startProc(el, "down");
21850                     }
21851                     return;
21852                 }else if(r.right - pt.x <= dds.thresh){
21853                     if(proc.el != el){
21854                         startProc(el, "left");
21855                     }
21856                     return;
21857                 }else if(pt.y - r.top <= dds.thresh){
21858                     if(proc.el != el){
21859                         startProc(el, "up");
21860                     }
21861                     return;
21862                 }else if(pt.x - r.left <= dds.thresh){
21863                     if(proc.el != el){
21864                         startProc(el, "right");
21865                     }
21866                     return;
21867                 }
21868             }
21869         }
21870         clearProc();
21871     };
21872     
21873     ddm.fireEvents = ddm.fireEvents.createSequence(onFire, ddm);
21874     ddm.stopDrag = ddm.stopDrag.createSequence(onStop, ddm);
21875     
21876     return {
21877         /**
21878          * Registers new overflow element(s) to auto scroll
21879          * @param {String/HTMLElement/Element/Array} el The id of or the element to be scrolled or an array of either
21880          */
21881         register : function(el){
21882             if(el instanceof Array){
21883                 for(var i = 0, len = el.length; i < len; i++) {
21884                         this.register(el[i]);
21885                 }
21886             }else{
21887                 el = Roo.get(el);
21888                 els[el.id] = el;
21889             }
21890             Roo.dd.ScrollManager.els = els;
21891         },
21892         
21893         /**
21894          * Unregisters overflow element(s) so they are no longer scrolled
21895          * @param {String/HTMLElement/Element/Array} el The id of or the element to be removed or an array of either
21896          */
21897         unregister : function(el){
21898             if(el instanceof Array){
21899                 for(var i = 0, len = el.length; i < len; i++) {
21900                         this.unregister(el[i]);
21901                 }
21902             }else{
21903                 el = Roo.get(el);
21904                 delete els[el.id];
21905             }
21906         },
21907         
21908         /**
21909          * The number of pixels from the edge of a container the pointer needs to be to 
21910          * trigger scrolling (defaults to 25)
21911          * @type Number
21912          */
21913         thresh : 25,
21914         
21915         /**
21916          * The number of pixels to scroll in each scroll increment (defaults to 50)
21917          * @type Number
21918          */
21919         increment : 100,
21920         
21921         /**
21922          * The frequency of scrolls in milliseconds (defaults to 500)
21923          * @type Number
21924          */
21925         frequency : 500,
21926         
21927         /**
21928          * True to animate the scroll (defaults to true)
21929          * @type Boolean
21930          */
21931         animate: true,
21932         
21933         /**
21934          * The animation duration in seconds - 
21935          * MUST BE less than Roo.dd.ScrollManager.frequency! (defaults to .4)
21936          * @type Number
21937          */
21938         animDuration: .4,
21939         
21940         /**
21941          * Manually trigger a cache refresh.
21942          */
21943         refreshCache : function(){
21944             for(var id in els){
21945                 if(typeof els[id] == 'object'){ // for people extending the object prototype
21946                     els[id]._region = els[id].getRegion();
21947                 }
21948             }
21949         }
21950     };
21951 }();/*
21952  * Based on:
21953  * Ext JS Library 1.1.1
21954  * Copyright(c) 2006-2007, Ext JS, LLC.
21955  *
21956  * Originally Released Under LGPL - original licence link has changed is not relivant.
21957  *
21958  * Fork - LGPL
21959  * <script type="text/javascript">
21960  */
21961  
21962
21963 /**
21964  * @class Roo.dd.Registry
21965  * Provides easy access to all drag drop components that are registered on a page.  Items can be retrieved either
21966  * directly by DOM node id, or by passing in the drag drop event that occurred and looking up the event target.
21967  * @singleton
21968  */
21969 Roo.dd.Registry = function(){
21970     var elements = {}; 
21971     var handles = {}; 
21972     var autoIdSeed = 0;
21973
21974     var getId = function(el, autogen){
21975         if(typeof el == "string"){
21976             return el;
21977         }
21978         var id = el.id;
21979         if(!id && autogen !== false){
21980             id = "roodd-" + (++autoIdSeed);
21981             el.id = id;
21982         }
21983         return id;
21984     };
21985     
21986     return {
21987     /**
21988      * Register a drag drop element
21989      * @param {String|HTMLElement} element The id or DOM node to register
21990      * @param {Object} data (optional) A custom data object that will be passed between the elements that are involved
21991      * in drag drop operations.  You can populate this object with any arbitrary properties that your own code
21992      * knows how to interpret, plus there are some specific properties known to the Registry that should be
21993      * populated in the data object (if applicable):
21994      * <pre>
21995 Value      Description<br />
21996 ---------  ------------------------------------------<br />
21997 handles    Array of DOM nodes that trigger dragging<br />
21998            for the element being registered<br />
21999 isHandle   True if the element passed in triggers<br />
22000            dragging itself, else false
22001 </pre>
22002      */
22003         register : function(el, data){
22004             data = data || {};
22005             if(typeof el == "string"){
22006                 el = document.getElementById(el);
22007             }
22008             data.ddel = el;
22009             elements[getId(el)] = data;
22010             if(data.isHandle !== false){
22011                 handles[data.ddel.id] = data;
22012             }
22013             if(data.handles){
22014                 var hs = data.handles;
22015                 for(var i = 0, len = hs.length; i < len; i++){
22016                         handles[getId(hs[i])] = data;
22017                 }
22018             }
22019         },
22020
22021     /**
22022      * Unregister a drag drop element
22023      * @param {String|HTMLElement}  element The id or DOM node to unregister
22024      */
22025         unregister : function(el){
22026             var id = getId(el, false);
22027             var data = elements[id];
22028             if(data){
22029                 delete elements[id];
22030                 if(data.handles){
22031                     var hs = data.handles;
22032                     for(var i = 0, len = hs.length; i < len; i++){
22033                         delete handles[getId(hs[i], false)];
22034                     }
22035                 }
22036             }
22037         },
22038
22039     /**
22040      * Returns the handle registered for a DOM Node by id
22041      * @param {String|HTMLElement} id The DOM node or id to look up
22042      * @return {Object} handle The custom handle data
22043      */
22044         getHandle : function(id){
22045             if(typeof id != "string"){ // must be element?
22046                 id = id.id;
22047             }
22048             return handles[id];
22049         },
22050
22051     /**
22052      * Returns the handle that is registered for the DOM node that is the target of the event
22053      * @param {Event} e The event
22054      * @return {Object} handle The custom handle data
22055      */
22056         getHandleFromEvent : function(e){
22057             var t = Roo.lib.Event.getTarget(e);
22058             return t ? handles[t.id] : null;
22059         },
22060
22061     /**
22062      * Returns a custom data object that is registered for a DOM node by id
22063      * @param {String|HTMLElement} id The DOM node or id to look up
22064      * @return {Object} data The custom data
22065      */
22066         getTarget : function(id){
22067             if(typeof id != "string"){ // must be element?
22068                 id = id.id;
22069             }
22070             return elements[id];
22071         },
22072
22073     /**
22074      * Returns a custom data object that is registered for the DOM node that is the target of the event
22075      * @param {Event} e The event
22076      * @return {Object} data The custom data
22077      */
22078         getTargetFromEvent : function(e){
22079             var t = Roo.lib.Event.getTarget(e);
22080             return t ? elements[t.id] || handles[t.id] : null;
22081         }
22082     };
22083 }();/*
22084  * Based on:
22085  * Ext JS Library 1.1.1
22086  * Copyright(c) 2006-2007, Ext JS, LLC.
22087  *
22088  * Originally Released Under LGPL - original licence link has changed is not relivant.
22089  *
22090  * Fork - LGPL
22091  * <script type="text/javascript">
22092  */
22093  
22094
22095 /**
22096  * @class Roo.dd.StatusProxy
22097  * A specialized drag proxy that supports a drop status icon, {@link Roo.Layer} styles and auto-repair.  This is the
22098  * default drag proxy used by all Roo.dd components.
22099  * @constructor
22100  * @param {Object} config
22101  */
22102 Roo.dd.StatusProxy = function(config){
22103     Roo.apply(this, config);
22104     this.id = this.id || Roo.id();
22105     this.el = new Roo.Layer({
22106         dh: {
22107             id: this.id, tag: "div", cls: "x-dd-drag-proxy "+this.dropNotAllowed, children: [
22108                 {tag: "div", cls: "x-dd-drop-icon"},
22109                 {tag: "div", cls: "x-dd-drag-ghost"}
22110             ]
22111         }, 
22112         shadow: !config || config.shadow !== false
22113     });
22114     this.ghost = Roo.get(this.el.dom.childNodes[1]);
22115     this.dropStatus = this.dropNotAllowed;
22116 };
22117
22118 Roo.dd.StatusProxy.prototype = {
22119     /**
22120      * @cfg {String} dropAllowed
22121      * The CSS class to apply to the status element when drop is allowed (defaults to "x-dd-drop-ok").
22122      */
22123     dropAllowed : "x-dd-drop-ok",
22124     /**
22125      * @cfg {String} dropNotAllowed
22126      * The CSS class to apply to the status element when drop is not allowed (defaults to "x-dd-drop-nodrop").
22127      */
22128     dropNotAllowed : "x-dd-drop-nodrop",
22129
22130     /**
22131      * Updates the proxy's visual element to indicate the status of whether or not drop is allowed
22132      * over the current target element.
22133      * @param {String} cssClass The css class for the new drop status indicator image
22134      */
22135     setStatus : function(cssClass){
22136         cssClass = cssClass || this.dropNotAllowed;
22137         if(this.dropStatus != cssClass){
22138             this.el.replaceClass(this.dropStatus, cssClass);
22139             this.dropStatus = cssClass;
22140         }
22141     },
22142
22143     /**
22144      * Resets the status indicator to the default dropNotAllowed value
22145      * @param {Boolean} clearGhost True to also remove all content from the ghost, false to preserve it
22146      */
22147     reset : function(clearGhost){
22148         this.el.dom.className = "x-dd-drag-proxy " + this.dropNotAllowed;
22149         this.dropStatus = this.dropNotAllowed;
22150         if(clearGhost){
22151             this.ghost.update("");
22152         }
22153     },
22154
22155     /**
22156      * Updates the contents of the ghost element
22157      * @param {String} html The html that will replace the current innerHTML of the ghost element
22158      */
22159     update : function(html){
22160         if(typeof html == "string"){
22161             this.ghost.update(html);
22162         }else{
22163             this.ghost.update("");
22164             html.style.margin = "0";
22165             this.ghost.dom.appendChild(html);
22166         }
22167         // ensure float = none set?? cant remember why though.
22168         var el = this.ghost.dom.firstChild;
22169                 if(el){
22170                         Roo.fly(el).setStyle('float', 'none');
22171                 }
22172     },
22173     
22174     /**
22175      * Returns the underlying proxy {@link Roo.Layer}
22176      * @return {Roo.Layer} el
22177     */
22178     getEl : function(){
22179         return this.el;
22180     },
22181
22182     /**
22183      * Returns the ghost element
22184      * @return {Roo.Element} el
22185      */
22186     getGhost : function(){
22187         return this.ghost;
22188     },
22189
22190     /**
22191      * Hides the proxy
22192      * @param {Boolean} clear True to reset the status and clear the ghost contents, false to preserve them
22193      */
22194     hide : function(clear){
22195         this.el.hide();
22196         if(clear){
22197             this.reset(true);
22198         }
22199     },
22200
22201     /**
22202      * Stops the repair animation if it's currently running
22203      */
22204     stop : function(){
22205         if(this.anim && this.anim.isAnimated && this.anim.isAnimated()){
22206             this.anim.stop();
22207         }
22208     },
22209
22210     /**
22211      * Displays this proxy
22212      */
22213     show : function(){
22214         this.el.show();
22215     },
22216
22217     /**
22218      * Force the Layer to sync its shadow and shim positions to the element
22219      */
22220     sync : function(){
22221         this.el.sync();
22222     },
22223
22224     /**
22225      * Causes the proxy to return to its position of origin via an animation.  Should be called after an
22226      * invalid drop operation by the item being dragged.
22227      * @param {Array} xy The XY position of the element ([x, y])
22228      * @param {Function} callback The function to call after the repair is complete
22229      * @param {Object} scope The scope in which to execute the callback
22230      */
22231     repair : function(xy, callback, scope){
22232         this.callback = callback;
22233         this.scope = scope;
22234         if(xy && this.animRepair !== false){
22235             this.el.addClass("x-dd-drag-repair");
22236             this.el.hideUnders(true);
22237             this.anim = this.el.shift({
22238                 duration: this.repairDuration || .5,
22239                 easing: 'easeOut',
22240                 xy: xy,
22241                 stopFx: true,
22242                 callback: this.afterRepair,
22243                 scope: this
22244             });
22245         }else{
22246             this.afterRepair();
22247         }
22248     },
22249
22250     // private
22251     afterRepair : function(){
22252         this.hide(true);
22253         if(typeof this.callback == "function"){
22254             this.callback.call(this.scope || this);
22255         }
22256         this.callback = null;
22257         this.scope = null;
22258     }
22259 };/*
22260  * Based on:
22261  * Ext JS Library 1.1.1
22262  * Copyright(c) 2006-2007, Ext JS, LLC.
22263  *
22264  * Originally Released Under LGPL - original licence link has changed is not relivant.
22265  *
22266  * Fork - LGPL
22267  * <script type="text/javascript">
22268  */
22269
22270 /**
22271  * @class Roo.dd.DragSource
22272  * @extends Roo.dd.DDProxy
22273  * A simple class that provides the basic implementation needed to make any element draggable.
22274  * @constructor
22275  * @param {String/HTMLElement/Element} el The container element
22276  * @param {Object} config
22277  */
22278 Roo.dd.DragSource = function(el, config){
22279     this.el = Roo.get(el);
22280     this.dragData = {};
22281     
22282     Roo.apply(this, config);
22283     
22284     if(!this.proxy){
22285         this.proxy = new Roo.dd.StatusProxy();
22286     }
22287
22288     Roo.dd.DragSource.superclass.constructor.call(this, this.el.dom, this.ddGroup || this.group,
22289           {dragElId : this.proxy.id, resizeFrame: false, isTarget: false, scroll: this.scroll === true});
22290     
22291     this.dragging = false;
22292 };
22293
22294 Roo.extend(Roo.dd.DragSource, Roo.dd.DDProxy, {
22295     /**
22296      * @cfg {String} dropAllowed
22297      * The CSS class returned to the drag source when drop is allowed (defaults to "x-dd-drop-ok").
22298      */
22299     dropAllowed : "x-dd-drop-ok",
22300     /**
22301      * @cfg {String} dropNotAllowed
22302      * The CSS class returned to the drag source when drop is not allowed (defaults to "x-dd-drop-nodrop").
22303      */
22304     dropNotAllowed : "x-dd-drop-nodrop",
22305
22306     /**
22307      * Returns the data object associated with this drag source
22308      * @return {Object} data An object containing arbitrary data
22309      */
22310     getDragData : function(e){
22311         return this.dragData;
22312     },
22313
22314     // private
22315     onDragEnter : function(e, id){
22316         var target = Roo.dd.DragDropMgr.getDDById(id);
22317         this.cachedTarget = target;
22318         if(this.beforeDragEnter(target, e, id) !== false){
22319             if(target.isNotifyTarget){
22320                 var status = target.notifyEnter(this, e, this.dragData);
22321                 this.proxy.setStatus(status);
22322             }else{
22323                 this.proxy.setStatus(this.dropAllowed);
22324             }
22325             
22326             if(this.afterDragEnter){
22327                 /**
22328                  * An empty function by default, but provided so that you can perform a custom action
22329                  * when the dragged item enters the drop target by providing an implementation.
22330                  * @param {Roo.dd.DragDrop} target The drop target
22331                  * @param {Event} e The event object
22332                  * @param {String} id The id of the dragged element
22333                  * @method afterDragEnter
22334                  */
22335                 this.afterDragEnter(target, e, id);
22336             }
22337         }
22338     },
22339
22340     /**
22341      * An empty function by default, but provided so that you can perform a custom action
22342      * before the dragged item enters the drop target and optionally cancel the onDragEnter.
22343      * @param {Roo.dd.DragDrop} target The drop target
22344      * @param {Event} e The event object
22345      * @param {String} id The id of the dragged element
22346      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
22347      */
22348     beforeDragEnter : function(target, e, id){
22349         return true;
22350     },
22351
22352     // private
22353     alignElWithMouse: function() {
22354         Roo.dd.DragSource.superclass.alignElWithMouse.apply(this, arguments);
22355         this.proxy.sync();
22356     },
22357
22358     // private
22359     onDragOver : function(e, id){
22360         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
22361         if(this.beforeDragOver(target, e, id) !== false){
22362             if(target.isNotifyTarget){
22363                 var status = target.notifyOver(this, e, this.dragData);
22364                 this.proxy.setStatus(status);
22365             }
22366
22367             if(this.afterDragOver){
22368                 /**
22369                  * An empty function by default, but provided so that you can perform a custom action
22370                  * while the dragged item is over the drop target by providing an implementation.
22371                  * @param {Roo.dd.DragDrop} target The drop target
22372                  * @param {Event} e The event object
22373                  * @param {String} id The id of the dragged element
22374                  * @method afterDragOver
22375                  */
22376                 this.afterDragOver(target, e, id);
22377             }
22378         }
22379     },
22380
22381     /**
22382      * An empty function by default, but provided so that you can perform a custom action
22383      * while the dragged item is over the drop target and optionally cancel the onDragOver.
22384      * @param {Roo.dd.DragDrop} target The drop target
22385      * @param {Event} e The event object
22386      * @param {String} id The id of the dragged element
22387      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
22388      */
22389     beforeDragOver : function(target, e, id){
22390         return true;
22391     },
22392
22393     // private
22394     onDragOut : function(e, id){
22395         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
22396         if(this.beforeDragOut(target, e, id) !== false){
22397             if(target.isNotifyTarget){
22398                 target.notifyOut(this, e, this.dragData);
22399             }
22400             this.proxy.reset();
22401             if(this.afterDragOut){
22402                 /**
22403                  * An empty function by default, but provided so that you can perform a custom action
22404                  * after the dragged item is dragged out of the target without dropping.
22405                  * @param {Roo.dd.DragDrop} target The drop target
22406                  * @param {Event} e The event object
22407                  * @param {String} id The id of the dragged element
22408                  * @method afterDragOut
22409                  */
22410                 this.afterDragOut(target, e, id);
22411             }
22412         }
22413         this.cachedTarget = null;
22414     },
22415
22416     /**
22417      * An empty function by default, but provided so that you can perform a custom action before the dragged
22418      * item is dragged out of the target without dropping, and optionally cancel the onDragOut.
22419      * @param {Roo.dd.DragDrop} target The drop target
22420      * @param {Event} e The event object
22421      * @param {String} id The id of the dragged element
22422      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
22423      */
22424     beforeDragOut : function(target, e, id){
22425         return true;
22426     },
22427     
22428     // private
22429     onDragDrop : function(e, id){
22430         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
22431         if(this.beforeDragDrop(target, e, id) !== false){
22432             if(target.isNotifyTarget){
22433                 if(target.notifyDrop(this, e, this.dragData)){ // valid drop?
22434                     this.onValidDrop(target, e, id);
22435                 }else{
22436                     this.onInvalidDrop(target, e, id);
22437                 }
22438             }else{
22439                 this.onValidDrop(target, e, id);
22440             }
22441             
22442             if(this.afterDragDrop){
22443                 /**
22444                  * An empty function by default, but provided so that you can perform a custom action
22445                  * after a valid drag drop has occurred by providing an implementation.
22446                  * @param {Roo.dd.DragDrop} target The drop target
22447                  * @param {Event} e The event object
22448                  * @param {String} id The id of the dropped element
22449                  * @method afterDragDrop
22450                  */
22451                 this.afterDragDrop(target, e, id);
22452             }
22453         }
22454         delete this.cachedTarget;
22455     },
22456
22457     /**
22458      * An empty function by default, but provided so that you can perform a custom action before the dragged
22459      * item is dropped onto the target and optionally cancel the onDragDrop.
22460      * @param {Roo.dd.DragDrop} target The drop target
22461      * @param {Event} e The event object
22462      * @param {String} id The id of the dragged element
22463      * @return {Boolean} isValid True if the drag drop event is valid, else false to cancel
22464      */
22465     beforeDragDrop : function(target, e, id){
22466         return true;
22467     },
22468
22469     // private
22470     onValidDrop : function(target, e, id){
22471         this.hideProxy();
22472         if(this.afterValidDrop){
22473             /**
22474              * An empty function by default, but provided so that you can perform a custom action
22475              * after a valid drop has occurred by providing an implementation.
22476              * @param {Object} target The target DD 
22477              * @param {Event} e The event object
22478              * @param {String} id The id of the dropped element
22479              * @method afterInvalidDrop
22480              */
22481             this.afterValidDrop(target, e, id);
22482         }
22483     },
22484
22485     // private
22486     getRepairXY : function(e, data){
22487         return this.el.getXY();  
22488     },
22489
22490     // private
22491     onInvalidDrop : function(target, e, id){
22492         this.beforeInvalidDrop(target, e, id);
22493         if(this.cachedTarget){
22494             if(this.cachedTarget.isNotifyTarget){
22495                 this.cachedTarget.notifyOut(this, e, this.dragData);
22496             }
22497             this.cacheTarget = null;
22498         }
22499         this.proxy.repair(this.getRepairXY(e, this.dragData), this.afterRepair, this);
22500
22501         if(this.afterInvalidDrop){
22502             /**
22503              * An empty function by default, but provided so that you can perform a custom action
22504              * after an invalid drop has occurred by providing an implementation.
22505              * @param {Event} e The event object
22506              * @param {String} id The id of the dropped element
22507              * @method afterInvalidDrop
22508              */
22509             this.afterInvalidDrop(e, id);
22510         }
22511     },
22512
22513     // private
22514     afterRepair : function(){
22515         if(Roo.enableFx){
22516             this.el.highlight(this.hlColor || "c3daf9");
22517         }
22518         this.dragging = false;
22519     },
22520
22521     /**
22522      * An empty function by default, but provided so that you can perform a custom action after an invalid
22523      * drop has occurred.
22524      * @param {Roo.dd.DragDrop} target The drop target
22525      * @param {Event} e The event object
22526      * @param {String} id The id of the dragged element
22527      * @return {Boolean} isValid True if the invalid drop should proceed, else false to cancel
22528      */
22529     beforeInvalidDrop : function(target, e, id){
22530         return true;
22531     },
22532
22533     // private
22534     handleMouseDown : function(e){
22535         if(this.dragging) {
22536             return;
22537         }
22538         var data = this.getDragData(e);
22539         if(data && this.onBeforeDrag(data, e) !== false){
22540             this.dragData = data;
22541             this.proxy.stop();
22542             Roo.dd.DragSource.superclass.handleMouseDown.apply(this, arguments);
22543         } 
22544     },
22545
22546     /**
22547      * An empty function by default, but provided so that you can perform a custom action before the initial
22548      * drag event begins and optionally cancel it.
22549      * @param {Object} data An object containing arbitrary data to be shared with drop targets
22550      * @param {Event} e The event object
22551      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
22552      */
22553     onBeforeDrag : function(data, e){
22554         return true;
22555     },
22556
22557     /**
22558      * An empty function by default, but provided so that you can perform a custom action once the initial
22559      * drag event has begun.  The drag cannot be canceled from this function.
22560      * @param {Number} x The x position of the click on the dragged object
22561      * @param {Number} y The y position of the click on the dragged object
22562      */
22563     onStartDrag : Roo.emptyFn,
22564
22565     // private - YUI override
22566     startDrag : function(x, y){
22567         this.proxy.reset();
22568         this.dragging = true;
22569         this.proxy.update("");
22570         this.onInitDrag(x, y);
22571         this.proxy.show();
22572     },
22573
22574     // private
22575     onInitDrag : function(x, y){
22576         var clone = this.el.dom.cloneNode(true);
22577         clone.id = Roo.id(); // prevent duplicate ids
22578         this.proxy.update(clone);
22579         this.onStartDrag(x, y);
22580         return true;
22581     },
22582
22583     /**
22584      * Returns the drag source's underlying {@link Roo.dd.StatusProxy}
22585      * @return {Roo.dd.StatusProxy} proxy The StatusProxy
22586      */
22587     getProxy : function(){
22588         return this.proxy;  
22589     },
22590
22591     /**
22592      * Hides the drag source's {@link Roo.dd.StatusProxy}
22593      */
22594     hideProxy : function(){
22595         this.proxy.hide();  
22596         this.proxy.reset(true);
22597         this.dragging = false;
22598     },
22599
22600     // private
22601     triggerCacheRefresh : function(){
22602         Roo.dd.DDM.refreshCache(this.groups);
22603     },
22604
22605     // private - override to prevent hiding
22606     b4EndDrag: function(e) {
22607     },
22608
22609     // private - override to prevent moving
22610     endDrag : function(e){
22611         this.onEndDrag(this.dragData, e);
22612     },
22613
22614     // private
22615     onEndDrag : function(data, e){
22616     },
22617     
22618     // private - pin to cursor
22619     autoOffset : function(x, y) {
22620         this.setDelta(-12, -20);
22621     }    
22622 });/*
22623  * Based on:
22624  * Ext JS Library 1.1.1
22625  * Copyright(c) 2006-2007, Ext JS, LLC.
22626  *
22627  * Originally Released Under LGPL - original licence link has changed is not relivant.
22628  *
22629  * Fork - LGPL
22630  * <script type="text/javascript">
22631  */
22632
22633
22634 /**
22635  * @class Roo.dd.DropTarget
22636  * @extends Roo.dd.DDTarget
22637  * A simple class that provides the basic implementation needed to make any element a drop target that can have
22638  * draggable items dropped onto it.  The drop has no effect until an implementation of notifyDrop is provided.
22639  * @constructor
22640  * @param {String/HTMLElement/Element} el The container element
22641  * @param {Object} config
22642  */
22643 Roo.dd.DropTarget = function(el, config){
22644     this.el = Roo.get(el);
22645     
22646     var listeners = false; ;
22647     if (config && config.listeners) {
22648         listeners= config.listeners;
22649         delete config.listeners;
22650     }
22651     Roo.apply(this, config);
22652     
22653     if(this.containerScroll){
22654         Roo.dd.ScrollManager.register(this.el);
22655     }
22656     this.addEvents( {
22657          /**
22658          * @scope Roo.dd.DropTarget
22659          */
22660          
22661          /**
22662          * @event enter
22663          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the source is now over the
22664          * target.  This default implementation adds the CSS class specified by overClass (if any) to the drop element
22665          * and returns the dropAllowed config value.  This method should be overridden if drop validation is required.
22666          * 
22667          * IMPORTANT : it should set  this.valid to true|false
22668          * 
22669          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
22670          * @param {Event} e The event
22671          * @param {Object} data An object containing arbitrary data supplied by the drag source
22672          */
22673         "enter" : true,
22674         
22675          /**
22676          * @event over
22677          * The function a {@link Roo.dd.DragSource} calls continuously while it is being dragged over the target.
22678          * This method will be called on every mouse movement while the drag source is over the drop target.
22679          * This default implementation simply returns the dropAllowed config value.
22680          * 
22681          * IMPORTANT : it should set  this.valid to true|false
22682          * 
22683          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
22684          * @param {Event} e The event
22685          * @param {Object} data An object containing arbitrary data supplied by the drag source
22686          
22687          */
22688         "over" : true,
22689         /**
22690          * @event out
22691          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the source has been dragged
22692          * out of the target without dropping.  This default implementation simply removes the CSS class specified by
22693          * overClass (if any) from the drop element.
22694          * 
22695          * 
22696          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
22697          * @param {Event} e The event
22698          * @param {Object} data An object containing arbitrary data supplied by the drag source
22699          */
22700          "out" : true,
22701          
22702         /**
22703          * @event drop
22704          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the dragged item has
22705          * been dropped on it.  This method has no default implementation and returns false, so you must provide an
22706          * implementation that does something to process the drop event and returns true so that the drag source's
22707          * repair action does not run.
22708          * 
22709          * IMPORTANT : it should set this.success
22710          * 
22711          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
22712          * @param {Event} e The event
22713          * @param {Object} data An object containing arbitrary data supplied by the drag source
22714         */
22715          "drop" : true
22716     });
22717             
22718      
22719     Roo.dd.DropTarget.superclass.constructor.call(  this, 
22720         this.el.dom, 
22721         this.ddGroup || this.group,
22722         {
22723             isTarget: true,
22724             listeners : listeners || {} 
22725            
22726         
22727         }
22728     );
22729
22730 };
22731
22732 Roo.extend(Roo.dd.DropTarget, Roo.dd.DDTarget, {
22733     /**
22734      * @cfg {String} overClass
22735      * The CSS class applied to the drop target element while the drag source is over it (defaults to "").
22736      */
22737      /**
22738      * @cfg {String} ddGroup
22739      * The drag drop group to handle drop events for
22740      */
22741      
22742     /**
22743      * @cfg {String} dropAllowed
22744      * The CSS class returned to the drag source when drop is allowed (defaults to "x-dd-drop-ok").
22745      */
22746     dropAllowed : "x-dd-drop-ok",
22747     /**
22748      * @cfg {String} dropNotAllowed
22749      * The CSS class returned to the drag source when drop is not allowed (defaults to "x-dd-drop-nodrop").
22750      */
22751     dropNotAllowed : "x-dd-drop-nodrop",
22752     /**
22753      * @cfg {boolean} success
22754      * set this after drop listener.. 
22755      */
22756     success : false,
22757     /**
22758      * @cfg {boolean|String} valid true/false or string (ok-add/ok-sub/ok/nodrop)
22759      * if the drop point is valid for over/enter..
22760      */
22761     valid : false,
22762     // private
22763     isTarget : true,
22764
22765     // private
22766     isNotifyTarget : true,
22767     
22768     /**
22769      * @hide
22770      */
22771     notifyEnter : function(dd, e, data)
22772     {
22773         this.valid = true;
22774         this.fireEvent('enter', dd, e, data);
22775         if(this.overClass){
22776             this.el.addClass(this.overClass);
22777         }
22778         return typeof(this.valid) == 'string' ? 'x-dd-drop-' + this.valid : (
22779             this.valid ? this.dropAllowed : this.dropNotAllowed
22780         );
22781     },
22782
22783     /**
22784      * @hide
22785      */
22786     notifyOver : function(dd, e, data)
22787     {
22788         this.valid = true;
22789         this.fireEvent('over', dd, e, data);
22790         return typeof(this.valid) == 'string' ? 'x-dd-drop-' + this.valid : (
22791             this.valid ? this.dropAllowed : this.dropNotAllowed
22792         );
22793     },
22794
22795     /**
22796      * @hide
22797      */
22798     notifyOut : function(dd, e, data)
22799     {
22800         this.fireEvent('out', dd, e, data);
22801         if(this.overClass){
22802             this.el.removeClass(this.overClass);
22803         }
22804     },
22805
22806     /**
22807      * @hide
22808      */
22809     notifyDrop : function(dd, e, data)
22810     {
22811         this.success = false;
22812         this.fireEvent('drop', dd, e, data);
22813         return this.success;
22814     }
22815 });/*
22816  * Based on:
22817  * Ext JS Library 1.1.1
22818  * Copyright(c) 2006-2007, Ext JS, LLC.
22819  *
22820  * Originally Released Under LGPL - original licence link has changed is not relivant.
22821  *
22822  * Fork - LGPL
22823  * <script type="text/javascript">
22824  */
22825
22826
22827 /**
22828  * @class Roo.dd.DragZone
22829  * @extends Roo.dd.DragSource
22830  * This class provides a container DD instance that proxies for multiple child node sources.<br />
22831  * By default, this class requires that draggable child nodes are registered with {@link Roo.dd.Registry}.
22832  * @constructor
22833  * @param {String/HTMLElement/Element} el The container element
22834  * @param {Object} config
22835  */
22836 Roo.dd.DragZone = function(el, config){
22837     Roo.dd.DragZone.superclass.constructor.call(this, el, config);
22838     if(this.containerScroll){
22839         Roo.dd.ScrollManager.register(this.el);
22840     }
22841 };
22842
22843 Roo.extend(Roo.dd.DragZone, Roo.dd.DragSource, {
22844     /**
22845      * @cfg {Boolean} containerScroll True to register this container with the Scrollmanager
22846      * for auto scrolling during drag operations.
22847      */
22848     /**
22849      * @cfg {String} hlColor The color to use when visually highlighting the drag source in the afterRepair
22850      * method after a failed drop (defaults to "c3daf9" - light blue)
22851      */
22852
22853     /**
22854      * Called when a mousedown occurs in this container. Looks in {@link Roo.dd.Registry}
22855      * for a valid target to drag based on the mouse down. Override this method
22856      * to provide your own lookup logic (e.g. finding a child by class name). Make sure your returned
22857      * object has a "ddel" attribute (with an HTML Element) for other functions to work.
22858      * @param {EventObject} e The mouse down event
22859      * @return {Object} The dragData
22860      */
22861     getDragData : function(e){
22862         return Roo.dd.Registry.getHandleFromEvent(e);
22863     },
22864     
22865     /**
22866      * Called once drag threshold has been reached to initialize the proxy element. By default, it clones the
22867      * this.dragData.ddel
22868      * @param {Number} x The x position of the click on the dragged object
22869      * @param {Number} y The y position of the click on the dragged object
22870      * @return {Boolean} true to continue the drag, false to cancel
22871      */
22872     onInitDrag : function(x, y){
22873         this.proxy.update(this.dragData.ddel.cloneNode(true));
22874         this.onStartDrag(x, y);
22875         return true;
22876     },
22877     
22878     /**
22879      * Called after a repair of an invalid drop. By default, highlights this.dragData.ddel 
22880      */
22881     afterRepair : function(){
22882         if(Roo.enableFx){
22883             Roo.Element.fly(this.dragData.ddel).highlight(this.hlColor || "c3daf9");
22884         }
22885         this.dragging = false;
22886     },
22887
22888     /**
22889      * Called before a repair of an invalid drop to get the XY to animate to. By default returns
22890      * the XY of this.dragData.ddel
22891      * @param {EventObject} e The mouse up event
22892      * @return {Array} The xy location (e.g. [100, 200])
22893      */
22894     getRepairXY : function(e){
22895         return Roo.Element.fly(this.dragData.ddel).getXY();  
22896     }
22897 });/*
22898  * Based on:
22899  * Ext JS Library 1.1.1
22900  * Copyright(c) 2006-2007, Ext JS, LLC.
22901  *
22902  * Originally Released Under LGPL - original licence link has changed is not relivant.
22903  *
22904  * Fork - LGPL
22905  * <script type="text/javascript">
22906  */
22907 /**
22908  * @class Roo.dd.DropZone
22909  * @extends Roo.dd.DropTarget
22910  * This class provides a container DD instance that proxies for multiple child node targets.<br />
22911  * By default, this class requires that child nodes accepting drop are registered with {@link Roo.dd.Registry}.
22912  * @constructor
22913  * @param {String/HTMLElement/Element} el The container element
22914  * @param {Object} config
22915  */
22916 Roo.dd.DropZone = function(el, config){
22917     Roo.dd.DropZone.superclass.constructor.call(this, el, config);
22918 };
22919
22920 Roo.extend(Roo.dd.DropZone, Roo.dd.DropTarget, {
22921     /**
22922      * Returns a custom data object associated with the DOM node that is the target of the event.  By default
22923      * this looks up the event target in the {@link Roo.dd.Registry}, although you can override this method to
22924      * provide your own custom lookup.
22925      * @param {Event} e The event
22926      * @return {Object} data The custom data
22927      */
22928     getTargetFromEvent : function(e){
22929         return Roo.dd.Registry.getTargetFromEvent(e);
22930     },
22931
22932     /**
22933      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has entered a drop node
22934      * that it has registered.  This method has no default implementation and should be overridden to provide
22935      * node-specific processing if necessary.
22936      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from 
22937      * {@link #getTargetFromEvent} for this node)
22938      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22939      * @param {Event} e The event
22940      * @param {Object} data An object containing arbitrary data supplied by the drag source
22941      */
22942     onNodeEnter : function(n, dd, e, data){
22943         
22944     },
22945
22946     /**
22947      * Called internally while the DropZone determines that a {@link Roo.dd.DragSource} is over a drop node
22948      * that it has registered.  The default implementation returns this.dropNotAllowed, so it should be
22949      * overridden to provide the proper feedback.
22950      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
22951      * {@link #getTargetFromEvent} for this node)
22952      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22953      * @param {Event} e The event
22954      * @param {Object} data An object containing arbitrary data supplied by the drag source
22955      * @return {String} status The CSS class that communicates the drop status back to the source so that the
22956      * underlying {@link Roo.dd.StatusProxy} can be updated
22957      */
22958     onNodeOver : function(n, dd, e, data){
22959         return this.dropAllowed;
22960     },
22961
22962     /**
22963      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dragged out of
22964      * the drop node without dropping.  This method has no default implementation and should be overridden to provide
22965      * node-specific processing if necessary.
22966      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
22967      * {@link #getTargetFromEvent} for this node)
22968      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22969      * @param {Event} e The event
22970      * @param {Object} data An object containing arbitrary data supplied by the drag source
22971      */
22972     onNodeOut : function(n, dd, e, data){
22973         
22974     },
22975
22976     /**
22977      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dropped onto
22978      * the drop node.  The default implementation returns false, so it should be overridden to provide the
22979      * appropriate processing of the drop event and return true so that the drag source's repair action does not run.
22980      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
22981      * {@link #getTargetFromEvent} for this node)
22982      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22983      * @param {Event} e The event
22984      * @param {Object} data An object containing arbitrary data supplied by the drag source
22985      * @return {Boolean} True if the drop was valid, else false
22986      */
22987     onNodeDrop : function(n, dd, e, data){
22988         return false;
22989     },
22990
22991     /**
22992      * Called internally while the DropZone determines that a {@link Roo.dd.DragSource} is being dragged over it,
22993      * but not over any of its registered drop nodes.  The default implementation returns this.dropNotAllowed, so
22994      * it should be overridden to provide the proper feedback if necessary.
22995      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22996      * @param {Event} e The event
22997      * @param {Object} data An object containing arbitrary data supplied by the drag source
22998      * @return {String} status The CSS class that communicates the drop status back to the source so that the
22999      * underlying {@link Roo.dd.StatusProxy} can be updated
23000      */
23001     onContainerOver : function(dd, e, data){
23002         return this.dropNotAllowed;
23003     },
23004
23005     /**
23006      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dropped on it,
23007      * but not on any of its registered drop nodes.  The default implementation returns false, so it should be
23008      * overridden to provide the appropriate processing of the drop event if you need the drop zone itself to
23009      * be able to accept drops.  It should return true when valid so that the drag source's repair action does not run.
23010      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
23011      * @param {Event} e The event
23012      * @param {Object} data An object containing arbitrary data supplied by the drag source
23013      * @return {Boolean} True if the drop was valid, else false
23014      */
23015     onContainerDrop : function(dd, e, data){
23016         return false;
23017     },
23018
23019     /**
23020      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the source is now over
23021      * the zone.  The default implementation returns this.dropNotAllowed and expects that only registered drop
23022      * nodes can process drag drop operations, so if you need the drop zone itself to be able to process drops
23023      * you should override this method and provide a custom implementation.
23024      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
23025      * @param {Event} e The event
23026      * @param {Object} data An object containing arbitrary data supplied by the drag source
23027      * @return {String} status The CSS class that communicates the drop status back to the source so that the
23028      * underlying {@link Roo.dd.StatusProxy} can be updated
23029      */
23030     notifyEnter : function(dd, e, data){
23031         return this.dropNotAllowed;
23032     },
23033
23034     /**
23035      * The function a {@link Roo.dd.DragSource} calls continuously while it is being dragged over the drop zone.
23036      * This method will be called on every mouse movement while the drag source is over the drop zone.
23037      * It will call {@link #onNodeOver} while the drag source is over a registered node, and will also automatically
23038      * delegate to the appropriate node-specific methods as necessary when the drag source enters and exits
23039      * registered nodes ({@link #onNodeEnter}, {@link #onNodeOut}). If the drag source is not currently over a
23040      * registered node, it will call {@link #onContainerOver}.
23041      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
23042      * @param {Event} e The event
23043      * @param {Object} data An object containing arbitrary data supplied by the drag source
23044      * @return {String} status The CSS class that communicates the drop status back to the source so that the
23045      * underlying {@link Roo.dd.StatusProxy} can be updated
23046      */
23047     notifyOver : function(dd, e, data){
23048         var n = this.getTargetFromEvent(e);
23049         if(!n){ // not over valid drop target
23050             if(this.lastOverNode){
23051                 this.onNodeOut(this.lastOverNode, dd, e, data);
23052                 this.lastOverNode = null;
23053             }
23054             return this.onContainerOver(dd, e, data);
23055         }
23056         if(this.lastOverNode != n){
23057             if(this.lastOverNode){
23058                 this.onNodeOut(this.lastOverNode, dd, e, data);
23059             }
23060             this.onNodeEnter(n, dd, e, data);
23061             this.lastOverNode = n;
23062         }
23063         return this.onNodeOver(n, dd, e, data);
23064     },
23065
23066     /**
23067      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the source has been dragged
23068      * out of the zone without dropping.  If the drag source is currently over a registered node, the notification
23069      * will be delegated to {@link #onNodeOut} for node-specific handling, otherwise it will be ignored.
23070      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
23071      * @param {Event} e The event
23072      * @param {Object} data An object containing arbitrary data supplied by the drag zone
23073      */
23074     notifyOut : function(dd, e, data){
23075         if(this.lastOverNode){
23076             this.onNodeOut(this.lastOverNode, dd, e, data);
23077             this.lastOverNode = null;
23078         }
23079     },
23080
23081     /**
23082      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the dragged item has
23083      * been dropped on it.  The drag zone will look up the target node based on the event passed in, and if there
23084      * is a node registered for that event, it will delegate to {@link #onNodeDrop} for node-specific handling,
23085      * otherwise it will call {@link #onContainerDrop}.
23086      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
23087      * @param {Event} e The event
23088      * @param {Object} data An object containing arbitrary data supplied by the drag source
23089      * @return {Boolean} True if the drop was valid, else false
23090      */
23091     notifyDrop : function(dd, e, data){
23092         if(this.lastOverNode){
23093             this.onNodeOut(this.lastOverNode, dd, e, data);
23094             this.lastOverNode = null;
23095         }
23096         var n = this.getTargetFromEvent(e);
23097         return n ?
23098             this.onNodeDrop(n, dd, e, data) :
23099             this.onContainerDrop(dd, e, data);
23100     },
23101
23102     // private
23103     triggerCacheRefresh : function(){
23104         Roo.dd.DDM.refreshCache(this.groups);
23105     }  
23106 });/*
23107  * Based on:
23108  * Ext JS Library 1.1.1
23109  * Copyright(c) 2006-2007, Ext JS, LLC.
23110  *
23111  * Originally Released Under LGPL - original licence link has changed is not relivant.
23112  *
23113  * Fork - LGPL
23114  * <script type="text/javascript">
23115  */
23116
23117
23118 /**
23119  * @class Roo.data.SortTypes
23120  * @singleton
23121  * Defines the default sorting (casting?) comparison functions used when sorting data.
23122  */
23123 Roo.data.SortTypes = {
23124     /**
23125      * Default sort that does nothing
23126      * @param {Mixed} s The value being converted
23127      * @return {Mixed} The comparison value
23128      */
23129     none : function(s){
23130         return s;
23131     },
23132     
23133     /**
23134      * The regular expression used to strip tags
23135      * @type {RegExp}
23136      * @property
23137      */
23138     stripTagsRE : /<\/?[^>]+>/gi,
23139     
23140     /**
23141      * Strips all HTML tags to sort on text only
23142      * @param {Mixed} s The value being converted
23143      * @return {String} The comparison value
23144      */
23145     asText : function(s){
23146         return String(s).replace(this.stripTagsRE, "");
23147     },
23148     
23149     /**
23150      * Strips all HTML tags to sort on text only - Case insensitive
23151      * @param {Mixed} s The value being converted
23152      * @return {String} The comparison value
23153      */
23154     asUCText : function(s){
23155         return String(s).toUpperCase().replace(this.stripTagsRE, "");
23156     },
23157     
23158     /**
23159      * Case insensitive string
23160      * @param {Mixed} s The value being converted
23161      * @return {String} The comparison value
23162      */
23163     asUCString : function(s) {
23164         return String(s).toUpperCase();
23165     },
23166     
23167     /**
23168      * Date sorting
23169      * @param {Mixed} s The value being converted
23170      * @return {Number} The comparison value
23171      */
23172     asDate : function(s) {
23173         if(!s){
23174             return 0;
23175         }
23176         if(s instanceof Date){
23177             return s.getTime();
23178         }
23179         return Date.parse(String(s));
23180     },
23181     
23182     /**
23183      * Float sorting
23184      * @param {Mixed} s The value being converted
23185      * @return {Float} The comparison value
23186      */
23187     asFloat : function(s) {
23188         var val = parseFloat(String(s).replace(/,/g, ""));
23189         if(isNaN(val)) {
23190             val = 0;
23191         }
23192         return val;
23193     },
23194     
23195     /**
23196      * Integer sorting
23197      * @param {Mixed} s The value being converted
23198      * @return {Number} The comparison value
23199      */
23200     asInt : function(s) {
23201         var val = parseInt(String(s).replace(/,/g, ""));
23202         if(isNaN(val)) {
23203             val = 0;
23204         }
23205         return val;
23206     }
23207 };/*
23208  * Based on:
23209  * Ext JS Library 1.1.1
23210  * Copyright(c) 2006-2007, Ext JS, LLC.
23211  *
23212  * Originally Released Under LGPL - original licence link has changed is not relivant.
23213  *
23214  * Fork - LGPL
23215  * <script type="text/javascript">
23216  */
23217
23218 /**
23219 * @class Roo.data.Record
23220  * Instances of this class encapsulate both record <em>definition</em> information, and record
23221  * <em>value</em> information for use in {@link Roo.data.Store} objects, or any code which needs
23222  * to access Records cached in an {@link Roo.data.Store} object.<br>
23223  * <p>
23224  * Constructors for this class are generated by passing an Array of field definition objects to {@link #create}.
23225  * Instances are usually only created by {@link Roo.data.Reader} implementations when processing unformatted data
23226  * objects.<br>
23227  * <p>
23228  * Record objects generated by this constructor inherit all the methods of Roo.data.Record listed below.
23229  * @constructor
23230  * This constructor should not be used to create Record objects. Instead, use the constructor generated by
23231  * {@link #create}. The parameters are the same.
23232  * @param {Array} data An associative Array of data values keyed by the field name.
23233  * @param {Object} id (Optional) The id of the record. This id should be unique, and is used by the
23234  * {@link Roo.data.Store} object which owns the Record to index its collection of Records. If
23235  * not specified an integer id is generated.
23236  */
23237 Roo.data.Record = function(data, id){
23238     this.id = (id || id === 0) ? id : ++Roo.data.Record.AUTO_ID;
23239     this.data = data;
23240 };
23241
23242 /**
23243  * Generate a constructor for a specific record layout.
23244  * @param {Array} o An Array of field definition objects which specify field names, and optionally,
23245  * data types, and a mapping for an {@link Roo.data.Reader} to extract the field's value from a data object.
23246  * Each field definition object may contain the following properties: <ul>
23247  * <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,
23248  * for example the <em>dataIndex</em> property in column definition objects passed to {@link Roo.grid.ColumnModel}</p></li>
23249  * <li><b>mapping</b> : String<p style="margin-left:1em">(Optional) A path specification for use by the {@link Roo.data.Reader} implementation
23250  * that is creating the Record to access the data value from the data object. If an {@link Roo.data.JsonReader}
23251  * is being used, then this is a string containing the javascript expression to reference the data relative to 
23252  * the record item's root. If an {@link Roo.data.XmlReader} is being used, this is an {@link Roo.DomQuery} path
23253  * to the data item relative to the record element. If the mapping expression is the same as the field name,
23254  * this may be omitted.</p></li>
23255  * <li><b>type</b> : String<p style="margin-left:1em">(Optional) The data type for conversion to displayable value. Possible values are
23256  * <ul><li>auto (Default, implies no conversion)</li>
23257  * <li>string</li>
23258  * <li>int</li>
23259  * <li>float</li>
23260  * <li>boolean</li>
23261  * <li>date</li></ul></p></li>
23262  * <li><b>sortType</b> : Mixed<p style="margin-left:1em">(Optional) A member of {@link Roo.data.SortTypes}.</p></li>
23263  * <li><b>sortDir</b> : String<p style="margin-left:1em">(Optional) Initial direction to sort. "ASC" or "DESC"</p></li>
23264  * <li><b>convert</b> : Function<p style="margin-left:1em">(Optional) A function which converts the value provided
23265  * by the Reader into an object that will be stored in the Record. It is passed the
23266  * following parameters:<ul>
23267  * <li><b>v</b> : Mixed<p style="margin-left:1em">The data value as read by the Reader.</p></li>
23268  * </ul></p></li>
23269  * <li><b>dateFormat</b> : String<p style="margin-left:1em">(Optional) A format String for the Date.parseDate function.</p></li>
23270  * </ul>
23271  * <br>usage:<br><pre><code>
23272 var TopicRecord = Roo.data.Record.create(
23273     {name: 'title', mapping: 'topic_title'},
23274     {name: 'author', mapping: 'username'},
23275     {name: 'totalPosts', mapping: 'topic_replies', type: 'int'},
23276     {name: 'lastPost', mapping: 'post_time', type: 'date'},
23277     {name: 'lastPoster', mapping: 'user2'},
23278     {name: 'excerpt', mapping: 'post_text'}
23279 );
23280
23281 var myNewRecord = new TopicRecord({
23282     title: 'Do my job please',
23283     author: 'noobie',
23284     totalPosts: 1,
23285     lastPost: new Date(),
23286     lastPoster: 'Animal',
23287     excerpt: 'No way dude!'
23288 });
23289 myStore.add(myNewRecord);
23290 </code></pre>
23291  * @method create
23292  * @static
23293  */
23294 Roo.data.Record.create = function(o){
23295     var f = function(){
23296         f.superclass.constructor.apply(this, arguments);
23297     };
23298     Roo.extend(f, Roo.data.Record);
23299     var p = f.prototype;
23300     p.fields = new Roo.util.MixedCollection(false, function(field){
23301         return field.name;
23302     });
23303     for(var i = 0, len = o.length; i < len; i++){
23304         p.fields.add(new Roo.data.Field(o[i]));
23305     }
23306     f.getField = function(name){
23307         return p.fields.get(name);  
23308     };
23309     return f;
23310 };
23311
23312 Roo.data.Record.AUTO_ID = 1000;
23313 Roo.data.Record.EDIT = 'edit';
23314 Roo.data.Record.REJECT = 'reject';
23315 Roo.data.Record.COMMIT = 'commit';
23316
23317 Roo.data.Record.prototype = {
23318     /**
23319      * Readonly flag - true if this record has been modified.
23320      * @type Boolean
23321      */
23322     dirty : false,
23323     editing : false,
23324     error: null,
23325     modified: null,
23326
23327     // private
23328     join : function(store){
23329         this.store = store;
23330     },
23331
23332     /**
23333      * Set the named field to the specified value.
23334      * @param {String} name The name of the field to set.
23335      * @param {Object} value The value to set the field to.
23336      */
23337     set : function(name, value){
23338         if(this.data[name] == value){
23339             return;
23340         }
23341         this.dirty = true;
23342         if(!this.modified){
23343             this.modified = {};
23344         }
23345         if(typeof this.modified[name] == 'undefined'){
23346             this.modified[name] = this.data[name];
23347         }
23348         this.data[name] = value;
23349         if(!this.editing && this.store){
23350             this.store.afterEdit(this);
23351         }       
23352     },
23353
23354     /**
23355      * Get the value of the named field.
23356      * @param {String} name The name of the field to get the value of.
23357      * @return {Object} The value of the field.
23358      */
23359     get : function(name){
23360         return this.data[name]; 
23361     },
23362
23363     // private
23364     beginEdit : function(){
23365         this.editing = true;
23366         this.modified = {}; 
23367     },
23368
23369     // private
23370     cancelEdit : function(){
23371         this.editing = false;
23372         delete this.modified;
23373     },
23374
23375     // private
23376     endEdit : function(){
23377         this.editing = false;
23378         if(this.dirty && this.store){
23379             this.store.afterEdit(this);
23380         }
23381     },
23382
23383     /**
23384      * Usually called by the {@link Roo.data.Store} which owns the Record.
23385      * Rejects all changes made to the Record since either creation, or the last commit operation.
23386      * Modified fields are reverted to their original values.
23387      * <p>
23388      * Developers should subscribe to the {@link Roo.data.Store#update} event to have their code notified
23389      * of reject operations.
23390      */
23391     reject : function(){
23392         var m = this.modified;
23393         for(var n in m){
23394             if(typeof m[n] != "function"){
23395                 this.data[n] = m[n];
23396             }
23397         }
23398         this.dirty = false;
23399         delete this.modified;
23400         this.editing = false;
23401         if(this.store){
23402             this.store.afterReject(this);
23403         }
23404     },
23405
23406     /**
23407      * Usually called by the {@link Roo.data.Store} which owns the Record.
23408      * Commits all changes made to the Record since either creation, or the last commit operation.
23409      * <p>
23410      * Developers should subscribe to the {@link Roo.data.Store#update} event to have their code notified
23411      * of commit operations.
23412      */
23413     commit : function(){
23414         this.dirty = false;
23415         delete this.modified;
23416         this.editing = false;
23417         if(this.store){
23418             this.store.afterCommit(this);
23419         }
23420     },
23421
23422     // private
23423     hasError : function(){
23424         return this.error != null;
23425     },
23426
23427     // private
23428     clearError : function(){
23429         this.error = null;
23430     },
23431
23432     /**
23433      * Creates a copy of this record.
23434      * @param {String} id (optional) A new record id if you don't want to use this record's id
23435      * @return {Record}
23436      */
23437     copy : function(newId) {
23438         return new this.constructor(Roo.apply({}, this.data), newId || this.id);
23439     }
23440 };/*
23441  * Based on:
23442  * Ext JS Library 1.1.1
23443  * Copyright(c) 2006-2007, Ext JS, LLC.
23444  *
23445  * Originally Released Under LGPL - original licence link has changed is not relivant.
23446  *
23447  * Fork - LGPL
23448  * <script type="text/javascript">
23449  */
23450
23451
23452
23453 /**
23454  * @class Roo.data.Store
23455  * @extends Roo.util.Observable
23456  * The Store class encapsulates a client side cache of {@link Roo.data.Record} objects which provide input data
23457  * for widgets such as the Roo.grid.Grid, or the Roo.form.ComboBox.<br>
23458  * <p>
23459  * 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
23460  * has no knowledge of the format of the data returned by the Proxy.<br>
23461  * <p>
23462  * A Store object uses its configured implementation of {@link Roo.data.DataReader} to create {@link Roo.data.Record}
23463  * instances from the data object. These records are cached and made available through accessor functions.
23464  * @constructor
23465  * Creates a new Store.
23466  * @param {Object} config A config object containing the objects needed for the Store to access data,
23467  * and read the data into Records.
23468  */
23469 Roo.data.Store = function(config){
23470     this.data = new Roo.util.MixedCollection(false);
23471     this.data.getKey = function(o){
23472         return o.id;
23473     };
23474     this.baseParams = {};
23475     // private
23476     this.paramNames = {
23477         "start" : "start",
23478         "limit" : "limit",
23479         "sort" : "sort",
23480         "dir" : "dir",
23481         "multisort" : "_multisort"
23482     };
23483
23484     if(config && config.data){
23485         this.inlineData = config.data;
23486         delete config.data;
23487     }
23488
23489     Roo.apply(this, config);
23490     
23491     if(this.reader){ // reader passed
23492         this.reader = Roo.factory(this.reader, Roo.data);
23493         this.reader.xmodule = this.xmodule || false;
23494         if(!this.recordType){
23495             this.recordType = this.reader.recordType;
23496         }
23497         if(this.reader.onMetaChange){
23498             this.reader.onMetaChange = this.onMetaChange.createDelegate(this);
23499         }
23500     }
23501
23502     if(this.recordType){
23503         this.fields = this.recordType.prototype.fields;
23504     }
23505     this.modified = [];
23506
23507     this.addEvents({
23508         /**
23509          * @event datachanged
23510          * Fires when the data cache has changed, and a widget which is using this Store
23511          * as a Record cache should refresh its view.
23512          * @param {Store} this
23513          */
23514         datachanged : true,
23515         /**
23516          * @event metachange
23517          * Fires when this store's reader provides new metadata (fields). This is currently only support for JsonReaders.
23518          * @param {Store} this
23519          * @param {Object} meta The JSON metadata
23520          */
23521         metachange : true,
23522         /**
23523          * @event add
23524          * Fires when Records have been added to the Store
23525          * @param {Store} this
23526          * @param {Roo.data.Record[]} records The array of Records added
23527          * @param {Number} index The index at which the record(s) were added
23528          */
23529         add : true,
23530         /**
23531          * @event remove
23532          * Fires when a Record has been removed from the Store
23533          * @param {Store} this
23534          * @param {Roo.data.Record} record The Record that was removed
23535          * @param {Number} index The index at which the record was removed
23536          */
23537         remove : true,
23538         /**
23539          * @event update
23540          * Fires when a Record has been updated
23541          * @param {Store} this
23542          * @param {Roo.data.Record} record The Record that was updated
23543          * @param {String} operation The update operation being performed.  Value may be one of:
23544          * <pre><code>
23545  Roo.data.Record.EDIT
23546  Roo.data.Record.REJECT
23547  Roo.data.Record.COMMIT
23548          * </code></pre>
23549          */
23550         update : true,
23551         /**
23552          * @event clear
23553          * Fires when the data cache has been cleared.
23554          * @param {Store} this
23555          */
23556         clear : true,
23557         /**
23558          * @event beforeload
23559          * Fires before a request is made for a new data object.  If the beforeload handler returns false
23560          * the load action will be canceled.
23561          * @param {Store} this
23562          * @param {Object} options The loading options that were specified (see {@link #load} for details)
23563          */
23564         beforeload : true,
23565         /**
23566          * @event beforeloadadd
23567          * Fires after a new set of Records has been loaded.
23568          * @param {Store} this
23569          * @param {Roo.data.Record[]} records The Records that were loaded
23570          * @param {Object} options The loading options that were specified (see {@link #load} for details)
23571          */
23572         beforeloadadd : true,
23573         /**
23574          * @event load
23575          * Fires after a new set of Records has been loaded, before they are added to the store.
23576          * @param {Store} this
23577          * @param {Roo.data.Record[]} records The Records that were loaded
23578          * @param {Object} options The loading options that were specified (see {@link #load} for details)
23579          * @params {Object} return from reader
23580          */
23581         load : true,
23582         /**
23583          * @event loadexception
23584          * Fires if an exception occurs in the Proxy during loading.
23585          * Called with the signature of the Proxy's "loadexception" event.
23586          * If you return Json { data: [] , success: false, .... } then this will be thrown with the following args
23587          * 
23588          * @param {Proxy} 
23589          * @param {Object} return from JsonData.reader() - success, totalRecords, records
23590          * @param {Object} load options 
23591          * @param {Object} jsonData from your request (normally this contains the Exception)
23592          */
23593         loadexception : true
23594     });
23595     
23596     if(this.proxy){
23597         this.proxy = Roo.factory(this.proxy, Roo.data);
23598         this.proxy.xmodule = this.xmodule || false;
23599         this.relayEvents(this.proxy,  ["loadexception"]);
23600     }
23601     this.sortToggle = {};
23602     this.sortOrder = []; // array of order of sorting - updated by grid if multisort is enabled.
23603
23604     Roo.data.Store.superclass.constructor.call(this);
23605
23606     if(this.inlineData){
23607         this.loadData(this.inlineData);
23608         delete this.inlineData;
23609     }
23610 };
23611
23612 Roo.extend(Roo.data.Store, Roo.util.Observable, {
23613      /**
23614     * @cfg {boolean} isLocal   flag if data is locally available (and can be always looked up
23615     * without a remote query - used by combo/forms at present.
23616     */
23617     
23618     /**
23619     * @cfg {Roo.data.DataProxy} proxy The Proxy object which provides access to a data object.
23620     */
23621     /**
23622     * @cfg {Array} data Inline data to be loaded when the store is initialized.
23623     */
23624     /**
23625     * @cfg {Roo.data.Reader} reader The Reader object which processes the data object and returns
23626     * an Array of Roo.data.record objects which are cached keyed by their <em>id</em> property.
23627     */
23628     /**
23629     * @cfg {Object} baseParams An object containing properties which are to be sent as parameters
23630     * on any HTTP request
23631     */
23632     /**
23633     * @cfg {Object} sortInfo A config object in the format: {field: "fieldName", direction: "ASC|DESC"}
23634     */
23635     /**
23636     * @cfg {Boolean} multiSort enable multi column sorting (sort is based on the order of columns, remote only at present)
23637     */
23638     multiSort: false,
23639     /**
23640     * @cfg {boolean} remoteSort True if sorting is to be handled by requesting the Proxy to provide a refreshed
23641     * version of the data object in sorted order, as opposed to sorting the Record cache in place (defaults to false).
23642     */
23643     remoteSort : false,
23644
23645     /**
23646     * @cfg {boolean} pruneModifiedRecords True to clear all modified record information each time the store is
23647      * loaded or when a record is removed. (defaults to false).
23648     */
23649     pruneModifiedRecords : false,
23650
23651     // private
23652     lastOptions : null,
23653
23654     /**
23655      * Add Records to the Store and fires the add event.
23656      * @param {Roo.data.Record[]} records An Array of Roo.data.Record objects to add to the cache.
23657      */
23658     add : function(records){
23659         records = [].concat(records);
23660         for(var i = 0, len = records.length; i < len; i++){
23661             records[i].join(this);
23662         }
23663         var index = this.data.length;
23664         this.data.addAll(records);
23665         this.fireEvent("add", this, records, index);
23666     },
23667
23668     /**
23669      * Remove a Record from the Store and fires the remove event.
23670      * @param {Ext.data.Record} record The Roo.data.Record object to remove from the cache.
23671      */
23672     remove : function(record){
23673         var index = this.data.indexOf(record);
23674         this.data.removeAt(index);
23675  
23676         if(this.pruneModifiedRecords){
23677             this.modified.remove(record);
23678         }
23679         this.fireEvent("remove", this, record, index);
23680     },
23681
23682     /**
23683      * Remove all Records from the Store and fires the clear event.
23684      */
23685     removeAll : function(){
23686         this.data.clear();
23687         if(this.pruneModifiedRecords){
23688             this.modified = [];
23689         }
23690         this.fireEvent("clear", this);
23691     },
23692
23693     /**
23694      * Inserts Records to the Store at the given index and fires the add event.
23695      * @param {Number} index The start index at which to insert the passed Records.
23696      * @param {Roo.data.Record[]} records An Array of Roo.data.Record objects to add to the cache.
23697      */
23698     insert : function(index, records){
23699         records = [].concat(records);
23700         for(var i = 0, len = records.length; i < len; i++){
23701             this.data.insert(index, records[i]);
23702             records[i].join(this);
23703         }
23704         this.fireEvent("add", this, records, index);
23705     },
23706
23707     /**
23708      * Get the index within the cache of the passed Record.
23709      * @param {Roo.data.Record} record The Roo.data.Record object to to find.
23710      * @return {Number} The index of the passed Record. Returns -1 if not found.
23711      */
23712     indexOf : function(record){
23713         return this.data.indexOf(record);
23714     },
23715
23716     /**
23717      * Get the index within the cache of the Record with the passed id.
23718      * @param {String} id The id of the Record to find.
23719      * @return {Number} The index of the Record. Returns -1 if not found.
23720      */
23721     indexOfId : function(id){
23722         return this.data.indexOfKey(id);
23723     },
23724
23725     /**
23726      * Get the Record with the specified id.
23727      * @param {String} id The id of the Record to find.
23728      * @return {Roo.data.Record} The Record with the passed id. Returns undefined if not found.
23729      */
23730     getById : function(id){
23731         return this.data.key(id);
23732     },
23733
23734     /**
23735      * Get the Record at the specified index.
23736      * @param {Number} index The index of the Record to find.
23737      * @return {Roo.data.Record} The Record at the passed index. Returns undefined if not found.
23738      */
23739     getAt : function(index){
23740         return this.data.itemAt(index);
23741     },
23742
23743     /**
23744      * Returns a range of Records between specified indices.
23745      * @param {Number} startIndex (optional) The starting index (defaults to 0)
23746      * @param {Number} endIndex (optional) The ending index (defaults to the last Record in the Store)
23747      * @return {Roo.data.Record[]} An array of Records
23748      */
23749     getRange : function(start, end){
23750         return this.data.getRange(start, end);
23751     },
23752
23753     // private
23754     storeOptions : function(o){
23755         o = Roo.apply({}, o);
23756         delete o.callback;
23757         delete o.scope;
23758         this.lastOptions = o;
23759     },
23760
23761     /**
23762      * Loads the Record cache from the configured Proxy using the configured Reader.
23763      * <p>
23764      * If using remote paging, then the first load call must specify the <em>start</em>
23765      * and <em>limit</em> properties in the options.params property to establish the initial
23766      * position within the dataset, and the number of Records to cache on each read from the Proxy.
23767      * <p>
23768      * <strong>It is important to note that for remote data sources, loading is asynchronous,
23769      * and this call will return before the new data has been loaded. Perform any post-processing
23770      * in a callback function, or in a "load" event handler.</strong>
23771      * <p>
23772      * @param {Object} options An object containing properties which control loading options:<ul>
23773      * <li>params {Object} An object containing properties to pass as HTTP parameters to a remote data source.</li>
23774      * <li>callback {Function} A function to be called after the Records have been loaded. The callback is
23775      * passed the following arguments:<ul>
23776      * <li>r : Roo.data.Record[]</li>
23777      * <li>options: Options object from the load call</li>
23778      * <li>success: Boolean success indicator</li></ul></li>
23779      * <li>scope {Object} Scope with which to call the callback (defaults to the Store object)</li>
23780      * <li>add {Boolean} indicator to append loaded records rather than replace the current cache.</li>
23781      * </ul>
23782      */
23783     load : function(options){
23784         options = options || {};
23785         if(this.fireEvent("beforeload", this, options) !== false){
23786             this.storeOptions(options);
23787             var p = Roo.apply(options.params || {}, this.baseParams);
23788             // if meta was not loaded from remote source.. try requesting it.
23789             if (!this.reader.metaFromRemote) {
23790                 p._requestMeta = 1;
23791             }
23792             if(this.sortInfo && this.remoteSort){
23793                 var pn = this.paramNames;
23794                 p[pn["sort"]] = this.sortInfo.field;
23795                 p[pn["dir"]] = this.sortInfo.direction;
23796             }
23797             if (this.multiSort) {
23798                 var pn = this.paramNames;
23799                 p[pn["multisort"]] = Roo.encode( { sort : this.sortToggle, order: this.sortOrder });
23800             }
23801             
23802             this.proxy.load(p, this.reader, this.loadRecords, this, options);
23803         }
23804     },
23805
23806     /**
23807      * Reloads the Record cache from the configured Proxy using the configured Reader and
23808      * the options from the last load operation performed.
23809      * @param {Object} options (optional) An object containing properties which may override the options
23810      * used in the last load operation. See {@link #load} for details (defaults to null, in which case
23811      * the most recently used options are reused).
23812      */
23813     reload : function(options){
23814         this.load(Roo.applyIf(options||{}, this.lastOptions));
23815     },
23816
23817     // private
23818     // Called as a callback by the Reader during a load operation.
23819     loadRecords : function(o, options, success){
23820         if(!o || success === false){
23821             if(success !== false){
23822                 this.fireEvent("load", this, [], options, o);
23823             }
23824             if(options.callback){
23825                 options.callback.call(options.scope || this, [], options, false);
23826             }
23827             return;
23828         }
23829         // if data returned failure - throw an exception.
23830         if (o.success === false) {
23831             // show a message if no listener is registered.
23832             if (!this.hasListener('loadexception') && typeof(o.raw.errorMsg) != 'undefined') {
23833                     Roo.MessageBox.alert("Error loading",o.raw.errorMsg);
23834             }
23835             // loadmask wil be hooked into this..
23836             this.fireEvent("loadexception", this, o, options, o.raw.errorMsg);
23837             return;
23838         }
23839         var r = o.records, t = o.totalRecords || r.length;
23840         
23841         this.fireEvent("beforeloadadd", this, r, options, o);
23842         
23843         if(!options || options.add !== true){
23844             if(this.pruneModifiedRecords){
23845                 this.modified = [];
23846             }
23847             for(var i = 0, len = r.length; i < len; i++){
23848                 r[i].join(this);
23849             }
23850             if(this.snapshot){
23851                 this.data = this.snapshot;
23852                 delete this.snapshot;
23853             }
23854             this.data.clear();
23855             this.data.addAll(r);
23856             this.totalLength = t;
23857             this.applySort();
23858             this.fireEvent("datachanged", this);
23859         }else{
23860             this.totalLength = Math.max(t, this.data.length+r.length);
23861             this.add(r);
23862         }
23863         
23864         if(this.parent && !Roo.isIOS && !this.useNativeIOS && this.parent.emptyTitle.length) {
23865                 
23866             var e = new Roo.data.Record({});
23867
23868             e.set(this.parent.displayField, this.parent.emptyTitle);
23869             e.set(this.parent.valueField, '');
23870
23871             this.insert(0, e);
23872         }
23873             
23874         this.fireEvent("load", this, r, options, o);
23875         if(options.callback){
23876             options.callback.call(options.scope || this, r, options, true);
23877         }
23878     },
23879
23880
23881     /**
23882      * Loads data from a passed data block. A Reader which understands the format of the data
23883      * must have been configured in the constructor.
23884      * @param {Object} data The data block from which to read the Records.  The format of the data expected
23885      * is dependent on the type of Reader that is configured and should correspond to that Reader's readRecords parameter.
23886      * @param {Boolean} append (Optional) True to append the new Records rather than replace the existing cache.
23887      */
23888     loadData : function(o, append){
23889         var r = this.reader.readRecords(o);
23890         this.loadRecords(r, {add: append}, true);
23891     },
23892     
23893      /**
23894      * using 'cn' the nested child reader read the child array into it's child stores.
23895      * @param {Object} rec The record with a 'children array
23896      */
23897     loadDataFromChildren : function(rec)
23898     {
23899         this.loadData(this.reader.toLoadData(rec));
23900     },
23901     
23902
23903     /**
23904      * Gets the number of cached records.
23905      * <p>
23906      * <em>If using paging, this may not be the total size of the dataset. If the data object
23907      * used by the Reader contains the dataset size, then the getTotalCount() function returns
23908      * the data set size</em>
23909      */
23910     getCount : function(){
23911         return this.data.length || 0;
23912     },
23913
23914     /**
23915      * Gets the total number of records in the dataset as returned by the server.
23916      * <p>
23917      * <em>If using paging, for this to be accurate, the data object used by the Reader must contain
23918      * the dataset size</em>
23919      */
23920     getTotalCount : function(){
23921         return this.totalLength || 0;
23922     },
23923
23924     /**
23925      * Returns the sort state of the Store as an object with two properties:
23926      * <pre><code>
23927  field {String} The name of the field by which the Records are sorted
23928  direction {String} The sort order, "ASC" or "DESC"
23929      * </code></pre>
23930      */
23931     getSortState : function(){
23932         return this.sortInfo;
23933     },
23934
23935     // private
23936     applySort : function(){
23937         if(this.sortInfo && !this.remoteSort){
23938             var s = this.sortInfo, f = s.field;
23939             var st = this.fields.get(f).sortType;
23940             var fn = function(r1, r2){
23941                 var v1 = st(r1.data[f]), v2 = st(r2.data[f]);
23942                 return v1 > v2 ? 1 : (v1 < v2 ? -1 : 0);
23943             };
23944             this.data.sort(s.direction, fn);
23945             if(this.snapshot && this.snapshot != this.data){
23946                 this.snapshot.sort(s.direction, fn);
23947             }
23948         }
23949     },
23950
23951     /**
23952      * Sets the default sort column and order to be used by the next load operation.
23953      * @param {String} fieldName The name of the field to sort by.
23954      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
23955      */
23956     setDefaultSort : function(field, dir){
23957         this.sortInfo = {field: field, direction: dir ? dir.toUpperCase() : "ASC"};
23958     },
23959
23960     /**
23961      * Sort the Records.
23962      * If remote sorting is used, the sort is performed on the server, and the cache is
23963      * reloaded. If local sorting is used, the cache is sorted internally.
23964      * @param {String} fieldName The name of the field to sort by.
23965      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
23966      */
23967     sort : function(fieldName, dir){
23968         var f = this.fields.get(fieldName);
23969         if(!dir){
23970             this.sortToggle[f.name] = this.sortToggle[f.name] || f.sortDir;
23971             
23972             if(this.multiSort || (this.sortInfo && this.sortInfo.field == f.name) ){ // toggle sort dir
23973                 dir = (this.sortToggle[f.name] || "ASC").toggle("ASC", "DESC");
23974             }else{
23975                 dir = f.sortDir;
23976             }
23977         }
23978         this.sortToggle[f.name] = dir;
23979         this.sortInfo = {field: f.name, direction: dir};
23980         if(!this.remoteSort){
23981             this.applySort();
23982             this.fireEvent("datachanged", this);
23983         }else{
23984             this.load(this.lastOptions);
23985         }
23986     },
23987
23988     /**
23989      * Calls the specified function for each of the Records in the cache.
23990      * @param {Function} fn The function to call. The Record is passed as the first parameter.
23991      * Returning <em>false</em> aborts and exits the iteration.
23992      * @param {Object} scope (optional) The scope in which to call the function (defaults to the Record).
23993      */
23994     each : function(fn, scope){
23995         this.data.each(fn, scope);
23996     },
23997
23998     /**
23999      * Gets all records modified since the last commit.  Modified records are persisted across load operations
24000      * (e.g., during paging).
24001      * @return {Roo.data.Record[]} An array of Records containing outstanding modifications.
24002      */
24003     getModifiedRecords : function(){
24004         return this.modified;
24005     },
24006
24007     // private
24008     createFilterFn : function(property, value, anyMatch){
24009         if(!value.exec){ // not a regex
24010             value = String(value);
24011             if(value.length == 0){
24012                 return false;
24013             }
24014             value = new RegExp((anyMatch === true ? '' : '^') + Roo.escapeRe(value), "i");
24015         }
24016         return function(r){
24017             return value.test(r.data[property]);
24018         };
24019     },
24020
24021     /**
24022      * Sums the value of <i>property</i> for each record between start and end and returns the result.
24023      * @param {String} property A field on your records
24024      * @param {Number} start The record index to start at (defaults to 0)
24025      * @param {Number} end The last record index to include (defaults to length - 1)
24026      * @return {Number} The sum
24027      */
24028     sum : function(property, start, end){
24029         var rs = this.data.items, v = 0;
24030         start = start || 0;
24031         end = (end || end === 0) ? end : rs.length-1;
24032
24033         for(var i = start; i <= end; i++){
24034             v += (rs[i].data[property] || 0);
24035         }
24036         return v;
24037     },
24038
24039     /**
24040      * Filter the records by a specified property.
24041      * @param {String} field A field on your records
24042      * @param {String/RegExp} value Either a string that the field
24043      * should start with or a RegExp to test against the field
24044      * @param {Boolean} anyMatch True to match any part not just the beginning
24045      */
24046     filter : function(property, value, anyMatch){
24047         var fn = this.createFilterFn(property, value, anyMatch);
24048         return fn ? this.filterBy(fn) : this.clearFilter();
24049     },
24050
24051     /**
24052      * Filter by a function. The specified function will be called with each
24053      * record in this data source. If the function returns true the record is included,
24054      * otherwise it is filtered.
24055      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
24056      * @param {Object} scope (optional) The scope of the function (defaults to this)
24057      */
24058     filterBy : function(fn, scope){
24059         this.snapshot = this.snapshot || this.data;
24060         this.data = this.queryBy(fn, scope||this);
24061         this.fireEvent("datachanged", this);
24062     },
24063
24064     /**
24065      * Query the records by a specified property.
24066      * @param {String} field A field on your records
24067      * @param {String/RegExp} value Either a string that the field
24068      * should start with or a RegExp to test against the field
24069      * @param {Boolean} anyMatch True to match any part not just the beginning
24070      * @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
24071      */
24072     query : function(property, value, anyMatch){
24073         var fn = this.createFilterFn(property, value, anyMatch);
24074         return fn ? this.queryBy(fn) : this.data.clone();
24075     },
24076
24077     /**
24078      * Query by a function. The specified function will be called with each
24079      * record in this data source. If the function returns true the record is included
24080      * in the results.
24081      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
24082      * @param {Object} scope (optional) The scope of the function (defaults to this)
24083       @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
24084      **/
24085     queryBy : function(fn, scope){
24086         var data = this.snapshot || this.data;
24087         return data.filterBy(fn, scope||this);
24088     },
24089
24090     /**
24091      * Collects unique values for a particular dataIndex from this store.
24092      * @param {String} dataIndex The property to collect
24093      * @param {Boolean} allowNull (optional) Pass true to allow null, undefined or empty string values
24094      * @param {Boolean} bypassFilter (optional) Pass true to collect from all records, even ones which are filtered
24095      * @return {Array} An array of the unique values
24096      **/
24097     collect : function(dataIndex, allowNull, bypassFilter){
24098         var d = (bypassFilter === true && this.snapshot) ?
24099                 this.snapshot.items : this.data.items;
24100         var v, sv, r = [], l = {};
24101         for(var i = 0, len = d.length; i < len; i++){
24102             v = d[i].data[dataIndex];
24103             sv = String(v);
24104             if((allowNull || !Roo.isEmpty(v)) && !l[sv]){
24105                 l[sv] = true;
24106                 r[r.length] = v;
24107             }
24108         }
24109         return r;
24110     },
24111
24112     /**
24113      * Revert to a view of the Record cache with no filtering applied.
24114      * @param {Boolean} suppressEvent If true the filter is cleared silently without notifying listeners
24115      */
24116     clearFilter : function(suppressEvent){
24117         if(this.snapshot && this.snapshot != this.data){
24118             this.data = this.snapshot;
24119             delete this.snapshot;
24120             if(suppressEvent !== true){
24121                 this.fireEvent("datachanged", this);
24122             }
24123         }
24124     },
24125
24126     // private
24127     afterEdit : function(record){
24128         if(this.modified.indexOf(record) == -1){
24129             this.modified.push(record);
24130         }
24131         this.fireEvent("update", this, record, Roo.data.Record.EDIT);
24132     },
24133     
24134     // private
24135     afterReject : function(record){
24136         this.modified.remove(record);
24137         this.fireEvent("update", this, record, Roo.data.Record.REJECT);
24138     },
24139
24140     // private
24141     afterCommit : function(record){
24142         this.modified.remove(record);
24143         this.fireEvent("update", this, record, Roo.data.Record.COMMIT);
24144     },
24145
24146     /**
24147      * Commit all Records with outstanding changes. To handle updates for changes, subscribe to the
24148      * Store's "update" event, and perform updating when the third parameter is Roo.data.Record.COMMIT.
24149      */
24150     commitChanges : function(){
24151         var m = this.modified.slice(0);
24152         this.modified = [];
24153         for(var i = 0, len = m.length; i < len; i++){
24154             m[i].commit();
24155         }
24156     },
24157
24158     /**
24159      * Cancel outstanding changes on all changed records.
24160      */
24161     rejectChanges : function(){
24162         var m = this.modified.slice(0);
24163         this.modified = [];
24164         for(var i = 0, len = m.length; i < len; i++){
24165             m[i].reject();
24166         }
24167     },
24168
24169     onMetaChange : function(meta, rtype, o){
24170         this.recordType = rtype;
24171         this.fields = rtype.prototype.fields;
24172         delete this.snapshot;
24173         this.sortInfo = meta.sortInfo || this.sortInfo;
24174         this.modified = [];
24175         this.fireEvent('metachange', this, this.reader.meta);
24176     },
24177     
24178     moveIndex : function(data, type)
24179     {
24180         var index = this.indexOf(data);
24181         
24182         var newIndex = index + type;
24183         
24184         this.remove(data);
24185         
24186         this.insert(newIndex, data);
24187         
24188     }
24189 });/*
24190  * Based on:
24191  * Ext JS Library 1.1.1
24192  * Copyright(c) 2006-2007, Ext JS, LLC.
24193  *
24194  * Originally Released Under LGPL - original licence link has changed is not relivant.
24195  *
24196  * Fork - LGPL
24197  * <script type="text/javascript">
24198  */
24199
24200 /**
24201  * @class Roo.data.SimpleStore
24202  * @extends Roo.data.Store
24203  * Small helper class to make creating Stores from Array data easier.
24204  * @cfg {Number} id The array index of the record id. Leave blank to auto generate ids.
24205  * @cfg {Array} fields An array of field definition objects, or field name strings.
24206  * @cfg {Object} an existing reader (eg. copied from another store)
24207  * @cfg {Array} data The multi-dimensional array of data
24208  * @constructor
24209  * @param {Object} config
24210  */
24211 Roo.data.SimpleStore = function(config)
24212 {
24213     Roo.data.SimpleStore.superclass.constructor.call(this, {
24214         isLocal : true,
24215         reader: typeof(config.reader) != 'undefined' ? config.reader : new Roo.data.ArrayReader({
24216                 id: config.id
24217             },
24218             Roo.data.Record.create(config.fields)
24219         ),
24220         proxy : new Roo.data.MemoryProxy(config.data)
24221     });
24222     this.load();
24223 };
24224 Roo.extend(Roo.data.SimpleStore, Roo.data.Store);/*
24225  * Based on:
24226  * Ext JS Library 1.1.1
24227  * Copyright(c) 2006-2007, Ext JS, LLC.
24228  *
24229  * Originally Released Under LGPL - original licence link has changed is not relivant.
24230  *
24231  * Fork - LGPL
24232  * <script type="text/javascript">
24233  */
24234
24235 /**
24236 /**
24237  * @extends Roo.data.Store
24238  * @class Roo.data.JsonStore
24239  * Small helper class to make creating Stores for JSON data easier. <br/>
24240 <pre><code>
24241 var store = new Roo.data.JsonStore({
24242     url: 'get-images.php',
24243     root: 'images',
24244     fields: ['name', 'url', {name:'size', type: 'float'}, {name:'lastmod', type:'date'}]
24245 });
24246 </code></pre>
24247  * <b>Note: Although they are not listed, this class inherits all of the config options of Store,
24248  * JsonReader and HttpProxy (unless inline data is provided).</b>
24249  * @cfg {Array} fields An array of field definition objects, or field name strings.
24250  * @constructor
24251  * @param {Object} config
24252  */
24253 Roo.data.JsonStore = function(c){
24254     Roo.data.JsonStore.superclass.constructor.call(this, Roo.apply(c, {
24255         proxy: !c.data ? new Roo.data.HttpProxy({url: c.url}) : undefined,
24256         reader: new Roo.data.JsonReader(c, c.fields)
24257     }));
24258 };
24259 Roo.extend(Roo.data.JsonStore, Roo.data.Store);/*
24260  * Based on:
24261  * Ext JS Library 1.1.1
24262  * Copyright(c) 2006-2007, Ext JS, LLC.
24263  *
24264  * Originally Released Under LGPL - original licence link has changed is not relivant.
24265  *
24266  * Fork - LGPL
24267  * <script type="text/javascript">
24268  */
24269
24270  
24271 Roo.data.Field = function(config){
24272     if(typeof config == "string"){
24273         config = {name: config};
24274     }
24275     Roo.apply(this, config);
24276     
24277     if(!this.type){
24278         this.type = "auto";
24279     }
24280     
24281     var st = Roo.data.SortTypes;
24282     // named sortTypes are supported, here we look them up
24283     if(typeof this.sortType == "string"){
24284         this.sortType = st[this.sortType];
24285     }
24286     
24287     // set default sortType for strings and dates
24288     if(!this.sortType){
24289         switch(this.type){
24290             case "string":
24291                 this.sortType = st.asUCString;
24292                 break;
24293             case "date":
24294                 this.sortType = st.asDate;
24295                 break;
24296             default:
24297                 this.sortType = st.none;
24298         }
24299     }
24300
24301     // define once
24302     var stripRe = /[\$,%]/g;
24303
24304     // prebuilt conversion function for this field, instead of
24305     // switching every time we're reading a value
24306     if(!this.convert){
24307         var cv, dateFormat = this.dateFormat;
24308         switch(this.type){
24309             case "":
24310             case "auto":
24311             case undefined:
24312                 cv = function(v){ return v; };
24313                 break;
24314             case "string":
24315                 cv = function(v){ return (v === undefined || v === null) ? '' : String(v); };
24316                 break;
24317             case "int":
24318                 cv = function(v){
24319                     return v !== undefined && v !== null && v !== '' ?
24320                            parseInt(String(v).replace(stripRe, ""), 10) : '';
24321                     };
24322                 break;
24323             case "float":
24324                 cv = function(v){
24325                     return v !== undefined && v !== null && v !== '' ?
24326                            parseFloat(String(v).replace(stripRe, ""), 10) : ''; 
24327                     };
24328                 break;
24329             case "bool":
24330             case "boolean":
24331                 cv = function(v){ return v === true || v === "true" || v == 1; };
24332                 break;
24333             case "date":
24334                 cv = function(v){
24335                     if(!v){
24336                         return '';
24337                     }
24338                     if(v instanceof Date){
24339                         return v;
24340                     }
24341                     if(dateFormat){
24342                         if(dateFormat == "timestamp"){
24343                             return new Date(v*1000);
24344                         }
24345                         return Date.parseDate(v, dateFormat);
24346                     }
24347                     var parsed = Date.parse(v);
24348                     return parsed ? new Date(parsed) : null;
24349                 };
24350              break;
24351             
24352         }
24353         this.convert = cv;
24354     }
24355 };
24356
24357 Roo.data.Field.prototype = {
24358     dateFormat: null,
24359     defaultValue: "",
24360     mapping: null,
24361     sortType : null,
24362     sortDir : "ASC"
24363 };/*
24364  * Based on:
24365  * Ext JS Library 1.1.1
24366  * Copyright(c) 2006-2007, Ext JS, LLC.
24367  *
24368  * Originally Released Under LGPL - original licence link has changed is not relivant.
24369  *
24370  * Fork - LGPL
24371  * <script type="text/javascript">
24372  */
24373  
24374 // Base class for reading structured data from a data source.  This class is intended to be
24375 // extended (see ArrayReader, JsonReader and XmlReader) and should not be created directly.
24376
24377 /**
24378  * @class Roo.data.DataReader
24379  * Base class for reading structured data from a data source.  This class is intended to be
24380  * extended (see {Roo.data.ArrayReader}, {Roo.data.JsonReader} and {Roo.data.XmlReader}) and should not be created directly.
24381  */
24382
24383 Roo.data.DataReader = function(meta, recordType){
24384     
24385     this.meta = meta;
24386     
24387     this.recordType = recordType instanceof Array ? 
24388         Roo.data.Record.create(recordType) : recordType;
24389 };
24390
24391 Roo.data.DataReader.prototype = {
24392     
24393     
24394     readerType : 'Data',
24395      /**
24396      * Create an empty record
24397      * @param {Object} data (optional) - overlay some values
24398      * @return {Roo.data.Record} record created.
24399      */
24400     newRow :  function(d) {
24401         var da =  {};
24402         this.recordType.prototype.fields.each(function(c) {
24403             switch( c.type) {
24404                 case 'int' : da[c.name] = 0; break;
24405                 case 'date' : da[c.name] = new Date(); break;
24406                 case 'float' : da[c.name] = 0.0; break;
24407                 case 'boolean' : da[c.name] = false; break;
24408                 default : da[c.name] = ""; break;
24409             }
24410             
24411         });
24412         return new this.recordType(Roo.apply(da, d));
24413     }
24414     
24415     
24416 };/*
24417  * Based on:
24418  * Ext JS Library 1.1.1
24419  * Copyright(c) 2006-2007, Ext JS, LLC.
24420  *
24421  * Originally Released Under LGPL - original licence link has changed is not relivant.
24422  *
24423  * Fork - LGPL
24424  * <script type="text/javascript">
24425  */
24426
24427 /**
24428  * @class Roo.data.DataProxy
24429  * @extends Roo.data.Observable
24430  * This class is an abstract base class for implementations which provide retrieval of
24431  * unformatted data objects.<br>
24432  * <p>
24433  * DataProxy implementations are usually used in conjunction with an implementation of Roo.data.DataReader
24434  * (of the appropriate type which knows how to parse the data object) to provide a block of
24435  * {@link Roo.data.Records} to an {@link Roo.data.Store}.<br>
24436  * <p>
24437  * Custom implementations must implement the load method as described in
24438  * {@link Roo.data.HttpProxy#load}.
24439  */
24440 Roo.data.DataProxy = function(){
24441     this.addEvents({
24442         /**
24443          * @event beforeload
24444          * Fires before a network request is made to retrieve a data object.
24445          * @param {Object} This DataProxy object.
24446          * @param {Object} params The params parameter to the load function.
24447          */
24448         beforeload : true,
24449         /**
24450          * @event load
24451          * Fires before the load method's callback is called.
24452          * @param {Object} This DataProxy object.
24453          * @param {Object} o The data object.
24454          * @param {Object} arg The callback argument object passed to the load function.
24455          */
24456         load : true,
24457         /**
24458          * @event loadexception
24459          * Fires if an Exception occurs during data retrieval.
24460          * @param {Object} This DataProxy object.
24461          * @param {Object} o The data object.
24462          * @param {Object} arg The callback argument object passed to the load function.
24463          * @param {Object} e The Exception.
24464          */
24465         loadexception : true
24466     });
24467     Roo.data.DataProxy.superclass.constructor.call(this);
24468 };
24469
24470 Roo.extend(Roo.data.DataProxy, Roo.util.Observable);
24471
24472     /**
24473      * @cfg {void} listeners (Not available) Constructor blocks listeners from being set
24474      */
24475 /*
24476  * Based on:
24477  * Ext JS Library 1.1.1
24478  * Copyright(c) 2006-2007, Ext JS, LLC.
24479  *
24480  * Originally Released Under LGPL - original licence link has changed is not relivant.
24481  *
24482  * Fork - LGPL
24483  * <script type="text/javascript">
24484  */
24485 /**
24486  * @class Roo.data.MemoryProxy
24487  * An implementation of Roo.data.DataProxy that simply passes the data specified in its constructor
24488  * to the Reader when its load method is called.
24489  * @constructor
24490  * @param {Object} data The data object which the Reader uses to construct a block of Roo.data.Records.
24491  */
24492 Roo.data.MemoryProxy = function(data){
24493     if (data.data) {
24494         data = data.data;
24495     }
24496     Roo.data.MemoryProxy.superclass.constructor.call(this);
24497     this.data = data;
24498 };
24499
24500 Roo.extend(Roo.data.MemoryProxy, Roo.data.DataProxy, {
24501     
24502     /**
24503      * Load data from the requested source (in this case an in-memory
24504      * data object passed to the constructor), read the data object into
24505      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
24506      * process that block using the passed callback.
24507      * @param {Object} params This parameter is not used by the MemoryProxy class.
24508      * @param {Roo.data.DataReader} reader The Reader object which converts the data
24509      * object into a block of Roo.data.Records.
24510      * @param {Function} callback The function into which to pass the block of Roo.data.records.
24511      * The function must be passed <ul>
24512      * <li>The Record block object</li>
24513      * <li>The "arg" argument from the load function</li>
24514      * <li>A boolean success indicator</li>
24515      * </ul>
24516      * @param {Object} scope The scope in which to call the callback
24517      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
24518      */
24519     load : function(params, reader, callback, scope, arg){
24520         params = params || {};
24521         var result;
24522         try {
24523             result = reader.readRecords(params.data ? params.data :this.data);
24524         }catch(e){
24525             this.fireEvent("loadexception", this, arg, null, e);
24526             callback.call(scope, null, arg, false);
24527             return;
24528         }
24529         callback.call(scope, result, arg, true);
24530     },
24531     
24532     // private
24533     update : function(params, records){
24534         
24535     }
24536 });/*
24537  * Based on:
24538  * Ext JS Library 1.1.1
24539  * Copyright(c) 2006-2007, Ext JS, LLC.
24540  *
24541  * Originally Released Under LGPL - original licence link has changed is not relivant.
24542  *
24543  * Fork - LGPL
24544  * <script type="text/javascript">
24545  */
24546 /**
24547  * @class Roo.data.HttpProxy
24548  * @extends Roo.data.DataProxy
24549  * An implementation of {@link Roo.data.DataProxy} that reads a data object from an {@link Roo.data.Connection} object
24550  * configured to reference a certain URL.<br><br>
24551  * <p>
24552  * <em>Note that this class cannot be used to retrieve data from a domain other than the domain
24553  * from which the running page was served.<br><br>
24554  * <p>
24555  * For cross-domain access to remote data, use an {@link Roo.data.ScriptTagProxy}.</em><br><br>
24556  * <p>
24557  * Be aware that to enable the browser to parse an XML document, the server must set
24558  * the Content-Type header in the HTTP response to "text/xml".
24559  * @constructor
24560  * @param {Object} conn Connection config options to add to each request (e.g. {url: 'foo.php'} or
24561  * an {@link Roo.data.Connection} object.  If a Connection config is passed, the singleton {@link Roo.Ajax} object
24562  * will be used to make the request.
24563  */
24564 Roo.data.HttpProxy = function(conn){
24565     Roo.data.HttpProxy.superclass.constructor.call(this);
24566     // is conn a conn config or a real conn?
24567     this.conn = conn;
24568     this.useAjax = !conn || !conn.events;
24569   
24570 };
24571
24572 Roo.extend(Roo.data.HttpProxy, Roo.data.DataProxy, {
24573     // thse are take from connection...
24574     
24575     /**
24576      * @cfg {String} url (Optional) The default URL to be used for requests to the server. (defaults to undefined)
24577      */
24578     /**
24579      * @cfg {Object} extraParams (Optional) An object containing properties which are used as
24580      * extra parameters to each request made by this object. (defaults to undefined)
24581      */
24582     /**
24583      * @cfg {Object} defaultHeaders (Optional) An object containing request headers which are added
24584      *  to each request made by this object. (defaults to undefined)
24585      */
24586     /**
24587      * @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)
24588      */
24589     /**
24590      * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
24591      */
24592      /**
24593      * @cfg {Boolean} autoAbort (Optional) Whether this request should abort any pending requests. (defaults to false)
24594      * @type Boolean
24595      */
24596   
24597
24598     /**
24599      * @cfg {Boolean} disableCaching (Optional) True to add a unique cache-buster param to GET requests. (defaults to true)
24600      * @type Boolean
24601      */
24602     /**
24603      * Return the {@link Roo.data.Connection} object being used by this Proxy.
24604      * @return {Connection} The Connection object. This object may be used to subscribe to events on
24605      * a finer-grained basis than the DataProxy events.
24606      */
24607     getConnection : function(){
24608         return this.useAjax ? Roo.Ajax : this.conn;
24609     },
24610
24611     /**
24612      * Load data from the configured {@link Roo.data.Connection}, read the data object into
24613      * a block of Roo.data.Records using the passed {@link Roo.data.DataReader} implementation, and
24614      * process that block using the passed callback.
24615      * @param {Object} params An object containing properties which are to be used as HTTP parameters
24616      * for the request to the remote server.
24617      * @param {Roo.data.DataReader} reader The Reader object which converts the data
24618      * object into a block of Roo.data.Records.
24619      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
24620      * The function must be passed <ul>
24621      * <li>The Record block object</li>
24622      * <li>The "arg" argument from the load function</li>
24623      * <li>A boolean success indicator</li>
24624      * </ul>
24625      * @param {Object} scope The scope in which to call the callback
24626      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
24627      */
24628     load : function(params, reader, callback, scope, arg){
24629         if(this.fireEvent("beforeload", this, params) !== false){
24630             var  o = {
24631                 params : params || {},
24632                 request: {
24633                     callback : callback,
24634                     scope : scope,
24635                     arg : arg
24636                 },
24637                 reader: reader,
24638                 callback : this.loadResponse,
24639                 scope: this
24640             };
24641             if(this.useAjax){
24642                 Roo.applyIf(o, this.conn);
24643                 if(this.activeRequest){
24644                     Roo.Ajax.abort(this.activeRequest);
24645                 }
24646                 this.activeRequest = Roo.Ajax.request(o);
24647             }else{
24648                 this.conn.request(o);
24649             }
24650         }else{
24651             callback.call(scope||this, null, arg, false);
24652         }
24653     },
24654
24655     // private
24656     loadResponse : function(o, success, response){
24657         delete this.activeRequest;
24658         if(!success){
24659             this.fireEvent("loadexception", this, o, response);
24660             o.request.callback.call(o.request.scope, null, o.request.arg, false);
24661             return;
24662         }
24663         var result;
24664         try {
24665             result = o.reader.read(response);
24666         }catch(e){
24667             this.fireEvent("loadexception", this, o, response, e);
24668             o.request.callback.call(o.request.scope, null, o.request.arg, false);
24669             return;
24670         }
24671         
24672         this.fireEvent("load", this, o, o.request.arg);
24673         o.request.callback.call(o.request.scope, result, o.request.arg, true);
24674     },
24675
24676     // private
24677     update : function(dataSet){
24678
24679     },
24680
24681     // private
24682     updateResponse : function(dataSet){
24683
24684     }
24685 });/*
24686  * Based on:
24687  * Ext JS Library 1.1.1
24688  * Copyright(c) 2006-2007, Ext JS, LLC.
24689  *
24690  * Originally Released Under LGPL - original licence link has changed is not relivant.
24691  *
24692  * Fork - LGPL
24693  * <script type="text/javascript">
24694  */
24695
24696 /**
24697  * @class Roo.data.ScriptTagProxy
24698  * An implementation of Roo.data.DataProxy that reads a data object from a URL which may be in a domain
24699  * other than the originating domain of the running page.<br><br>
24700  * <p>
24701  * <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
24702  * of the running page, you must use this class, rather than DataProxy.</em><br><br>
24703  * <p>
24704  * The content passed back from a server resource requested by a ScriptTagProxy is executable JavaScript
24705  * source code that is used as the source inside a &lt;script> tag.<br><br>
24706  * <p>
24707  * In order for the browser to process the returned data, the server must wrap the data object
24708  * with a call to a callback function, the name of which is passed as a parameter by the ScriptTagProxy.
24709  * Below is a Java example for a servlet which returns data for either a ScriptTagProxy, or an HttpProxy
24710  * depending on whether the callback name was passed:
24711  * <p>
24712  * <pre><code>
24713 boolean scriptTag = false;
24714 String cb = request.getParameter("callback");
24715 if (cb != null) {
24716     scriptTag = true;
24717     response.setContentType("text/javascript");
24718 } else {
24719     response.setContentType("application/x-json");
24720 }
24721 Writer out = response.getWriter();
24722 if (scriptTag) {
24723     out.write(cb + "(");
24724 }
24725 out.print(dataBlock.toJsonString());
24726 if (scriptTag) {
24727     out.write(");");
24728 }
24729 </pre></code>
24730  *
24731  * @constructor
24732  * @param {Object} config A configuration object.
24733  */
24734 Roo.data.ScriptTagProxy = function(config){
24735     Roo.data.ScriptTagProxy.superclass.constructor.call(this);
24736     Roo.apply(this, config);
24737     this.head = document.getElementsByTagName("head")[0];
24738 };
24739
24740 Roo.data.ScriptTagProxy.TRANS_ID = 1000;
24741
24742 Roo.extend(Roo.data.ScriptTagProxy, Roo.data.DataProxy, {
24743     /**
24744      * @cfg {String} url The URL from which to request the data object.
24745      */
24746     /**
24747      * @cfg {Number} timeout (Optional) The number of milliseconds to wait for a response. Defaults to 30 seconds.
24748      */
24749     timeout : 30000,
24750     /**
24751      * @cfg {String} callbackParam (Optional) The name of the parameter to pass to the server which tells
24752      * the server the name of the callback function set up by the load call to process the returned data object.
24753      * Defaults to "callback".<p>The server-side processing must read this parameter value, and generate
24754      * javascript output which calls this named function passing the data object as its only parameter.
24755      */
24756     callbackParam : "callback",
24757     /**
24758      *  @cfg {Boolean} nocache (Optional) Defaults to true. Disable cacheing by adding a unique parameter
24759      * name to the request.
24760      */
24761     nocache : true,
24762
24763     /**
24764      * Load data from the configured URL, read the data object into
24765      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
24766      * process that block using the passed callback.
24767      * @param {Object} params An object containing properties which are to be used as HTTP parameters
24768      * for the request to the remote server.
24769      * @param {Roo.data.DataReader} reader The Reader object which converts the data
24770      * object into a block of Roo.data.Records.
24771      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
24772      * The function must be passed <ul>
24773      * <li>The Record block object</li>
24774      * <li>The "arg" argument from the load function</li>
24775      * <li>A boolean success indicator</li>
24776      * </ul>
24777      * @param {Object} scope The scope in which to call the callback
24778      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
24779      */
24780     load : function(params, reader, callback, scope, arg){
24781         if(this.fireEvent("beforeload", this, params) !== false){
24782
24783             var p = Roo.urlEncode(Roo.apply(params, this.extraParams));
24784
24785             var url = this.url;
24786             url += (url.indexOf("?") != -1 ? "&" : "?") + p;
24787             if(this.nocache){
24788                 url += "&_dc=" + (new Date().getTime());
24789             }
24790             var transId = ++Roo.data.ScriptTagProxy.TRANS_ID;
24791             var trans = {
24792                 id : transId,
24793                 cb : "stcCallback"+transId,
24794                 scriptId : "stcScript"+transId,
24795                 params : params,
24796                 arg : arg,
24797                 url : url,
24798                 callback : callback,
24799                 scope : scope,
24800                 reader : reader
24801             };
24802             var conn = this;
24803
24804             window[trans.cb] = function(o){
24805                 conn.handleResponse(o, trans);
24806             };
24807
24808             url += String.format("&{0}={1}", this.callbackParam, trans.cb);
24809
24810             if(this.autoAbort !== false){
24811                 this.abort();
24812             }
24813
24814             trans.timeoutId = this.handleFailure.defer(this.timeout, this, [trans]);
24815
24816             var script = document.createElement("script");
24817             script.setAttribute("src", url);
24818             script.setAttribute("type", "text/javascript");
24819             script.setAttribute("id", trans.scriptId);
24820             this.head.appendChild(script);
24821
24822             this.trans = trans;
24823         }else{
24824             callback.call(scope||this, null, arg, false);
24825         }
24826     },
24827
24828     // private
24829     isLoading : function(){
24830         return this.trans ? true : false;
24831     },
24832
24833     /**
24834      * Abort the current server request.
24835      */
24836     abort : function(){
24837         if(this.isLoading()){
24838             this.destroyTrans(this.trans);
24839         }
24840     },
24841
24842     // private
24843     destroyTrans : function(trans, isLoaded){
24844         this.head.removeChild(document.getElementById(trans.scriptId));
24845         clearTimeout(trans.timeoutId);
24846         if(isLoaded){
24847             window[trans.cb] = undefined;
24848             try{
24849                 delete window[trans.cb];
24850             }catch(e){}
24851         }else{
24852             // if hasn't been loaded, wait for load to remove it to prevent script error
24853             window[trans.cb] = function(){
24854                 window[trans.cb] = undefined;
24855                 try{
24856                     delete window[trans.cb];
24857                 }catch(e){}
24858             };
24859         }
24860     },
24861
24862     // private
24863     handleResponse : function(o, trans){
24864         this.trans = false;
24865         this.destroyTrans(trans, true);
24866         var result;
24867         try {
24868             result = trans.reader.readRecords(o);
24869         }catch(e){
24870             this.fireEvent("loadexception", this, o, trans.arg, e);
24871             trans.callback.call(trans.scope||window, null, trans.arg, false);
24872             return;
24873         }
24874         this.fireEvent("load", this, o, trans.arg);
24875         trans.callback.call(trans.scope||window, result, trans.arg, true);
24876     },
24877
24878     // private
24879     handleFailure : function(trans){
24880         this.trans = false;
24881         this.destroyTrans(trans, false);
24882         this.fireEvent("loadexception", this, null, trans.arg);
24883         trans.callback.call(trans.scope||window, null, trans.arg, false);
24884     }
24885 });/*
24886  * Based on:
24887  * Ext JS Library 1.1.1
24888  * Copyright(c) 2006-2007, Ext JS, LLC.
24889  *
24890  * Originally Released Under LGPL - original licence link has changed is not relivant.
24891  *
24892  * Fork - LGPL
24893  * <script type="text/javascript">
24894  */
24895
24896 /**
24897  * @class Roo.data.JsonReader
24898  * @extends Roo.data.DataReader
24899  * Data reader class to create an Array of Roo.data.Record objects from a JSON response
24900  * based on mappings in a provided Roo.data.Record constructor.
24901  * 
24902  * The default behaviour of a store is to send ?_requestMeta=1, unless the class has recieved 'metaData' property
24903  * in the reply previously. 
24904  * 
24905  * <p>
24906  * Example code:
24907  * <pre><code>
24908 var RecordDef = Roo.data.Record.create([
24909     {name: 'name', mapping: 'name'},     // "mapping" property not needed if it's the same as "name"
24910     {name: 'occupation'}                 // This field will use "occupation" as the mapping.
24911 ]);
24912 var myReader = new Roo.data.JsonReader({
24913     totalProperty: "results",    // The property which contains the total dataset size (optional)
24914     root: "rows",                // The property which contains an Array of row objects
24915     id: "id"                     // The property within each row object that provides an ID for the record (optional)
24916 }, RecordDef);
24917 </code></pre>
24918  * <p>
24919  * This would consume a JSON file like this:
24920  * <pre><code>
24921 { 'results': 2, 'rows': [
24922     { 'id': 1, 'name': 'Bill', occupation: 'Gardener' },
24923     { 'id': 2, 'name': 'Ben', occupation: 'Horticulturalist' } ]
24924 }
24925 </code></pre>
24926  * @cfg {String} totalProperty Name of the property from which to retrieve the total number of records
24927  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
24928  * paged from the remote server.
24929  * @cfg {String} successProperty Name of the property from which to retrieve the success attribute used by forms.
24930  * @cfg {String} root name of the property which contains the Array of row objects.
24931  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
24932  * @cfg {Array} fields Array of field definition objects
24933  * @constructor
24934  * Create a new JsonReader
24935  * @param {Object} meta Metadata configuration options
24936  * @param {Object} recordType Either an Array of field definition objects,
24937  * or an {@link Roo.data.Record} object created using {@link Roo.data.Record#create}.
24938  */
24939 Roo.data.JsonReader = function(meta, recordType){
24940     
24941     meta = meta || {};
24942     // set some defaults:
24943     Roo.applyIf(meta, {
24944         totalProperty: 'total',
24945         successProperty : 'success',
24946         root : 'data',
24947         id : 'id'
24948     });
24949     
24950     Roo.data.JsonReader.superclass.constructor.call(this, meta, recordType||meta.fields);
24951 };
24952 Roo.extend(Roo.data.JsonReader, Roo.data.DataReader, {
24953     
24954     readerType : 'Json',
24955     
24956     /**
24957      * @prop {Boolean} metaFromRemote  - if the meta data was loaded from the remote source.
24958      * Used by Store query builder to append _requestMeta to params.
24959      * 
24960      */
24961     metaFromRemote : false,
24962     /**
24963      * This method is only used by a DataProxy which has retrieved data from a remote server.
24964      * @param {Object} response The XHR object which contains the JSON data in its responseText.
24965      * @return {Object} data A data block which is used by an Roo.data.Store object as
24966      * a cache of Roo.data.Records.
24967      */
24968     read : function(response){
24969         var json = response.responseText;
24970        
24971         var o = /* eval:var:o */ eval("("+json+")");
24972         if(!o) {
24973             throw {message: "JsonReader.read: Json object not found"};
24974         }
24975         
24976         if(o.metaData){
24977             
24978             delete this.ef;
24979             this.metaFromRemote = true;
24980             this.meta = o.metaData;
24981             this.recordType = Roo.data.Record.create(o.metaData.fields);
24982             this.onMetaChange(this.meta, this.recordType, o);
24983         }
24984         return this.readRecords(o);
24985     },
24986
24987     // private function a store will implement
24988     onMetaChange : function(meta, recordType, o){
24989
24990     },
24991
24992     /**
24993          * @ignore
24994          */
24995     simpleAccess: function(obj, subsc) {
24996         return obj[subsc];
24997     },
24998
24999         /**
25000          * @ignore
25001          */
25002     getJsonAccessor: function(){
25003         var re = /[\[\.]/;
25004         return function(expr) {
25005             try {
25006                 return(re.test(expr))
25007                     ? new Function("obj", "return obj." + expr)
25008                     : function(obj){
25009                         return obj[expr];
25010                     };
25011             } catch(e){}
25012             return Roo.emptyFn;
25013         };
25014     }(),
25015
25016     /**
25017      * Create a data block containing Roo.data.Records from an XML document.
25018      * @param {Object} o An object which contains an Array of row objects in the property specified
25019      * in the config as 'root, and optionally a property, specified in the config as 'totalProperty'
25020      * which contains the total size of the dataset.
25021      * @return {Object} data A data block which is used by an Roo.data.Store object as
25022      * a cache of Roo.data.Records.
25023      */
25024     readRecords : function(o){
25025         /**
25026          * After any data loads, the raw JSON data is available for further custom processing.
25027          * @type Object
25028          */
25029         this.o = o;
25030         var s = this.meta, Record = this.recordType,
25031             f = Record ? Record.prototype.fields : null, fi = f ? f.items : [], fl = f ? f.length : 0;
25032
25033 //      Generate extraction functions for the totalProperty, the root, the id, and for each field
25034         if (!this.ef) {
25035             if(s.totalProperty) {
25036                     this.getTotal = this.getJsonAccessor(s.totalProperty);
25037                 }
25038                 if(s.successProperty) {
25039                     this.getSuccess = this.getJsonAccessor(s.successProperty);
25040                 }
25041                 this.getRoot = s.root ? this.getJsonAccessor(s.root) : function(p){return p;};
25042                 if (s.id) {
25043                         var g = this.getJsonAccessor(s.id);
25044                         this.getId = function(rec) {
25045                                 var r = g(rec);  
25046                                 return (r === undefined || r === "") ? null : r;
25047                         };
25048                 } else {
25049                         this.getId = function(){return null;};
25050                 }
25051             this.ef = [];
25052             for(var jj = 0; jj < fl; jj++){
25053                 f = fi[jj];
25054                 var map = (f.mapping !== undefined && f.mapping !== null) ? f.mapping : f.name;
25055                 this.ef[jj] = this.getJsonAccessor(map);
25056             }
25057         }
25058
25059         var root = this.getRoot(o), c = root.length, totalRecords = c, success = true;
25060         if(s.totalProperty){
25061             var vt = parseInt(this.getTotal(o), 10);
25062             if(!isNaN(vt)){
25063                 totalRecords = vt;
25064             }
25065         }
25066         if(s.successProperty){
25067             var vs = this.getSuccess(o);
25068             if(vs === false || vs === 'false'){
25069                 success = false;
25070             }
25071         }
25072         var records = [];
25073         for(var i = 0; i < c; i++){
25074                 var n = root[i];
25075             var values = {};
25076             var id = this.getId(n);
25077             for(var j = 0; j < fl; j++){
25078                 f = fi[j];
25079             var v = this.ef[j](n);
25080             if (!f.convert) {
25081                 Roo.log('missing convert for ' + f.name);
25082                 Roo.log(f);
25083                 continue;
25084             }
25085             values[f.name] = f.convert((v !== undefined) ? v : f.defaultValue);
25086             }
25087             var record = new Record(values, id);
25088             record.json = n;
25089             records[i] = record;
25090         }
25091         return {
25092             raw : o,
25093             success : success,
25094             records : records,
25095             totalRecords : totalRecords
25096         };
25097     },
25098     // used when loading children.. @see loadDataFromChildren
25099     toLoadData: function(rec)
25100     {
25101         // expect rec just to be an array.. eg [a,b,c, [...] << cn ]
25102         var data = typeof(rec.data.cn) == 'undefined' ? [] : rec.data.cn;
25103         return { data : data, total : data.length };
25104         
25105     }
25106 });/*
25107  * Based on:
25108  * Ext JS Library 1.1.1
25109  * Copyright(c) 2006-2007, Ext JS, LLC.
25110  *
25111  * Originally Released Under LGPL - original licence link has changed is not relivant.
25112  *
25113  * Fork - LGPL
25114  * <script type="text/javascript">
25115  */
25116
25117 /**
25118  * @class Roo.data.XmlReader
25119  * @extends Roo.data.DataReader
25120  * Data reader class to create an Array of {@link Roo.data.Record} objects from an XML document
25121  * based on mappings in a provided Roo.data.Record constructor.<br><br>
25122  * <p>
25123  * <em>Note that in order for the browser to parse a returned XML document, the Content-Type
25124  * header in the HTTP response must be set to "text/xml".</em>
25125  * <p>
25126  * Example code:
25127  * <pre><code>
25128 var RecordDef = Roo.data.Record.create([
25129    {name: 'name', mapping: 'name'},     // "mapping" property not needed if it's the same as "name"
25130    {name: 'occupation'}                 // This field will use "occupation" as the mapping.
25131 ]);
25132 var myReader = new Roo.data.XmlReader({
25133    totalRecords: "results", // The element which contains the total dataset size (optional)
25134    record: "row",           // The repeated element which contains row information
25135    id: "id"                 // The element within the row that provides an ID for the record (optional)
25136 }, RecordDef);
25137 </code></pre>
25138  * <p>
25139  * This would consume an XML file like this:
25140  * <pre><code>
25141 &lt;?xml?>
25142 &lt;dataset>
25143  &lt;results>2&lt;/results>
25144  &lt;row>
25145    &lt;id>1&lt;/id>
25146    &lt;name>Bill&lt;/name>
25147    &lt;occupation>Gardener&lt;/occupation>
25148  &lt;/row>
25149  &lt;row>
25150    &lt;id>2&lt;/id>
25151    &lt;name>Ben&lt;/name>
25152    &lt;occupation>Horticulturalist&lt;/occupation>
25153  &lt;/row>
25154 &lt;/dataset>
25155 </code></pre>
25156  * @cfg {String} totalRecords The DomQuery path from which to retrieve the total number of records
25157  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
25158  * paged from the remote server.
25159  * @cfg {String} record The DomQuery path to the repeated element which contains record information.
25160  * @cfg {String} success The DomQuery path to the success attribute used by forms.
25161  * @cfg {String} id The DomQuery path relative from the record element to the element that contains
25162  * a record identifier value.
25163  * @constructor
25164  * Create a new XmlReader
25165  * @param {Object} meta Metadata configuration options
25166  * @param {Mixed} recordType The definition of the data record type to produce.  This can be either a valid
25167  * Record subclass created with {@link Roo.data.Record#create}, or an array of objects with which to call
25168  * Roo.data.Record.create.  See the {@link Roo.data.Record} class for more details.
25169  */
25170 Roo.data.XmlReader = function(meta, recordType){
25171     meta = meta || {};
25172     Roo.data.XmlReader.superclass.constructor.call(this, meta, recordType||meta.fields);
25173 };
25174 Roo.extend(Roo.data.XmlReader, Roo.data.DataReader, {
25175     
25176     readerType : 'Xml',
25177     
25178     /**
25179      * This method is only used by a DataProxy which has retrieved data from a remote server.
25180          * @param {Object} response The XHR object which contains the parsed XML document.  The response is expected
25181          * to contain a method called 'responseXML' that returns an XML document object.
25182      * @return {Object} records A data block which is used by an {@link Roo.data.Store} as
25183      * a cache of Roo.data.Records.
25184      */
25185     read : function(response){
25186         var doc = response.responseXML;
25187         if(!doc) {
25188             throw {message: "XmlReader.read: XML Document not available"};
25189         }
25190         return this.readRecords(doc);
25191     },
25192
25193     /**
25194      * Create a data block containing Roo.data.Records from an XML document.
25195          * @param {Object} doc A parsed XML document.
25196      * @return {Object} records A data block which is used by an {@link Roo.data.Store} as
25197      * a cache of Roo.data.Records.
25198      */
25199     readRecords : function(doc){
25200         /**
25201          * After any data loads/reads, the raw XML Document is available for further custom processing.
25202          * @type XMLDocument
25203          */
25204         this.xmlData = doc;
25205         var root = doc.documentElement || doc;
25206         var q = Roo.DomQuery;
25207         var recordType = this.recordType, fields = recordType.prototype.fields;
25208         var sid = this.meta.id;
25209         var totalRecords = 0, success = true;
25210         if(this.meta.totalRecords){
25211             totalRecords = q.selectNumber(this.meta.totalRecords, root, 0);
25212         }
25213         
25214         if(this.meta.success){
25215             var sv = q.selectValue(this.meta.success, root, true);
25216             success = sv !== false && sv !== 'false';
25217         }
25218         var records = [];
25219         var ns = q.select(this.meta.record, root);
25220         for(var i = 0, len = ns.length; i < len; i++) {
25221                 var n = ns[i];
25222                 var values = {};
25223                 var id = sid ? q.selectValue(sid, n) : undefined;
25224                 for(var j = 0, jlen = fields.length; j < jlen; j++){
25225                     var f = fields.items[j];
25226                 var v = q.selectValue(f.mapping || f.name, n, f.defaultValue);
25227                     v = f.convert(v);
25228                     values[f.name] = v;
25229                 }
25230                 var record = new recordType(values, id);
25231                 record.node = n;
25232                 records[records.length] = record;
25233             }
25234
25235             return {
25236                 success : success,
25237                 records : records,
25238                 totalRecords : totalRecords || records.length
25239             };
25240     }
25241 });/*
25242  * Based on:
25243  * Ext JS Library 1.1.1
25244  * Copyright(c) 2006-2007, Ext JS, LLC.
25245  *
25246  * Originally Released Under LGPL - original licence link has changed is not relivant.
25247  *
25248  * Fork - LGPL
25249  * <script type="text/javascript">
25250  */
25251
25252 /**
25253  * @class Roo.data.ArrayReader
25254  * @extends Roo.data.DataReader
25255  * Data reader class to create an Array of Roo.data.Record objects from an Array.
25256  * Each element of that Array represents a row of data fields. The
25257  * fields are pulled into a Record object using as a subscript, the <em>mapping</em> property
25258  * of the field definition if it exists, or the field's ordinal position in the definition.<br>
25259  * <p>
25260  * Example code:.
25261  * <pre><code>
25262 var RecordDef = Roo.data.Record.create([
25263     {name: 'name', mapping: 1},         // "mapping" only needed if an "id" field is present which
25264     {name: 'occupation', mapping: 2}    // precludes using the ordinal position as the index.
25265 ]);
25266 var myReader = new Roo.data.ArrayReader({
25267     id: 0                     // The subscript within row Array that provides an ID for the Record (optional)
25268 }, RecordDef);
25269 </code></pre>
25270  * <p>
25271  * This would consume an Array like this:
25272  * <pre><code>
25273 [ [1, 'Bill', 'Gardener'], [2, 'Ben', 'Horticulturalist'] ]
25274   </code></pre>
25275  
25276  * @constructor
25277  * Create a new JsonReader
25278  * @param {Object} meta Metadata configuration options.
25279  * @param {Object|Array} recordType Either an Array of field definition objects
25280  * 
25281  * @cfg {Array} fields Array of field definition objects
25282  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
25283  * as specified to {@link Roo.data.Record#create},
25284  * or an {@link Roo.data.Record} object
25285  *
25286  * 
25287  * created using {@link Roo.data.Record#create}.
25288  */
25289 Roo.data.ArrayReader = function(meta, recordType)
25290 {    
25291     Roo.data.ArrayReader.superclass.constructor.call(this, meta, recordType||meta.fields);
25292 };
25293
25294 Roo.extend(Roo.data.ArrayReader, Roo.data.JsonReader, {
25295     
25296       /**
25297      * Create a data block containing Roo.data.Records from an XML document.
25298      * @param {Object} o An Array of row objects which represents the dataset.
25299      * @return {Object} A data block which is used by an {@link Roo.data.Store} object as
25300      * a cache of Roo.data.Records.
25301      */
25302     readRecords : function(o)
25303     {
25304         var sid = this.meta ? this.meta.id : null;
25305         var recordType = this.recordType, fields = recordType.prototype.fields;
25306         var records = [];
25307         var root = o;
25308         for(var i = 0; i < root.length; i++){
25309             var n = root[i];
25310             var values = {};
25311             var id = ((sid || sid === 0) && n[sid] !== undefined && n[sid] !== "" ? n[sid] : null);
25312             for(var j = 0, jlen = fields.length; j < jlen; j++){
25313                 var f = fields.items[j];
25314                 var k = f.mapping !== undefined && f.mapping !== null ? f.mapping : j;
25315                 var v = n[k] !== undefined ? n[k] : f.defaultValue;
25316                 v = f.convert(v);
25317                 values[f.name] = v;
25318             }
25319             var record = new recordType(values, id);
25320             record.json = n;
25321             records[records.length] = record;
25322         }
25323         return {
25324             records : records,
25325             totalRecords : records.length
25326         };
25327     },
25328     // used when loading children.. @see loadDataFromChildren
25329     toLoadData: function(rec)
25330     {
25331         // expect rec just to be an array.. eg [a,b,c, [...] << cn ]
25332         return typeof(rec.data.cn) == 'undefined' ? [] : rec.data.cn;
25333         
25334     }
25335     
25336     
25337 });/*
25338  * Based on:
25339  * Ext JS Library 1.1.1
25340  * Copyright(c) 2006-2007, Ext JS, LLC.
25341  *
25342  * Originally Released Under LGPL - original licence link has changed is not relivant.
25343  *
25344  * Fork - LGPL
25345  * <script type="text/javascript">
25346  */
25347
25348
25349 /**
25350  * @class Roo.data.Tree
25351  * @extends Roo.util.Observable
25352  * Represents a tree data structure and bubbles all the events for its nodes. The nodes
25353  * in the tree have most standard DOM functionality.
25354  * @constructor
25355  * @param {Node} root (optional) The root node
25356  */
25357 Roo.data.Tree = function(root){
25358    this.nodeHash = {};
25359    /**
25360     * The root node for this tree
25361     * @type Node
25362     */
25363    this.root = null;
25364    if(root){
25365        this.setRootNode(root);
25366    }
25367    this.addEvents({
25368        /**
25369         * @event append
25370         * Fires when a new child node is appended to a node in this tree.
25371         * @param {Tree} tree The owner tree
25372         * @param {Node} parent The parent node
25373         * @param {Node} node The newly appended node
25374         * @param {Number} index The index of the newly appended node
25375         */
25376        "append" : true,
25377        /**
25378         * @event remove
25379         * Fires when a child node is removed from a node in this tree.
25380         * @param {Tree} tree The owner tree
25381         * @param {Node} parent The parent node
25382         * @param {Node} node The child node removed
25383         */
25384        "remove" : true,
25385        /**
25386         * @event move
25387         * Fires when a node is moved to a new location in the tree
25388         * @param {Tree} tree The owner tree
25389         * @param {Node} node The node moved
25390         * @param {Node} oldParent The old parent of this node
25391         * @param {Node} newParent The new parent of this node
25392         * @param {Number} index The index it was moved to
25393         */
25394        "move" : true,
25395        /**
25396         * @event insert
25397         * Fires when a new child node is inserted in a node in this tree.
25398         * @param {Tree} tree The owner tree
25399         * @param {Node} parent The parent node
25400         * @param {Node} node The child node inserted
25401         * @param {Node} refNode The child node the node was inserted before
25402         */
25403        "insert" : true,
25404        /**
25405         * @event beforeappend
25406         * Fires before a new child is appended to a node in this tree, return false to cancel the append.
25407         * @param {Tree} tree The owner tree
25408         * @param {Node} parent The parent node
25409         * @param {Node} node The child node to be appended
25410         */
25411        "beforeappend" : true,
25412        /**
25413         * @event beforeremove
25414         * Fires before a child is removed from a node in this tree, return false to cancel the remove.
25415         * @param {Tree} tree The owner tree
25416         * @param {Node} parent The parent node
25417         * @param {Node} node The child node to be removed
25418         */
25419        "beforeremove" : true,
25420        /**
25421         * @event beforemove
25422         * Fires before a node is moved to a new location in the tree. Return false to cancel the move.
25423         * @param {Tree} tree The owner tree
25424         * @param {Node} node The node being moved
25425         * @param {Node} oldParent The parent of the node
25426         * @param {Node} newParent The new parent the node is moving to
25427         * @param {Number} index The index it is being moved to
25428         */
25429        "beforemove" : true,
25430        /**
25431         * @event beforeinsert
25432         * Fires before a new child is inserted in a node in this tree, return false to cancel the insert.
25433         * @param {Tree} tree The owner tree
25434         * @param {Node} parent The parent node
25435         * @param {Node} node The child node to be inserted
25436         * @param {Node} refNode The child node the node is being inserted before
25437         */
25438        "beforeinsert" : true
25439    });
25440
25441     Roo.data.Tree.superclass.constructor.call(this);
25442 };
25443
25444 Roo.extend(Roo.data.Tree, Roo.util.Observable, {
25445     pathSeparator: "/",
25446
25447     proxyNodeEvent : function(){
25448         return this.fireEvent.apply(this, arguments);
25449     },
25450
25451     /**
25452      * Returns the root node for this tree.
25453      * @return {Node}
25454      */
25455     getRootNode : function(){
25456         return this.root;
25457     },
25458
25459     /**
25460      * Sets the root node for this tree.
25461      * @param {Node} node
25462      * @return {Node}
25463      */
25464     setRootNode : function(node){
25465         this.root = node;
25466         node.ownerTree = this;
25467         node.isRoot = true;
25468         this.registerNode(node);
25469         return node;
25470     },
25471
25472     /**
25473      * Gets a node in this tree by its id.
25474      * @param {String} id
25475      * @return {Node}
25476      */
25477     getNodeById : function(id){
25478         return this.nodeHash[id];
25479     },
25480
25481     registerNode : function(node){
25482         this.nodeHash[node.id] = node;
25483     },
25484
25485     unregisterNode : function(node){
25486         delete this.nodeHash[node.id];
25487     },
25488
25489     toString : function(){
25490         return "[Tree"+(this.id?" "+this.id:"")+"]";
25491     }
25492 });
25493
25494 /**
25495  * @class Roo.data.Node
25496  * @extends Roo.util.Observable
25497  * @cfg {Boolean} leaf true if this node is a leaf and does not have children
25498  * @cfg {String} id The id for this node. If one is not specified, one is generated.
25499  * @constructor
25500  * @param {Object} attributes The attributes/config for the node
25501  */
25502 Roo.data.Node = function(attributes){
25503     /**
25504      * The attributes supplied for the node. You can use this property to access any custom attributes you supplied.
25505      * @type {Object}
25506      */
25507     this.attributes = attributes || {};
25508     this.leaf = this.attributes.leaf;
25509     /**
25510      * The node id. @type String
25511      */
25512     this.id = this.attributes.id;
25513     if(!this.id){
25514         this.id = Roo.id(null, "ynode-");
25515         this.attributes.id = this.id;
25516     }
25517      
25518     
25519     /**
25520      * All child nodes of this node. @type Array
25521      */
25522     this.childNodes = [];
25523     if(!this.childNodes.indexOf){ // indexOf is a must
25524         this.childNodes.indexOf = function(o){
25525             for(var i = 0, len = this.length; i < len; i++){
25526                 if(this[i] == o) {
25527                     return i;
25528                 }
25529             }
25530             return -1;
25531         };
25532     }
25533     /**
25534      * The parent node for this node. @type Node
25535      */
25536     this.parentNode = null;
25537     /**
25538      * The first direct child node of this node, or null if this node has no child nodes. @type Node
25539      */
25540     this.firstChild = null;
25541     /**
25542      * The last direct child node of this node, or null if this node has no child nodes. @type Node
25543      */
25544     this.lastChild = null;
25545     /**
25546      * The node immediately preceding this node in the tree, or null if there is no sibling node. @type Node
25547      */
25548     this.previousSibling = null;
25549     /**
25550      * The node immediately following this node in the tree, or null if there is no sibling node. @type Node
25551      */
25552     this.nextSibling = null;
25553
25554     this.addEvents({
25555        /**
25556         * @event append
25557         * Fires when a new child node is appended
25558         * @param {Tree} tree The owner tree
25559         * @param {Node} this This node
25560         * @param {Node} node The newly appended node
25561         * @param {Number} index The index of the newly appended node
25562         */
25563        "append" : true,
25564        /**
25565         * @event remove
25566         * Fires when a child node is removed
25567         * @param {Tree} tree The owner tree
25568         * @param {Node} this This node
25569         * @param {Node} node The removed node
25570         */
25571        "remove" : true,
25572        /**
25573         * @event move
25574         * Fires when this node is moved to a new location in the tree
25575         * @param {Tree} tree The owner tree
25576         * @param {Node} this This node
25577         * @param {Node} oldParent The old parent of this node
25578         * @param {Node} newParent The new parent of this node
25579         * @param {Number} index The index it was moved to
25580         */
25581        "move" : true,
25582        /**
25583         * @event insert
25584         * Fires when a new child node is inserted.
25585         * @param {Tree} tree The owner tree
25586         * @param {Node} this This node
25587         * @param {Node} node The child node inserted
25588         * @param {Node} refNode The child node the node was inserted before
25589         */
25590        "insert" : true,
25591        /**
25592         * @event beforeappend
25593         * Fires before a new child is appended, return false to cancel the append.
25594         * @param {Tree} tree The owner tree
25595         * @param {Node} this This node
25596         * @param {Node} node The child node to be appended
25597         */
25598        "beforeappend" : true,
25599        /**
25600         * @event beforeremove
25601         * Fires before a child is removed, return false to cancel the remove.
25602         * @param {Tree} tree The owner tree
25603         * @param {Node} this This node
25604         * @param {Node} node The child node to be removed
25605         */
25606        "beforeremove" : true,
25607        /**
25608         * @event beforemove
25609         * Fires before this node is moved to a new location in the tree. Return false to cancel the move.
25610         * @param {Tree} tree The owner tree
25611         * @param {Node} this This node
25612         * @param {Node} oldParent The parent of this node
25613         * @param {Node} newParent The new parent this node is moving to
25614         * @param {Number} index The index it is being moved to
25615         */
25616        "beforemove" : true,
25617        /**
25618         * @event beforeinsert
25619         * Fires before a new child is inserted, return false to cancel the insert.
25620         * @param {Tree} tree The owner tree
25621         * @param {Node} this This node
25622         * @param {Node} node The child node to be inserted
25623         * @param {Node} refNode The child node the node is being inserted before
25624         */
25625        "beforeinsert" : true
25626    });
25627     this.listeners = this.attributes.listeners;
25628     Roo.data.Node.superclass.constructor.call(this);
25629 };
25630
25631 Roo.extend(Roo.data.Node, Roo.util.Observable, {
25632     fireEvent : function(evtName){
25633         // first do standard event for this node
25634         if(Roo.data.Node.superclass.fireEvent.apply(this, arguments) === false){
25635             return false;
25636         }
25637         // then bubble it up to the tree if the event wasn't cancelled
25638         var ot = this.getOwnerTree();
25639         if(ot){
25640             if(ot.proxyNodeEvent.apply(ot, arguments) === false){
25641                 return false;
25642             }
25643         }
25644         return true;
25645     },
25646
25647     /**
25648      * Returns true if this node is a leaf
25649      * @return {Boolean}
25650      */
25651     isLeaf : function(){
25652         return this.leaf === true;
25653     },
25654
25655     // private
25656     setFirstChild : function(node){
25657         this.firstChild = node;
25658     },
25659
25660     //private
25661     setLastChild : function(node){
25662         this.lastChild = node;
25663     },
25664
25665
25666     /**
25667      * Returns true if this node is the last child of its parent
25668      * @return {Boolean}
25669      */
25670     isLast : function(){
25671        return (!this.parentNode ? true : this.parentNode.lastChild == this);
25672     },
25673
25674     /**
25675      * Returns true if this node is the first child of its parent
25676      * @return {Boolean}
25677      */
25678     isFirst : function(){
25679        return (!this.parentNode ? true : this.parentNode.firstChild == this);
25680     },
25681
25682     hasChildNodes : function(){
25683         return !this.isLeaf() && this.childNodes.length > 0;
25684     },
25685
25686     /**
25687      * Insert node(s) as the last child node of this node.
25688      * @param {Node/Array} node The node or Array of nodes to append
25689      * @return {Node} The appended node if single append, or null if an array was passed
25690      */
25691     appendChild : function(node){
25692         var multi = false;
25693         if(node instanceof Array){
25694             multi = node;
25695         }else if(arguments.length > 1){
25696             multi = arguments;
25697         }
25698         
25699         // if passed an array or multiple args do them one by one
25700         if(multi){
25701             for(var i = 0, len = multi.length; i < len; i++) {
25702                 this.appendChild(multi[i]);
25703             }
25704         }else{
25705             if(this.fireEvent("beforeappend", this.ownerTree, this, node) === false){
25706                 return false;
25707             }
25708             var index = this.childNodes.length;
25709             var oldParent = node.parentNode;
25710             // it's a move, make sure we move it cleanly
25711             if(oldParent){
25712                 if(node.fireEvent("beforemove", node.getOwnerTree(), node, oldParent, this, index) === false){
25713                     return false;
25714                 }
25715                 oldParent.removeChild(node);
25716             }
25717             
25718             index = this.childNodes.length;
25719             if(index == 0){
25720                 this.setFirstChild(node);
25721             }
25722             this.childNodes.push(node);
25723             node.parentNode = this;
25724             var ps = this.childNodes[index-1];
25725             if(ps){
25726                 node.previousSibling = ps;
25727                 ps.nextSibling = node;
25728             }else{
25729                 node.previousSibling = null;
25730             }
25731             node.nextSibling = null;
25732             this.setLastChild(node);
25733             node.setOwnerTree(this.getOwnerTree());
25734             this.fireEvent("append", this.ownerTree, this, node, index);
25735             if(this.ownerTree) {
25736                 this.ownerTree.fireEvent("appendnode", this, node, index);
25737             }
25738             if(oldParent){
25739                 node.fireEvent("move", this.ownerTree, node, oldParent, this, index);
25740             }
25741             return node;
25742         }
25743     },
25744
25745     /**
25746      * Removes a child node from this node.
25747      * @param {Node} node The node to remove
25748      * @return {Node} The removed node
25749      */
25750     removeChild : function(node){
25751         var index = this.childNodes.indexOf(node);
25752         if(index == -1){
25753             return false;
25754         }
25755         if(this.fireEvent("beforeremove", this.ownerTree, this, node) === false){
25756             return false;
25757         }
25758
25759         // remove it from childNodes collection
25760         this.childNodes.splice(index, 1);
25761
25762         // update siblings
25763         if(node.previousSibling){
25764             node.previousSibling.nextSibling = node.nextSibling;
25765         }
25766         if(node.nextSibling){
25767             node.nextSibling.previousSibling = node.previousSibling;
25768         }
25769
25770         // update child refs
25771         if(this.firstChild == node){
25772             this.setFirstChild(node.nextSibling);
25773         }
25774         if(this.lastChild == node){
25775             this.setLastChild(node.previousSibling);
25776         }
25777
25778         node.setOwnerTree(null);
25779         // clear any references from the node
25780         node.parentNode = null;
25781         node.previousSibling = null;
25782         node.nextSibling = null;
25783         this.fireEvent("remove", this.ownerTree, this, node);
25784         return node;
25785     },
25786
25787     /**
25788      * Inserts the first node before the second node in this nodes childNodes collection.
25789      * @param {Node} node The node to insert
25790      * @param {Node} refNode The node to insert before (if null the node is appended)
25791      * @return {Node} The inserted node
25792      */
25793     insertBefore : function(node, refNode){
25794         if(!refNode){ // like standard Dom, refNode can be null for append
25795             return this.appendChild(node);
25796         }
25797         // nothing to do
25798         if(node == refNode){
25799             return false;
25800         }
25801
25802         if(this.fireEvent("beforeinsert", this.ownerTree, this, node, refNode) === false){
25803             return false;
25804         }
25805         var index = this.childNodes.indexOf(refNode);
25806         var oldParent = node.parentNode;
25807         var refIndex = index;
25808
25809         // when moving internally, indexes will change after remove
25810         if(oldParent == this && this.childNodes.indexOf(node) < index){
25811             refIndex--;
25812         }
25813
25814         // it's a move, make sure we move it cleanly
25815         if(oldParent){
25816             if(node.fireEvent("beforemove", node.getOwnerTree(), node, oldParent, this, index, refNode) === false){
25817                 return false;
25818             }
25819             oldParent.removeChild(node);
25820         }
25821         if(refIndex == 0){
25822             this.setFirstChild(node);
25823         }
25824         this.childNodes.splice(refIndex, 0, node);
25825         node.parentNode = this;
25826         var ps = this.childNodes[refIndex-1];
25827         if(ps){
25828             node.previousSibling = ps;
25829             ps.nextSibling = node;
25830         }else{
25831             node.previousSibling = null;
25832         }
25833         node.nextSibling = refNode;
25834         refNode.previousSibling = node;
25835         node.setOwnerTree(this.getOwnerTree());
25836         this.fireEvent("insert", this.ownerTree, this, node, refNode);
25837         if(oldParent){
25838             node.fireEvent("move", this.ownerTree, node, oldParent, this, refIndex, refNode);
25839         }
25840         return node;
25841     },
25842
25843     /**
25844      * Returns the child node at the specified index.
25845      * @param {Number} index
25846      * @return {Node}
25847      */
25848     item : function(index){
25849         return this.childNodes[index];
25850     },
25851
25852     /**
25853      * Replaces one child node in this node with another.
25854      * @param {Node} newChild The replacement node
25855      * @param {Node} oldChild The node to replace
25856      * @return {Node} The replaced node
25857      */
25858     replaceChild : function(newChild, oldChild){
25859         this.insertBefore(newChild, oldChild);
25860         this.removeChild(oldChild);
25861         return oldChild;
25862     },
25863
25864     /**
25865      * Returns the index of a child node
25866      * @param {Node} node
25867      * @return {Number} The index of the node or -1 if it was not found
25868      */
25869     indexOf : function(child){
25870         return this.childNodes.indexOf(child);
25871     },
25872
25873     /**
25874      * Returns the tree this node is in.
25875      * @return {Tree}
25876      */
25877     getOwnerTree : function(){
25878         // if it doesn't have one, look for one
25879         if(!this.ownerTree){
25880             var p = this;
25881             while(p){
25882                 if(p.ownerTree){
25883                     this.ownerTree = p.ownerTree;
25884                     break;
25885                 }
25886                 p = p.parentNode;
25887             }
25888         }
25889         return this.ownerTree;
25890     },
25891
25892     /**
25893      * Returns depth of this node (the root node has a depth of 0)
25894      * @return {Number}
25895      */
25896     getDepth : function(){
25897         var depth = 0;
25898         var p = this;
25899         while(p.parentNode){
25900             ++depth;
25901             p = p.parentNode;
25902         }
25903         return depth;
25904     },
25905
25906     // private
25907     setOwnerTree : function(tree){
25908         // if it's move, we need to update everyone
25909         if(tree != this.ownerTree){
25910             if(this.ownerTree){
25911                 this.ownerTree.unregisterNode(this);
25912             }
25913             this.ownerTree = tree;
25914             var cs = this.childNodes;
25915             for(var i = 0, len = cs.length; i < len; i++) {
25916                 cs[i].setOwnerTree(tree);
25917             }
25918             if(tree){
25919                 tree.registerNode(this);
25920             }
25921         }
25922     },
25923
25924     /**
25925      * Returns the path for this node. The path can be used to expand or select this node programmatically.
25926      * @param {String} attr (optional) The attr to use for the path (defaults to the node's id)
25927      * @return {String} The path
25928      */
25929     getPath : function(attr){
25930         attr = attr || "id";
25931         var p = this.parentNode;
25932         var b = [this.attributes[attr]];
25933         while(p){
25934             b.unshift(p.attributes[attr]);
25935             p = p.parentNode;
25936         }
25937         var sep = this.getOwnerTree().pathSeparator;
25938         return sep + b.join(sep);
25939     },
25940
25941     /**
25942      * Bubbles up the tree from this node, calling the specified function with each node. The scope (<i>this</i>) of
25943      * function call will be the scope provided or the current node. The arguments to the function
25944      * will be the args provided or the current node. If the function returns false at any point,
25945      * the bubble is stopped.
25946      * @param {Function} fn The function to call
25947      * @param {Object} scope (optional) The scope of the function (defaults to current node)
25948      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
25949      */
25950     bubble : function(fn, scope, args){
25951         var p = this;
25952         while(p){
25953             if(fn.call(scope || p, args || p) === false){
25954                 break;
25955             }
25956             p = p.parentNode;
25957         }
25958     },
25959
25960     /**
25961      * Cascades down the tree from this node, calling the specified function with each node. The scope (<i>this</i>) of
25962      * function call will be the scope provided or the current node. The arguments to the function
25963      * will be the args provided or the current node. If the function returns false at any point,
25964      * the cascade is stopped on that branch.
25965      * @param {Function} fn The function to call
25966      * @param {Object} scope (optional) The scope of the function (defaults to current node)
25967      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
25968      */
25969     cascade : function(fn, scope, args){
25970         if(fn.call(scope || this, args || this) !== false){
25971             var cs = this.childNodes;
25972             for(var i = 0, len = cs.length; i < len; i++) {
25973                 cs[i].cascade(fn, scope, args);
25974             }
25975         }
25976     },
25977
25978     /**
25979      * Interates the child nodes of this node, calling the specified function with each node. The scope (<i>this</i>) of
25980      * function call will be the scope provided or the current node. The arguments to the function
25981      * will be the args provided or the current node. If the function returns false at any point,
25982      * the iteration stops.
25983      * @param {Function} fn The function to call
25984      * @param {Object} scope (optional) The scope of the function (defaults to current node)
25985      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
25986      */
25987     eachChild : function(fn, scope, args){
25988         var cs = this.childNodes;
25989         for(var i = 0, len = cs.length; i < len; i++) {
25990                 if(fn.call(scope || this, args || cs[i]) === false){
25991                     break;
25992                 }
25993         }
25994     },
25995
25996     /**
25997      * Finds the first child that has the attribute with the specified value.
25998      * @param {String} attribute The attribute name
25999      * @param {Mixed} value The value to search for
26000      * @return {Node} The found child or null if none was found
26001      */
26002     findChild : function(attribute, value){
26003         var cs = this.childNodes;
26004         for(var i = 0, len = cs.length; i < len; i++) {
26005                 if(cs[i].attributes[attribute] == value){
26006                     return cs[i];
26007                 }
26008         }
26009         return null;
26010     },
26011
26012     /**
26013      * Finds the first child by a custom function. The child matches if the function passed
26014      * returns true.
26015      * @param {Function} fn
26016      * @param {Object} scope (optional)
26017      * @return {Node} The found child or null if none was found
26018      */
26019     findChildBy : function(fn, scope){
26020         var cs = this.childNodes;
26021         for(var i = 0, len = cs.length; i < len; i++) {
26022                 if(fn.call(scope||cs[i], cs[i]) === true){
26023                     return cs[i];
26024                 }
26025         }
26026         return null;
26027     },
26028
26029     /**
26030      * Sorts this nodes children using the supplied sort function
26031      * @param {Function} fn
26032      * @param {Object} scope (optional)
26033      */
26034     sort : function(fn, scope){
26035         var cs = this.childNodes;
26036         var len = cs.length;
26037         if(len > 0){
26038             var sortFn = scope ? function(){fn.apply(scope, arguments);} : fn;
26039             cs.sort(sortFn);
26040             for(var i = 0; i < len; i++){
26041                 var n = cs[i];
26042                 n.previousSibling = cs[i-1];
26043                 n.nextSibling = cs[i+1];
26044                 if(i == 0){
26045                     this.setFirstChild(n);
26046                 }
26047                 if(i == len-1){
26048                     this.setLastChild(n);
26049                 }
26050             }
26051         }
26052     },
26053
26054     /**
26055      * Returns true if this node is an ancestor (at any point) of the passed node.
26056      * @param {Node} node
26057      * @return {Boolean}
26058      */
26059     contains : function(node){
26060         return node.isAncestor(this);
26061     },
26062
26063     /**
26064      * Returns true if the passed node is an ancestor (at any point) of this node.
26065      * @param {Node} node
26066      * @return {Boolean}
26067      */
26068     isAncestor : function(node){
26069         var p = this.parentNode;
26070         while(p){
26071             if(p == node){
26072                 return true;
26073             }
26074             p = p.parentNode;
26075         }
26076         return false;
26077     },
26078
26079     toString : function(){
26080         return "[Node"+(this.id?" "+this.id:"")+"]";
26081     }
26082 });/*
26083  * Based on:
26084  * Ext JS Library 1.1.1
26085  * Copyright(c) 2006-2007, Ext JS, LLC.
26086  *
26087  * Originally Released Under LGPL - original licence link has changed is not relivant.
26088  *
26089  * Fork - LGPL
26090  * <script type="text/javascript">
26091  */
26092
26093
26094 /**
26095  * @class Roo.Shadow
26096  * Simple class that can provide a shadow effect for any element.  Note that the element MUST be absolutely positioned,
26097  * and the shadow does not provide any shimming.  This should be used only in simple cases -- for more advanced
26098  * functionality that can also provide the same shadow effect, see the {@link Roo.Layer} class.
26099  * @constructor
26100  * Create a new Shadow
26101  * @param {Object} config The config object
26102  */
26103 Roo.Shadow = function(config){
26104     Roo.apply(this, config);
26105     if(typeof this.mode != "string"){
26106         this.mode = this.defaultMode;
26107     }
26108     var o = this.offset, a = {h: 0};
26109     var rad = Math.floor(this.offset/2);
26110     switch(this.mode.toLowerCase()){ // all this hideous nonsense calculates the various offsets for shadows
26111         case "drop":
26112             a.w = 0;
26113             a.l = a.t = o;
26114             a.t -= 1;
26115             if(Roo.isIE){
26116                 a.l -= this.offset + rad;
26117                 a.t -= this.offset + rad;
26118                 a.w -= rad;
26119                 a.h -= rad;
26120                 a.t += 1;
26121             }
26122         break;
26123         case "sides":
26124             a.w = (o*2);
26125             a.l = -o;
26126             a.t = o-1;
26127             if(Roo.isIE){
26128                 a.l -= (this.offset - rad);
26129                 a.t -= this.offset + rad;
26130                 a.l += 1;
26131                 a.w -= (this.offset - rad)*2;
26132                 a.w -= rad + 1;
26133                 a.h -= 1;
26134             }
26135         break;
26136         case "frame":
26137             a.w = a.h = (o*2);
26138             a.l = a.t = -o;
26139             a.t += 1;
26140             a.h -= 2;
26141             if(Roo.isIE){
26142                 a.l -= (this.offset - rad);
26143                 a.t -= (this.offset - rad);
26144                 a.l += 1;
26145                 a.w -= (this.offset + rad + 1);
26146                 a.h -= (this.offset + rad);
26147                 a.h += 1;
26148             }
26149         break;
26150     };
26151
26152     this.adjusts = a;
26153 };
26154
26155 Roo.Shadow.prototype = {
26156     /**
26157      * @cfg {String} mode
26158      * The shadow display mode.  Supports the following options:<br />
26159      * sides: Shadow displays on both sides and bottom only<br />
26160      * frame: Shadow displays equally on all four sides<br />
26161      * drop: Traditional bottom-right drop shadow (default)
26162      */
26163     /**
26164      * @cfg {String} offset
26165      * The number of pixels to offset the shadow from the element (defaults to 4)
26166      */
26167     offset: 4,
26168
26169     // private
26170     defaultMode: "drop",
26171
26172     /**
26173      * Displays the shadow under the target element
26174      * @param {String/HTMLElement/Element} targetEl The id or element under which the shadow should display
26175      */
26176     show : function(target){
26177         target = Roo.get(target);
26178         if(!this.el){
26179             this.el = Roo.Shadow.Pool.pull();
26180             if(this.el.dom.nextSibling != target.dom){
26181                 this.el.insertBefore(target);
26182             }
26183         }
26184         this.el.setStyle("z-index", this.zIndex || parseInt(target.getStyle("z-index"), 10)-1);
26185         if(Roo.isIE){
26186             this.el.dom.style.filter="progid:DXImageTransform.Microsoft.alpha(opacity=50) progid:DXImageTransform.Microsoft.Blur(pixelradius="+(this.offset)+")";
26187         }
26188         this.realign(
26189             target.getLeft(true),
26190             target.getTop(true),
26191             target.getWidth(),
26192             target.getHeight()
26193         );
26194         this.el.dom.style.display = "block";
26195     },
26196
26197     /**
26198      * Returns true if the shadow is visible, else false
26199      */
26200     isVisible : function(){
26201         return this.el ? true : false;  
26202     },
26203
26204     /**
26205      * Direct alignment when values are already available. Show must be called at least once before
26206      * calling this method to ensure it is initialized.
26207      * @param {Number} left The target element left position
26208      * @param {Number} top The target element top position
26209      * @param {Number} width The target element width
26210      * @param {Number} height The target element height
26211      */
26212     realign : function(l, t, w, h){
26213         if(!this.el){
26214             return;
26215         }
26216         var a = this.adjusts, d = this.el.dom, s = d.style;
26217         var iea = 0;
26218         s.left = (l+a.l)+"px";
26219         s.top = (t+a.t)+"px";
26220         var sw = (w+a.w), sh = (h+a.h), sws = sw +"px", shs = sh + "px";
26221  
26222         if(s.width != sws || s.height != shs){
26223             s.width = sws;
26224             s.height = shs;
26225             if(!Roo.isIE){
26226                 var cn = d.childNodes;
26227                 var sww = Math.max(0, (sw-12))+"px";
26228                 cn[0].childNodes[1].style.width = sww;
26229                 cn[1].childNodes[1].style.width = sww;
26230                 cn[2].childNodes[1].style.width = sww;
26231                 cn[1].style.height = Math.max(0, (sh-12))+"px";
26232             }
26233         }
26234     },
26235
26236     /**
26237      * Hides this shadow
26238      */
26239     hide : function(){
26240         if(this.el){
26241             this.el.dom.style.display = "none";
26242             Roo.Shadow.Pool.push(this.el);
26243             delete this.el;
26244         }
26245     },
26246
26247     /**
26248      * Adjust the z-index of this shadow
26249      * @param {Number} zindex The new z-index
26250      */
26251     setZIndex : function(z){
26252         this.zIndex = z;
26253         if(this.el){
26254             this.el.setStyle("z-index", z);
26255         }
26256     }
26257 };
26258
26259 // Private utility class that manages the internal Shadow cache
26260 Roo.Shadow.Pool = function(){
26261     var p = [];
26262     var markup = Roo.isIE ?
26263                  '<div class="x-ie-shadow"></div>' :
26264                  '<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>';
26265     return {
26266         pull : function(){
26267             var sh = p.shift();
26268             if(!sh){
26269                 sh = Roo.get(Roo.DomHelper.insertHtml("beforeBegin", document.body.firstChild, markup));
26270                 sh.autoBoxAdjust = false;
26271             }
26272             return sh;
26273         },
26274
26275         push : function(sh){
26276             p.push(sh);
26277         }
26278     };
26279 }();/*
26280  * Based on:
26281  * Ext JS Library 1.1.1
26282  * Copyright(c) 2006-2007, Ext JS, LLC.
26283  *
26284  * Originally Released Under LGPL - original licence link has changed is not relivant.
26285  *
26286  * Fork - LGPL
26287  * <script type="text/javascript">
26288  */
26289
26290
26291 /**
26292  * @class Roo.SplitBar
26293  * @extends Roo.util.Observable
26294  * Creates draggable splitter bar functionality from two elements (element to be dragged and element to be resized).
26295  * <br><br>
26296  * Usage:
26297  * <pre><code>
26298 var split = new Roo.SplitBar("elementToDrag", "elementToSize",
26299                    Roo.SplitBar.HORIZONTAL, Roo.SplitBar.LEFT);
26300 split.setAdapter(new Roo.SplitBar.AbsoluteLayoutAdapter("container"));
26301 split.minSize = 100;
26302 split.maxSize = 600;
26303 split.animate = true;
26304 split.on('moved', splitterMoved);
26305 </code></pre>
26306  * @constructor
26307  * Create a new SplitBar
26308  * @param {String/HTMLElement/Roo.Element} dragElement The element to be dragged and act as the SplitBar. 
26309  * @param {String/HTMLElement/Roo.Element} resizingElement The element to be resized based on where the SplitBar element is dragged 
26310  * @param {Number} orientation (optional) Either Roo.SplitBar.HORIZONTAL or Roo.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
26311  * @param {Number} placement (optional) Either Roo.SplitBar.LEFT or Roo.SplitBar.RIGHT for horizontal or  
26312                         Roo.SplitBar.TOP or Roo.SplitBar.BOTTOM for vertical. (By default, this is determined automatically by the initial
26313                         position of the SplitBar).
26314  */
26315 Roo.SplitBar = function(dragElement, resizingElement, orientation, placement, existingProxy){
26316     
26317     /** @private */
26318     this.el = Roo.get(dragElement, true);
26319     this.el.dom.unselectable = "on";
26320     /** @private */
26321     this.resizingEl = Roo.get(resizingElement, true);
26322
26323     /**
26324      * @private
26325      * The orientation of the split. Either Roo.SplitBar.HORIZONTAL or Roo.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
26326      * Note: If this is changed after creating the SplitBar, the placement property must be manually updated
26327      * @type Number
26328      */
26329     this.orientation = orientation || Roo.SplitBar.HORIZONTAL;
26330     
26331     /**
26332      * The minimum size of the resizing element. (Defaults to 0)
26333      * @type Number
26334      */
26335     this.minSize = 0;
26336     
26337     /**
26338      * The maximum size of the resizing element. (Defaults to 2000)
26339      * @type Number
26340      */
26341     this.maxSize = 2000;
26342     
26343     /**
26344      * Whether to animate the transition to the new size
26345      * @type Boolean
26346      */
26347     this.animate = false;
26348     
26349     /**
26350      * Whether to create a transparent shim that overlays the page when dragging, enables dragging across iframes.
26351      * @type Boolean
26352      */
26353     this.useShim = false;
26354     
26355     /** @private */
26356     this.shim = null;
26357     
26358     if(!existingProxy){
26359         /** @private */
26360         this.proxy = Roo.SplitBar.createProxy(this.orientation);
26361     }else{
26362         this.proxy = Roo.get(existingProxy).dom;
26363     }
26364     /** @private */
26365     this.dd = new Roo.dd.DDProxy(this.el.dom.id, "XSplitBars", {dragElId : this.proxy.id});
26366     
26367     /** @private */
26368     this.dd.b4StartDrag = this.onStartProxyDrag.createDelegate(this);
26369     
26370     /** @private */
26371     this.dd.endDrag = this.onEndProxyDrag.createDelegate(this);
26372     
26373     /** @private */
26374     this.dragSpecs = {};
26375     
26376     /**
26377      * @private The adapter to use to positon and resize elements
26378      */
26379     this.adapter = new Roo.SplitBar.BasicLayoutAdapter();
26380     this.adapter.init(this);
26381     
26382     if(this.orientation == Roo.SplitBar.HORIZONTAL){
26383         /** @private */
26384         this.placement = placement || (this.el.getX() > this.resizingEl.getX() ? Roo.SplitBar.LEFT : Roo.SplitBar.RIGHT);
26385         this.el.addClass("x-splitbar-h");
26386     }else{
26387         /** @private */
26388         this.placement = placement || (this.el.getY() > this.resizingEl.getY() ? Roo.SplitBar.TOP : Roo.SplitBar.BOTTOM);
26389         this.el.addClass("x-splitbar-v");
26390     }
26391     
26392     this.addEvents({
26393         /**
26394          * @event resize
26395          * Fires when the splitter is moved (alias for {@link #event-moved})
26396          * @param {Roo.SplitBar} this
26397          * @param {Number} newSize the new width or height
26398          */
26399         "resize" : true,
26400         /**
26401          * @event moved
26402          * Fires when the splitter is moved
26403          * @param {Roo.SplitBar} this
26404          * @param {Number} newSize the new width or height
26405          */
26406         "moved" : true,
26407         /**
26408          * @event beforeresize
26409          * Fires before the splitter is dragged
26410          * @param {Roo.SplitBar} this
26411          */
26412         "beforeresize" : true,
26413
26414         "beforeapply" : true
26415     });
26416
26417     Roo.util.Observable.call(this);
26418 };
26419
26420 Roo.extend(Roo.SplitBar, Roo.util.Observable, {
26421     onStartProxyDrag : function(x, y){
26422         this.fireEvent("beforeresize", this);
26423         if(!this.overlay){
26424             var o = Roo.DomHelper.insertFirst(document.body,  {cls: "x-drag-overlay", html: "&#160;"}, true);
26425             o.unselectable();
26426             o.enableDisplayMode("block");
26427             // all splitbars share the same overlay
26428             Roo.SplitBar.prototype.overlay = o;
26429         }
26430         this.overlay.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
26431         this.overlay.show();
26432         Roo.get(this.proxy).setDisplayed("block");
26433         var size = this.adapter.getElementSize(this);
26434         this.activeMinSize = this.getMinimumSize();;
26435         this.activeMaxSize = this.getMaximumSize();;
26436         var c1 = size - this.activeMinSize;
26437         var c2 = Math.max(this.activeMaxSize - size, 0);
26438         if(this.orientation == Roo.SplitBar.HORIZONTAL){
26439             this.dd.resetConstraints();
26440             this.dd.setXConstraint(
26441                 this.placement == Roo.SplitBar.LEFT ? c1 : c2, 
26442                 this.placement == Roo.SplitBar.LEFT ? c2 : c1
26443             );
26444             this.dd.setYConstraint(0, 0);
26445         }else{
26446             this.dd.resetConstraints();
26447             this.dd.setXConstraint(0, 0);
26448             this.dd.setYConstraint(
26449                 this.placement == Roo.SplitBar.TOP ? c1 : c2, 
26450                 this.placement == Roo.SplitBar.TOP ? c2 : c1
26451             );
26452          }
26453         this.dragSpecs.startSize = size;
26454         this.dragSpecs.startPoint = [x, y];
26455         Roo.dd.DDProxy.prototype.b4StartDrag.call(this.dd, x, y);
26456     },
26457     
26458     /** 
26459      * @private Called after the drag operation by the DDProxy
26460      */
26461     onEndProxyDrag : function(e){
26462         Roo.get(this.proxy).setDisplayed(false);
26463         var endPoint = Roo.lib.Event.getXY(e);
26464         if(this.overlay){
26465             this.overlay.hide();
26466         }
26467         var newSize;
26468         if(this.orientation == Roo.SplitBar.HORIZONTAL){
26469             newSize = this.dragSpecs.startSize + 
26470                 (this.placement == Roo.SplitBar.LEFT ?
26471                     endPoint[0] - this.dragSpecs.startPoint[0] :
26472                     this.dragSpecs.startPoint[0] - endPoint[0]
26473                 );
26474         }else{
26475             newSize = this.dragSpecs.startSize + 
26476                 (this.placement == Roo.SplitBar.TOP ?
26477                     endPoint[1] - this.dragSpecs.startPoint[1] :
26478                     this.dragSpecs.startPoint[1] - endPoint[1]
26479                 );
26480         }
26481         newSize = Math.min(Math.max(newSize, this.activeMinSize), this.activeMaxSize);
26482         if(newSize != this.dragSpecs.startSize){
26483             if(this.fireEvent('beforeapply', this, newSize) !== false){
26484                 this.adapter.setElementSize(this, newSize);
26485                 this.fireEvent("moved", this, newSize);
26486                 this.fireEvent("resize", this, newSize);
26487             }
26488         }
26489     },
26490     
26491     /**
26492      * Get the adapter this SplitBar uses
26493      * @return The adapter object
26494      */
26495     getAdapter : function(){
26496         return this.adapter;
26497     },
26498     
26499     /**
26500      * Set the adapter this SplitBar uses
26501      * @param {Object} adapter A SplitBar adapter object
26502      */
26503     setAdapter : function(adapter){
26504         this.adapter = adapter;
26505         this.adapter.init(this);
26506     },
26507     
26508     /**
26509      * Gets the minimum size for the resizing element
26510      * @return {Number} The minimum size
26511      */
26512     getMinimumSize : function(){
26513         return this.minSize;
26514     },
26515     
26516     /**
26517      * Sets the minimum size for the resizing element
26518      * @param {Number} minSize The minimum size
26519      */
26520     setMinimumSize : function(minSize){
26521         this.minSize = minSize;
26522     },
26523     
26524     /**
26525      * Gets the maximum size for the resizing element
26526      * @return {Number} The maximum size
26527      */
26528     getMaximumSize : function(){
26529         return this.maxSize;
26530     },
26531     
26532     /**
26533      * Sets the maximum size for the resizing element
26534      * @param {Number} maxSize The maximum size
26535      */
26536     setMaximumSize : function(maxSize){
26537         this.maxSize = maxSize;
26538     },
26539     
26540     /**
26541      * Sets the initialize size for the resizing element
26542      * @param {Number} size The initial size
26543      */
26544     setCurrentSize : function(size){
26545         var oldAnimate = this.animate;
26546         this.animate = false;
26547         this.adapter.setElementSize(this, size);
26548         this.animate = oldAnimate;
26549     },
26550     
26551     /**
26552      * Destroy this splitbar. 
26553      * @param {Boolean} removeEl True to remove the element
26554      */
26555     destroy : function(removeEl){
26556         if(this.shim){
26557             this.shim.remove();
26558         }
26559         this.dd.unreg();
26560         this.proxy.parentNode.removeChild(this.proxy);
26561         if(removeEl){
26562             this.el.remove();
26563         }
26564     }
26565 });
26566
26567 /**
26568  * @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.
26569  */
26570 Roo.SplitBar.createProxy = function(dir){
26571     var proxy = new Roo.Element(document.createElement("div"));
26572     proxy.unselectable();
26573     var cls = 'x-splitbar-proxy';
26574     proxy.addClass(cls + ' ' + (dir == Roo.SplitBar.HORIZONTAL ? cls +'-h' : cls + '-v'));
26575     document.body.appendChild(proxy.dom);
26576     return proxy.dom;
26577 };
26578
26579 /** 
26580  * @class Roo.SplitBar.BasicLayoutAdapter
26581  * Default Adapter. It assumes the splitter and resizing element are not positioned
26582  * elements and only gets/sets the width of the element. Generally used for table based layouts.
26583  */
26584 Roo.SplitBar.BasicLayoutAdapter = function(){
26585 };
26586
26587 Roo.SplitBar.BasicLayoutAdapter.prototype = {
26588     // do nothing for now
26589     init : function(s){
26590     
26591     },
26592     /**
26593      * Called before drag operations to get the current size of the resizing element. 
26594      * @param {Roo.SplitBar} s The SplitBar using this adapter
26595      */
26596      getElementSize : function(s){
26597         if(s.orientation == Roo.SplitBar.HORIZONTAL){
26598             return s.resizingEl.getWidth();
26599         }else{
26600             return s.resizingEl.getHeight();
26601         }
26602     },
26603     
26604     /**
26605      * Called after drag operations to set the size of the resizing element.
26606      * @param {Roo.SplitBar} s The SplitBar using this adapter
26607      * @param {Number} newSize The new size to set
26608      * @param {Function} onComplete A function to be invoked when resizing is complete
26609      */
26610     setElementSize : function(s, newSize, onComplete){
26611         if(s.orientation == Roo.SplitBar.HORIZONTAL){
26612             if(!s.animate){
26613                 s.resizingEl.setWidth(newSize);
26614                 if(onComplete){
26615                     onComplete(s, newSize);
26616                 }
26617             }else{
26618                 s.resizingEl.setWidth(newSize, true, .1, onComplete, 'easeOut');
26619             }
26620         }else{
26621             
26622             if(!s.animate){
26623                 s.resizingEl.setHeight(newSize);
26624                 if(onComplete){
26625                     onComplete(s, newSize);
26626                 }
26627             }else{
26628                 s.resizingEl.setHeight(newSize, true, .1, onComplete, 'easeOut');
26629             }
26630         }
26631     }
26632 };
26633
26634 /** 
26635  *@class Roo.SplitBar.AbsoluteLayoutAdapter
26636  * @extends Roo.SplitBar.BasicLayoutAdapter
26637  * Adapter that  moves the splitter element to align with the resized sizing element. 
26638  * Used with an absolute positioned SplitBar.
26639  * @param {String/HTMLElement/Roo.Element} container The container that wraps around the absolute positioned content. If it's
26640  * document.body, make sure you assign an id to the body element.
26641  */
26642 Roo.SplitBar.AbsoluteLayoutAdapter = function(container){
26643     this.basic = new Roo.SplitBar.BasicLayoutAdapter();
26644     this.container = Roo.get(container);
26645 };
26646
26647 Roo.SplitBar.AbsoluteLayoutAdapter.prototype = {
26648     init : function(s){
26649         this.basic.init(s);
26650     },
26651     
26652     getElementSize : function(s){
26653         return this.basic.getElementSize(s);
26654     },
26655     
26656     setElementSize : function(s, newSize, onComplete){
26657         this.basic.setElementSize(s, newSize, this.moveSplitter.createDelegate(this, [s]));
26658     },
26659     
26660     moveSplitter : function(s){
26661         var yes = Roo.SplitBar;
26662         switch(s.placement){
26663             case yes.LEFT:
26664                 s.el.setX(s.resizingEl.getRight());
26665                 break;
26666             case yes.RIGHT:
26667                 s.el.setStyle("right", (this.container.getWidth() - s.resizingEl.getLeft()) + "px");
26668                 break;
26669             case yes.TOP:
26670                 s.el.setY(s.resizingEl.getBottom());
26671                 break;
26672             case yes.BOTTOM:
26673                 s.el.setY(s.resizingEl.getTop() - s.el.getHeight());
26674                 break;
26675         }
26676     }
26677 };
26678
26679 /**
26680  * Orientation constant - Create a vertical SplitBar
26681  * @static
26682  * @type Number
26683  */
26684 Roo.SplitBar.VERTICAL = 1;
26685
26686 /**
26687  * Orientation constant - Create a horizontal SplitBar
26688  * @static
26689  * @type Number
26690  */
26691 Roo.SplitBar.HORIZONTAL = 2;
26692
26693 /**
26694  * Placement constant - The resizing element is to the left of the splitter element
26695  * @static
26696  * @type Number
26697  */
26698 Roo.SplitBar.LEFT = 1;
26699
26700 /**
26701  * Placement constant - The resizing element is to the right of the splitter element
26702  * @static
26703  * @type Number
26704  */
26705 Roo.SplitBar.RIGHT = 2;
26706
26707 /**
26708  * Placement constant - The resizing element is positioned above the splitter element
26709  * @static
26710  * @type Number
26711  */
26712 Roo.SplitBar.TOP = 3;
26713
26714 /**
26715  * Placement constant - The resizing element is positioned under splitter element
26716  * @static
26717  * @type Number
26718  */
26719 Roo.SplitBar.BOTTOM = 4;
26720 /*
26721  * Based on:
26722  * Ext JS Library 1.1.1
26723  * Copyright(c) 2006-2007, Ext JS, LLC.
26724  *
26725  * Originally Released Under LGPL - original licence link has changed is not relivant.
26726  *
26727  * Fork - LGPL
26728  * <script type="text/javascript">
26729  */
26730
26731 /**
26732  * @class Roo.View
26733  * @extends Roo.util.Observable
26734  * Create a "View" for an element based on a data model or UpdateManager and the supplied DomHelper template. 
26735  * This class also supports single and multi selection modes. <br>
26736  * Create a data model bound view:
26737  <pre><code>
26738  var store = new Roo.data.Store(...);
26739
26740  var view = new Roo.View({
26741     el : "my-element",
26742     tpl : '&lt;div id="{0}"&gt;{2} - {1}&lt;/div&gt;', // auto create template
26743  
26744     singleSelect: true,
26745     selectedClass: "ydataview-selected",
26746     store: store
26747  });
26748
26749  // listen for node click?
26750  view.on("click", function(vw, index, node, e){
26751  alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
26752  });
26753
26754  // load XML data
26755  dataModel.load("foobar.xml");
26756  </code></pre>
26757  For an example of creating a JSON/UpdateManager view, see {@link Roo.JsonView}.
26758  * <br><br>
26759  * <b>Note: The root of your template must be a single node. Table/row implementations may work but are not supported due to
26760  * IE"s limited insertion support with tables and Opera"s faulty event bubbling.</b>
26761  * 
26762  * Note: old style constructor is still suported (container, template, config)
26763  * 
26764  * @constructor
26765  * Create a new View
26766  * @param {Object} config The config object
26767  * 
26768  */
26769 Roo.View = function(config, depreciated_tpl, depreciated_config){
26770     
26771     this.parent = false;
26772     
26773     if (typeof(depreciated_tpl) == 'undefined') {
26774         // new way.. - universal constructor.
26775         Roo.apply(this, config);
26776         this.el  = Roo.get(this.el);
26777     } else {
26778         // old format..
26779         this.el  = Roo.get(config);
26780         this.tpl = depreciated_tpl;
26781         Roo.apply(this, depreciated_config);
26782     }
26783     this.wrapEl  = this.el.wrap().wrap();
26784     ///this.el = this.wrapEla.appendChild(document.createElement("div"));
26785     
26786     
26787     if(typeof(this.tpl) == "string"){
26788         this.tpl = new Roo.Template(this.tpl);
26789     } else {
26790         // support xtype ctors..
26791         this.tpl = new Roo.factory(this.tpl, Roo);
26792     }
26793     
26794     
26795     this.tpl.compile();
26796     
26797     /** @private */
26798     this.addEvents({
26799         /**
26800          * @event beforeclick
26801          * Fires before a click is processed. Returns false to cancel the default action.
26802          * @param {Roo.View} this
26803          * @param {Number} index The index of the target node
26804          * @param {HTMLElement} node The target node
26805          * @param {Roo.EventObject} e The raw event object
26806          */
26807             "beforeclick" : true,
26808         /**
26809          * @event click
26810          * Fires when a template node is clicked.
26811          * @param {Roo.View} this
26812          * @param {Number} index The index of the target node
26813          * @param {HTMLElement} node The target node
26814          * @param {Roo.EventObject} e The raw event object
26815          */
26816             "click" : true,
26817         /**
26818          * @event dblclick
26819          * Fires when a template node is double clicked.
26820          * @param {Roo.View} this
26821          * @param {Number} index The index of the target node
26822          * @param {HTMLElement} node The target node
26823          * @param {Roo.EventObject} e The raw event object
26824          */
26825             "dblclick" : true,
26826         /**
26827          * @event contextmenu
26828          * Fires when a template node is right clicked.
26829          * @param {Roo.View} this
26830          * @param {Number} index The index of the target node
26831          * @param {HTMLElement} node The target node
26832          * @param {Roo.EventObject} e The raw event object
26833          */
26834             "contextmenu" : true,
26835         /**
26836          * @event selectionchange
26837          * Fires when the selected nodes change.
26838          * @param {Roo.View} this
26839          * @param {Array} selections Array of the selected nodes
26840          */
26841             "selectionchange" : true,
26842     
26843         /**
26844          * @event beforeselect
26845          * Fires before a selection is made. If any handlers return false, the selection is cancelled.
26846          * @param {Roo.View} this
26847          * @param {HTMLElement} node The node to be selected
26848          * @param {Array} selections Array of currently selected nodes
26849          */
26850             "beforeselect" : true,
26851         /**
26852          * @event preparedata
26853          * Fires on every row to render, to allow you to change the data.
26854          * @param {Roo.View} this
26855          * @param {Object} data to be rendered (change this)
26856          */
26857           "preparedata" : true
26858           
26859           
26860         });
26861
26862
26863
26864     this.el.on({
26865         "click": this.onClick,
26866         "dblclick": this.onDblClick,
26867         "contextmenu": this.onContextMenu,
26868         scope:this
26869     });
26870
26871     this.selections = [];
26872     this.nodes = [];
26873     this.cmp = new Roo.CompositeElementLite([]);
26874     if(this.store){
26875         this.store = Roo.factory(this.store, Roo.data);
26876         this.setStore(this.store, true);
26877     }
26878     
26879     if ( this.footer && this.footer.xtype) {
26880            
26881          var fctr = this.wrapEl.appendChild(document.createElement("div"));
26882         
26883         this.footer.dataSource = this.store;
26884         this.footer.container = fctr;
26885         this.footer = Roo.factory(this.footer, Roo);
26886         fctr.insertFirst(this.el);
26887         
26888         // this is a bit insane - as the paging toolbar seems to detach the el..
26889 //        dom.parentNode.parentNode.parentNode
26890          // they get detached?
26891     }
26892     
26893     
26894     Roo.View.superclass.constructor.call(this);
26895     
26896     
26897 };
26898
26899 Roo.extend(Roo.View, Roo.util.Observable, {
26900     
26901      /**
26902      * @cfg {Roo.data.Store} store Data store to load data from.
26903      */
26904     store : false,
26905     
26906     /**
26907      * @cfg {String|Roo.Element} el The container element.
26908      */
26909     el : '',
26910     
26911     /**
26912      * @cfg {String|Roo.Template} tpl The template used by this View 
26913      */
26914     tpl : false,
26915     /**
26916      * @cfg {String} dataName the named area of the template to use as the data area
26917      *                          Works with domtemplates roo-name="name"
26918      */
26919     dataName: false,
26920     /**
26921      * @cfg {String} selectedClass The css class to add to selected nodes
26922      */
26923     selectedClass : "x-view-selected",
26924      /**
26925      * @cfg {String} emptyText The empty text to show when nothing is loaded.
26926      */
26927     emptyText : "",
26928     
26929     /**
26930      * @cfg {String} text to display on mask (default Loading)
26931      */
26932     mask : false,
26933     /**
26934      * @cfg {Boolean} multiSelect Allow multiple selection
26935      */
26936     multiSelect : false,
26937     /**
26938      * @cfg {Boolean} singleSelect Allow single selection
26939      */
26940     singleSelect:  false,
26941     
26942     /**
26943      * @cfg {Boolean} toggleSelect - selecting 
26944      */
26945     toggleSelect : false,
26946     
26947     /**
26948      * @cfg {Boolean} tickable - selecting 
26949      */
26950     tickable : false,
26951     
26952     /**
26953      * Returns the element this view is bound to.
26954      * @return {Roo.Element}
26955      */
26956     getEl : function(){
26957         return this.wrapEl;
26958     },
26959     
26960     
26961
26962     /**
26963      * Refreshes the view. - called by datachanged on the store. - do not call directly.
26964      */
26965     refresh : function(){
26966         //Roo.log('refresh');
26967         var t = this.tpl;
26968         
26969         // if we are using something like 'domtemplate', then
26970         // the what gets used is:
26971         // t.applySubtemplate(NAME, data, wrapping data..)
26972         // the outer template then get' applied with
26973         //     the store 'extra data'
26974         // and the body get's added to the
26975         //      roo-name="data" node?
26976         //      <span class='roo-tpl-{name}'></span> ?????
26977         
26978         
26979         
26980         this.clearSelections();
26981         this.el.update("");
26982         var html = [];
26983         var records = this.store.getRange();
26984         if(records.length < 1) {
26985             
26986             // is this valid??  = should it render a template??
26987             
26988             this.el.update(this.emptyText);
26989             return;
26990         }
26991         var el = this.el;
26992         if (this.dataName) {
26993             this.el.update(t.apply(this.store.meta)); //????
26994             el = this.el.child('.roo-tpl-' + this.dataName);
26995         }
26996         
26997         for(var i = 0, len = records.length; i < len; i++){
26998             var data = this.prepareData(records[i].data, i, records[i]);
26999             this.fireEvent("preparedata", this, data, i, records[i]);
27000             
27001             var d = Roo.apply({}, data);
27002             
27003             if(this.tickable){
27004                 Roo.apply(d, {'roo-id' : Roo.id()});
27005                 
27006                 var _this = this;
27007             
27008                 Roo.each(this.parent.item, function(item){
27009                     if(item[_this.parent.valueField] != data[_this.parent.valueField]){
27010                         return;
27011                     }
27012                     Roo.apply(d, {'roo-data-checked' : 'checked'});
27013                 });
27014             }
27015             
27016             html[html.length] = Roo.util.Format.trim(
27017                 this.dataName ?
27018                     t.applySubtemplate(this.dataName, d, this.store.meta) :
27019                     t.apply(d)
27020             );
27021         }
27022         
27023         
27024         
27025         el.update(html.join(""));
27026         this.nodes = el.dom.childNodes;
27027         this.updateIndexes(0);
27028     },
27029     
27030
27031     /**
27032      * Function to override to reformat the data that is sent to
27033      * the template for each node.
27034      * DEPRICATED - use the preparedata event handler.
27035      * @param {Array/Object} data The raw data (array of colData for a data model bound view or
27036      * a JSON object for an UpdateManager bound view).
27037      */
27038     prepareData : function(data, index, record)
27039     {
27040         this.fireEvent("preparedata", this, data, index, record);
27041         return data;
27042     },
27043
27044     onUpdate : function(ds, record){
27045         // Roo.log('on update');   
27046         this.clearSelections();
27047         var index = this.store.indexOf(record);
27048         var n = this.nodes[index];
27049         this.tpl.insertBefore(n, this.prepareData(record.data, index, record));
27050         n.parentNode.removeChild(n);
27051         this.updateIndexes(index, index);
27052     },
27053
27054     
27055     
27056 // --------- FIXME     
27057     onAdd : function(ds, records, index)
27058     {
27059         //Roo.log(['on Add', ds, records, index] );        
27060         this.clearSelections();
27061         if(this.nodes.length == 0){
27062             this.refresh();
27063             return;
27064         }
27065         var n = this.nodes[index];
27066         for(var i = 0, len = records.length; i < len; i++){
27067             var d = this.prepareData(records[i].data, i, records[i]);
27068             if(n){
27069                 this.tpl.insertBefore(n, d);
27070             }else{
27071                 
27072                 this.tpl.append(this.el, d);
27073             }
27074         }
27075         this.updateIndexes(index);
27076     },
27077
27078     onRemove : function(ds, record, index){
27079        // Roo.log('onRemove');
27080         this.clearSelections();
27081         var el = this.dataName  ?
27082             this.el.child('.roo-tpl-' + this.dataName) :
27083             this.el; 
27084         
27085         el.dom.removeChild(this.nodes[index]);
27086         this.updateIndexes(index);
27087     },
27088
27089     /**
27090      * Refresh an individual node.
27091      * @param {Number} index
27092      */
27093     refreshNode : function(index){
27094         this.onUpdate(this.store, this.store.getAt(index));
27095     },
27096
27097     updateIndexes : function(startIndex, endIndex){
27098         var ns = this.nodes;
27099         startIndex = startIndex || 0;
27100         endIndex = endIndex || ns.length - 1;
27101         for(var i = startIndex; i <= endIndex; i++){
27102             ns[i].nodeIndex = i;
27103         }
27104     },
27105
27106     /**
27107      * Changes the data store this view uses and refresh the view.
27108      * @param {Store} store
27109      */
27110     setStore : function(store, initial){
27111         if(!initial && this.store){
27112             this.store.un("datachanged", this.refresh);
27113             this.store.un("add", this.onAdd);
27114             this.store.un("remove", this.onRemove);
27115             this.store.un("update", this.onUpdate);
27116             this.store.un("clear", this.refresh);
27117             this.store.un("beforeload", this.onBeforeLoad);
27118             this.store.un("load", this.onLoad);
27119             this.store.un("loadexception", this.onLoad);
27120         }
27121         if(store){
27122           
27123             store.on("datachanged", this.refresh, this);
27124             store.on("add", this.onAdd, this);
27125             store.on("remove", this.onRemove, this);
27126             store.on("update", this.onUpdate, this);
27127             store.on("clear", this.refresh, this);
27128             store.on("beforeload", this.onBeforeLoad, this);
27129             store.on("load", this.onLoad, this);
27130             store.on("loadexception", this.onLoad, this);
27131         }
27132         
27133         if(store){
27134             this.refresh();
27135         }
27136     },
27137     /**
27138      * onbeforeLoad - masks the loading area.
27139      *
27140      */
27141     onBeforeLoad : function(store,opts)
27142     {
27143          //Roo.log('onBeforeLoad');   
27144         if (!opts.add) {
27145             this.el.update("");
27146         }
27147         this.el.mask(this.mask ? this.mask : "Loading" ); 
27148     },
27149     onLoad : function ()
27150     {
27151         this.el.unmask();
27152     },
27153     
27154
27155     /**
27156      * Returns the template node the passed child belongs to or null if it doesn't belong to one.
27157      * @param {HTMLElement} node
27158      * @return {HTMLElement} The template node
27159      */
27160     findItemFromChild : function(node){
27161         var el = this.dataName  ?
27162             this.el.child('.roo-tpl-' + this.dataName,true) :
27163             this.el.dom; 
27164         
27165         if(!node || node.parentNode == el){
27166                     return node;
27167             }
27168             var p = node.parentNode;
27169             while(p && p != el){
27170             if(p.parentNode == el){
27171                 return p;
27172             }
27173             p = p.parentNode;
27174         }
27175             return null;
27176     },
27177
27178     /** @ignore */
27179     onClick : function(e){
27180         var item = this.findItemFromChild(e.getTarget());
27181         if(item){
27182             var index = this.indexOf(item);
27183             if(this.onItemClick(item, index, e) !== false){
27184                 this.fireEvent("click", this, index, item, e);
27185             }
27186         }else{
27187             this.clearSelections();
27188         }
27189     },
27190
27191     /** @ignore */
27192     onContextMenu : function(e){
27193         var item = this.findItemFromChild(e.getTarget());
27194         if(item){
27195             this.fireEvent("contextmenu", this, this.indexOf(item), item, e);
27196         }
27197     },
27198
27199     /** @ignore */
27200     onDblClick : function(e){
27201         var item = this.findItemFromChild(e.getTarget());
27202         if(item){
27203             this.fireEvent("dblclick", this, this.indexOf(item), item, e);
27204         }
27205     },
27206
27207     onItemClick : function(item, index, e)
27208     {
27209         if(this.fireEvent("beforeclick", this, index, item, e) === false){
27210             return false;
27211         }
27212         if (this.toggleSelect) {
27213             var m = this.isSelected(item) ? 'unselect' : 'select';
27214             //Roo.log(m);
27215             var _t = this;
27216             _t[m](item, true, false);
27217             return true;
27218         }
27219         if(this.multiSelect || this.singleSelect){
27220             if(this.multiSelect && e.shiftKey && this.lastSelection){
27221                 this.select(this.getNodes(this.indexOf(this.lastSelection), index), false);
27222             }else{
27223                 this.select(item, this.multiSelect && e.ctrlKey);
27224                 this.lastSelection = item;
27225             }
27226             
27227             if(!this.tickable){
27228                 e.preventDefault();
27229             }
27230             
27231         }
27232         return true;
27233     },
27234
27235     /**
27236      * Get the number of selected nodes.
27237      * @return {Number}
27238      */
27239     getSelectionCount : function(){
27240         return this.selections.length;
27241     },
27242
27243     /**
27244      * Get the currently selected nodes.
27245      * @return {Array} An array of HTMLElements
27246      */
27247     getSelectedNodes : function(){
27248         return this.selections;
27249     },
27250
27251     /**
27252      * Get the indexes of the selected nodes.
27253      * @return {Array}
27254      */
27255     getSelectedIndexes : function(){
27256         var indexes = [], s = this.selections;
27257         for(var i = 0, len = s.length; i < len; i++){
27258             indexes.push(s[i].nodeIndex);
27259         }
27260         return indexes;
27261     },
27262
27263     /**
27264      * Clear all selections
27265      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange event
27266      */
27267     clearSelections : function(suppressEvent){
27268         if(this.nodes && (this.multiSelect || this.singleSelect) && this.selections.length > 0){
27269             this.cmp.elements = this.selections;
27270             this.cmp.removeClass(this.selectedClass);
27271             this.selections = [];
27272             if(!suppressEvent){
27273                 this.fireEvent("selectionchange", this, this.selections);
27274             }
27275         }
27276     },
27277
27278     /**
27279      * Returns true if the passed node is selected
27280      * @param {HTMLElement/Number} node The node or node index
27281      * @return {Boolean}
27282      */
27283     isSelected : function(node){
27284         var s = this.selections;
27285         if(s.length < 1){
27286             return false;
27287         }
27288         node = this.getNode(node);
27289         return s.indexOf(node) !== -1;
27290     },
27291
27292     /**
27293      * Selects nodes.
27294      * @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
27295      * @param {Boolean} keepExisting (optional) true to keep existing selections
27296      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
27297      */
27298     select : function(nodeInfo, keepExisting, suppressEvent){
27299         if(nodeInfo instanceof Array){
27300             if(!keepExisting){
27301                 this.clearSelections(true);
27302             }
27303             for(var i = 0, len = nodeInfo.length; i < len; i++){
27304                 this.select(nodeInfo[i], true, true);
27305             }
27306             return;
27307         } 
27308         var node = this.getNode(nodeInfo);
27309         if(!node || this.isSelected(node)){
27310             return; // already selected.
27311         }
27312         if(!keepExisting){
27313             this.clearSelections(true);
27314         }
27315         
27316         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
27317             Roo.fly(node).addClass(this.selectedClass);
27318             this.selections.push(node);
27319             if(!suppressEvent){
27320                 this.fireEvent("selectionchange", this, this.selections);
27321             }
27322         }
27323         
27324         
27325     },
27326       /**
27327      * Unselects nodes.
27328      * @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
27329      * @param {Boolean} keepExisting (optional) true IGNORED (for campatibility with select)
27330      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
27331      */
27332     unselect : function(nodeInfo, keepExisting, suppressEvent)
27333     {
27334         if(nodeInfo instanceof Array){
27335             Roo.each(this.selections, function(s) {
27336                 this.unselect(s, nodeInfo);
27337             }, this);
27338             return;
27339         }
27340         var node = this.getNode(nodeInfo);
27341         if(!node || !this.isSelected(node)){
27342             //Roo.log("not selected");
27343             return; // not selected.
27344         }
27345         // fireevent???
27346         var ns = [];
27347         Roo.each(this.selections, function(s) {
27348             if (s == node ) {
27349                 Roo.fly(node).removeClass(this.selectedClass);
27350
27351                 return;
27352             }
27353             ns.push(s);
27354         },this);
27355         
27356         this.selections= ns;
27357         this.fireEvent("selectionchange", this, this.selections);
27358     },
27359
27360     /**
27361      * Gets a template node.
27362      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
27363      * @return {HTMLElement} The node or null if it wasn't found
27364      */
27365     getNode : function(nodeInfo){
27366         if(typeof nodeInfo == "string"){
27367             return document.getElementById(nodeInfo);
27368         }else if(typeof nodeInfo == "number"){
27369             return this.nodes[nodeInfo];
27370         }
27371         return nodeInfo;
27372     },
27373
27374     /**
27375      * Gets a range template nodes.
27376      * @param {Number} startIndex
27377      * @param {Number} endIndex
27378      * @return {Array} An array of nodes
27379      */
27380     getNodes : function(start, end){
27381         var ns = this.nodes;
27382         start = start || 0;
27383         end = typeof end == "undefined" ? ns.length - 1 : end;
27384         var nodes = [];
27385         if(start <= end){
27386             for(var i = start; i <= end; i++){
27387                 nodes.push(ns[i]);
27388             }
27389         } else{
27390             for(var i = start; i >= end; i--){
27391                 nodes.push(ns[i]);
27392             }
27393         }
27394         return nodes;
27395     },
27396
27397     /**
27398      * Finds the index of the passed node
27399      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
27400      * @return {Number} The index of the node or -1
27401      */
27402     indexOf : function(node){
27403         node = this.getNode(node);
27404         if(typeof node.nodeIndex == "number"){
27405             return node.nodeIndex;
27406         }
27407         var ns = this.nodes;
27408         for(var i = 0, len = ns.length; i < len; i++){
27409             if(ns[i] == node){
27410                 return i;
27411             }
27412         }
27413         return -1;
27414     }
27415 });
27416 /*
27417  * Based on:
27418  * Ext JS Library 1.1.1
27419  * Copyright(c) 2006-2007, Ext JS, LLC.
27420  *
27421  * Originally Released Under LGPL - original licence link has changed is not relivant.
27422  *
27423  * Fork - LGPL
27424  * <script type="text/javascript">
27425  */
27426
27427 /**
27428  * @class Roo.JsonView
27429  * @extends Roo.View
27430  * Shortcut class to create a JSON + {@link Roo.UpdateManager} template view. Usage:
27431 <pre><code>
27432 var view = new Roo.JsonView({
27433     container: "my-element",
27434     tpl: '&lt;div id="{id}"&gt;{foo} - {bar}&lt;/div&gt;', // auto create template
27435     multiSelect: true, 
27436     jsonRoot: "data" 
27437 });
27438
27439 // listen for node click?
27440 view.on("click", function(vw, index, node, e){
27441     alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
27442 });
27443
27444 // direct load of JSON data
27445 view.load("foobar.php");
27446
27447 // Example from my blog list
27448 var tpl = new Roo.Template(
27449     '&lt;div class="entry"&gt;' +
27450     '&lt;a class="entry-title" href="{link}"&gt;{title}&lt;/a&gt;' +
27451     "&lt;h4&gt;{date} by {author} | {comments} Comments&lt;/h4&gt;{description}" +
27452     "&lt;/div&gt;&lt;hr /&gt;"
27453 );
27454
27455 var moreView = new Roo.JsonView({
27456     container :  "entry-list", 
27457     template : tpl,
27458     jsonRoot: "posts"
27459 });
27460 moreView.on("beforerender", this.sortEntries, this);
27461 moreView.load({
27462     url: "/blog/get-posts.php",
27463     params: "allposts=true",
27464     text: "Loading Blog Entries..."
27465 });
27466 </code></pre>
27467
27468 * Note: old code is supported with arguments : (container, template, config)
27469
27470
27471  * @constructor
27472  * Create a new JsonView
27473  * 
27474  * @param {Object} config The config object
27475  * 
27476  */
27477 Roo.JsonView = function(config, depreciated_tpl, depreciated_config){
27478     
27479     
27480     Roo.JsonView.superclass.constructor.call(this, config, depreciated_tpl, depreciated_config);
27481
27482     var um = this.el.getUpdateManager();
27483     um.setRenderer(this);
27484     um.on("update", this.onLoad, this);
27485     um.on("failure", this.onLoadException, this);
27486
27487     /**
27488      * @event beforerender
27489      * Fires before rendering of the downloaded JSON data.
27490      * @param {Roo.JsonView} this
27491      * @param {Object} data The JSON data loaded
27492      */
27493     /**
27494      * @event load
27495      * Fires when data is loaded.
27496      * @param {Roo.JsonView} this
27497      * @param {Object} data The JSON data loaded
27498      * @param {Object} response The raw Connect response object
27499      */
27500     /**
27501      * @event loadexception
27502      * Fires when loading fails.
27503      * @param {Roo.JsonView} this
27504      * @param {Object} response The raw Connect response object
27505      */
27506     this.addEvents({
27507         'beforerender' : true,
27508         'load' : true,
27509         'loadexception' : true
27510     });
27511 };
27512 Roo.extend(Roo.JsonView, Roo.View, {
27513     /**
27514      * @type {String} The root property in the loaded JSON object that contains the data
27515      */
27516     jsonRoot : "",
27517
27518     /**
27519      * Refreshes the view.
27520      */
27521     refresh : function(){
27522         this.clearSelections();
27523         this.el.update("");
27524         var html = [];
27525         var o = this.jsonData;
27526         if(o && o.length > 0){
27527             for(var i = 0, len = o.length; i < len; i++){
27528                 var data = this.prepareData(o[i], i, o);
27529                 html[html.length] = this.tpl.apply(data);
27530             }
27531         }else{
27532             html.push(this.emptyText);
27533         }
27534         this.el.update(html.join(""));
27535         this.nodes = this.el.dom.childNodes;
27536         this.updateIndexes(0);
27537     },
27538
27539     /**
27540      * 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.
27541      * @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:
27542      <pre><code>
27543      view.load({
27544          url: "your-url.php",
27545          params: {param1: "foo", param2: "bar"}, // or a URL encoded string
27546          callback: yourFunction,
27547          scope: yourObject, //(optional scope)
27548          discardUrl: false,
27549          nocache: false,
27550          text: "Loading...",
27551          timeout: 30,
27552          scripts: false
27553      });
27554      </code></pre>
27555      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
27556      * 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.
27557      * @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}
27558      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
27559      * @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.
27560      */
27561     load : function(){
27562         var um = this.el.getUpdateManager();
27563         um.update.apply(um, arguments);
27564     },
27565
27566     // note - render is a standard framework call...
27567     // using it for the response is really flaky... - it's called by UpdateManager normally, except when called by the XComponent/addXtype.
27568     render : function(el, response){
27569         
27570         this.clearSelections();
27571         this.el.update("");
27572         var o;
27573         try{
27574             if (response != '') {
27575                 o = Roo.util.JSON.decode(response.responseText);
27576                 if(this.jsonRoot){
27577                     
27578                     o = o[this.jsonRoot];
27579                 }
27580             }
27581         } catch(e){
27582         }
27583         /**
27584          * The current JSON data or null
27585          */
27586         this.jsonData = o;
27587         this.beforeRender();
27588         this.refresh();
27589     },
27590
27591 /**
27592  * Get the number of records in the current JSON dataset
27593  * @return {Number}
27594  */
27595     getCount : function(){
27596         return this.jsonData ? this.jsonData.length : 0;
27597     },
27598
27599 /**
27600  * Returns the JSON object for the specified node(s)
27601  * @param {HTMLElement/Array} node The node or an array of nodes
27602  * @return {Object/Array} If you pass in an array, you get an array back, otherwise
27603  * you get the JSON object for the node
27604  */
27605     getNodeData : function(node){
27606         if(node instanceof Array){
27607             var data = [];
27608             for(var i = 0, len = node.length; i < len; i++){
27609                 data.push(this.getNodeData(node[i]));
27610             }
27611             return data;
27612         }
27613         return this.jsonData[this.indexOf(node)] || null;
27614     },
27615
27616     beforeRender : function(){
27617         this.snapshot = this.jsonData;
27618         if(this.sortInfo){
27619             this.sort.apply(this, this.sortInfo);
27620         }
27621         this.fireEvent("beforerender", this, this.jsonData);
27622     },
27623
27624     onLoad : function(el, o){
27625         this.fireEvent("load", this, this.jsonData, o);
27626     },
27627
27628     onLoadException : function(el, o){
27629         this.fireEvent("loadexception", this, o);
27630     },
27631
27632 /**
27633  * Filter the data by a specific property.
27634  * @param {String} property A property on your JSON objects
27635  * @param {String/RegExp} value Either string that the property values
27636  * should start with, or a RegExp to test against the property
27637  */
27638     filter : function(property, value){
27639         if(this.jsonData){
27640             var data = [];
27641             var ss = this.snapshot;
27642             if(typeof value == "string"){
27643                 var vlen = value.length;
27644                 if(vlen == 0){
27645                     this.clearFilter();
27646                     return;
27647                 }
27648                 value = value.toLowerCase();
27649                 for(var i = 0, len = ss.length; i < len; i++){
27650                     var o = ss[i];
27651                     if(o[property].substr(0, vlen).toLowerCase() == value){
27652                         data.push(o);
27653                     }
27654                 }
27655             } else if(value.exec){ // regex?
27656                 for(var i = 0, len = ss.length; i < len; i++){
27657                     var o = ss[i];
27658                     if(value.test(o[property])){
27659                         data.push(o);
27660                     }
27661                 }
27662             } else{
27663                 return;
27664             }
27665             this.jsonData = data;
27666             this.refresh();
27667         }
27668     },
27669
27670 /**
27671  * Filter by a function. The passed function will be called with each
27672  * object in the current dataset. If the function returns true the value is kept,
27673  * otherwise it is filtered.
27674  * @param {Function} fn
27675  * @param {Object} scope (optional) The scope of the function (defaults to this JsonView)
27676  */
27677     filterBy : function(fn, scope){
27678         if(this.jsonData){
27679             var data = [];
27680             var ss = this.snapshot;
27681             for(var i = 0, len = ss.length; i < len; i++){
27682                 var o = ss[i];
27683                 if(fn.call(scope || this, o)){
27684                     data.push(o);
27685                 }
27686             }
27687             this.jsonData = data;
27688             this.refresh();
27689         }
27690     },
27691
27692 /**
27693  * Clears the current filter.
27694  */
27695     clearFilter : function(){
27696         if(this.snapshot && this.jsonData != this.snapshot){
27697             this.jsonData = this.snapshot;
27698             this.refresh();
27699         }
27700     },
27701
27702
27703 /**
27704  * Sorts the data for this view and refreshes it.
27705  * @param {String} property A property on your JSON objects to sort on
27706  * @param {String} direction (optional) "desc" or "asc" (defaults to "asc")
27707  * @param {Function} sortType (optional) A function to call to convert the data to a sortable value.
27708  */
27709     sort : function(property, dir, sortType){
27710         this.sortInfo = Array.prototype.slice.call(arguments, 0);
27711         if(this.jsonData){
27712             var p = property;
27713             var dsc = dir && dir.toLowerCase() == "desc";
27714             var f = function(o1, o2){
27715                 var v1 = sortType ? sortType(o1[p]) : o1[p];
27716                 var v2 = sortType ? sortType(o2[p]) : o2[p];
27717                 ;
27718                 if(v1 < v2){
27719                     return dsc ? +1 : -1;
27720                 } else if(v1 > v2){
27721                     return dsc ? -1 : +1;
27722                 } else{
27723                     return 0;
27724                 }
27725             };
27726             this.jsonData.sort(f);
27727             this.refresh();
27728             if(this.jsonData != this.snapshot){
27729                 this.snapshot.sort(f);
27730             }
27731         }
27732     }
27733 });/*
27734  * Based on:
27735  * Ext JS Library 1.1.1
27736  * Copyright(c) 2006-2007, Ext JS, LLC.
27737  *
27738  * Originally Released Under LGPL - original licence link has changed is not relivant.
27739  *
27740  * Fork - LGPL
27741  * <script type="text/javascript">
27742  */
27743  
27744
27745 /**
27746  * @class Roo.ColorPalette
27747  * @extends Roo.Component
27748  * Simple color palette class for choosing colors.  The palette can be rendered to any container.<br />
27749  * Here's an example of typical usage:
27750  * <pre><code>
27751 var cp = new Roo.ColorPalette({value:'993300'});  // initial selected color
27752 cp.render('my-div');
27753
27754 cp.on('select', function(palette, selColor){
27755     // do something with selColor
27756 });
27757 </code></pre>
27758  * @constructor
27759  * Create a new ColorPalette
27760  * @param {Object} config The config object
27761  */
27762 Roo.ColorPalette = function(config){
27763     Roo.ColorPalette.superclass.constructor.call(this, config);
27764     this.addEvents({
27765         /**
27766              * @event select
27767              * Fires when a color is selected
27768              * @param {ColorPalette} this
27769              * @param {String} color The 6-digit color hex code (without the # symbol)
27770              */
27771         select: true
27772     });
27773
27774     if(this.handler){
27775         this.on("select", this.handler, this.scope, true);
27776     }
27777 };
27778 Roo.extend(Roo.ColorPalette, Roo.Component, {
27779     /**
27780      * @cfg {String} itemCls
27781      * The CSS class to apply to the containing element (defaults to "x-color-palette")
27782      */
27783     itemCls : "x-color-palette",
27784     /**
27785      * @cfg {String} value
27786      * The initial color to highlight (should be a valid 6-digit color hex code without the # symbol).  Note that
27787      * the hex codes are case-sensitive.
27788      */
27789     value : null,
27790     clickEvent:'click',
27791     // private
27792     ctype: "Roo.ColorPalette",
27793
27794     /**
27795      * @cfg {Boolean} allowReselect If set to true then reselecting a color that is already selected fires the selection event
27796      */
27797     allowReselect : false,
27798
27799     /**
27800      * <p>An array of 6-digit color hex code strings (without the # symbol).  This array can contain any number
27801      * of colors, and each hex code should be unique.  The width of the palette is controlled via CSS by adjusting
27802      * the width property of the 'x-color-palette' class (or assigning a custom class), so you can balance the number
27803      * of colors with the width setting until the box is symmetrical.</p>
27804      * <p>You can override individual colors if needed:</p>
27805      * <pre><code>
27806 var cp = new Roo.ColorPalette();
27807 cp.colors[0] = "FF0000";  // change the first box to red
27808 </code></pre>
27809
27810 Or you can provide a custom array of your own for complete control:
27811 <pre><code>
27812 var cp = new Roo.ColorPalette();
27813 cp.colors = ["000000", "993300", "333300"];
27814 </code></pre>
27815      * @type Array
27816      */
27817     colors : [
27818         "000000", "993300", "333300", "003300", "003366", "000080", "333399", "333333",
27819         "800000", "FF6600", "808000", "008000", "008080", "0000FF", "666699", "808080",
27820         "FF0000", "FF9900", "99CC00", "339966", "33CCCC", "3366FF", "800080", "969696",
27821         "FF00FF", "FFCC00", "FFFF00", "00FF00", "00FFFF", "00CCFF", "993366", "C0C0C0",
27822         "FF99CC", "FFCC99", "FFFF99", "CCFFCC", "CCFFFF", "99CCFF", "CC99FF", "FFFFFF"
27823     ],
27824
27825     // private
27826     onRender : function(container, position){
27827         var t = new Roo.MasterTemplate(
27828             '<tpl><a href="#" class="color-{0}" hidefocus="on"><em><span style="background:#{0}" unselectable="on">&#160;</span></em></a></tpl>'
27829         );
27830         var c = this.colors;
27831         for(var i = 0, len = c.length; i < len; i++){
27832             t.add([c[i]]);
27833         }
27834         var el = document.createElement("div");
27835         el.className = this.itemCls;
27836         t.overwrite(el);
27837         container.dom.insertBefore(el, position);
27838         this.el = Roo.get(el);
27839         this.el.on(this.clickEvent, this.handleClick,  this, {delegate: "a"});
27840         if(this.clickEvent != 'click'){
27841             this.el.on('click', Roo.emptyFn,  this, {delegate: "a", preventDefault:true});
27842         }
27843     },
27844
27845     // private
27846     afterRender : function(){
27847         Roo.ColorPalette.superclass.afterRender.call(this);
27848         if(this.value){
27849             var s = this.value;
27850             this.value = null;
27851             this.select(s);
27852         }
27853     },
27854
27855     // private
27856     handleClick : function(e, t){
27857         e.preventDefault();
27858         if(!this.disabled){
27859             var c = t.className.match(/(?:^|\s)color-(.{6})(?:\s|$)/)[1];
27860             this.select(c.toUpperCase());
27861         }
27862     },
27863
27864     /**
27865      * Selects the specified color in the palette (fires the select event)
27866      * @param {String} color A valid 6-digit color hex code (# will be stripped if included)
27867      */
27868     select : function(color){
27869         color = color.replace("#", "");
27870         if(color != this.value || this.allowReselect){
27871             var el = this.el;
27872             if(this.value){
27873                 el.child("a.color-"+this.value).removeClass("x-color-palette-sel");
27874             }
27875             el.child("a.color-"+color).addClass("x-color-palette-sel");
27876             this.value = color;
27877             this.fireEvent("select", this, color);
27878         }
27879     }
27880 });/*
27881  * Based on:
27882  * Ext JS Library 1.1.1
27883  * Copyright(c) 2006-2007, Ext JS, LLC.
27884  *
27885  * Originally Released Under LGPL - original licence link has changed is not relivant.
27886  *
27887  * Fork - LGPL
27888  * <script type="text/javascript">
27889  */
27890  
27891 /**
27892  * @class Roo.DatePicker
27893  * @extends Roo.Component
27894  * Simple date picker class.
27895  * @constructor
27896  * Create a new DatePicker
27897  * @param {Object} config The config object
27898  */
27899 Roo.DatePicker = function(config){
27900     Roo.DatePicker.superclass.constructor.call(this, config);
27901
27902     this.value = config && config.value ?
27903                  config.value.clearTime() : new Date().clearTime();
27904
27905     this.addEvents({
27906         /**
27907              * @event select
27908              * Fires when a date is selected
27909              * @param {DatePicker} this
27910              * @param {Date} date The selected date
27911              */
27912         'select': true,
27913         /**
27914              * @event monthchange
27915              * Fires when the displayed month changes 
27916              * @param {DatePicker} this
27917              * @param {Date} date The selected month
27918              */
27919         'monthchange': true
27920     });
27921
27922     if(this.handler){
27923         this.on("select", this.handler,  this.scope || this);
27924     }
27925     // build the disabledDatesRE
27926     if(!this.disabledDatesRE && this.disabledDates){
27927         var dd = this.disabledDates;
27928         var re = "(?:";
27929         for(var i = 0; i < dd.length; i++){
27930             re += dd[i];
27931             if(i != dd.length-1) {
27932                 re += "|";
27933             }
27934         }
27935         this.disabledDatesRE = new RegExp(re + ")");
27936     }
27937 };
27938
27939 Roo.extend(Roo.DatePicker, Roo.Component, {
27940     /**
27941      * @cfg {String} todayText
27942      * The text to display on the button that selects the current date (defaults to "Today")
27943      */
27944     todayText : "Today",
27945     /**
27946      * @cfg {String} okText
27947      * The text to display on the ok button
27948      */
27949     okText : "&#160;OK&#160;", // &#160; to give the user extra clicking room
27950     /**
27951      * @cfg {String} cancelText
27952      * The text to display on the cancel button
27953      */
27954     cancelText : "Cancel",
27955     /**
27956      * @cfg {String} todayTip
27957      * The tooltip to display for the button that selects the current date (defaults to "{current date} (Spacebar)")
27958      */
27959     todayTip : "{0} (Spacebar)",
27960     /**
27961      * @cfg {Date} minDate
27962      * Minimum allowable date (JavaScript date object, defaults to null)
27963      */
27964     minDate : null,
27965     /**
27966      * @cfg {Date} maxDate
27967      * Maximum allowable date (JavaScript date object, defaults to null)
27968      */
27969     maxDate : null,
27970     /**
27971      * @cfg {String} minText
27972      * The error text to display if the minDate validation fails (defaults to "This date is before the minimum date")
27973      */
27974     minText : "This date is before the minimum date",
27975     /**
27976      * @cfg {String} maxText
27977      * The error text to display if the maxDate validation fails (defaults to "This date is after the maximum date")
27978      */
27979     maxText : "This date is after the maximum date",
27980     /**
27981      * @cfg {String} format
27982      * The default date format string which can be overriden for localization support.  The format must be
27983      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
27984      */
27985     format : "m/d/y",
27986     /**
27987      * @cfg {Array} disabledDays
27988      * An array of days to disable, 0-based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
27989      */
27990     disabledDays : null,
27991     /**
27992      * @cfg {String} disabledDaysText
27993      * The tooltip to display when the date falls on a disabled day (defaults to "")
27994      */
27995     disabledDaysText : "",
27996     /**
27997      * @cfg {RegExp} disabledDatesRE
27998      * JavaScript regular expression used to disable a pattern of dates (defaults to null)
27999      */
28000     disabledDatesRE : null,
28001     /**
28002      * @cfg {String} disabledDatesText
28003      * The tooltip text to display when the date falls on a disabled date (defaults to "")
28004      */
28005     disabledDatesText : "",
28006     /**
28007      * @cfg {Boolean} constrainToViewport
28008      * True to constrain the date picker to the viewport (defaults to true)
28009      */
28010     constrainToViewport : true,
28011     /**
28012      * @cfg {Array} monthNames
28013      * An array of textual month names which can be overriden for localization support (defaults to Date.monthNames)
28014      */
28015     monthNames : Date.monthNames,
28016     /**
28017      * @cfg {Array} dayNames
28018      * An array of textual day names which can be overriden for localization support (defaults to Date.dayNames)
28019      */
28020     dayNames : Date.dayNames,
28021     /**
28022      * @cfg {String} nextText
28023      * The next month navigation button tooltip (defaults to 'Next Month (Control+Right)')
28024      */
28025     nextText: 'Next Month (Control+Right)',
28026     /**
28027      * @cfg {String} prevText
28028      * The previous month navigation button tooltip (defaults to 'Previous Month (Control+Left)')
28029      */
28030     prevText: 'Previous Month (Control+Left)',
28031     /**
28032      * @cfg {String} monthYearText
28033      * The header month selector tooltip (defaults to 'Choose a month (Control+Up/Down to move years)')
28034      */
28035     monthYearText: 'Choose a month (Control+Up/Down to move years)',
28036     /**
28037      * @cfg {Number} startDay
28038      * Day index at which the week should begin, 0-based (defaults to 0, which is Sunday)
28039      */
28040     startDay : 0,
28041     /**
28042      * @cfg {Bool} showClear
28043      * Show a clear button (usefull for date form elements that can be blank.)
28044      */
28045     
28046     showClear: false,
28047     
28048     /**
28049      * Sets the value of the date field
28050      * @param {Date} value The date to set
28051      */
28052     setValue : function(value){
28053         var old = this.value;
28054         
28055         if (typeof(value) == 'string') {
28056          
28057             value = Date.parseDate(value, this.format);
28058         }
28059         if (!value) {
28060             value = new Date();
28061         }
28062         
28063         this.value = value.clearTime(true);
28064         if(this.el){
28065             this.update(this.value);
28066         }
28067     },
28068
28069     /**
28070      * Gets the current selected value of the date field
28071      * @return {Date} The selected date
28072      */
28073     getValue : function(){
28074         return this.value;
28075     },
28076
28077     // private
28078     focus : function(){
28079         if(this.el){
28080             this.update(this.activeDate);
28081         }
28082     },
28083
28084     // privateval
28085     onRender : function(container, position){
28086         
28087         var m = [
28088              '<table cellspacing="0">',
28089                 '<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>',
28090                 '<tr><td colspan="3"><table class="x-date-inner" cellspacing="0"><thead><tr>'];
28091         var dn = this.dayNames;
28092         for(var i = 0; i < 7; i++){
28093             var d = this.startDay+i;
28094             if(d > 6){
28095                 d = d-7;
28096             }
28097             m.push("<th><span>", dn[d].substr(0,1), "</span></th>");
28098         }
28099         m[m.length] = "</tr></thead><tbody><tr>";
28100         for(var i = 0; i < 42; i++) {
28101             if(i % 7 == 0 && i != 0){
28102                 m[m.length] = "</tr><tr>";
28103             }
28104             m[m.length] = '<td><a href="#" hidefocus="on" class="x-date-date" tabIndex="1"><em><span></span></em></a></td>';
28105         }
28106         m[m.length] = '</tr></tbody></table></td></tr><tr>'+
28107             '<td colspan="3" class="x-date-bottom" align="center"></td></tr></table><div class="x-date-mp"></div>';
28108
28109         var el = document.createElement("div");
28110         el.className = "x-date-picker";
28111         el.innerHTML = m.join("");
28112
28113         container.dom.insertBefore(el, position);
28114
28115         this.el = Roo.get(el);
28116         this.eventEl = Roo.get(el.firstChild);
28117
28118         new Roo.util.ClickRepeater(this.el.child("td.x-date-left a"), {
28119             handler: this.showPrevMonth,
28120             scope: this,
28121             preventDefault:true,
28122             stopDefault:true
28123         });
28124
28125         new Roo.util.ClickRepeater(this.el.child("td.x-date-right a"), {
28126             handler: this.showNextMonth,
28127             scope: this,
28128             preventDefault:true,
28129             stopDefault:true
28130         });
28131
28132         this.eventEl.on("mousewheel", this.handleMouseWheel,  this);
28133
28134         this.monthPicker = this.el.down('div.x-date-mp');
28135         this.monthPicker.enableDisplayMode('block');
28136         
28137         var kn = new Roo.KeyNav(this.eventEl, {
28138             "left" : function(e){
28139                 e.ctrlKey ?
28140                     this.showPrevMonth() :
28141                     this.update(this.activeDate.add("d", -1));
28142             },
28143
28144             "right" : function(e){
28145                 e.ctrlKey ?
28146                     this.showNextMonth() :
28147                     this.update(this.activeDate.add("d", 1));
28148             },
28149
28150             "up" : function(e){
28151                 e.ctrlKey ?
28152                     this.showNextYear() :
28153                     this.update(this.activeDate.add("d", -7));
28154             },
28155
28156             "down" : function(e){
28157                 e.ctrlKey ?
28158                     this.showPrevYear() :
28159                     this.update(this.activeDate.add("d", 7));
28160             },
28161
28162             "pageUp" : function(e){
28163                 this.showNextMonth();
28164             },
28165
28166             "pageDown" : function(e){
28167                 this.showPrevMonth();
28168             },
28169
28170             "enter" : function(e){
28171                 e.stopPropagation();
28172                 return true;
28173             },
28174
28175             scope : this
28176         });
28177
28178         this.eventEl.on("click", this.handleDateClick,  this, {delegate: "a.x-date-date"});
28179
28180         this.eventEl.addKeyListener(Roo.EventObject.SPACE, this.selectToday,  this);
28181
28182         this.el.unselectable();
28183         
28184         this.cells = this.el.select("table.x-date-inner tbody td");
28185         this.textNodes = this.el.query("table.x-date-inner tbody span");
28186
28187         this.mbtn = new Roo.Button(this.el.child("td.x-date-middle", true), {
28188             text: "&#160;",
28189             tooltip: this.monthYearText
28190         });
28191
28192         this.mbtn.on('click', this.showMonthPicker, this);
28193         this.mbtn.el.child(this.mbtn.menuClassTarget).addClass("x-btn-with-menu");
28194
28195
28196         var today = (new Date()).dateFormat(this.format);
28197         
28198         var baseTb = new Roo.Toolbar(this.el.child("td.x-date-bottom", true));
28199         if (this.showClear) {
28200             baseTb.add( new Roo.Toolbar.Fill());
28201         }
28202         baseTb.add({
28203             text: String.format(this.todayText, today),
28204             tooltip: String.format(this.todayTip, today),
28205             handler: this.selectToday,
28206             scope: this
28207         });
28208         
28209         //var todayBtn = new Roo.Button(this.el.child("td.x-date-bottom", true), {
28210             
28211         //});
28212         if (this.showClear) {
28213             
28214             baseTb.add( new Roo.Toolbar.Fill());
28215             baseTb.add({
28216                 text: '&#160;',
28217                 cls: 'x-btn-icon x-btn-clear',
28218                 handler: function() {
28219                     //this.value = '';
28220                     this.fireEvent("select", this, '');
28221                 },
28222                 scope: this
28223             });
28224         }
28225         
28226         
28227         if(Roo.isIE){
28228             this.el.repaint();
28229         }
28230         this.update(this.value);
28231     },
28232
28233     createMonthPicker : function(){
28234         if(!this.monthPicker.dom.firstChild){
28235             var buf = ['<table border="0" cellspacing="0">'];
28236             for(var i = 0; i < 6; i++){
28237                 buf.push(
28238                     '<tr><td class="x-date-mp-month"><a href="#">', this.monthNames[i].substr(0, 3), '</a></td>',
28239                     '<td class="x-date-mp-month x-date-mp-sep"><a href="#">', this.monthNames[i+6].substr(0, 3), '</a></td>',
28240                     i == 0 ?
28241                     '<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>' :
28242                     '<td class="x-date-mp-year"><a href="#"></a></td><td class="x-date-mp-year"><a href="#"></a></td></tr>'
28243                 );
28244             }
28245             buf.push(
28246                 '<tr class="x-date-mp-btns"><td colspan="4"><button type="button" class="x-date-mp-ok">',
28247                     this.okText,
28248                     '</button><button type="button" class="x-date-mp-cancel">',
28249                     this.cancelText,
28250                     '</button></td></tr>',
28251                 '</table>'
28252             );
28253             this.monthPicker.update(buf.join(''));
28254             this.monthPicker.on('click', this.onMonthClick, this);
28255             this.monthPicker.on('dblclick', this.onMonthDblClick, this);
28256
28257             this.mpMonths = this.monthPicker.select('td.x-date-mp-month');
28258             this.mpYears = this.monthPicker.select('td.x-date-mp-year');
28259
28260             this.mpMonths.each(function(m, a, i){
28261                 i += 1;
28262                 if((i%2) == 0){
28263                     m.dom.xmonth = 5 + Math.round(i * .5);
28264                 }else{
28265                     m.dom.xmonth = Math.round((i-1) * .5);
28266                 }
28267             });
28268         }
28269     },
28270
28271     showMonthPicker : function(){
28272         this.createMonthPicker();
28273         var size = this.el.getSize();
28274         this.monthPicker.setSize(size);
28275         this.monthPicker.child('table').setSize(size);
28276
28277         this.mpSelMonth = (this.activeDate || this.value).getMonth();
28278         this.updateMPMonth(this.mpSelMonth);
28279         this.mpSelYear = (this.activeDate || this.value).getFullYear();
28280         this.updateMPYear(this.mpSelYear);
28281
28282         this.monthPicker.slideIn('t', {duration:.2});
28283     },
28284
28285     updateMPYear : function(y){
28286         this.mpyear = y;
28287         var ys = this.mpYears.elements;
28288         for(var i = 1; i <= 10; i++){
28289             var td = ys[i-1], y2;
28290             if((i%2) == 0){
28291                 y2 = y + Math.round(i * .5);
28292                 td.firstChild.innerHTML = y2;
28293                 td.xyear = y2;
28294             }else{
28295                 y2 = y - (5-Math.round(i * .5));
28296                 td.firstChild.innerHTML = y2;
28297                 td.xyear = y2;
28298             }
28299             this.mpYears.item(i-1)[y2 == this.mpSelYear ? 'addClass' : 'removeClass']('x-date-mp-sel');
28300         }
28301     },
28302
28303     updateMPMonth : function(sm){
28304         this.mpMonths.each(function(m, a, i){
28305             m[m.dom.xmonth == sm ? 'addClass' : 'removeClass']('x-date-mp-sel');
28306         });
28307     },
28308
28309     selectMPMonth: function(m){
28310         
28311     },
28312
28313     onMonthClick : function(e, t){
28314         e.stopEvent();
28315         var el = new Roo.Element(t), pn;
28316         if(el.is('button.x-date-mp-cancel')){
28317             this.hideMonthPicker();
28318         }
28319         else if(el.is('button.x-date-mp-ok')){
28320             this.update(new Date(this.mpSelYear, this.mpSelMonth, (this.activeDate || this.value).getDate()));
28321             this.hideMonthPicker();
28322         }
28323         else if(pn = el.up('td.x-date-mp-month', 2)){
28324             this.mpMonths.removeClass('x-date-mp-sel');
28325             pn.addClass('x-date-mp-sel');
28326             this.mpSelMonth = pn.dom.xmonth;
28327         }
28328         else if(pn = el.up('td.x-date-mp-year', 2)){
28329             this.mpYears.removeClass('x-date-mp-sel');
28330             pn.addClass('x-date-mp-sel');
28331             this.mpSelYear = pn.dom.xyear;
28332         }
28333         else if(el.is('a.x-date-mp-prev')){
28334             this.updateMPYear(this.mpyear-10);
28335         }
28336         else if(el.is('a.x-date-mp-next')){
28337             this.updateMPYear(this.mpyear+10);
28338         }
28339     },
28340
28341     onMonthDblClick : function(e, t){
28342         e.stopEvent();
28343         var el = new Roo.Element(t), pn;
28344         if(pn = el.up('td.x-date-mp-month', 2)){
28345             this.update(new Date(this.mpSelYear, pn.dom.xmonth, (this.activeDate || this.value).getDate()));
28346             this.hideMonthPicker();
28347         }
28348         else if(pn = el.up('td.x-date-mp-year', 2)){
28349             this.update(new Date(pn.dom.xyear, this.mpSelMonth, (this.activeDate || this.value).getDate()));
28350             this.hideMonthPicker();
28351         }
28352     },
28353
28354     hideMonthPicker : function(disableAnim){
28355         if(this.monthPicker){
28356             if(disableAnim === true){
28357                 this.monthPicker.hide();
28358             }else{
28359                 this.monthPicker.slideOut('t', {duration:.2});
28360             }
28361         }
28362     },
28363
28364     // private
28365     showPrevMonth : function(e){
28366         this.update(this.activeDate.add("mo", -1));
28367     },
28368
28369     // private
28370     showNextMonth : function(e){
28371         this.update(this.activeDate.add("mo", 1));
28372     },
28373
28374     // private
28375     showPrevYear : function(){
28376         this.update(this.activeDate.add("y", -1));
28377     },
28378
28379     // private
28380     showNextYear : function(){
28381         this.update(this.activeDate.add("y", 1));
28382     },
28383
28384     // private
28385     handleMouseWheel : function(e){
28386         var delta = e.getWheelDelta();
28387         if(delta > 0){
28388             this.showPrevMonth();
28389             e.stopEvent();
28390         } else if(delta < 0){
28391             this.showNextMonth();
28392             e.stopEvent();
28393         }
28394     },
28395
28396     // private
28397     handleDateClick : function(e, t){
28398         e.stopEvent();
28399         if(t.dateValue && !Roo.fly(t.parentNode).hasClass("x-date-disabled")){
28400             this.setValue(new Date(t.dateValue));
28401             this.fireEvent("select", this, this.value);
28402         }
28403     },
28404
28405     // private
28406     selectToday : function(){
28407         this.setValue(new Date().clearTime());
28408         this.fireEvent("select", this, this.value);
28409     },
28410
28411     // private
28412     update : function(date)
28413     {
28414         var vd = this.activeDate;
28415         this.activeDate = date;
28416         if(vd && this.el){
28417             var t = date.getTime();
28418             if(vd.getMonth() == date.getMonth() && vd.getFullYear() == date.getFullYear()){
28419                 this.cells.removeClass("x-date-selected");
28420                 this.cells.each(function(c){
28421                    if(c.dom.firstChild.dateValue == t){
28422                        c.addClass("x-date-selected");
28423                        setTimeout(function(){
28424                             try{c.dom.firstChild.focus();}catch(e){}
28425                        }, 50);
28426                        return false;
28427                    }
28428                 });
28429                 return;
28430             }
28431         }
28432         
28433         var days = date.getDaysInMonth();
28434         var firstOfMonth = date.getFirstDateOfMonth();
28435         var startingPos = firstOfMonth.getDay()-this.startDay;
28436
28437         if(startingPos <= this.startDay){
28438             startingPos += 7;
28439         }
28440
28441         var pm = date.add("mo", -1);
28442         var prevStart = pm.getDaysInMonth()-startingPos;
28443
28444         var cells = this.cells.elements;
28445         var textEls = this.textNodes;
28446         days += startingPos;
28447
28448         // convert everything to numbers so it's fast
28449         var day = 86400000;
28450         var d = (new Date(pm.getFullYear(), pm.getMonth(), prevStart)).clearTime();
28451         var today = new Date().clearTime().getTime();
28452         var sel = date.clearTime().getTime();
28453         var min = this.minDate ? this.minDate.clearTime() : Number.NEGATIVE_INFINITY;
28454         var max = this.maxDate ? this.maxDate.clearTime() : Number.POSITIVE_INFINITY;
28455         var ddMatch = this.disabledDatesRE;
28456         var ddText = this.disabledDatesText;
28457         var ddays = this.disabledDays ? this.disabledDays.join("") : false;
28458         var ddaysText = this.disabledDaysText;
28459         var format = this.format;
28460
28461         var setCellClass = function(cal, cell){
28462             cell.title = "";
28463             var t = d.getTime();
28464             cell.firstChild.dateValue = t;
28465             if(t == today){
28466                 cell.className += " x-date-today";
28467                 cell.title = cal.todayText;
28468             }
28469             if(t == sel){
28470                 cell.className += " x-date-selected";
28471                 setTimeout(function(){
28472                     try{cell.firstChild.focus();}catch(e){}
28473                 }, 50);
28474             }
28475             // disabling
28476             if(t < min) {
28477                 cell.className = " x-date-disabled";
28478                 cell.title = cal.minText;
28479                 return;
28480             }
28481             if(t > max) {
28482                 cell.className = " x-date-disabled";
28483                 cell.title = cal.maxText;
28484                 return;
28485             }
28486             if(ddays){
28487                 if(ddays.indexOf(d.getDay()) != -1){
28488                     cell.title = ddaysText;
28489                     cell.className = " x-date-disabled";
28490                 }
28491             }
28492             if(ddMatch && format){
28493                 var fvalue = d.dateFormat(format);
28494                 if(ddMatch.test(fvalue)){
28495                     cell.title = ddText.replace("%0", fvalue);
28496                     cell.className = " x-date-disabled";
28497                 }
28498             }
28499         };
28500
28501         var i = 0;
28502         for(; i < startingPos; i++) {
28503             textEls[i].innerHTML = (++prevStart);
28504             d.setDate(d.getDate()+1);
28505             cells[i].className = "x-date-prevday";
28506             setCellClass(this, cells[i]);
28507         }
28508         for(; i < days; i++){
28509             intDay = i - startingPos + 1;
28510             textEls[i].innerHTML = (intDay);
28511             d.setDate(d.getDate()+1);
28512             cells[i].className = "x-date-active";
28513             setCellClass(this, cells[i]);
28514         }
28515         var extraDays = 0;
28516         for(; i < 42; i++) {
28517              textEls[i].innerHTML = (++extraDays);
28518              d.setDate(d.getDate()+1);
28519              cells[i].className = "x-date-nextday";
28520              setCellClass(this, cells[i]);
28521         }
28522
28523         this.mbtn.setText(this.monthNames[date.getMonth()] + " " + date.getFullYear());
28524         this.fireEvent('monthchange', this, date);
28525         
28526         if(!this.internalRender){
28527             var main = this.el.dom.firstChild;
28528             var w = main.offsetWidth;
28529             this.el.setWidth(w + this.el.getBorderWidth("lr"));
28530             Roo.fly(main).setWidth(w);
28531             this.internalRender = true;
28532             // opera does not respect the auto grow header center column
28533             // then, after it gets a width opera refuses to recalculate
28534             // without a second pass
28535             if(Roo.isOpera && !this.secondPass){
28536                 main.rows[0].cells[1].style.width = (w - (main.rows[0].cells[0].offsetWidth+main.rows[0].cells[2].offsetWidth)) + "px";
28537                 this.secondPass = true;
28538                 this.update.defer(10, this, [date]);
28539             }
28540         }
28541         
28542         
28543     }
28544 });        /*
28545  * Based on:
28546  * Ext JS Library 1.1.1
28547  * Copyright(c) 2006-2007, Ext JS, LLC.
28548  *
28549  * Originally Released Under LGPL - original licence link has changed is not relivant.
28550  *
28551  * Fork - LGPL
28552  * <script type="text/javascript">
28553  */
28554 /**
28555  * @class Roo.TabPanel
28556  * @extends Roo.util.Observable
28557  * A lightweight tab container.
28558  * <br><br>
28559  * Usage:
28560  * <pre><code>
28561 // basic tabs 1, built from existing content
28562 var tabs = new Roo.TabPanel("tabs1");
28563 tabs.addTab("script", "View Script");
28564 tabs.addTab("markup", "View Markup");
28565 tabs.activate("script");
28566
28567 // more advanced tabs, built from javascript
28568 var jtabs = new Roo.TabPanel("jtabs");
28569 jtabs.addTab("jtabs-1", "Normal Tab", "My content was added during construction.");
28570
28571 // set up the UpdateManager
28572 var tab2 = jtabs.addTab("jtabs-2", "Ajax Tab 1");
28573 var updater = tab2.getUpdateManager();
28574 updater.setDefaultUrl("ajax1.htm");
28575 tab2.on('activate', updater.refresh, updater, true);
28576
28577 // Use setUrl for Ajax loading
28578 var tab3 = jtabs.addTab("jtabs-3", "Ajax Tab 2");
28579 tab3.setUrl("ajax2.htm", null, true);
28580
28581 // Disabled tab
28582 var tab4 = jtabs.addTab("tabs1-5", "Disabled Tab", "Can't see me cause I'm disabled");
28583 tab4.disable();
28584
28585 jtabs.activate("jtabs-1");
28586  * </code></pre>
28587  * @constructor
28588  * Create a new TabPanel.
28589  * @param {String/HTMLElement/Roo.Element} container The id, DOM element or Roo.Element container where this TabPanel is to be rendered.
28590  * @param {Object/Boolean} config Config object to set any properties for this TabPanel, or true to render the tabs on the bottom.
28591  */
28592 Roo.TabPanel = function(container, config){
28593     /**
28594     * The container element for this TabPanel.
28595     * @type Roo.Element
28596     */
28597     this.el = Roo.get(container, true);
28598     if(config){
28599         if(typeof config == "boolean"){
28600             this.tabPosition = config ? "bottom" : "top";
28601         }else{
28602             Roo.apply(this, config);
28603         }
28604     }
28605     if(this.tabPosition == "bottom"){
28606         this.bodyEl = Roo.get(this.createBody(this.el.dom));
28607         this.el.addClass("x-tabs-bottom");
28608     }
28609     this.stripWrap = Roo.get(this.createStrip(this.el.dom), true);
28610     this.stripEl = Roo.get(this.createStripList(this.stripWrap.dom), true);
28611     this.stripBody = Roo.get(this.stripWrap.dom.firstChild.firstChild, true);
28612     if(Roo.isIE){
28613         Roo.fly(this.stripWrap.dom.firstChild).setStyle("overflow-x", "hidden");
28614     }
28615     if(this.tabPosition != "bottom"){
28616         /** The body element that contains {@link Roo.TabPanelItem} bodies. +
28617          * @type Roo.Element
28618          */
28619         this.bodyEl = Roo.get(this.createBody(this.el.dom));
28620         this.el.addClass("x-tabs-top");
28621     }
28622     this.items = [];
28623
28624     this.bodyEl.setStyle("position", "relative");
28625
28626     this.active = null;
28627     this.activateDelegate = this.activate.createDelegate(this);
28628
28629     this.addEvents({
28630         /**
28631          * @event tabchange
28632          * Fires when the active tab changes
28633          * @param {Roo.TabPanel} this
28634          * @param {Roo.TabPanelItem} activePanel The new active tab
28635          */
28636         "tabchange": true,
28637         /**
28638          * @event beforetabchange
28639          * Fires before the active tab changes, set cancel to true on the "e" parameter to cancel the change
28640          * @param {Roo.TabPanel} this
28641          * @param {Object} e Set cancel to true on this object to cancel the tab change
28642          * @param {Roo.TabPanelItem} tab The tab being changed to
28643          */
28644         "beforetabchange" : true
28645     });
28646
28647     Roo.EventManager.onWindowResize(this.onResize, this);
28648     this.cpad = this.el.getPadding("lr");
28649     this.hiddenCount = 0;
28650
28651
28652     // toolbar on the tabbar support...
28653     if (this.toolbar) {
28654         var tcfg = this.toolbar;
28655         tcfg.container = this.stripEl.child('td.x-tab-strip-toolbar');  
28656         this.toolbar = new Roo.Toolbar(tcfg);
28657         if (Roo.isSafari) {
28658             var tbl = tcfg.container.child('table', true);
28659             tbl.setAttribute('width', '100%');
28660         }
28661         
28662     }
28663    
28664
28665
28666     Roo.TabPanel.superclass.constructor.call(this);
28667 };
28668
28669 Roo.extend(Roo.TabPanel, Roo.util.Observable, {
28670     /*
28671      *@cfg {String} tabPosition "top" or "bottom" (defaults to "top")
28672      */
28673     tabPosition : "top",
28674     /*
28675      *@cfg {Number} currentTabWidth The width of the current tab (defaults to 0)
28676      */
28677     currentTabWidth : 0,
28678     /*
28679      *@cfg {Number} minTabWidth The minimum width of a tab (defaults to 40) (ignored if {@link #resizeTabs} is not true)
28680      */
28681     minTabWidth : 40,
28682     /*
28683      *@cfg {Number} maxTabWidth The maximum width of a tab (defaults to 250) (ignored if {@link #resizeTabs} is not true)
28684      */
28685     maxTabWidth : 250,
28686     /*
28687      *@cfg {Number} preferredTabWidth The preferred (default) width of a tab (defaults to 175) (ignored if {@link #resizeTabs} is not true)
28688      */
28689     preferredTabWidth : 175,
28690     /*
28691      *@cfg {Boolean} resizeTabs True to enable dynamic tab resizing (defaults to false)
28692      */
28693     resizeTabs : false,
28694     /*
28695      *@cfg {Boolean} monitorResize Set this to true to turn on window resize monitoring (ignored if {@link #resizeTabs} is not true) (defaults to true)
28696      */
28697     monitorResize : true,
28698     /*
28699      *@cfg {Object} toolbar xtype description of toolbar to show at the right of the tab bar. 
28700      */
28701     toolbar : false,
28702
28703     /**
28704      * Creates a new {@link Roo.TabPanelItem} by looking for an existing element with the provided id -- if it's not found it creates one.
28705      * @param {String} id The id of the div to use <b>or create</b>
28706      * @param {String} text The text for the tab
28707      * @param {String} content (optional) Content to put in the TabPanelItem body
28708      * @param {Boolean} closable (optional) True to create a close icon on the tab
28709      * @return {Roo.TabPanelItem} The created TabPanelItem
28710      */
28711     addTab : function(id, text, content, closable){
28712         var item = new Roo.TabPanelItem(this, id, text, closable);
28713         this.addTabItem(item);
28714         if(content){
28715             item.setContent(content);
28716         }
28717         return item;
28718     },
28719
28720     /**
28721      * Returns the {@link Roo.TabPanelItem} with the specified id/index
28722      * @param {String/Number} id The id or index of the TabPanelItem to fetch.
28723      * @return {Roo.TabPanelItem}
28724      */
28725     getTab : function(id){
28726         return this.items[id];
28727     },
28728
28729     /**
28730      * Hides the {@link Roo.TabPanelItem} with the specified id/index
28731      * @param {String/Number} id The id or index of the TabPanelItem to hide.
28732      */
28733     hideTab : function(id){
28734         var t = this.items[id];
28735         if(!t.isHidden()){
28736            t.setHidden(true);
28737            this.hiddenCount++;
28738            this.autoSizeTabs();
28739         }
28740     },
28741
28742     /**
28743      * "Unhides" the {@link Roo.TabPanelItem} with the specified id/index.
28744      * @param {String/Number} id The id or index of the TabPanelItem to unhide.
28745      */
28746     unhideTab : function(id){
28747         var t = this.items[id];
28748         if(t.isHidden()){
28749            t.setHidden(false);
28750            this.hiddenCount--;
28751            this.autoSizeTabs();
28752         }
28753     },
28754
28755     /**
28756      * Adds an existing {@link Roo.TabPanelItem}.
28757      * @param {Roo.TabPanelItem} item The TabPanelItem to add
28758      */
28759     addTabItem : function(item){
28760         this.items[item.id] = item;
28761         this.items.push(item);
28762         if(this.resizeTabs){
28763            item.setWidth(this.currentTabWidth || this.preferredTabWidth);
28764            this.autoSizeTabs();
28765         }else{
28766             item.autoSize();
28767         }
28768     },
28769
28770     /**
28771      * Removes a {@link Roo.TabPanelItem}.
28772      * @param {String/Number} id The id or index of the TabPanelItem to remove.
28773      */
28774     removeTab : function(id){
28775         var items = this.items;
28776         var tab = items[id];
28777         if(!tab) { return; }
28778         var index = items.indexOf(tab);
28779         if(this.active == tab && items.length > 1){
28780             var newTab = this.getNextAvailable(index);
28781             if(newTab) {
28782                 newTab.activate();
28783             }
28784         }
28785         this.stripEl.dom.removeChild(tab.pnode.dom);
28786         if(tab.bodyEl.dom.parentNode == this.bodyEl.dom){ // if it was moved already prevent error
28787             this.bodyEl.dom.removeChild(tab.bodyEl.dom);
28788         }
28789         items.splice(index, 1);
28790         delete this.items[tab.id];
28791         tab.fireEvent("close", tab);
28792         tab.purgeListeners();
28793         this.autoSizeTabs();
28794     },
28795
28796     getNextAvailable : function(start){
28797         var items = this.items;
28798         var index = start;
28799         // look for a next tab that will slide over to
28800         // replace the one being removed
28801         while(index < items.length){
28802             var item = items[++index];
28803             if(item && !item.isHidden()){
28804                 return item;
28805             }
28806         }
28807         // if one isn't found select the previous tab (on the left)
28808         index = start;
28809         while(index >= 0){
28810             var item = items[--index];
28811             if(item && !item.isHidden()){
28812                 return item;
28813             }
28814         }
28815         return null;
28816     },
28817
28818     /**
28819      * Disables a {@link Roo.TabPanelItem}. It cannot be the active tab, if it is this call is ignored.
28820      * @param {String/Number} id The id or index of the TabPanelItem to disable.
28821      */
28822     disableTab : function(id){
28823         var tab = this.items[id];
28824         if(tab && this.active != tab){
28825             tab.disable();
28826         }
28827     },
28828
28829     /**
28830      * Enables a {@link Roo.TabPanelItem} that is disabled.
28831      * @param {String/Number} id The id or index of the TabPanelItem to enable.
28832      */
28833     enableTab : function(id){
28834         var tab = this.items[id];
28835         tab.enable();
28836     },
28837
28838     /**
28839      * Activates a {@link Roo.TabPanelItem}. The currently active one will be deactivated.
28840      * @param {String/Number} id The id or index of the TabPanelItem to activate.
28841      * @return {Roo.TabPanelItem} The TabPanelItem.
28842      */
28843     activate : function(id){
28844         var tab = this.items[id];
28845         if(!tab){
28846             return null;
28847         }
28848         if(tab == this.active || tab.disabled){
28849             return tab;
28850         }
28851         var e = {};
28852         this.fireEvent("beforetabchange", this, e, tab);
28853         if(e.cancel !== true && !tab.disabled){
28854             if(this.active){
28855                 this.active.hide();
28856             }
28857             this.active = this.items[id];
28858             this.active.show();
28859             this.fireEvent("tabchange", this, this.active);
28860         }
28861         return tab;
28862     },
28863
28864     /**
28865      * Gets the active {@link Roo.TabPanelItem}.
28866      * @return {Roo.TabPanelItem} The active TabPanelItem or null if none are active.
28867      */
28868     getActiveTab : function(){
28869         return this.active;
28870     },
28871
28872     /**
28873      * Updates the tab body element to fit the height of the container element
28874      * for overflow scrolling
28875      * @param {Number} targetHeight (optional) Override the starting height from the elements height
28876      */
28877     syncHeight : function(targetHeight){
28878         var height = (targetHeight || this.el.getHeight())-this.el.getBorderWidth("tb")-this.el.getPadding("tb");
28879         var bm = this.bodyEl.getMargins();
28880         var newHeight = height-(this.stripWrap.getHeight()||0)-(bm.top+bm.bottom);
28881         this.bodyEl.setHeight(newHeight);
28882         return newHeight;
28883     },
28884
28885     onResize : function(){
28886         if(this.monitorResize){
28887             this.autoSizeTabs();
28888         }
28889     },
28890
28891     /**
28892      * Disables tab resizing while tabs are being added (if {@link #resizeTabs} is false this does nothing)
28893      */
28894     beginUpdate : function(){
28895         this.updating = true;
28896     },
28897
28898     /**
28899      * Stops an update and resizes the tabs (if {@link #resizeTabs} is false this does nothing)
28900      */
28901     endUpdate : function(){
28902         this.updating = false;
28903         this.autoSizeTabs();
28904     },
28905
28906     /**
28907      * Manual call to resize the tabs (if {@link #resizeTabs} is false this does nothing)
28908      */
28909     autoSizeTabs : function(){
28910         var count = this.items.length;
28911         var vcount = count - this.hiddenCount;
28912         if(!this.resizeTabs || count < 1 || vcount < 1 || this.updating) {
28913             return;
28914         }
28915         var w = Math.max(this.el.getWidth() - this.cpad, 10);
28916         var availWidth = Math.floor(w / vcount);
28917         var b = this.stripBody;
28918         if(b.getWidth() > w){
28919             var tabs = this.items;
28920             this.setTabWidth(Math.max(availWidth, this.minTabWidth)-2);
28921             if(availWidth < this.minTabWidth){
28922                 /*if(!this.sleft){    // incomplete scrolling code
28923                     this.createScrollButtons();
28924                 }
28925                 this.showScroll();
28926                 this.stripClip.setWidth(w - (this.sleft.getWidth()+this.sright.getWidth()));*/
28927             }
28928         }else{
28929             if(this.currentTabWidth < this.preferredTabWidth){
28930                 this.setTabWidth(Math.min(availWidth, this.preferredTabWidth)-2);
28931             }
28932         }
28933     },
28934
28935     /**
28936      * Returns the number of tabs in this TabPanel.
28937      * @return {Number}
28938      */
28939      getCount : function(){
28940          return this.items.length;
28941      },
28942
28943     /**
28944      * Resizes all the tabs to the passed width
28945      * @param {Number} The new width
28946      */
28947     setTabWidth : function(width){
28948         this.currentTabWidth = width;
28949         for(var i = 0, len = this.items.length; i < len; i++) {
28950                 if(!this.items[i].isHidden()) {
28951                 this.items[i].setWidth(width);
28952             }
28953         }
28954     },
28955
28956     /**
28957      * Destroys this TabPanel
28958      * @param {Boolean} removeEl (optional) True to remove the element from the DOM as well (defaults to undefined)
28959      */
28960     destroy : function(removeEl){
28961         Roo.EventManager.removeResizeListener(this.onResize, this);
28962         for(var i = 0, len = this.items.length; i < len; i++){
28963             this.items[i].purgeListeners();
28964         }
28965         if(removeEl === true){
28966             this.el.update("");
28967             this.el.remove();
28968         }
28969     }
28970 });
28971
28972 /**
28973  * @class Roo.TabPanelItem
28974  * @extends Roo.util.Observable
28975  * Represents an individual item (tab plus body) in a TabPanel.
28976  * @param {Roo.TabPanel} tabPanel The {@link Roo.TabPanel} this TabPanelItem belongs to
28977  * @param {String} id The id of this TabPanelItem
28978  * @param {String} text The text for the tab of this TabPanelItem
28979  * @param {Boolean} closable True to allow this TabPanelItem to be closable (defaults to false)
28980  */
28981 Roo.TabPanelItem = function(tabPanel, id, text, closable){
28982     /**
28983      * The {@link Roo.TabPanel} this TabPanelItem belongs to
28984      * @type Roo.TabPanel
28985      */
28986     this.tabPanel = tabPanel;
28987     /**
28988      * The id for this TabPanelItem
28989      * @type String
28990      */
28991     this.id = id;
28992     /** @private */
28993     this.disabled = false;
28994     /** @private */
28995     this.text = text;
28996     /** @private */
28997     this.loaded = false;
28998     this.closable = closable;
28999
29000     /**
29001      * The body element for this TabPanelItem.
29002      * @type Roo.Element
29003      */
29004     this.bodyEl = Roo.get(tabPanel.createItemBody(tabPanel.bodyEl.dom, id));
29005     this.bodyEl.setVisibilityMode(Roo.Element.VISIBILITY);
29006     this.bodyEl.setStyle("display", "block");
29007     this.bodyEl.setStyle("zoom", "1");
29008     this.hideAction();
29009
29010     var els = tabPanel.createStripElements(tabPanel.stripEl.dom, text, closable);
29011     /** @private */
29012     this.el = Roo.get(els.el, true);
29013     this.inner = Roo.get(els.inner, true);
29014     this.textEl = Roo.get(this.el.dom.firstChild.firstChild.firstChild, true);
29015     this.pnode = Roo.get(els.el.parentNode, true);
29016     this.el.on("mousedown", this.onTabMouseDown, this);
29017     this.el.on("click", this.onTabClick, this);
29018     /** @private */
29019     if(closable){
29020         var c = Roo.get(els.close, true);
29021         c.dom.title = this.closeText;
29022         c.addClassOnOver("close-over");
29023         c.on("click", this.closeClick, this);
29024      }
29025
29026     this.addEvents({
29027          /**
29028          * @event activate
29029          * Fires when this tab becomes the active tab.
29030          * @param {Roo.TabPanel} tabPanel The parent TabPanel
29031          * @param {Roo.TabPanelItem} this
29032          */
29033         "activate": true,
29034         /**
29035          * @event beforeclose
29036          * Fires before this tab is closed. To cancel the close, set cancel to true on e (e.cancel = true).
29037          * @param {Roo.TabPanelItem} this
29038          * @param {Object} e Set cancel to true on this object to cancel the close.
29039          */
29040         "beforeclose": true,
29041         /**
29042          * @event close
29043          * Fires when this tab is closed.
29044          * @param {Roo.TabPanelItem} this
29045          */
29046          "close": true,
29047         /**
29048          * @event deactivate
29049          * Fires when this tab is no longer the active tab.
29050          * @param {Roo.TabPanel} tabPanel The parent TabPanel
29051          * @param {Roo.TabPanelItem} this
29052          */
29053          "deactivate" : true
29054     });
29055     this.hidden = false;
29056
29057     Roo.TabPanelItem.superclass.constructor.call(this);
29058 };
29059
29060 Roo.extend(Roo.TabPanelItem, Roo.util.Observable, {
29061     purgeListeners : function(){
29062        Roo.util.Observable.prototype.purgeListeners.call(this);
29063        this.el.removeAllListeners();
29064     },
29065     /**
29066      * Shows this TabPanelItem -- this <b>does not</b> deactivate the currently active TabPanelItem.
29067      */
29068     show : function(){
29069         this.pnode.addClass("on");
29070         this.showAction();
29071         if(Roo.isOpera){
29072             this.tabPanel.stripWrap.repaint();
29073         }
29074         this.fireEvent("activate", this.tabPanel, this);
29075     },
29076
29077     /**
29078      * Returns true if this tab is the active tab.
29079      * @return {Boolean}
29080      */
29081     isActive : function(){
29082         return this.tabPanel.getActiveTab() == this;
29083     },
29084
29085     /**
29086      * Hides this TabPanelItem -- if you don't activate another TabPanelItem this could look odd.
29087      */
29088     hide : function(){
29089         this.pnode.removeClass("on");
29090         this.hideAction();
29091         this.fireEvent("deactivate", this.tabPanel, this);
29092     },
29093
29094     hideAction : function(){
29095         this.bodyEl.hide();
29096         this.bodyEl.setStyle("position", "absolute");
29097         this.bodyEl.setLeft("-20000px");
29098         this.bodyEl.setTop("-20000px");
29099     },
29100
29101     showAction : function(){
29102         this.bodyEl.setStyle("position", "relative");
29103         this.bodyEl.setTop("");
29104         this.bodyEl.setLeft("");
29105         this.bodyEl.show();
29106     },
29107
29108     /**
29109      * Set the tooltip for the tab.
29110      * @param {String} tooltip The tab's tooltip
29111      */
29112     setTooltip : function(text){
29113         if(Roo.QuickTips && Roo.QuickTips.isEnabled()){
29114             this.textEl.dom.qtip = text;
29115             this.textEl.dom.removeAttribute('title');
29116         }else{
29117             this.textEl.dom.title = text;
29118         }
29119     },
29120
29121     onTabClick : function(e){
29122         e.preventDefault();
29123         this.tabPanel.activate(this.id);
29124     },
29125
29126     onTabMouseDown : function(e){
29127         e.preventDefault();
29128         this.tabPanel.activate(this.id);
29129     },
29130
29131     getWidth : function(){
29132         return this.inner.getWidth();
29133     },
29134
29135     setWidth : function(width){
29136         var iwidth = width - this.pnode.getPadding("lr");
29137         this.inner.setWidth(iwidth);
29138         this.textEl.setWidth(iwidth-this.inner.getPadding("lr"));
29139         this.pnode.setWidth(width);
29140     },
29141
29142     /**
29143      * Show or hide the tab
29144      * @param {Boolean} hidden True to hide or false to show.
29145      */
29146     setHidden : function(hidden){
29147         this.hidden = hidden;
29148         this.pnode.setStyle("display", hidden ? "none" : "");
29149     },
29150
29151     /**
29152      * Returns true if this tab is "hidden"
29153      * @return {Boolean}
29154      */
29155     isHidden : function(){
29156         return this.hidden;
29157     },
29158
29159     /**
29160      * Returns the text for this tab
29161      * @return {String}
29162      */
29163     getText : function(){
29164         return this.text;
29165     },
29166
29167     autoSize : function(){
29168         //this.el.beginMeasure();
29169         this.textEl.setWidth(1);
29170         /*
29171          *  #2804 [new] Tabs in Roojs
29172          *  increase the width by 2-4 pixels to prevent the ellipssis showing in chrome
29173          */
29174         this.setWidth(this.textEl.dom.scrollWidth+this.pnode.getPadding("lr")+this.inner.getPadding("lr") + 2);
29175         //this.el.endMeasure();
29176     },
29177
29178     /**
29179      * Sets the text for the tab (Note: this also sets the tooltip text)
29180      * @param {String} text The tab's text and tooltip
29181      */
29182     setText : function(text){
29183         this.text = text;
29184         this.textEl.update(text);
29185         this.setTooltip(text);
29186         if(!this.tabPanel.resizeTabs){
29187             this.autoSize();
29188         }
29189     },
29190     /**
29191      * Activates this TabPanelItem -- this <b>does</b> deactivate the currently active TabPanelItem.
29192      */
29193     activate : function(){
29194         this.tabPanel.activate(this.id);
29195     },
29196
29197     /**
29198      * Disables this TabPanelItem -- this does nothing if this is the active TabPanelItem.
29199      */
29200     disable : function(){
29201         if(this.tabPanel.active != this){
29202             this.disabled = true;
29203             this.pnode.addClass("disabled");
29204         }
29205     },
29206
29207     /**
29208      * Enables this TabPanelItem if it was previously disabled.
29209      */
29210     enable : function(){
29211         this.disabled = false;
29212         this.pnode.removeClass("disabled");
29213     },
29214
29215     /**
29216      * Sets the content for this TabPanelItem.
29217      * @param {String} content The content
29218      * @param {Boolean} loadScripts true to look for and load scripts
29219      */
29220     setContent : function(content, loadScripts){
29221         this.bodyEl.update(content, loadScripts);
29222     },
29223
29224     /**
29225      * Gets the {@link Roo.UpdateManager} for the body of this TabPanelItem. Enables you to perform Ajax updates.
29226      * @return {Roo.UpdateManager} The UpdateManager
29227      */
29228     getUpdateManager : function(){
29229         return this.bodyEl.getUpdateManager();
29230     },
29231
29232     /**
29233      * Set a URL to be used to load the content for this TabPanelItem.
29234      * @param {String/Function} url The URL to load the content from, or a function to call to get the URL
29235      * @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)
29236      * @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)
29237      * @return {Roo.UpdateManager} The UpdateManager
29238      */
29239     setUrl : function(url, params, loadOnce){
29240         if(this.refreshDelegate){
29241             this.un('activate', this.refreshDelegate);
29242         }
29243         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
29244         this.on("activate", this.refreshDelegate);
29245         return this.bodyEl.getUpdateManager();
29246     },
29247
29248     /** @private */
29249     _handleRefresh : function(url, params, loadOnce){
29250         if(!loadOnce || !this.loaded){
29251             var updater = this.bodyEl.getUpdateManager();
29252             updater.update(url, params, this._setLoaded.createDelegate(this));
29253         }
29254     },
29255
29256     /**
29257      *   Forces a content refresh from the URL specified in the {@link #setUrl} method.
29258      *   Will fail silently if the setUrl method has not been called.
29259      *   This does not activate the panel, just updates its content.
29260      */
29261     refresh : function(){
29262         if(this.refreshDelegate){
29263            this.loaded = false;
29264            this.refreshDelegate();
29265         }
29266     },
29267
29268     /** @private */
29269     _setLoaded : function(){
29270         this.loaded = true;
29271     },
29272
29273     /** @private */
29274     closeClick : function(e){
29275         var o = {};
29276         e.stopEvent();
29277         this.fireEvent("beforeclose", this, o);
29278         if(o.cancel !== true){
29279             this.tabPanel.removeTab(this.id);
29280         }
29281     },
29282     /**
29283      * The text displayed in the tooltip for the close icon.
29284      * @type String
29285      */
29286     closeText : "Close this tab"
29287 });
29288
29289 /** @private */
29290 Roo.TabPanel.prototype.createStrip = function(container){
29291     var strip = document.createElement("div");
29292     strip.className = "x-tabs-wrap";
29293     container.appendChild(strip);
29294     return strip;
29295 };
29296 /** @private */
29297 Roo.TabPanel.prototype.createStripList = function(strip){
29298     // div wrapper for retard IE
29299     // returns the "tr" element.
29300     strip.innerHTML = '<div class="x-tabs-strip-wrap">'+
29301         '<table class="x-tabs-strip" cellspacing="0" cellpadding="0" border="0"><tbody><tr>'+
29302         '<td class="x-tab-strip-toolbar"></td></tr></tbody></table></div>';
29303     return strip.firstChild.firstChild.firstChild.firstChild;
29304 };
29305 /** @private */
29306 Roo.TabPanel.prototype.createBody = function(container){
29307     var body = document.createElement("div");
29308     Roo.id(body, "tab-body");
29309     Roo.fly(body).addClass("x-tabs-body");
29310     container.appendChild(body);
29311     return body;
29312 };
29313 /** @private */
29314 Roo.TabPanel.prototype.createItemBody = function(bodyEl, id){
29315     var body = Roo.getDom(id);
29316     if(!body){
29317         body = document.createElement("div");
29318         body.id = id;
29319     }
29320     Roo.fly(body).addClass("x-tabs-item-body");
29321     bodyEl.insertBefore(body, bodyEl.firstChild);
29322     return body;
29323 };
29324 /** @private */
29325 Roo.TabPanel.prototype.createStripElements = function(stripEl, text, closable){
29326     var td = document.createElement("td");
29327     stripEl.insertBefore(td, stripEl.childNodes[stripEl.childNodes.length-1]);
29328     //stripEl.appendChild(td);
29329     if(closable){
29330         td.className = "x-tabs-closable";
29331         if(!this.closeTpl){
29332             this.closeTpl = new Roo.Template(
29333                '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
29334                '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span>' +
29335                '<div unselectable="on" class="close-icon">&#160;</div></em></span></a>'
29336             );
29337         }
29338         var el = this.closeTpl.overwrite(td, {"text": text});
29339         var close = el.getElementsByTagName("div")[0];
29340         var inner = el.getElementsByTagName("em")[0];
29341         return {"el": el, "close": close, "inner": inner};
29342     } else {
29343         if(!this.tabTpl){
29344             this.tabTpl = new Roo.Template(
29345                '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
29346                '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span></em></span></a>'
29347             );
29348         }
29349         var el = this.tabTpl.overwrite(td, {"text": text});
29350         var inner = el.getElementsByTagName("em")[0];
29351         return {"el": el, "inner": inner};
29352     }
29353 };/*
29354  * Based on:
29355  * Ext JS Library 1.1.1
29356  * Copyright(c) 2006-2007, Ext JS, LLC.
29357  *
29358  * Originally Released Under LGPL - original licence link has changed is not relivant.
29359  *
29360  * Fork - LGPL
29361  * <script type="text/javascript">
29362  */
29363
29364 /**
29365  * @class Roo.Button
29366  * @extends Roo.util.Observable
29367  * Simple Button class
29368  * @cfg {String} text The button text
29369  * @cfg {String} icon The path to an image to display in the button (the image will be set as the background-image
29370  * CSS property of the button by default, so if you want a mixed icon/text button, set cls:"x-btn-text-icon")
29371  * @cfg {Function} handler A function called when the button is clicked (can be used instead of click event)
29372  * @cfg {Object} scope The scope of the handler
29373  * @cfg {Number} minWidth The minimum width for this button (used to give a set of buttons a common width)
29374  * @cfg {String/Object} tooltip The tooltip for the button - can be a string or QuickTips config object
29375  * @cfg {Boolean} hidden True to start hidden (defaults to false)
29376  * @cfg {Boolean} disabled True to start disabled (defaults to false)
29377  * @cfg {Boolean} pressed True to start pressed (only if enableToggle = true)
29378  * @cfg {String} toggleGroup The group this toggle button is a member of (only 1 per group can be pressed, only
29379    applies if enableToggle = true)
29380  * @cfg {String/HTMLElement/Element} renderTo The element to append the button to
29381  * @cfg {Boolean/Object} repeat True to repeat fire the click event while the mouse is down. This can also be
29382   an {@link Roo.util.ClickRepeater} config object (defaults to false).
29383  * @constructor
29384  * Create a new button
29385  * @param {Object} config The config object
29386  */
29387 Roo.Button = function(renderTo, config)
29388 {
29389     if (!config) {
29390         config = renderTo;
29391         renderTo = config.renderTo || false;
29392     }
29393     
29394     Roo.apply(this, config);
29395     this.addEvents({
29396         /**
29397              * @event click
29398              * Fires when this button is clicked
29399              * @param {Button} this
29400              * @param {EventObject} e The click event
29401              */
29402             "click" : true,
29403         /**
29404              * @event toggle
29405              * Fires when the "pressed" state of this button changes (only if enableToggle = true)
29406              * @param {Button} this
29407              * @param {Boolean} pressed
29408              */
29409             "toggle" : true,
29410         /**
29411              * @event mouseover
29412              * Fires when the mouse hovers over the button
29413              * @param {Button} this
29414              * @param {Event} e The event object
29415              */
29416         'mouseover' : true,
29417         /**
29418              * @event mouseout
29419              * Fires when the mouse exits the button
29420              * @param {Button} this
29421              * @param {Event} e The event object
29422              */
29423         'mouseout': true,
29424          /**
29425              * @event render
29426              * Fires when the button is rendered
29427              * @param {Button} this
29428              */
29429         'render': true
29430     });
29431     if(this.menu){
29432         this.menu = Roo.menu.MenuMgr.get(this.menu);
29433     }
29434     // register listeners first!!  - so render can be captured..
29435     Roo.util.Observable.call(this);
29436     if(renderTo){
29437         this.render(renderTo);
29438     }
29439     
29440   
29441 };
29442
29443 Roo.extend(Roo.Button, Roo.util.Observable, {
29444     /**
29445      * 
29446      */
29447     
29448     /**
29449      * Read-only. True if this button is hidden
29450      * @type Boolean
29451      */
29452     hidden : false,
29453     /**
29454      * Read-only. True if this button is disabled
29455      * @type Boolean
29456      */
29457     disabled : false,
29458     /**
29459      * Read-only. True if this button is pressed (only if enableToggle = true)
29460      * @type Boolean
29461      */
29462     pressed : false,
29463
29464     /**
29465      * @cfg {Number} tabIndex 
29466      * The DOM tabIndex for this button (defaults to undefined)
29467      */
29468     tabIndex : undefined,
29469
29470     /**
29471      * @cfg {Boolean} enableToggle
29472      * True to enable pressed/not pressed toggling (defaults to false)
29473      */
29474     enableToggle: false,
29475     /**
29476      * @cfg {Mixed} menu
29477      * Standard menu attribute consisting of a reference to a menu object, a menu id or a menu config blob (defaults to undefined).
29478      */
29479     menu : undefined,
29480     /**
29481      * @cfg {String} menuAlign
29482      * The position to align the menu to (see {@link Roo.Element#alignTo} for more details, defaults to 'tl-bl?').
29483      */
29484     menuAlign : "tl-bl?",
29485
29486     /**
29487      * @cfg {String} iconCls
29488      * A css class which sets a background image to be used as the icon for this button (defaults to undefined).
29489      */
29490     iconCls : undefined,
29491     /**
29492      * @cfg {String} type
29493      * The button's type, corresponding to the DOM input element type attribute.  Either "submit," "reset" or "button" (default).
29494      */
29495     type : 'button',
29496
29497     // private
29498     menuClassTarget: 'tr',
29499
29500     /**
29501      * @cfg {String} clickEvent
29502      * The type of event to map to the button's event handler (defaults to 'click')
29503      */
29504     clickEvent : 'click',
29505
29506     /**
29507      * @cfg {Boolean} handleMouseEvents
29508      * False to disable visual cues on mouseover, mouseout and mousedown (defaults to true)
29509      */
29510     handleMouseEvents : true,
29511
29512     /**
29513      * @cfg {String} tooltipType
29514      * The type of tooltip to use. Either "qtip" (default) for QuickTips or "title" for title attribute.
29515      */
29516     tooltipType : 'qtip',
29517
29518     /**
29519      * @cfg {String} cls
29520      * A CSS class to apply to the button's main element.
29521      */
29522     
29523     /**
29524      * @cfg {Roo.Template} template (Optional)
29525      * An {@link Roo.Template} with which to create the Button's main element. This Template must
29526      * contain numeric substitution parameter 0 if it is to display the tRoo property. Changing the template could
29527      * require code modifications if required elements (e.g. a button) aren't present.
29528      */
29529
29530     // private
29531     render : function(renderTo){
29532         var btn;
29533         if(this.hideParent){
29534             this.parentEl = Roo.get(renderTo);
29535         }
29536         if(!this.dhconfig){
29537             if(!this.template){
29538                 if(!Roo.Button.buttonTemplate){
29539                     // hideous table template
29540                     Roo.Button.buttonTemplate = new Roo.Template(
29541                         '<table border="0" cellpadding="0" cellspacing="0" class="x-btn-wrap"><tbody><tr>',
29542                         '<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>',
29543                         "</tr></tbody></table>");
29544                 }
29545                 this.template = Roo.Button.buttonTemplate;
29546             }
29547             btn = this.template.append(renderTo, [this.text || '&#160;', this.type], true);
29548             var btnEl = btn.child("button:first");
29549             btnEl.on('focus', this.onFocus, this);
29550             btnEl.on('blur', this.onBlur, this);
29551             if(this.cls){
29552                 btn.addClass(this.cls);
29553             }
29554             if(this.icon){
29555                 btnEl.setStyle('background-image', 'url(' +this.icon +')');
29556             }
29557             if(this.iconCls){
29558                 btnEl.addClass(this.iconCls);
29559                 if(!this.cls){
29560                     btn.addClass(this.text ? 'x-btn-text-icon' : 'x-btn-icon');
29561                 }
29562             }
29563             if(this.tabIndex !== undefined){
29564                 btnEl.dom.tabIndex = this.tabIndex;
29565             }
29566             if(this.tooltip){
29567                 if(typeof this.tooltip == 'object'){
29568                     Roo.QuickTips.tips(Roo.apply({
29569                           target: btnEl.id
29570                     }, this.tooltip));
29571                 } else {
29572                     btnEl.dom[this.tooltipType] = this.tooltip;
29573                 }
29574             }
29575         }else{
29576             btn = Roo.DomHelper.append(Roo.get(renderTo).dom, this.dhconfig, true);
29577         }
29578         this.el = btn;
29579         if(this.id){
29580             this.el.dom.id = this.el.id = this.id;
29581         }
29582         if(this.menu){
29583             this.el.child(this.menuClassTarget).addClass("x-btn-with-menu");
29584             this.menu.on("show", this.onMenuShow, this);
29585             this.menu.on("hide", this.onMenuHide, this);
29586         }
29587         btn.addClass("x-btn");
29588         if(Roo.isIE && !Roo.isIE7){
29589             this.autoWidth.defer(1, this);
29590         }else{
29591             this.autoWidth();
29592         }
29593         if(this.handleMouseEvents){
29594             btn.on("mouseover", this.onMouseOver, this);
29595             btn.on("mouseout", this.onMouseOut, this);
29596             btn.on("mousedown", this.onMouseDown, this);
29597         }
29598         btn.on(this.clickEvent, this.onClick, this);
29599         //btn.on("mouseup", this.onMouseUp, this);
29600         if(this.hidden){
29601             this.hide();
29602         }
29603         if(this.disabled){
29604             this.disable();
29605         }
29606         Roo.ButtonToggleMgr.register(this);
29607         if(this.pressed){
29608             this.el.addClass("x-btn-pressed");
29609         }
29610         if(this.repeat){
29611             var repeater = new Roo.util.ClickRepeater(btn,
29612                 typeof this.repeat == "object" ? this.repeat : {}
29613             );
29614             repeater.on("click", this.onClick,  this);
29615         }
29616         
29617         this.fireEvent('render', this);
29618         
29619     },
29620     /**
29621      * Returns the button's underlying element
29622      * @return {Roo.Element} The element
29623      */
29624     getEl : function(){
29625         return this.el;  
29626     },
29627     
29628     /**
29629      * Destroys this Button and removes any listeners.
29630      */
29631     destroy : function(){
29632         Roo.ButtonToggleMgr.unregister(this);
29633         this.el.removeAllListeners();
29634         this.purgeListeners();
29635         this.el.remove();
29636     },
29637
29638     // private
29639     autoWidth : function(){
29640         if(this.el){
29641             this.el.setWidth("auto");
29642             if(Roo.isIE7 && Roo.isStrict){
29643                 var ib = this.el.child('button');
29644                 if(ib && ib.getWidth() > 20){
29645                     ib.clip();
29646                     ib.setWidth(Roo.util.TextMetrics.measure(ib, this.text).width+ib.getFrameWidth('lr'));
29647                 }
29648             }
29649             if(this.minWidth){
29650                 if(this.hidden){
29651                     this.el.beginMeasure();
29652                 }
29653                 if(this.el.getWidth() < this.minWidth){
29654                     this.el.setWidth(this.minWidth);
29655                 }
29656                 if(this.hidden){
29657                     this.el.endMeasure();
29658                 }
29659             }
29660         }
29661     },
29662
29663     /**
29664      * Assigns this button's click handler
29665      * @param {Function} handler The function to call when the button is clicked
29666      * @param {Object} scope (optional) Scope for the function passed in
29667      */
29668     setHandler : function(handler, scope){
29669         this.handler = handler;
29670         this.scope = scope;  
29671     },
29672     
29673     /**
29674      * Sets this button's text
29675      * @param {String} text The button text
29676      */
29677     setText : function(text){
29678         this.text = text;
29679         if(this.el){
29680             this.el.child("td.x-btn-center button.x-btn-text").update(text);
29681         }
29682         this.autoWidth();
29683     },
29684     
29685     /**
29686      * Gets the text for this button
29687      * @return {String} The button text
29688      */
29689     getText : function(){
29690         return this.text;  
29691     },
29692     
29693     /**
29694      * Show this button
29695      */
29696     show: function(){
29697         this.hidden = false;
29698         if(this.el){
29699             this[this.hideParent? 'parentEl' : 'el'].setStyle("display", "");
29700         }
29701     },
29702     
29703     /**
29704      * Hide this button
29705      */
29706     hide: function(){
29707         this.hidden = true;
29708         if(this.el){
29709             this[this.hideParent? 'parentEl' : 'el'].setStyle("display", "none");
29710         }
29711     },
29712     
29713     /**
29714      * Convenience function for boolean show/hide
29715      * @param {Boolean} visible True to show, false to hide
29716      */
29717     setVisible: function(visible){
29718         if(visible) {
29719             this.show();
29720         }else{
29721             this.hide();
29722         }
29723     },
29724     
29725     /**
29726      * If a state it passed, it becomes the pressed state otherwise the current state is toggled.
29727      * @param {Boolean} state (optional) Force a particular state
29728      */
29729     toggle : function(state){
29730         state = state === undefined ? !this.pressed : state;
29731         if(state != this.pressed){
29732             if(state){
29733                 this.el.addClass("x-btn-pressed");
29734                 this.pressed = true;
29735                 this.fireEvent("toggle", this, true);
29736             }else{
29737                 this.el.removeClass("x-btn-pressed");
29738                 this.pressed = false;
29739                 this.fireEvent("toggle", this, false);
29740             }
29741             if(this.toggleHandler){
29742                 this.toggleHandler.call(this.scope || this, this, state);
29743             }
29744         }
29745     },
29746     
29747     /**
29748      * Focus the button
29749      */
29750     focus : function(){
29751         this.el.child('button:first').focus();
29752     },
29753     
29754     /**
29755      * Disable this button
29756      */
29757     disable : function(){
29758         if(this.el){
29759             this.el.addClass("x-btn-disabled");
29760         }
29761         this.disabled = true;
29762     },
29763     
29764     /**
29765      * Enable this button
29766      */
29767     enable : function(){
29768         if(this.el){
29769             this.el.removeClass("x-btn-disabled");
29770         }
29771         this.disabled = false;
29772     },
29773
29774     /**
29775      * Convenience function for boolean enable/disable
29776      * @param {Boolean} enabled True to enable, false to disable
29777      */
29778     setDisabled : function(v){
29779         this[v !== true ? "enable" : "disable"]();
29780     },
29781
29782     // private
29783     onClick : function(e)
29784     {
29785         if(e){
29786             e.preventDefault();
29787         }
29788         if(e.button != 0){
29789             return;
29790         }
29791         if(!this.disabled){
29792             if(this.enableToggle){
29793                 this.toggle();
29794             }
29795             if(this.menu && !this.menu.isVisible()){
29796                 this.menu.show(this.el, this.menuAlign);
29797             }
29798             this.fireEvent("click", this, e);
29799             if(this.handler){
29800                 this.el.removeClass("x-btn-over");
29801                 this.handler.call(this.scope || this, this, e);
29802             }
29803         }
29804     },
29805     // private
29806     onMouseOver : function(e){
29807         if(!this.disabled){
29808             this.el.addClass("x-btn-over");
29809             this.fireEvent('mouseover', this, e);
29810         }
29811     },
29812     // private
29813     onMouseOut : function(e){
29814         if(!e.within(this.el,  true)){
29815             this.el.removeClass("x-btn-over");
29816             this.fireEvent('mouseout', this, e);
29817         }
29818     },
29819     // private
29820     onFocus : function(e){
29821         if(!this.disabled){
29822             this.el.addClass("x-btn-focus");
29823         }
29824     },
29825     // private
29826     onBlur : function(e){
29827         this.el.removeClass("x-btn-focus");
29828     },
29829     // private
29830     onMouseDown : function(e){
29831         if(!this.disabled && e.button == 0){
29832             this.el.addClass("x-btn-click");
29833             Roo.get(document).on('mouseup', this.onMouseUp, this);
29834         }
29835     },
29836     // private
29837     onMouseUp : function(e){
29838         if(e.button == 0){
29839             this.el.removeClass("x-btn-click");
29840             Roo.get(document).un('mouseup', this.onMouseUp, this);
29841         }
29842     },
29843     // private
29844     onMenuShow : function(e){
29845         this.el.addClass("x-btn-menu-active");
29846     },
29847     // private
29848     onMenuHide : function(e){
29849         this.el.removeClass("x-btn-menu-active");
29850     }   
29851 });
29852
29853 // Private utility class used by Button
29854 Roo.ButtonToggleMgr = function(){
29855    var groups = {};
29856    
29857    function toggleGroup(btn, state){
29858        if(state){
29859            var g = groups[btn.toggleGroup];
29860            for(var i = 0, l = g.length; i < l; i++){
29861                if(g[i] != btn){
29862                    g[i].toggle(false);
29863                }
29864            }
29865        }
29866    }
29867    
29868    return {
29869        register : function(btn){
29870            if(!btn.toggleGroup){
29871                return;
29872            }
29873            var g = groups[btn.toggleGroup];
29874            if(!g){
29875                g = groups[btn.toggleGroup] = [];
29876            }
29877            g.push(btn);
29878            btn.on("toggle", toggleGroup);
29879        },
29880        
29881        unregister : function(btn){
29882            if(!btn.toggleGroup){
29883                return;
29884            }
29885            var g = groups[btn.toggleGroup];
29886            if(g){
29887                g.remove(btn);
29888                btn.un("toggle", toggleGroup);
29889            }
29890        }
29891    };
29892 }();/*
29893  * Based on:
29894  * Ext JS Library 1.1.1
29895  * Copyright(c) 2006-2007, Ext JS, LLC.
29896  *
29897  * Originally Released Under LGPL - original licence link has changed is not relivant.
29898  *
29899  * Fork - LGPL
29900  * <script type="text/javascript">
29901  */
29902  
29903 /**
29904  * @class Roo.SplitButton
29905  * @extends Roo.Button
29906  * A split button that provides a built-in dropdown arrow that can fire an event separately from the default
29907  * click event of the button.  Typically this would be used to display a dropdown menu that provides additional
29908  * options to the primary button action, but any custom handler can provide the arrowclick implementation.
29909  * @cfg {Function} arrowHandler A function called when the arrow button is clicked (can be used instead of click event)
29910  * @cfg {String} arrowTooltip The title attribute of the arrow
29911  * @constructor
29912  * Create a new menu button
29913  * @param {String/HTMLElement/Element} renderTo The element to append the button to
29914  * @param {Object} config The config object
29915  */
29916 Roo.SplitButton = function(renderTo, config){
29917     Roo.SplitButton.superclass.constructor.call(this, renderTo, config);
29918     /**
29919      * @event arrowclick
29920      * Fires when this button's arrow is clicked
29921      * @param {SplitButton} this
29922      * @param {EventObject} e The click event
29923      */
29924     this.addEvents({"arrowclick":true});
29925 };
29926
29927 Roo.extend(Roo.SplitButton, Roo.Button, {
29928     render : function(renderTo){
29929         // this is one sweet looking template!
29930         var tpl = new Roo.Template(
29931             '<table cellspacing="0" class="x-btn-menu-wrap x-btn"><tr><td>',
29932             '<table cellspacing="0" class="x-btn-wrap x-btn-menu-text-wrap"><tbody>',
29933             '<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>',
29934             "</tbody></table></td><td>",
29935             '<table cellspacing="0" class="x-btn-wrap x-btn-menu-arrow-wrap"><tbody>',
29936             '<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>',
29937             "</tbody></table></td></tr></table>"
29938         );
29939         var btn = tpl.append(renderTo, [this.text, this.type], true);
29940         var btnEl = btn.child("button");
29941         if(this.cls){
29942             btn.addClass(this.cls);
29943         }
29944         if(this.icon){
29945             btnEl.setStyle('background-image', 'url(' +this.icon +')');
29946         }
29947         if(this.iconCls){
29948             btnEl.addClass(this.iconCls);
29949             if(!this.cls){
29950                 btn.addClass(this.text ? 'x-btn-text-icon' : 'x-btn-icon');
29951             }
29952         }
29953         this.el = btn;
29954         if(this.handleMouseEvents){
29955             btn.on("mouseover", this.onMouseOver, this);
29956             btn.on("mouseout", this.onMouseOut, this);
29957             btn.on("mousedown", this.onMouseDown, this);
29958             btn.on("mouseup", this.onMouseUp, this);
29959         }
29960         btn.on(this.clickEvent, this.onClick, this);
29961         if(this.tooltip){
29962             if(typeof this.tooltip == 'object'){
29963                 Roo.QuickTips.tips(Roo.apply({
29964                       target: btnEl.id
29965                 }, this.tooltip));
29966             } else {
29967                 btnEl.dom[this.tooltipType] = this.tooltip;
29968             }
29969         }
29970         if(this.arrowTooltip){
29971             btn.child("button:nth(2)").dom[this.tooltipType] = this.arrowTooltip;
29972         }
29973         if(this.hidden){
29974             this.hide();
29975         }
29976         if(this.disabled){
29977             this.disable();
29978         }
29979         if(this.pressed){
29980             this.el.addClass("x-btn-pressed");
29981         }
29982         if(Roo.isIE && !Roo.isIE7){
29983             this.autoWidth.defer(1, this);
29984         }else{
29985             this.autoWidth();
29986         }
29987         if(this.menu){
29988             this.menu.on("show", this.onMenuShow, this);
29989             this.menu.on("hide", this.onMenuHide, this);
29990         }
29991         this.fireEvent('render', this);
29992     },
29993
29994     // private
29995     autoWidth : function(){
29996         if(this.el){
29997             var tbl = this.el.child("table:first");
29998             var tbl2 = this.el.child("table:last");
29999             this.el.setWidth("auto");
30000             tbl.setWidth("auto");
30001             if(Roo.isIE7 && Roo.isStrict){
30002                 var ib = this.el.child('button:first');
30003                 if(ib && ib.getWidth() > 20){
30004                     ib.clip();
30005                     ib.setWidth(Roo.util.TextMetrics.measure(ib, this.text).width+ib.getFrameWidth('lr'));
30006                 }
30007             }
30008             if(this.minWidth){
30009                 if(this.hidden){
30010                     this.el.beginMeasure();
30011                 }
30012                 if((tbl.getWidth()+tbl2.getWidth()) < this.minWidth){
30013                     tbl.setWidth(this.minWidth-tbl2.getWidth());
30014                 }
30015                 if(this.hidden){
30016                     this.el.endMeasure();
30017                 }
30018             }
30019             this.el.setWidth(tbl.getWidth()+tbl2.getWidth());
30020         } 
30021     },
30022     /**
30023      * Sets this button's click handler
30024      * @param {Function} handler The function to call when the button is clicked
30025      * @param {Object} scope (optional) Scope for the function passed above
30026      */
30027     setHandler : function(handler, scope){
30028         this.handler = handler;
30029         this.scope = scope;  
30030     },
30031     
30032     /**
30033      * Sets this button's arrow click handler
30034      * @param {Function} handler The function to call when the arrow is clicked
30035      * @param {Object} scope (optional) Scope for the function passed above
30036      */
30037     setArrowHandler : function(handler, scope){
30038         this.arrowHandler = handler;
30039         this.scope = scope;  
30040     },
30041     
30042     /**
30043      * Focus the button
30044      */
30045     focus : function(){
30046         if(this.el){
30047             this.el.child("button:first").focus();
30048         }
30049     },
30050
30051     // private
30052     onClick : function(e){
30053         e.preventDefault();
30054         if(!this.disabled){
30055             if(e.getTarget(".x-btn-menu-arrow-wrap")){
30056                 if(this.menu && !this.menu.isVisible()){
30057                     this.menu.show(this.el, this.menuAlign);
30058                 }
30059                 this.fireEvent("arrowclick", this, e);
30060                 if(this.arrowHandler){
30061                     this.arrowHandler.call(this.scope || this, this, e);
30062                 }
30063             }else{
30064                 this.fireEvent("click", this, e);
30065                 if(this.handler){
30066                     this.handler.call(this.scope || this, this, e);
30067                 }
30068             }
30069         }
30070     },
30071     // private
30072     onMouseDown : function(e){
30073         if(!this.disabled){
30074             Roo.fly(e.getTarget("table")).addClass("x-btn-click");
30075         }
30076     },
30077     // private
30078     onMouseUp : function(e){
30079         Roo.fly(e.getTarget("table")).removeClass("x-btn-click");
30080     }   
30081 });
30082
30083
30084 // backwards compat
30085 Roo.MenuButton = Roo.SplitButton;/*
30086  * Based on:
30087  * Ext JS Library 1.1.1
30088  * Copyright(c) 2006-2007, Ext JS, LLC.
30089  *
30090  * Originally Released Under LGPL - original licence link has changed is not relivant.
30091  *
30092  * Fork - LGPL
30093  * <script type="text/javascript">
30094  */
30095
30096 /**
30097  * @class Roo.Toolbar
30098  * Basic Toolbar class.
30099  * @constructor
30100  * Creates a new Toolbar
30101  * @param {Object} container The config object
30102  */ 
30103 Roo.Toolbar = function(container, buttons, config)
30104 {
30105     /// old consturctor format still supported..
30106     if(container instanceof Array){ // omit the container for later rendering
30107         buttons = container;
30108         config = buttons;
30109         container = null;
30110     }
30111     if (typeof(container) == 'object' && container.xtype) {
30112         config = container;
30113         container = config.container;
30114         buttons = config.buttons || []; // not really - use items!!
30115     }
30116     var xitems = [];
30117     if (config && config.items) {
30118         xitems = config.items;
30119         delete config.items;
30120     }
30121     Roo.apply(this, config);
30122     this.buttons = buttons;
30123     
30124     if(container){
30125         this.render(container);
30126     }
30127     this.xitems = xitems;
30128     Roo.each(xitems, function(b) {
30129         this.add(b);
30130     }, this);
30131     
30132 };
30133
30134 Roo.Toolbar.prototype = {
30135     /**
30136      * @cfg {Array} items
30137      * array of button configs or elements to add (will be converted to a MixedCollection)
30138      */
30139     
30140     /**
30141      * @cfg {String/HTMLElement/Element} container
30142      * The id or element that will contain the toolbar
30143      */
30144     // private
30145     render : function(ct){
30146         this.el = Roo.get(ct);
30147         if(this.cls){
30148             this.el.addClass(this.cls);
30149         }
30150         // using a table allows for vertical alignment
30151         // 100% width is needed by Safari...
30152         this.el.update('<div class="x-toolbar x-small-editor"><table cellspacing="0"><tr></tr></table></div>');
30153         this.tr = this.el.child("tr", true);
30154         var autoId = 0;
30155         this.items = new Roo.util.MixedCollection(false, function(o){
30156             return o.id || ("item" + (++autoId));
30157         });
30158         if(this.buttons){
30159             this.add.apply(this, this.buttons);
30160             delete this.buttons;
30161         }
30162     },
30163
30164     /**
30165      * Adds element(s) to the toolbar -- this function takes a variable number of 
30166      * arguments of mixed type and adds them to the toolbar.
30167      * @param {Mixed} arg1 The following types of arguments are all valid:<br />
30168      * <ul>
30169      * <li>{@link Roo.Toolbar.Button} config: A valid button config object (equivalent to {@link #addButton})</li>
30170      * <li>HtmlElement: Any standard HTML element (equivalent to {@link #addElement})</li>
30171      * <li>Field: Any form field (equivalent to {@link #addField})</li>
30172      * <li>Item: Any subclass of {@link Roo.Toolbar.Item} (equivalent to {@link #addItem})</li>
30173      * <li>String: Any generic string (gets wrapped in a {@link Roo.Toolbar.TextItem}, equivalent to {@link #addText}).
30174      * Note that there are a few special strings that are treated differently as explained nRoo.</li>
30175      * <li>'separator' or '-': Creates a separator element (equivalent to {@link #addSeparator})</li>
30176      * <li>' ': Creates a spacer element (equivalent to {@link #addSpacer})</li>
30177      * <li>'->': Creates a fill element (equivalent to {@link #addFill})</li>
30178      * </ul>
30179      * @param {Mixed} arg2
30180      * @param {Mixed} etc.
30181      */
30182     add : function(){
30183         var a = arguments, l = a.length;
30184         for(var i = 0; i < l; i++){
30185             this._add(a[i]);
30186         }
30187     },
30188     // private..
30189     _add : function(el) {
30190         
30191         if (el.xtype) {
30192             el = Roo.factory(el, typeof(Roo.Toolbar[el.xtype]) == 'undefined' ? Roo.form : Roo.Toolbar);
30193         }
30194         
30195         if (el.applyTo){ // some kind of form field
30196             return this.addField(el);
30197         } 
30198         if (el.render){ // some kind of Toolbar.Item
30199             return this.addItem(el);
30200         }
30201         if (typeof el == "string"){ // string
30202             if(el == "separator" || el == "-"){
30203                 return this.addSeparator();
30204             }
30205             if (el == " "){
30206                 return this.addSpacer();
30207             }
30208             if(el == "->"){
30209                 return this.addFill();
30210             }
30211             return this.addText(el);
30212             
30213         }
30214         if(el.tagName){ // element
30215             return this.addElement(el);
30216         }
30217         if(typeof el == "object"){ // must be button config?
30218             return this.addButton(el);
30219         }
30220         // and now what?!?!
30221         return false;
30222         
30223     },
30224     
30225     /**
30226      * Add an Xtype element
30227      * @param {Object} xtype Xtype Object
30228      * @return {Object} created Object
30229      */
30230     addxtype : function(e){
30231         return this.add(e);  
30232     },
30233     
30234     /**
30235      * Returns the Element for this toolbar.
30236      * @return {Roo.Element}
30237      */
30238     getEl : function(){
30239         return this.el;  
30240     },
30241     
30242     /**
30243      * Adds a separator
30244      * @return {Roo.Toolbar.Item} The separator item
30245      */
30246     addSeparator : function(){
30247         return this.addItem(new Roo.Toolbar.Separator());
30248     },
30249
30250     /**
30251      * Adds a spacer element
30252      * @return {Roo.Toolbar.Spacer} The spacer item
30253      */
30254     addSpacer : function(){
30255         return this.addItem(new Roo.Toolbar.Spacer());
30256     },
30257
30258     /**
30259      * Adds a fill element that forces subsequent additions to the right side of the toolbar
30260      * @return {Roo.Toolbar.Fill} The fill item
30261      */
30262     addFill : function(){
30263         return this.addItem(new Roo.Toolbar.Fill());
30264     },
30265
30266     /**
30267      * Adds any standard HTML element to the toolbar
30268      * @param {String/HTMLElement/Element} el The element or id of the element to add
30269      * @return {Roo.Toolbar.Item} The element's item
30270      */
30271     addElement : function(el){
30272         return this.addItem(new Roo.Toolbar.Item(el));
30273     },
30274     /**
30275      * Collection of items on the toolbar.. (only Toolbar Items, so use fields to retrieve fields)
30276      * @type Roo.util.MixedCollection  
30277      */
30278     items : false,
30279      
30280     /**
30281      * Adds any Toolbar.Item or subclass
30282      * @param {Roo.Toolbar.Item} item
30283      * @return {Roo.Toolbar.Item} The item
30284      */
30285     addItem : function(item){
30286         var td = this.nextBlock();
30287         item.render(td);
30288         this.items.add(item);
30289         return item;
30290     },
30291     
30292     /**
30293      * Adds a button (or buttons). See {@link Roo.Toolbar.Button} for more info on the config.
30294      * @param {Object/Array} config A button config or array of configs
30295      * @return {Roo.Toolbar.Button/Array}
30296      */
30297     addButton : function(config){
30298         if(config instanceof Array){
30299             var buttons = [];
30300             for(var i = 0, len = config.length; i < len; i++) {
30301                 buttons.push(this.addButton(config[i]));
30302             }
30303             return buttons;
30304         }
30305         var b = config;
30306         if(!(config instanceof Roo.Toolbar.Button)){
30307             b = config.split ?
30308                 new Roo.Toolbar.SplitButton(config) :
30309                 new Roo.Toolbar.Button(config);
30310         }
30311         var td = this.nextBlock();
30312         b.render(td);
30313         this.items.add(b);
30314         return b;
30315     },
30316     
30317     /**
30318      * Adds text to the toolbar
30319      * @param {String} text The text to add
30320      * @return {Roo.Toolbar.Item} The element's item
30321      */
30322     addText : function(text){
30323         return this.addItem(new Roo.Toolbar.TextItem(text));
30324     },
30325     
30326     /**
30327      * Inserts any {@link Roo.Toolbar.Item}/{@link Roo.Toolbar.Button} at the specified index.
30328      * @param {Number} index The index where the item is to be inserted
30329      * @param {Object/Roo.Toolbar.Item/Roo.Toolbar.Button (may be Array)} item The button, or button config object to be inserted.
30330      * @return {Roo.Toolbar.Button/Item}
30331      */
30332     insertButton : function(index, item){
30333         if(item instanceof Array){
30334             var buttons = [];
30335             for(var i = 0, len = item.length; i < len; i++) {
30336                buttons.push(this.insertButton(index + i, item[i]));
30337             }
30338             return buttons;
30339         }
30340         if (!(item instanceof Roo.Toolbar.Button)){
30341            item = new Roo.Toolbar.Button(item);
30342         }
30343         var td = document.createElement("td");
30344         this.tr.insertBefore(td, this.tr.childNodes[index]);
30345         item.render(td);
30346         this.items.insert(index, item);
30347         return item;
30348     },
30349     
30350     /**
30351      * Adds a new element to the toolbar from the passed {@link Roo.DomHelper} config.
30352      * @param {Object} config
30353      * @return {Roo.Toolbar.Item} The element's item
30354      */
30355     addDom : function(config, returnEl){
30356         var td = this.nextBlock();
30357         Roo.DomHelper.overwrite(td, config);
30358         var ti = new Roo.Toolbar.Item(td.firstChild);
30359         ti.render(td);
30360         this.items.add(ti);
30361         return ti;
30362     },
30363
30364     /**
30365      * Collection of fields on the toolbar.. usefull for quering (value is false if there are no fields)
30366      * @type Roo.util.MixedCollection  
30367      */
30368     fields : false,
30369     
30370     /**
30371      * Adds a dynamically rendered Roo.form field (TextField, ComboBox, etc).
30372      * Note: the field should not have been rendered yet. For a field that has already been
30373      * rendered, use {@link #addElement}.
30374      * @param {Roo.form.Field} field
30375      * @return {Roo.ToolbarItem}
30376      */
30377      
30378       
30379     addField : function(field) {
30380         if (!this.fields) {
30381             var autoId = 0;
30382             this.fields = new Roo.util.MixedCollection(false, function(o){
30383                 return o.id || ("item" + (++autoId));
30384             });
30385
30386         }
30387         
30388         var td = this.nextBlock();
30389         field.render(td);
30390         var ti = new Roo.Toolbar.Item(td.firstChild);
30391         ti.render(td);
30392         this.items.add(ti);
30393         this.fields.add(field);
30394         return ti;
30395     },
30396     /**
30397      * Hide the toolbar
30398      * @method hide
30399      */
30400      
30401       
30402     hide : function()
30403     {
30404         this.el.child('div').setVisibilityMode(Roo.Element.DISPLAY);
30405         this.el.child('div').hide();
30406     },
30407     /**
30408      * Show the toolbar
30409      * @method show
30410      */
30411     show : function()
30412     {
30413         this.el.child('div').show();
30414     },
30415       
30416     // private
30417     nextBlock : function(){
30418         var td = document.createElement("td");
30419         this.tr.appendChild(td);
30420         return td;
30421     },
30422
30423     // private
30424     destroy : function(){
30425         if(this.items){ // rendered?
30426             Roo.destroy.apply(Roo, this.items.items);
30427         }
30428         if(this.fields){ // rendered?
30429             Roo.destroy.apply(Roo, this.fields.items);
30430         }
30431         Roo.Element.uncache(this.el, this.tr);
30432     }
30433 };
30434
30435 /**
30436  * @class Roo.Toolbar.Item
30437  * The base class that other classes should extend in order to get some basic common toolbar item functionality.
30438  * @constructor
30439  * Creates a new Item
30440  * @param {HTMLElement} el 
30441  */
30442 Roo.Toolbar.Item = function(el){
30443     var cfg = {};
30444     if (typeof (el.xtype) != 'undefined') {
30445         cfg = el;
30446         el = cfg.el;
30447     }
30448     
30449     this.el = Roo.getDom(el);
30450     this.id = Roo.id(this.el);
30451     this.hidden = false;
30452     
30453     this.addEvents({
30454          /**
30455              * @event render
30456              * Fires when the button is rendered
30457              * @param {Button} this
30458              */
30459         'render': true
30460     });
30461     Roo.Toolbar.Item.superclass.constructor.call(this,cfg);
30462 };
30463 Roo.extend(Roo.Toolbar.Item, Roo.util.Observable, {
30464 //Roo.Toolbar.Item.prototype = {
30465     
30466     /**
30467      * Get this item's HTML Element
30468      * @return {HTMLElement}
30469      */
30470     getEl : function(){
30471        return this.el;  
30472     },
30473
30474     // private
30475     render : function(td){
30476         
30477          this.td = td;
30478         td.appendChild(this.el);
30479         
30480         this.fireEvent('render', this);
30481     },
30482     
30483     /**
30484      * Removes and destroys this item.
30485      */
30486     destroy : function(){
30487         this.td.parentNode.removeChild(this.td);
30488     },
30489     
30490     /**
30491      * Shows this item.
30492      */
30493     show: function(){
30494         this.hidden = false;
30495         this.td.style.display = "";
30496     },
30497     
30498     /**
30499      * Hides this item.
30500      */
30501     hide: function(){
30502         this.hidden = true;
30503         this.td.style.display = "none";
30504     },
30505     
30506     /**
30507      * Convenience function for boolean show/hide.
30508      * @param {Boolean} visible true to show/false to hide
30509      */
30510     setVisible: function(visible){
30511         if(visible) {
30512             this.show();
30513         }else{
30514             this.hide();
30515         }
30516     },
30517     
30518     /**
30519      * Try to focus this item.
30520      */
30521     focus : function(){
30522         Roo.fly(this.el).focus();
30523     },
30524     
30525     /**
30526      * Disables this item.
30527      */
30528     disable : function(){
30529         Roo.fly(this.td).addClass("x-item-disabled");
30530         this.disabled = true;
30531         this.el.disabled = true;
30532     },
30533     
30534     /**
30535      * Enables this item.
30536      */
30537     enable : function(){
30538         Roo.fly(this.td).removeClass("x-item-disabled");
30539         this.disabled = false;
30540         this.el.disabled = false;
30541     }
30542 });
30543
30544
30545 /**
30546  * @class Roo.Toolbar.Separator
30547  * @extends Roo.Toolbar.Item
30548  * A simple toolbar separator class
30549  * @constructor
30550  * Creates a new Separator
30551  */
30552 Roo.Toolbar.Separator = function(cfg){
30553     
30554     var s = document.createElement("span");
30555     s.className = "ytb-sep";
30556     if (cfg) {
30557         cfg.el = s;
30558     }
30559     
30560     Roo.Toolbar.Separator.superclass.constructor.call(this, cfg || s);
30561 };
30562 Roo.extend(Roo.Toolbar.Separator, Roo.Toolbar.Item, {
30563     enable:Roo.emptyFn,
30564     disable:Roo.emptyFn,
30565     focus:Roo.emptyFn
30566 });
30567
30568 /**
30569  * @class Roo.Toolbar.Spacer
30570  * @extends Roo.Toolbar.Item
30571  * A simple element that adds extra horizontal space to a toolbar.
30572  * @constructor
30573  * Creates a new Spacer
30574  */
30575 Roo.Toolbar.Spacer = function(cfg){
30576     var s = document.createElement("div");
30577     s.className = "ytb-spacer";
30578     if (cfg) {
30579         cfg.el = s;
30580     }
30581     Roo.Toolbar.Spacer.superclass.constructor.call(this, cfg || s);
30582 };
30583 Roo.extend(Roo.Toolbar.Spacer, Roo.Toolbar.Item, {
30584     enable:Roo.emptyFn,
30585     disable:Roo.emptyFn,
30586     focus:Roo.emptyFn
30587 });
30588
30589 /**
30590  * @class Roo.Toolbar.Fill
30591  * @extends Roo.Toolbar.Spacer
30592  * A simple element that adds a greedy (100% width) horizontal space to a toolbar.
30593  * @constructor
30594  * Creates a new Spacer
30595  */
30596 Roo.Toolbar.Fill = Roo.extend(Roo.Toolbar.Spacer, {
30597     // private
30598     render : function(td){
30599         td.style.width = '100%';
30600         Roo.Toolbar.Fill.superclass.render.call(this, td);
30601     }
30602 });
30603
30604 /**
30605  * @class Roo.Toolbar.TextItem
30606  * @extends Roo.Toolbar.Item
30607  * A simple class that renders text directly into a toolbar.
30608  * @constructor
30609  * Creates a new TextItem
30610  * @cfg {string} text 
30611  */
30612 Roo.Toolbar.TextItem = function(cfg){
30613     var  text = cfg || "";
30614     if (typeof(cfg) == 'object') {
30615         text = cfg.text || "";
30616     }  else {
30617         cfg = null;
30618     }
30619     var s = document.createElement("span");
30620     s.className = "ytb-text";
30621     s.innerHTML = text;
30622     if (cfg) {
30623         cfg.el  = s;
30624     }
30625     
30626     Roo.Toolbar.TextItem.superclass.constructor.call(this, cfg ||  s);
30627 };
30628 Roo.extend(Roo.Toolbar.TextItem, Roo.Toolbar.Item, {
30629     
30630      
30631     enable:Roo.emptyFn,
30632     disable:Roo.emptyFn,
30633     focus:Roo.emptyFn
30634 });
30635
30636 /**
30637  * @class Roo.Toolbar.Button
30638  * @extends Roo.Button
30639  * A button that renders into a toolbar.
30640  * @constructor
30641  * Creates a new Button
30642  * @param {Object} config A standard {@link Roo.Button} config object
30643  */
30644 Roo.Toolbar.Button = function(config){
30645     Roo.Toolbar.Button.superclass.constructor.call(this, null, config);
30646 };
30647 Roo.extend(Roo.Toolbar.Button, Roo.Button, {
30648     render : function(td){
30649         this.td = td;
30650         Roo.Toolbar.Button.superclass.render.call(this, td);
30651     },
30652     
30653     /**
30654      * Removes and destroys this button
30655      */
30656     destroy : function(){
30657         Roo.Toolbar.Button.superclass.destroy.call(this);
30658         this.td.parentNode.removeChild(this.td);
30659     },
30660     
30661     /**
30662      * Shows this button
30663      */
30664     show: function(){
30665         this.hidden = false;
30666         this.td.style.display = "";
30667     },
30668     
30669     /**
30670      * Hides this button
30671      */
30672     hide: function(){
30673         this.hidden = true;
30674         this.td.style.display = "none";
30675     },
30676
30677     /**
30678      * Disables this item
30679      */
30680     disable : function(){
30681         Roo.fly(this.td).addClass("x-item-disabled");
30682         this.disabled = true;
30683     },
30684
30685     /**
30686      * Enables this item
30687      */
30688     enable : function(){
30689         Roo.fly(this.td).removeClass("x-item-disabled");
30690         this.disabled = false;
30691     }
30692 });
30693 // backwards compat
30694 Roo.ToolbarButton = Roo.Toolbar.Button;
30695
30696 /**
30697  * @class Roo.Toolbar.SplitButton
30698  * @extends Roo.SplitButton
30699  * A menu button that renders into a toolbar.
30700  * @constructor
30701  * Creates a new SplitButton
30702  * @param {Object} config A standard {@link Roo.SplitButton} config object
30703  */
30704 Roo.Toolbar.SplitButton = function(config){
30705     Roo.Toolbar.SplitButton.superclass.constructor.call(this, null, config);
30706 };
30707 Roo.extend(Roo.Toolbar.SplitButton, Roo.SplitButton, {
30708     render : function(td){
30709         this.td = td;
30710         Roo.Toolbar.SplitButton.superclass.render.call(this, td);
30711     },
30712     
30713     /**
30714      * Removes and destroys this button
30715      */
30716     destroy : function(){
30717         Roo.Toolbar.SplitButton.superclass.destroy.call(this);
30718         this.td.parentNode.removeChild(this.td);
30719     },
30720     
30721     /**
30722      * Shows this button
30723      */
30724     show: function(){
30725         this.hidden = false;
30726         this.td.style.display = "";
30727     },
30728     
30729     /**
30730      * Hides this button
30731      */
30732     hide: function(){
30733         this.hidden = true;
30734         this.td.style.display = "none";
30735     }
30736 });
30737
30738 // backwards compat
30739 Roo.Toolbar.MenuButton = Roo.Toolbar.SplitButton;/*
30740  * Based on:
30741  * Ext JS Library 1.1.1
30742  * Copyright(c) 2006-2007, Ext JS, LLC.
30743  *
30744  * Originally Released Under LGPL - original licence link has changed is not relivant.
30745  *
30746  * Fork - LGPL
30747  * <script type="text/javascript">
30748  */
30749  
30750 /**
30751  * @class Roo.PagingToolbar
30752  * @extends Roo.Toolbar
30753  * A specialized toolbar that is bound to a {@link Roo.data.Store} and provides automatic paging controls.
30754  * @constructor
30755  * Create a new PagingToolbar
30756  * @param {Object} config The config object
30757  */
30758 Roo.PagingToolbar = function(el, ds, config)
30759 {
30760     // old args format still supported... - xtype is prefered..
30761     if (typeof(el) == 'object' && el.xtype) {
30762         // created from xtype...
30763         config = el;
30764         ds = el.dataSource;
30765         el = config.container;
30766     }
30767     var items = [];
30768     if (config.items) {
30769         items = config.items;
30770         config.items = [];
30771     }
30772     
30773     Roo.PagingToolbar.superclass.constructor.call(this, el, null, config);
30774     this.ds = ds;
30775     this.cursor = 0;
30776     this.renderButtons(this.el);
30777     this.bind(ds);
30778     
30779     // supprot items array.
30780    
30781     Roo.each(items, function(e) {
30782         this.add(Roo.factory(e));
30783     },this);
30784     
30785 };
30786
30787 Roo.extend(Roo.PagingToolbar, Roo.Toolbar, {
30788     /**
30789      * @cfg {Roo.data.Store} dataSource
30790      * The underlying data store providing the paged data
30791      */
30792     /**
30793      * @cfg {String/HTMLElement/Element} container
30794      * container The id or element that will contain the toolbar
30795      */
30796     /**
30797      * @cfg {Boolean} displayInfo
30798      * True to display the displayMsg (defaults to false)
30799      */
30800     /**
30801      * @cfg {Number} pageSize
30802      * The number of records to display per page (defaults to 20)
30803      */
30804     pageSize: 20,
30805     /**
30806      * @cfg {String} displayMsg
30807      * The paging status message to display (defaults to "Displaying {start} - {end} of {total}")
30808      */
30809     displayMsg : 'Displaying {0} - {1} of {2}',
30810     /**
30811      * @cfg {String} emptyMsg
30812      * The message to display when no records are found (defaults to "No data to display")
30813      */
30814     emptyMsg : 'No data to display',
30815     /**
30816      * Customizable piece of the default paging text (defaults to "Page")
30817      * @type String
30818      */
30819     beforePageText : "Page",
30820     /**
30821      * Customizable piece of the default paging text (defaults to "of %0")
30822      * @type String
30823      */
30824     afterPageText : "of {0}",
30825     /**
30826      * Customizable piece of the default paging text (defaults to "First Page")
30827      * @type String
30828      */
30829     firstText : "First Page",
30830     /**
30831      * Customizable piece of the default paging text (defaults to "Previous Page")
30832      * @type String
30833      */
30834     prevText : "Previous Page",
30835     /**
30836      * Customizable piece of the default paging text (defaults to "Next Page")
30837      * @type String
30838      */
30839     nextText : "Next Page",
30840     /**
30841      * Customizable piece of the default paging text (defaults to "Last Page")
30842      * @type String
30843      */
30844     lastText : "Last Page",
30845     /**
30846      * Customizable piece of the default paging text (defaults to "Refresh")
30847      * @type String
30848      */
30849     refreshText : "Refresh",
30850
30851     // private
30852     renderButtons : function(el){
30853         Roo.PagingToolbar.superclass.render.call(this, el);
30854         this.first = this.addButton({
30855             tooltip: this.firstText,
30856             cls: "x-btn-icon x-grid-page-first",
30857             disabled: true,
30858             handler: this.onClick.createDelegate(this, ["first"])
30859         });
30860         this.prev = this.addButton({
30861             tooltip: this.prevText,
30862             cls: "x-btn-icon x-grid-page-prev",
30863             disabled: true,
30864             handler: this.onClick.createDelegate(this, ["prev"])
30865         });
30866         //this.addSeparator();
30867         this.add(this.beforePageText);
30868         this.field = Roo.get(this.addDom({
30869            tag: "input",
30870            type: "text",
30871            size: "3",
30872            value: "1",
30873            cls: "x-grid-page-number"
30874         }).el);
30875         this.field.on("keydown", this.onPagingKeydown, this);
30876         this.field.on("focus", function(){this.dom.select();});
30877         this.afterTextEl = this.addText(String.format(this.afterPageText, 1));
30878         this.field.setHeight(18);
30879         //this.addSeparator();
30880         this.next = this.addButton({
30881             tooltip: this.nextText,
30882             cls: "x-btn-icon x-grid-page-next",
30883             disabled: true,
30884             handler: this.onClick.createDelegate(this, ["next"])
30885         });
30886         this.last = this.addButton({
30887             tooltip: this.lastText,
30888             cls: "x-btn-icon x-grid-page-last",
30889             disabled: true,
30890             handler: this.onClick.createDelegate(this, ["last"])
30891         });
30892         //this.addSeparator();
30893         this.loading = this.addButton({
30894             tooltip: this.refreshText,
30895             cls: "x-btn-icon x-grid-loading",
30896             handler: this.onClick.createDelegate(this, ["refresh"])
30897         });
30898
30899         if(this.displayInfo){
30900             this.displayEl = Roo.fly(this.el.dom.firstChild).createChild({cls:'x-paging-info'});
30901         }
30902     },
30903
30904     // private
30905     updateInfo : function(){
30906         if(this.displayEl){
30907             var count = this.ds.getCount();
30908             var msg = count == 0 ?
30909                 this.emptyMsg :
30910                 String.format(
30911                     this.displayMsg,
30912                     this.cursor+1, this.cursor+count, this.ds.getTotalCount()    
30913                 );
30914             this.displayEl.update(msg);
30915         }
30916     },
30917
30918     // private
30919     onLoad : function(ds, r, o){
30920        this.cursor = o.params ? o.params.start : 0;
30921        var d = this.getPageData(), ap = d.activePage, ps = d.pages;
30922
30923        this.afterTextEl.el.innerHTML = String.format(this.afterPageText, d.pages);
30924        this.field.dom.value = ap;
30925        this.first.setDisabled(ap == 1);
30926        this.prev.setDisabled(ap == 1);
30927        this.next.setDisabled(ap == ps);
30928        this.last.setDisabled(ap == ps);
30929        this.loading.enable();
30930        this.updateInfo();
30931     },
30932
30933     // private
30934     getPageData : function(){
30935         var total = this.ds.getTotalCount();
30936         return {
30937             total : total,
30938             activePage : Math.ceil((this.cursor+this.pageSize)/this.pageSize),
30939             pages :  total < this.pageSize ? 1 : Math.ceil(total/this.pageSize)
30940         };
30941     },
30942
30943     // private
30944     onLoadError : function(){
30945         this.loading.enable();
30946     },
30947
30948     // private
30949     onPagingKeydown : function(e){
30950         var k = e.getKey();
30951         var d = this.getPageData();
30952         if(k == e.RETURN){
30953             var v = this.field.dom.value, pageNum;
30954             if(!v || isNaN(pageNum = parseInt(v, 10))){
30955                 this.field.dom.value = d.activePage;
30956                 return;
30957             }
30958             pageNum = Math.min(Math.max(1, pageNum), d.pages) - 1;
30959             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
30960             e.stopEvent();
30961         }
30962         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))
30963         {
30964           var pageNum = (k == e.HOME || (k == e.DOWN && e.ctrlKey) || (k == e.LEFT && e.ctrlKey) || (k == e.PAGEDOWN && e.ctrlKey)) ? 1 : d.pages;
30965           this.field.dom.value = pageNum;
30966           this.ds.load({params:{start: (pageNum - 1) * this.pageSize, limit: this.pageSize}});
30967           e.stopEvent();
30968         }
30969         else if(k == e.UP || k == e.RIGHT || k == e.PAGEUP || k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN)
30970         {
30971           var v = this.field.dom.value, pageNum; 
30972           var increment = (e.shiftKey) ? 10 : 1;
30973           if(k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN) {
30974             increment *= -1;
30975           }
30976           if(!v || isNaN(pageNum = parseInt(v, 10))) {
30977             this.field.dom.value = d.activePage;
30978             return;
30979           }
30980           else if(parseInt(v, 10) + increment >= 1 & parseInt(v, 10) + increment <= d.pages)
30981           {
30982             this.field.dom.value = parseInt(v, 10) + increment;
30983             pageNum = Math.min(Math.max(1, pageNum + increment), d.pages) - 1;
30984             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
30985           }
30986           e.stopEvent();
30987         }
30988     },
30989
30990     // private
30991     beforeLoad : function(){
30992         if(this.loading){
30993             this.loading.disable();
30994         }
30995     },
30996
30997     // private
30998     onClick : function(which){
30999         var ds = this.ds;
31000         switch(which){
31001             case "first":
31002                 ds.load({params:{start: 0, limit: this.pageSize}});
31003             break;
31004             case "prev":
31005                 ds.load({params:{start: Math.max(0, this.cursor-this.pageSize), limit: this.pageSize}});
31006             break;
31007             case "next":
31008                 ds.load({params:{start: this.cursor+this.pageSize, limit: this.pageSize}});
31009             break;
31010             case "last":
31011                 var total = ds.getTotalCount();
31012                 var extra = total % this.pageSize;
31013                 var lastStart = extra ? (total - extra) : total-this.pageSize;
31014                 ds.load({params:{start: lastStart, limit: this.pageSize}});
31015             break;
31016             case "refresh":
31017                 ds.load({params:{start: this.cursor, limit: this.pageSize}});
31018             break;
31019         }
31020     },
31021
31022     /**
31023      * Unbinds the paging toolbar from the specified {@link Roo.data.Store}
31024      * @param {Roo.data.Store} store The data store to unbind
31025      */
31026     unbind : function(ds){
31027         ds.un("beforeload", this.beforeLoad, this);
31028         ds.un("load", this.onLoad, this);
31029         ds.un("loadexception", this.onLoadError, this);
31030         ds.un("remove", this.updateInfo, this);
31031         ds.un("add", this.updateInfo, this);
31032         this.ds = undefined;
31033     },
31034
31035     /**
31036      * Binds the paging toolbar to the specified {@link Roo.data.Store}
31037      * @param {Roo.data.Store} store The data store to bind
31038      */
31039     bind : function(ds){
31040         ds.on("beforeload", this.beforeLoad, this);
31041         ds.on("load", this.onLoad, this);
31042         ds.on("loadexception", this.onLoadError, this);
31043         ds.on("remove", this.updateInfo, this);
31044         ds.on("add", this.updateInfo, this);
31045         this.ds = ds;
31046     }
31047 });/*
31048  * Based on:
31049  * Ext JS Library 1.1.1
31050  * Copyright(c) 2006-2007, Ext JS, LLC.
31051  *
31052  * Originally Released Under LGPL - original licence link has changed is not relivant.
31053  *
31054  * Fork - LGPL
31055  * <script type="text/javascript">
31056  */
31057
31058 /**
31059  * @class Roo.Resizable
31060  * @extends Roo.util.Observable
31061  * <p>Applies drag handles to an element to make it resizable. The drag handles are inserted into the element
31062  * and positioned absolute. Some elements, such as a textarea or image, don't support this. To overcome that, you can wrap
31063  * 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
31064  * the element will be wrapped for you automatically.</p>
31065  * <p>Here is the list of valid resize handles:</p>
31066  * <pre>
31067 Value   Description
31068 ------  -------------------
31069  'n'     north
31070  's'     south
31071  'e'     east
31072  'w'     west
31073  'nw'    northwest
31074  'sw'    southwest
31075  'se'    southeast
31076  'ne'    northeast
31077  'hd'    horizontal drag
31078  'all'   all
31079 </pre>
31080  * <p>Here's an example showing the creation of a typical Resizable:</p>
31081  * <pre><code>
31082 var resizer = new Roo.Resizable("element-id", {
31083     handles: 'all',
31084     minWidth: 200,
31085     minHeight: 100,
31086     maxWidth: 500,
31087     maxHeight: 400,
31088     pinned: true
31089 });
31090 resizer.on("resize", myHandler);
31091 </code></pre>
31092  * <p>To hide a particular handle, set its display to none in CSS, or through script:<br>
31093  * resizer.east.setDisplayed(false);</p>
31094  * @cfg {Boolean/String/Element} resizeChild True to resize the first child, or id/element to resize (defaults to false)
31095  * @cfg {Array/String} adjustments String "auto" or an array [width, height] with values to be <b>added</b> to the
31096  * resize operation's new size (defaults to [0, 0])
31097  * @cfg {Number} minWidth The minimum width for the element (defaults to 5)
31098  * @cfg {Number} minHeight The minimum height for the element (defaults to 5)
31099  * @cfg {Number} maxWidth The maximum width for the element (defaults to 10000)
31100  * @cfg {Number} maxHeight The maximum height for the element (defaults to 10000)
31101  * @cfg {Boolean} enabled False to disable resizing (defaults to true)
31102  * @cfg {Boolean} wrap True to wrap an element with a div if needed (required for textareas and images, defaults to false)
31103  * @cfg {Number} width The width of the element in pixels (defaults to null)
31104  * @cfg {Number} height The height of the element in pixels (defaults to null)
31105  * @cfg {Boolean} animate True to animate the resize (not compatible with dynamic sizing, defaults to false)
31106  * @cfg {Number} duration Animation duration if animate = true (defaults to .35)
31107  * @cfg {Boolean} dynamic True to resize the element while dragging instead of using a proxy (defaults to false)
31108  * @cfg {String} handles String consisting of the resize handles to display (defaults to undefined)
31109  * @cfg {Boolean} multiDirectional <b>Deprecated</b>.  The old style of adding multi-direction resize handles, deprecated
31110  * in favor of the handles config option (defaults to false)
31111  * @cfg {Boolean} disableTrackOver True to disable mouse tracking. This is only applied at config time. (defaults to false)
31112  * @cfg {String} easing Animation easing if animate = true (defaults to 'easingOutStrong')
31113  * @cfg {Number} widthIncrement The increment to snap the width resize in pixels (dynamic must be true, defaults to 0)
31114  * @cfg {Number} heightIncrement The increment to snap the height resize in pixels (dynamic must be true, defaults to 0)
31115  * @cfg {Boolean} pinned True to ensure that the resize handles are always visible, false to display them only when the
31116  * user mouses over the resizable borders. This is only applied at config time. (defaults to false)
31117  * @cfg {Boolean} preserveRatio True to preserve the original ratio between height and width during resize (defaults to false)
31118  * @cfg {Boolean} transparent True for transparent handles. This is only applied at config time. (defaults to false)
31119  * @cfg {Number} minX The minimum allowed page X for the element (only used for west resizing, defaults to 0)
31120  * @cfg {Number} minY The minimum allowed page Y for the element (only used for north resizing, defaults to 0)
31121  * @cfg {Boolean} draggable Convenience to initialize drag drop (defaults to false)
31122  * @constructor
31123  * Create a new resizable component
31124  * @param {String/HTMLElement/Roo.Element} el The id or element to resize
31125  * @param {Object} config configuration options
31126   */
31127 Roo.Resizable = function(el, config)
31128 {
31129     this.el = Roo.get(el);
31130
31131     if(config && config.wrap){
31132         config.resizeChild = this.el;
31133         this.el = this.el.wrap(typeof config.wrap == "object" ? config.wrap : {cls:"xresizable-wrap"});
31134         this.el.id = this.el.dom.id = config.resizeChild.id + "-rzwrap";
31135         this.el.setStyle("overflow", "hidden");
31136         this.el.setPositioning(config.resizeChild.getPositioning());
31137         config.resizeChild.clearPositioning();
31138         if(!config.width || !config.height){
31139             var csize = config.resizeChild.getSize();
31140             this.el.setSize(csize.width, csize.height);
31141         }
31142         if(config.pinned && !config.adjustments){
31143             config.adjustments = "auto";
31144         }
31145     }
31146
31147     this.proxy = this.el.createProxy({tag: "div", cls: "x-resizable-proxy", id: this.el.id + "-rzproxy"});
31148     this.proxy.unselectable();
31149     this.proxy.enableDisplayMode('block');
31150
31151     Roo.apply(this, config);
31152
31153     if(this.pinned){
31154         this.disableTrackOver = true;
31155         this.el.addClass("x-resizable-pinned");
31156     }
31157     // if the element isn't positioned, make it relative
31158     var position = this.el.getStyle("position");
31159     if(position != "absolute" && position != "fixed"){
31160         this.el.setStyle("position", "relative");
31161     }
31162     if(!this.handles){ // no handles passed, must be legacy style
31163         this.handles = 's,e,se';
31164         if(this.multiDirectional){
31165             this.handles += ',n,w';
31166         }
31167     }
31168     if(this.handles == "all"){
31169         this.handles = "n s e w ne nw se sw";
31170     }
31171     var hs = this.handles.split(/\s*?[,;]\s*?| /);
31172     var ps = Roo.Resizable.positions;
31173     for(var i = 0, len = hs.length; i < len; i++){
31174         if(hs[i] && ps[hs[i]]){
31175             var pos = ps[hs[i]];
31176             this[pos] = new Roo.Resizable.Handle(this, pos, this.disableTrackOver, this.transparent);
31177         }
31178     }
31179     // legacy
31180     this.corner = this.southeast;
31181     
31182     // updateBox = the box can move..
31183     if(this.handles.indexOf("n") != -1 || this.handles.indexOf("w") != -1 || this.handles.indexOf("hd") != -1) {
31184         this.updateBox = true;
31185     }
31186
31187     this.activeHandle = null;
31188
31189     if(this.resizeChild){
31190         if(typeof this.resizeChild == "boolean"){
31191             this.resizeChild = Roo.get(this.el.dom.firstChild, true);
31192         }else{
31193             this.resizeChild = Roo.get(this.resizeChild, true);
31194         }
31195     }
31196     
31197     if(this.adjustments == "auto"){
31198         var rc = this.resizeChild;
31199         var hw = this.west, he = this.east, hn = this.north, hs = this.south;
31200         if(rc && (hw || hn)){
31201             rc.position("relative");
31202             rc.setLeft(hw ? hw.el.getWidth() : 0);
31203             rc.setTop(hn ? hn.el.getHeight() : 0);
31204         }
31205         this.adjustments = [
31206             (he ? -he.el.getWidth() : 0) + (hw ? -hw.el.getWidth() : 0),
31207             (hn ? -hn.el.getHeight() : 0) + (hs ? -hs.el.getHeight() : 0) -1
31208         ];
31209     }
31210
31211     if(this.draggable){
31212         this.dd = this.dynamic ?
31213             this.el.initDD(null) : this.el.initDDProxy(null, {dragElId: this.proxy.id});
31214         this.dd.setHandleElId(this.resizeChild ? this.resizeChild.id : this.el.id);
31215     }
31216
31217     // public events
31218     this.addEvents({
31219         /**
31220          * @event beforeresize
31221          * Fired before resize is allowed. Set enabled to false to cancel resize.
31222          * @param {Roo.Resizable} this
31223          * @param {Roo.EventObject} e The mousedown event
31224          */
31225         "beforeresize" : true,
31226         /**
31227          * @event resizing
31228          * Fired a resizing.
31229          * @param {Roo.Resizable} this
31230          * @param {Number} x The new x position
31231          * @param {Number} y The new y position
31232          * @param {Number} w The new w width
31233          * @param {Number} h The new h hight
31234          * @param {Roo.EventObject} e The mouseup event
31235          */
31236         "resizing" : true,
31237         /**
31238          * @event resize
31239          * Fired after a resize.
31240          * @param {Roo.Resizable} this
31241          * @param {Number} width The new width
31242          * @param {Number} height The new height
31243          * @param {Roo.EventObject} e The mouseup event
31244          */
31245         "resize" : true
31246     });
31247
31248     if(this.width !== null && this.height !== null){
31249         this.resizeTo(this.width, this.height);
31250     }else{
31251         this.updateChildSize();
31252     }
31253     if(Roo.isIE){
31254         this.el.dom.style.zoom = 1;
31255     }
31256     Roo.Resizable.superclass.constructor.call(this);
31257 };
31258
31259 Roo.extend(Roo.Resizable, Roo.util.Observable, {
31260         resizeChild : false,
31261         adjustments : [0, 0],
31262         minWidth : 5,
31263         minHeight : 5,
31264         maxWidth : 10000,
31265         maxHeight : 10000,
31266         enabled : true,
31267         animate : false,
31268         duration : .35,
31269         dynamic : false,
31270         handles : false,
31271         multiDirectional : false,
31272         disableTrackOver : false,
31273         easing : 'easeOutStrong',
31274         widthIncrement : 0,
31275         heightIncrement : 0,
31276         pinned : false,
31277         width : null,
31278         height : null,
31279         preserveRatio : false,
31280         transparent: false,
31281         minX: 0,
31282         minY: 0,
31283         draggable: false,
31284
31285         /**
31286          * @cfg {String/HTMLElement/Element} constrainTo Constrain the resize to a particular element
31287          */
31288         constrainTo: undefined,
31289         /**
31290          * @cfg {Roo.lib.Region} resizeRegion Constrain the resize to a particular region
31291          */
31292         resizeRegion: undefined,
31293
31294
31295     /**
31296      * Perform a manual resize
31297      * @param {Number} width
31298      * @param {Number} height
31299      */
31300     resizeTo : function(width, height){
31301         this.el.setSize(width, height);
31302         this.updateChildSize();
31303         this.fireEvent("resize", this, width, height, null);
31304     },
31305
31306     // private
31307     startSizing : function(e, handle){
31308         this.fireEvent("beforeresize", this, e);
31309         if(this.enabled){ // 2nd enabled check in case disabled before beforeresize handler
31310
31311             if(!this.overlay){
31312                 this.overlay = this.el.createProxy({tag: "div", cls: "x-resizable-overlay", html: "&#160;"});
31313                 this.overlay.unselectable();
31314                 this.overlay.enableDisplayMode("block");
31315                 this.overlay.on("mousemove", this.onMouseMove, this);
31316                 this.overlay.on("mouseup", this.onMouseUp, this);
31317             }
31318             this.overlay.setStyle("cursor", handle.el.getStyle("cursor"));
31319
31320             this.resizing = true;
31321             this.startBox = this.el.getBox();
31322             this.startPoint = e.getXY();
31323             this.offsets = [(this.startBox.x + this.startBox.width) - this.startPoint[0],
31324                             (this.startBox.y + this.startBox.height) - this.startPoint[1]];
31325
31326             this.overlay.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
31327             this.overlay.show();
31328
31329             if(this.constrainTo) {
31330                 var ct = Roo.get(this.constrainTo);
31331                 this.resizeRegion = ct.getRegion().adjust(
31332                     ct.getFrameWidth('t'),
31333                     ct.getFrameWidth('l'),
31334                     -ct.getFrameWidth('b'),
31335                     -ct.getFrameWidth('r')
31336                 );
31337             }
31338
31339             this.proxy.setStyle('visibility', 'hidden'); // workaround display none
31340             this.proxy.show();
31341             this.proxy.setBox(this.startBox);
31342             if(!this.dynamic){
31343                 this.proxy.setStyle('visibility', 'visible');
31344             }
31345         }
31346     },
31347
31348     // private
31349     onMouseDown : function(handle, e){
31350         if(this.enabled){
31351             e.stopEvent();
31352             this.activeHandle = handle;
31353             this.startSizing(e, handle);
31354         }
31355     },
31356
31357     // private
31358     onMouseUp : function(e){
31359         var size = this.resizeElement();
31360         this.resizing = false;
31361         this.handleOut();
31362         this.overlay.hide();
31363         this.proxy.hide();
31364         this.fireEvent("resize", this, size.width, size.height, e);
31365     },
31366
31367     // private
31368     updateChildSize : function(){
31369         
31370         if(this.resizeChild){
31371             var el = this.el;
31372             var child = this.resizeChild;
31373             var adj = this.adjustments;
31374             if(el.dom.offsetWidth){
31375                 var b = el.getSize(true);
31376                 child.setSize(b.width+adj[0], b.height+adj[1]);
31377             }
31378             // Second call here for IE
31379             // The first call enables instant resizing and
31380             // the second call corrects scroll bars if they
31381             // exist
31382             if(Roo.isIE){
31383                 setTimeout(function(){
31384                     if(el.dom.offsetWidth){
31385                         var b = el.getSize(true);
31386                         child.setSize(b.width+adj[0], b.height+adj[1]);
31387                     }
31388                 }, 10);
31389             }
31390         }
31391     },
31392
31393     // private
31394     snap : function(value, inc, min){
31395         if(!inc || !value) {
31396             return value;
31397         }
31398         var newValue = value;
31399         var m = value % inc;
31400         if(m > 0){
31401             if(m > (inc/2)){
31402                 newValue = value + (inc-m);
31403             }else{
31404                 newValue = value - m;
31405             }
31406         }
31407         return Math.max(min, newValue);
31408     },
31409
31410     // private
31411     resizeElement : function(){
31412         var box = this.proxy.getBox();
31413         if(this.updateBox){
31414             this.el.setBox(box, false, this.animate, this.duration, null, this.easing);
31415         }else{
31416             this.el.setSize(box.width, box.height, this.animate, this.duration, null, this.easing);
31417         }
31418         this.updateChildSize();
31419         if(!this.dynamic){
31420             this.proxy.hide();
31421         }
31422         return box;
31423     },
31424
31425     // private
31426     constrain : function(v, diff, m, mx){
31427         if(v - diff < m){
31428             diff = v - m;
31429         }else if(v - diff > mx){
31430             diff = mx - v;
31431         }
31432         return diff;
31433     },
31434
31435     // private
31436     onMouseMove : function(e){
31437         
31438         if(this.enabled){
31439             try{// try catch so if something goes wrong the user doesn't get hung
31440
31441             if(this.resizeRegion && !this.resizeRegion.contains(e.getPoint())) {
31442                 return;
31443             }
31444
31445             //var curXY = this.startPoint;
31446             var curSize = this.curSize || this.startBox;
31447             var x = this.startBox.x, y = this.startBox.y;
31448             var ox = x, oy = y;
31449             var w = curSize.width, h = curSize.height;
31450             var ow = w, oh = h;
31451             var mw = this.minWidth, mh = this.minHeight;
31452             var mxw = this.maxWidth, mxh = this.maxHeight;
31453             var wi = this.widthIncrement;
31454             var hi = this.heightIncrement;
31455
31456             var eventXY = e.getXY();
31457             var diffX = -(this.startPoint[0] - Math.max(this.minX, eventXY[0]));
31458             var diffY = -(this.startPoint[1] - Math.max(this.minY, eventXY[1]));
31459
31460             var pos = this.activeHandle.position;
31461
31462             switch(pos){
31463                 case "east":
31464                     w += diffX;
31465                     w = Math.min(Math.max(mw, w), mxw);
31466                     break;
31467              
31468                 case "south":
31469                     h += diffY;
31470                     h = Math.min(Math.max(mh, h), mxh);
31471                     break;
31472                 case "southeast":
31473                     w += diffX;
31474                     h += diffY;
31475                     w = Math.min(Math.max(mw, w), mxw);
31476                     h = Math.min(Math.max(mh, h), mxh);
31477                     break;
31478                 case "north":
31479                     diffY = this.constrain(h, diffY, mh, mxh);
31480                     y += diffY;
31481                     h -= diffY;
31482                     break;
31483                 case "hdrag":
31484                     
31485                     if (wi) {
31486                         var adiffX = Math.abs(diffX);
31487                         var sub = (adiffX % wi); // how much 
31488                         if (sub > (wi/2)) { // far enough to snap
31489                             diffX = (diffX > 0) ? diffX-sub + wi : diffX+sub - wi;
31490                         } else {
31491                             // remove difference.. 
31492                             diffX = (diffX > 0) ? diffX-sub : diffX+sub;
31493                         }
31494                     }
31495                     x += diffX;
31496                     x = Math.max(this.minX, x);
31497                     break;
31498                 case "west":
31499                     diffX = this.constrain(w, diffX, mw, mxw);
31500                     x += diffX;
31501                     w -= diffX;
31502                     break;
31503                 case "northeast":
31504                     w += diffX;
31505                     w = Math.min(Math.max(mw, w), mxw);
31506                     diffY = this.constrain(h, diffY, mh, mxh);
31507                     y += diffY;
31508                     h -= diffY;
31509                     break;
31510                 case "northwest":
31511                     diffX = this.constrain(w, diffX, mw, mxw);
31512                     diffY = this.constrain(h, diffY, mh, mxh);
31513                     y += diffY;
31514                     h -= diffY;
31515                     x += diffX;
31516                     w -= diffX;
31517                     break;
31518                case "southwest":
31519                     diffX = this.constrain(w, diffX, mw, mxw);
31520                     h += diffY;
31521                     h = Math.min(Math.max(mh, h), mxh);
31522                     x += diffX;
31523                     w -= diffX;
31524                     break;
31525             }
31526
31527             var sw = this.snap(w, wi, mw);
31528             var sh = this.snap(h, hi, mh);
31529             if(sw != w || sh != h){
31530                 switch(pos){
31531                     case "northeast":
31532                         y -= sh - h;
31533                     break;
31534                     case "north":
31535                         y -= sh - h;
31536                         break;
31537                     case "southwest":
31538                         x -= sw - w;
31539                     break;
31540                     case "west":
31541                         x -= sw - w;
31542                         break;
31543                     case "northwest":
31544                         x -= sw - w;
31545                         y -= sh - h;
31546                     break;
31547                 }
31548                 w = sw;
31549                 h = sh;
31550             }
31551
31552             if(this.preserveRatio){
31553                 switch(pos){
31554                     case "southeast":
31555                     case "east":
31556                         h = oh * (w/ow);
31557                         h = Math.min(Math.max(mh, h), mxh);
31558                         w = ow * (h/oh);
31559                        break;
31560                     case "south":
31561                         w = ow * (h/oh);
31562                         w = Math.min(Math.max(mw, w), mxw);
31563                         h = oh * (w/ow);
31564                         break;
31565                     case "northeast":
31566                         w = ow * (h/oh);
31567                         w = Math.min(Math.max(mw, w), mxw);
31568                         h = oh * (w/ow);
31569                     break;
31570                     case "north":
31571                         var tw = w;
31572                         w = ow * (h/oh);
31573                         w = Math.min(Math.max(mw, w), mxw);
31574                         h = oh * (w/ow);
31575                         x += (tw - w) / 2;
31576                         break;
31577                     case "southwest":
31578                         h = oh * (w/ow);
31579                         h = Math.min(Math.max(mh, h), mxh);
31580                         var tw = w;
31581                         w = ow * (h/oh);
31582                         x += tw - w;
31583                         break;
31584                     case "west":
31585                         var th = h;
31586                         h = oh * (w/ow);
31587                         h = Math.min(Math.max(mh, h), mxh);
31588                         y += (th - h) / 2;
31589                         var tw = w;
31590                         w = ow * (h/oh);
31591                         x += tw - w;
31592                        break;
31593                     case "northwest":
31594                         var tw = w;
31595                         var th = h;
31596                         h = oh * (w/ow);
31597                         h = Math.min(Math.max(mh, h), mxh);
31598                         w = ow * (h/oh);
31599                         y += th - h;
31600                         x += tw - w;
31601                        break;
31602
31603                 }
31604             }
31605             if (pos == 'hdrag') {
31606                 w = ow;
31607             }
31608             this.proxy.setBounds(x, y, w, h);
31609             if(this.dynamic){
31610                 this.resizeElement();
31611             }
31612             }catch(e){}
31613         }
31614         this.fireEvent("resizing", this, x, y, w, h, e);
31615     },
31616
31617     // private
31618     handleOver : function(){
31619         if(this.enabled){
31620             this.el.addClass("x-resizable-over");
31621         }
31622     },
31623
31624     // private
31625     handleOut : function(){
31626         if(!this.resizing){
31627             this.el.removeClass("x-resizable-over");
31628         }
31629     },
31630
31631     /**
31632      * Returns the element this component is bound to.
31633      * @return {Roo.Element}
31634      */
31635     getEl : function(){
31636         return this.el;
31637     },
31638
31639     /**
31640      * Returns the resizeChild element (or null).
31641      * @return {Roo.Element}
31642      */
31643     getResizeChild : function(){
31644         return this.resizeChild;
31645     },
31646     groupHandler : function()
31647     {
31648         
31649     },
31650     /**
31651      * Destroys this resizable. If the element was wrapped and
31652      * removeEl is not true then the element remains.
31653      * @param {Boolean} removeEl (optional) true to remove the element from the DOM
31654      */
31655     destroy : function(removeEl){
31656         this.proxy.remove();
31657         if(this.overlay){
31658             this.overlay.removeAllListeners();
31659             this.overlay.remove();
31660         }
31661         var ps = Roo.Resizable.positions;
31662         for(var k in ps){
31663             if(typeof ps[k] != "function" && this[ps[k]]){
31664                 var h = this[ps[k]];
31665                 h.el.removeAllListeners();
31666                 h.el.remove();
31667             }
31668         }
31669         if(removeEl){
31670             this.el.update("");
31671             this.el.remove();
31672         }
31673     }
31674 });
31675
31676 // private
31677 // hash to map config positions to true positions
31678 Roo.Resizable.positions = {
31679     n: "north", s: "south", e: "east", w: "west", se: "southeast", sw: "southwest", nw: "northwest", ne: "northeast", 
31680     hd: "hdrag"
31681 };
31682
31683 // private
31684 Roo.Resizable.Handle = function(rz, pos, disableTrackOver, transparent){
31685     if(!this.tpl){
31686         // only initialize the template if resizable is used
31687         var tpl = Roo.DomHelper.createTemplate(
31688             {tag: "div", cls: "x-resizable-handle x-resizable-handle-{0}"}
31689         );
31690         tpl.compile();
31691         Roo.Resizable.Handle.prototype.tpl = tpl;
31692     }
31693     this.position = pos;
31694     this.rz = rz;
31695     // show north drag fro topdra
31696     var handlepos = pos == 'hdrag' ? 'north' : pos;
31697     
31698     this.el = this.tpl.append(rz.el.dom, [handlepos], true);
31699     if (pos == 'hdrag') {
31700         this.el.setStyle('cursor', 'pointer');
31701     }
31702     this.el.unselectable();
31703     if(transparent){
31704         this.el.setOpacity(0);
31705     }
31706     this.el.on("mousedown", this.onMouseDown, this);
31707     if(!disableTrackOver){
31708         this.el.on("mouseover", this.onMouseOver, this);
31709         this.el.on("mouseout", this.onMouseOut, this);
31710     }
31711 };
31712
31713 // private
31714 Roo.Resizable.Handle.prototype = {
31715     afterResize : function(rz){
31716         Roo.log('after?');
31717         // do nothing
31718     },
31719     // private
31720     onMouseDown : function(e){
31721         this.rz.onMouseDown(this, e);
31722     },
31723     // private
31724     onMouseOver : function(e){
31725         this.rz.handleOver(this, e);
31726     },
31727     // private
31728     onMouseOut : function(e){
31729         this.rz.handleOut(this, e);
31730     }
31731 };/*
31732  * Based on:
31733  * Ext JS Library 1.1.1
31734  * Copyright(c) 2006-2007, Ext JS, LLC.
31735  *
31736  * Originally Released Under LGPL - original licence link has changed is not relivant.
31737  *
31738  * Fork - LGPL
31739  * <script type="text/javascript">
31740  */
31741
31742 /**
31743  * @class Roo.Editor
31744  * @extends Roo.Component
31745  * A base editor field that handles displaying/hiding on demand and has some built-in sizing and event handling logic.
31746  * @constructor
31747  * Create a new Editor
31748  * @param {Roo.form.Field} field The Field object (or descendant)
31749  * @param {Object} config The config object
31750  */
31751 Roo.Editor = function(field, config){
31752     Roo.Editor.superclass.constructor.call(this, config);
31753     this.field = field;
31754     this.addEvents({
31755         /**
31756              * @event beforestartedit
31757              * Fires when editing is initiated, but before the value changes.  Editing can be canceled by returning
31758              * false from the handler of this event.
31759              * @param {Editor} this
31760              * @param {Roo.Element} boundEl The underlying element bound to this editor
31761              * @param {Mixed} value The field value being set
31762              */
31763         "beforestartedit" : true,
31764         /**
31765              * @event startedit
31766              * Fires when this editor is displayed
31767              * @param {Roo.Element} boundEl The underlying element bound to this editor
31768              * @param {Mixed} value The starting field value
31769              */
31770         "startedit" : true,
31771         /**
31772              * @event beforecomplete
31773              * Fires after a change has been made to the field, but before the change is reflected in the underlying
31774              * field.  Saving the change to the field can be canceled by returning false from the handler of this event.
31775              * Note that if the value has not changed and ignoreNoChange = true, the editing will still end but this
31776              * event will not fire since no edit actually occurred.
31777              * @param {Editor} this
31778              * @param {Mixed} value The current field value
31779              * @param {Mixed} startValue The original field value
31780              */
31781         "beforecomplete" : true,
31782         /**
31783              * @event complete
31784              * Fires after editing is complete and any changed value has been written to the underlying field.
31785              * @param {Editor} this
31786              * @param {Mixed} value The current field value
31787              * @param {Mixed} startValue The original field value
31788              */
31789         "complete" : true,
31790         /**
31791          * @event specialkey
31792          * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
31793          * {@link Roo.EventObject#getKey} to determine which key was pressed.
31794          * @param {Roo.form.Field} this
31795          * @param {Roo.EventObject} e The event object
31796          */
31797         "specialkey" : true
31798     });
31799 };
31800
31801 Roo.extend(Roo.Editor, Roo.Component, {
31802     /**
31803      * @cfg {Boolean/String} autosize
31804      * True for the editor to automatically adopt the size of the underlying field, "width" to adopt the width only,
31805      * or "height" to adopt the height only (defaults to false)
31806      */
31807     /**
31808      * @cfg {Boolean} revertInvalid
31809      * True to automatically revert the field value and cancel the edit when the user completes an edit and the field
31810      * validation fails (defaults to true)
31811      */
31812     /**
31813      * @cfg {Boolean} ignoreNoChange
31814      * True to skip the the edit completion process (no save, no events fired) if the user completes an edit and
31815      * the value has not changed (defaults to false).  Applies only to string values - edits for other data types
31816      * will never be ignored.
31817      */
31818     /**
31819      * @cfg {Boolean} hideEl
31820      * False to keep the bound element visible while the editor is displayed (defaults to true)
31821      */
31822     /**
31823      * @cfg {Mixed} value
31824      * The data value of the underlying field (defaults to "")
31825      */
31826     value : "",
31827     /**
31828      * @cfg {String} alignment
31829      * The position to align to (see {@link Roo.Element#alignTo} for more details, defaults to "c-c?").
31830      */
31831     alignment: "c-c?",
31832     /**
31833      * @cfg {Boolean/String} shadow "sides" for sides/bottom only, "frame" for 4-way shadow, and "drop"
31834      * for bottom-right shadow (defaults to "frame")
31835      */
31836     shadow : "frame",
31837     /**
31838      * @cfg {Boolean} constrain True to constrain the editor to the viewport
31839      */
31840     constrain : false,
31841     /**
31842      * @cfg {Boolean} completeOnEnter True to complete the edit when the enter key is pressed (defaults to false)
31843      */
31844     completeOnEnter : false,
31845     /**
31846      * @cfg {Boolean} cancelOnEsc True to cancel the edit when the escape key is pressed (defaults to false)
31847      */
31848     cancelOnEsc : false,
31849     /**
31850      * @cfg {Boolean} updateEl True to update the innerHTML of the bound element when the update completes (defaults to false)
31851      */
31852     updateEl : false,
31853
31854     // private
31855     onRender : function(ct, position){
31856         this.el = new Roo.Layer({
31857             shadow: this.shadow,
31858             cls: "x-editor",
31859             parentEl : ct,
31860             shim : this.shim,
31861             shadowOffset:4,
31862             id: this.id,
31863             constrain: this.constrain
31864         });
31865         this.el.setStyle("overflow", Roo.isGecko ? "auto" : "hidden");
31866         if(this.field.msgTarget != 'title'){
31867             this.field.msgTarget = 'qtip';
31868         }
31869         this.field.render(this.el);
31870         if(Roo.isGecko){
31871             this.field.el.dom.setAttribute('autocomplete', 'off');
31872         }
31873         this.field.on("specialkey", this.onSpecialKey, this);
31874         if(this.swallowKeys){
31875             this.field.el.swallowEvent(['keydown','keypress']);
31876         }
31877         this.field.show();
31878         this.field.on("blur", this.onBlur, this);
31879         if(this.field.grow){
31880             this.field.on("autosize", this.el.sync,  this.el, {delay:1});
31881         }
31882     },
31883
31884     onSpecialKey : function(field, e)
31885     {
31886         //Roo.log('editor onSpecialKey');
31887         if(this.completeOnEnter && e.getKey() == e.ENTER){
31888             e.stopEvent();
31889             this.completeEdit();
31890             return;
31891         }
31892         // do not fire special key otherwise it might hide close the editor...
31893         if(e.getKey() == e.ENTER){    
31894             return;
31895         }
31896         if(this.cancelOnEsc && e.getKey() == e.ESC){
31897             this.cancelEdit();
31898             return;
31899         } 
31900         this.fireEvent('specialkey', field, e);
31901     
31902     },
31903
31904     /**
31905      * Starts the editing process and shows the editor.
31906      * @param {String/HTMLElement/Element} el The element to edit
31907      * @param {String} value (optional) A value to initialize the editor with. If a value is not provided, it defaults
31908       * to the innerHTML of el.
31909      */
31910     startEdit : function(el, value){
31911         if(this.editing){
31912             this.completeEdit();
31913         }
31914         this.boundEl = Roo.get(el);
31915         var v = value !== undefined ? value : this.boundEl.dom.innerHTML;
31916         if(!this.rendered){
31917             this.render(this.parentEl || document.body);
31918         }
31919         if(this.fireEvent("beforestartedit", this, this.boundEl, v) === false){
31920             return;
31921         }
31922         this.startValue = v;
31923         this.field.setValue(v);
31924         if(this.autoSize){
31925             var sz = this.boundEl.getSize();
31926             switch(this.autoSize){
31927                 case "width":
31928                 this.setSize(sz.width,  "");
31929                 break;
31930                 case "height":
31931                 this.setSize("",  sz.height);
31932                 break;
31933                 default:
31934                 this.setSize(sz.width,  sz.height);
31935             }
31936         }
31937         this.el.alignTo(this.boundEl, this.alignment);
31938         this.editing = true;
31939         if(Roo.QuickTips){
31940             Roo.QuickTips.disable();
31941         }
31942         this.show();
31943     },
31944
31945     /**
31946      * Sets the height and width of this editor.
31947      * @param {Number} width The new width
31948      * @param {Number} height The new height
31949      */
31950     setSize : function(w, h){
31951         this.field.setSize(w, h);
31952         if(this.el){
31953             this.el.sync();
31954         }
31955     },
31956
31957     /**
31958      * Realigns the editor to the bound field based on the current alignment config value.
31959      */
31960     realign : function(){
31961         this.el.alignTo(this.boundEl, this.alignment);
31962     },
31963
31964     /**
31965      * Ends the editing process, persists the changed value to the underlying field, and hides the editor.
31966      * @param {Boolean} remainVisible Override the default behavior and keep the editor visible after edit (defaults to false)
31967      */
31968     completeEdit : function(remainVisible){
31969         if(!this.editing){
31970             return;
31971         }
31972         var v = this.getValue();
31973         if(this.revertInvalid !== false && !this.field.isValid()){
31974             v = this.startValue;
31975             this.cancelEdit(true);
31976         }
31977         if(String(v) === String(this.startValue) && this.ignoreNoChange){
31978             this.editing = false;
31979             this.hide();
31980             return;
31981         }
31982         if(this.fireEvent("beforecomplete", this, v, this.startValue) !== false){
31983             this.editing = false;
31984             if(this.updateEl && this.boundEl){
31985                 this.boundEl.update(v);
31986             }
31987             if(remainVisible !== true){
31988                 this.hide();
31989             }
31990             this.fireEvent("complete", this, v, this.startValue);
31991         }
31992     },
31993
31994     // private
31995     onShow : function(){
31996         this.el.show();
31997         if(this.hideEl !== false){
31998             this.boundEl.hide();
31999         }
32000         this.field.show();
32001         if(Roo.isIE && !this.fixIEFocus){ // IE has problems with focusing the first time
32002             this.fixIEFocus = true;
32003             this.deferredFocus.defer(50, this);
32004         }else{
32005             this.field.focus();
32006         }
32007         this.fireEvent("startedit", this.boundEl, this.startValue);
32008     },
32009
32010     deferredFocus : function(){
32011         if(this.editing){
32012             this.field.focus();
32013         }
32014     },
32015
32016     /**
32017      * Cancels the editing process and hides the editor without persisting any changes.  The field value will be
32018      * reverted to the original starting value.
32019      * @param {Boolean} remainVisible Override the default behavior and keep the editor visible after
32020      * cancel (defaults to false)
32021      */
32022     cancelEdit : function(remainVisible){
32023         if(this.editing){
32024             this.setValue(this.startValue);
32025             if(remainVisible !== true){
32026                 this.hide();
32027             }
32028         }
32029     },
32030
32031     // private
32032     onBlur : function(){
32033         if(this.allowBlur !== true && this.editing){
32034             this.completeEdit();
32035         }
32036     },
32037
32038     // private
32039     onHide : function(){
32040         if(this.editing){
32041             this.completeEdit();
32042             return;
32043         }
32044         this.field.blur();
32045         if(this.field.collapse){
32046             this.field.collapse();
32047         }
32048         this.el.hide();
32049         if(this.hideEl !== false){
32050             this.boundEl.show();
32051         }
32052         if(Roo.QuickTips){
32053             Roo.QuickTips.enable();
32054         }
32055     },
32056
32057     /**
32058      * Sets the data value of the editor
32059      * @param {Mixed} value Any valid value supported by the underlying field
32060      */
32061     setValue : function(v){
32062         this.field.setValue(v);
32063     },
32064
32065     /**
32066      * Gets the data value of the editor
32067      * @return {Mixed} The data value
32068      */
32069     getValue : function(){
32070         return this.field.getValue();
32071     }
32072 });/*
32073  * Based on:
32074  * Ext JS Library 1.1.1
32075  * Copyright(c) 2006-2007, Ext JS, LLC.
32076  *
32077  * Originally Released Under LGPL - original licence link has changed is not relivant.
32078  *
32079  * Fork - LGPL
32080  * <script type="text/javascript">
32081  */
32082  
32083 /**
32084  * @class Roo.BasicDialog
32085  * @extends Roo.util.Observable
32086  * Lightweight Dialog Class.  The code below shows the creation of a typical dialog using existing HTML markup:
32087  * <pre><code>
32088 var dlg = new Roo.BasicDialog("my-dlg", {
32089     height: 200,
32090     width: 300,
32091     minHeight: 100,
32092     minWidth: 150,
32093     modal: true,
32094     proxyDrag: true,
32095     shadow: true
32096 });
32097 dlg.addKeyListener(27, dlg.hide, dlg); // ESC can also close the dialog
32098 dlg.addButton('OK', dlg.hide, dlg);    // Could call a save function instead of hiding
32099 dlg.addButton('Cancel', dlg.hide, dlg);
32100 dlg.show();
32101 </code></pre>
32102   <b>A Dialog should always be a direct child of the body element.</b>
32103  * @cfg {Boolean/DomHelper} autoCreate True to auto create from scratch, or using a DomHelper Object (defaults to false)
32104  * @cfg {String} title Default text to display in the title bar (defaults to null)
32105  * @cfg {Number} width Width of the dialog in pixels (can also be set via CSS).  Determined by browser if unspecified.
32106  * @cfg {Number} height Height of the dialog in pixels (can also be set via CSS).  Determined by browser if unspecified.
32107  * @cfg {Number} x The default left page coordinate of the dialog (defaults to center screen)
32108  * @cfg {Number} y The default top page coordinate of the dialog (defaults to center screen)
32109  * @cfg {String/Element} animateTarget Id or element from which the dialog should animate while opening
32110  * (defaults to null with no animation)
32111  * @cfg {Boolean} resizable False to disable manual dialog resizing (defaults to true)
32112  * @cfg {String} resizeHandles Which resize handles to display - see the {@link Roo.Resizable} handles config
32113  * property for valid values (defaults to 'all')
32114  * @cfg {Number} minHeight The minimum allowable height for a resizable dialog (defaults to 80)
32115  * @cfg {Number} minWidth The minimum allowable width for a resizable dialog (defaults to 200)
32116  * @cfg {Boolean} modal True to show the dialog modally, preventing user interaction with the rest of the page (defaults to false)
32117  * @cfg {Boolean} autoScroll True to allow the dialog body contents to overflow and display scrollbars (defaults to false)
32118  * @cfg {Boolean} closable False to remove the built-in top-right corner close button (defaults to true)
32119  * @cfg {Boolean} collapsible False to remove the built-in top-right corner collapse button (defaults to true)
32120  * @cfg {Boolean} constraintoviewport True to keep the dialog constrained within the visible viewport boundaries (defaults to true)
32121  * @cfg {Boolean} syncHeightBeforeShow True to cause the dimensions to be recalculated before the dialog is shown (defaults to false)
32122  * @cfg {Boolean} draggable False to disable dragging of the dialog within the viewport (defaults to true)
32123  * @cfg {Boolean} autoTabs If true, all elements with class 'x-dlg-tab' will get automatically converted to tabs (defaults to false)
32124  * @cfg {String} tabTag The tag name of tab elements, used when autoTabs = true (defaults to 'div')
32125  * @cfg {Boolean} proxyDrag True to drag a lightweight proxy element rather than the dialog itself, used when
32126  * draggable = true (defaults to false)
32127  * @cfg {Boolean} fixedcenter True to ensure that anytime the dialog is shown or resized it gets centered (defaults to false)
32128  * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
32129  * shadow (defaults to false)
32130  * @cfg {Number} shadowOffset The number of pixels to offset the shadow if displayed (defaults to 5)
32131  * @cfg {String} buttonAlign Valid values are "left," "center" and "right" (defaults to "right")
32132  * @cfg {Number} minButtonWidth Minimum width of all dialog buttons (defaults to 75)
32133  * @cfg {Array} buttons Array of buttons
32134  * @cfg {Boolean} shim True to create an iframe shim that prevents selects from showing through (defaults to false)
32135  * @constructor
32136  * Create a new BasicDialog.
32137  * @param {String/HTMLElement/Roo.Element} el The container element or DOM node, or its id
32138  * @param {Object} config Configuration options
32139  */
32140 Roo.BasicDialog = function(el, config){
32141     this.el = Roo.get(el);
32142     var dh = Roo.DomHelper;
32143     if(!this.el && config && config.autoCreate){
32144         if(typeof config.autoCreate == "object"){
32145             if(!config.autoCreate.id){
32146                 config.autoCreate.id = el;
32147             }
32148             this.el = dh.append(document.body,
32149                         config.autoCreate, true);
32150         }else{
32151             this.el = dh.append(document.body,
32152                         {tag: "div", id: el, style:'visibility:hidden;'}, true);
32153         }
32154     }
32155     el = this.el;
32156     el.setDisplayed(true);
32157     el.hide = this.hideAction;
32158     this.id = el.id;
32159     el.addClass("x-dlg");
32160
32161     Roo.apply(this, config);
32162
32163     this.proxy = el.createProxy("x-dlg-proxy");
32164     this.proxy.hide = this.hideAction;
32165     this.proxy.setOpacity(.5);
32166     this.proxy.hide();
32167
32168     if(config.width){
32169         el.setWidth(config.width);
32170     }
32171     if(config.height){
32172         el.setHeight(config.height);
32173     }
32174     this.size = el.getSize();
32175     if(typeof config.x != "undefined" && typeof config.y != "undefined"){
32176         this.xy = [config.x,config.y];
32177     }else{
32178         this.xy = el.getCenterXY(true);
32179     }
32180     /** The header element @type Roo.Element */
32181     this.header = el.child("> .x-dlg-hd");
32182     /** The body element @type Roo.Element */
32183     this.body = el.child("> .x-dlg-bd");
32184     /** The footer element @type Roo.Element */
32185     this.footer = el.child("> .x-dlg-ft");
32186
32187     if(!this.header){
32188         this.header = el.createChild({tag: "div", cls:"x-dlg-hd", html: "&#160;"}, this.body ? this.body.dom : null);
32189     }
32190     if(!this.body){
32191         this.body = el.createChild({tag: "div", cls:"x-dlg-bd"});
32192     }
32193
32194     this.header.unselectable();
32195     if(this.title){
32196         this.header.update(this.title);
32197     }
32198     // this element allows the dialog to be focused for keyboard event
32199     this.focusEl = el.createChild({tag: "a", href:"#", cls:"x-dlg-focus", tabIndex:"-1"});
32200     this.focusEl.swallowEvent("click", true);
32201
32202     this.header.wrap({cls:"x-dlg-hd-right"}).wrap({cls:"x-dlg-hd-left"}, true);
32203
32204     // wrap the body and footer for special rendering
32205     this.bwrap = this.body.wrap({tag: "div", cls:"x-dlg-dlg-body"});
32206     if(this.footer){
32207         this.bwrap.dom.appendChild(this.footer.dom);
32208     }
32209
32210     this.bg = this.el.createChild({
32211         tag: "div", cls:"x-dlg-bg",
32212         html: '<div class="x-dlg-bg-left"><div class="x-dlg-bg-right"><div class="x-dlg-bg-center">&#160;</div></div></div>'
32213     });
32214     this.centerBg = this.bg.child("div.x-dlg-bg-center");
32215
32216
32217     if(this.autoScroll !== false && !this.autoTabs){
32218         this.body.setStyle("overflow", "auto");
32219     }
32220
32221     this.toolbox = this.el.createChild({cls: "x-dlg-toolbox"});
32222
32223     if(this.closable !== false){
32224         this.el.addClass("x-dlg-closable");
32225         this.close = this.toolbox.createChild({cls:"x-dlg-close"});
32226         this.close.on("click", this.closeClick, this);
32227         this.close.addClassOnOver("x-dlg-close-over");
32228     }
32229     if(this.collapsible !== false){
32230         this.collapseBtn = this.toolbox.createChild({cls:"x-dlg-collapse"});
32231         this.collapseBtn.on("click", this.collapseClick, this);
32232         this.collapseBtn.addClassOnOver("x-dlg-collapse-over");
32233         this.header.on("dblclick", this.collapseClick, this);
32234     }
32235     if(this.resizable !== false){
32236         this.el.addClass("x-dlg-resizable");
32237         this.resizer = new Roo.Resizable(el, {
32238             minWidth: this.minWidth || 80,
32239             minHeight:this.minHeight || 80,
32240             handles: this.resizeHandles || "all",
32241             pinned: true
32242         });
32243         this.resizer.on("beforeresize", this.beforeResize, this);
32244         this.resizer.on("resize", this.onResize, this);
32245     }
32246     if(this.draggable !== false){
32247         el.addClass("x-dlg-draggable");
32248         if (!this.proxyDrag) {
32249             var dd = new Roo.dd.DD(el.dom.id, "WindowDrag");
32250         }
32251         else {
32252             var dd = new Roo.dd.DDProxy(el.dom.id, "WindowDrag", {dragElId: this.proxy.id});
32253         }
32254         dd.setHandleElId(this.header.id);
32255         dd.endDrag = this.endMove.createDelegate(this);
32256         dd.startDrag = this.startMove.createDelegate(this);
32257         dd.onDrag = this.onDrag.createDelegate(this);
32258         dd.scroll = false;
32259         this.dd = dd;
32260     }
32261     if(this.modal){
32262         this.mask = dh.append(document.body, {tag: "div", cls:"x-dlg-mask"}, true);
32263         this.mask.enableDisplayMode("block");
32264         this.mask.hide();
32265         this.el.addClass("x-dlg-modal");
32266     }
32267     if(this.shadow){
32268         this.shadow = new Roo.Shadow({
32269             mode : typeof this.shadow == "string" ? this.shadow : "sides",
32270             offset : this.shadowOffset
32271         });
32272     }else{
32273         this.shadowOffset = 0;
32274     }
32275     if(Roo.useShims && this.shim !== false){
32276         this.shim = this.el.createShim();
32277         this.shim.hide = this.hideAction;
32278         this.shim.hide();
32279     }else{
32280         this.shim = false;
32281     }
32282     if(this.autoTabs){
32283         this.initTabs();
32284     }
32285     if (this.buttons) { 
32286         var bts= this.buttons;
32287         this.buttons = [];
32288         Roo.each(bts, function(b) {
32289             this.addButton(b);
32290         }, this);
32291     }
32292     
32293     
32294     this.addEvents({
32295         /**
32296          * @event keydown
32297          * Fires when a key is pressed
32298          * @param {Roo.BasicDialog} this
32299          * @param {Roo.EventObject} e
32300          */
32301         "keydown" : true,
32302         /**
32303          * @event move
32304          * Fires when this dialog is moved by the user.
32305          * @param {Roo.BasicDialog} this
32306          * @param {Number} x The new page X
32307          * @param {Number} y The new page Y
32308          */
32309         "move" : true,
32310         /**
32311          * @event resize
32312          * Fires when this dialog is resized by the user.
32313          * @param {Roo.BasicDialog} this
32314          * @param {Number} width The new width
32315          * @param {Number} height The new height
32316          */
32317         "resize" : true,
32318         /**
32319          * @event beforehide
32320          * Fires before this dialog is hidden.
32321          * @param {Roo.BasicDialog} this
32322          */
32323         "beforehide" : true,
32324         /**
32325          * @event hide
32326          * Fires when this dialog is hidden.
32327          * @param {Roo.BasicDialog} this
32328          */
32329         "hide" : true,
32330         /**
32331          * @event beforeshow
32332          * Fires before this dialog is shown.
32333          * @param {Roo.BasicDialog} this
32334          */
32335         "beforeshow" : true,
32336         /**
32337          * @event show
32338          * Fires when this dialog is shown.
32339          * @param {Roo.BasicDialog} this
32340          */
32341         "show" : true
32342     });
32343     el.on("keydown", this.onKeyDown, this);
32344     el.on("mousedown", this.toFront, this);
32345     Roo.EventManager.onWindowResize(this.adjustViewport, this, true);
32346     this.el.hide();
32347     Roo.DialogManager.register(this);
32348     Roo.BasicDialog.superclass.constructor.call(this);
32349 };
32350
32351 Roo.extend(Roo.BasicDialog, Roo.util.Observable, {
32352     shadowOffset: Roo.isIE ? 6 : 5,
32353     minHeight: 80,
32354     minWidth: 200,
32355     minButtonWidth: 75,
32356     defaultButton: null,
32357     buttonAlign: "right",
32358     tabTag: 'div',
32359     firstShow: true,
32360
32361     /**
32362      * Sets the dialog title text
32363      * @param {String} text The title text to display
32364      * @return {Roo.BasicDialog} this
32365      */
32366     setTitle : function(text){
32367         this.header.update(text);
32368         return this;
32369     },
32370
32371     // private
32372     closeClick : function(){
32373         this.hide();
32374     },
32375
32376     // private
32377     collapseClick : function(){
32378         this[this.collapsed ? "expand" : "collapse"]();
32379     },
32380
32381     /**
32382      * Collapses the dialog to its minimized state (only the title bar is visible).
32383      * Equivalent to the user clicking the collapse dialog button.
32384      */
32385     collapse : function(){
32386         if(!this.collapsed){
32387             this.collapsed = true;
32388             this.el.addClass("x-dlg-collapsed");
32389             this.restoreHeight = this.el.getHeight();
32390             this.resizeTo(this.el.getWidth(), this.header.getHeight());
32391         }
32392     },
32393
32394     /**
32395      * Expands a collapsed dialog back to its normal state.  Equivalent to the user
32396      * clicking the expand dialog button.
32397      */
32398     expand : function(){
32399         if(this.collapsed){
32400             this.collapsed = false;
32401             this.el.removeClass("x-dlg-collapsed");
32402             this.resizeTo(this.el.getWidth(), this.restoreHeight);
32403         }
32404     },
32405
32406     /**
32407      * Reinitializes the tabs component, clearing out old tabs and finding new ones.
32408      * @return {Roo.TabPanel} The tabs component
32409      */
32410     initTabs : function(){
32411         var tabs = this.getTabs();
32412         while(tabs.getTab(0)){
32413             tabs.removeTab(0);
32414         }
32415         this.el.select(this.tabTag+'.x-dlg-tab').each(function(el){
32416             var dom = el.dom;
32417             tabs.addTab(Roo.id(dom), dom.title);
32418             dom.title = "";
32419         });
32420         tabs.activate(0);
32421         return tabs;
32422     },
32423
32424     // private
32425     beforeResize : function(){
32426         this.resizer.minHeight = Math.max(this.minHeight, this.getHeaderFooterHeight(true)+40);
32427     },
32428
32429     // private
32430     onResize : function(){
32431         this.refreshSize();
32432         this.syncBodyHeight();
32433         this.adjustAssets();
32434         this.focus();
32435         this.fireEvent("resize", this, this.size.width, this.size.height);
32436     },
32437
32438     // private
32439     onKeyDown : function(e){
32440         if(this.isVisible()){
32441             this.fireEvent("keydown", this, e);
32442         }
32443     },
32444
32445     /**
32446      * Resizes the dialog.
32447      * @param {Number} width
32448      * @param {Number} height
32449      * @return {Roo.BasicDialog} this
32450      */
32451     resizeTo : function(width, height){
32452         this.el.setSize(width, height);
32453         this.size = {width: width, height: height};
32454         this.syncBodyHeight();
32455         if(this.fixedcenter){
32456             this.center();
32457         }
32458         if(this.isVisible()){
32459             this.constrainXY();
32460             this.adjustAssets();
32461         }
32462         this.fireEvent("resize", this, width, height);
32463         return this;
32464     },
32465
32466
32467     /**
32468      * Resizes the dialog to fit the specified content size.
32469      * @param {Number} width
32470      * @param {Number} height
32471      * @return {Roo.BasicDialog} this
32472      */
32473     setContentSize : function(w, h){
32474         h += this.getHeaderFooterHeight() + this.body.getMargins("tb");
32475         w += this.body.getMargins("lr") + this.bwrap.getMargins("lr") + this.centerBg.getPadding("lr");
32476         //if(!this.el.isBorderBox()){
32477             h +=  this.body.getPadding("tb") + this.bwrap.getBorderWidth("tb") + this.body.getBorderWidth("tb") + this.el.getBorderWidth("tb");
32478             w += this.body.getPadding("lr") + this.bwrap.getBorderWidth("lr") + this.body.getBorderWidth("lr") + this.bwrap.getPadding("lr") + this.el.getBorderWidth("lr");
32479         //}
32480         if(this.tabs){
32481             h += this.tabs.stripWrap.getHeight() + this.tabs.bodyEl.getMargins("tb") + this.tabs.bodyEl.getPadding("tb");
32482             w += this.tabs.bodyEl.getMargins("lr") + this.tabs.bodyEl.getPadding("lr");
32483         }
32484         this.resizeTo(w, h);
32485         return this;
32486     },
32487
32488     /**
32489      * Adds a key listener for when this dialog is displayed.  This allows you to hook in a function that will be
32490      * executed in response to a particular key being pressed while the dialog is active.
32491      * @param {Number/Array/Object} key Either the numeric key code, array of key codes or an object with the following options:
32492      *                                  {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
32493      * @param {Function} fn The function to call
32494      * @param {Object} scope (optional) The scope of the function
32495      * @return {Roo.BasicDialog} this
32496      */
32497     addKeyListener : function(key, fn, scope){
32498         var keyCode, shift, ctrl, alt;
32499         if(typeof key == "object" && !(key instanceof Array)){
32500             keyCode = key["key"];
32501             shift = key["shift"];
32502             ctrl = key["ctrl"];
32503             alt = key["alt"];
32504         }else{
32505             keyCode = key;
32506         }
32507         var handler = function(dlg, e){
32508             if((!shift || e.shiftKey) && (!ctrl || e.ctrlKey) &&  (!alt || e.altKey)){
32509                 var k = e.getKey();
32510                 if(keyCode instanceof Array){
32511                     for(var i = 0, len = keyCode.length; i < len; i++){
32512                         if(keyCode[i] == k){
32513                           fn.call(scope || window, dlg, k, e);
32514                           return;
32515                         }
32516                     }
32517                 }else{
32518                     if(k == keyCode){
32519                         fn.call(scope || window, dlg, k, e);
32520                     }
32521                 }
32522             }
32523         };
32524         this.on("keydown", handler);
32525         return this;
32526     },
32527
32528     /**
32529      * Returns the TabPanel component (creates it if it doesn't exist).
32530      * Note: If you wish to simply check for the existence of tabs without creating them,
32531      * check for a null 'tabs' property.
32532      * @return {Roo.TabPanel} The tabs component
32533      */
32534     getTabs : function(){
32535         if(!this.tabs){
32536             this.el.addClass("x-dlg-auto-tabs");
32537             this.body.addClass(this.tabPosition == "bottom" ? "x-tabs-bottom" : "x-tabs-top");
32538             this.tabs = new Roo.TabPanel(this.body.dom, this.tabPosition == "bottom");
32539         }
32540         return this.tabs;
32541     },
32542
32543     /**
32544      * Adds a button to the footer section of the dialog.
32545      * @param {String/Object} config A string becomes the button text, an object can either be a Button config
32546      * object or a valid Roo.DomHelper element config
32547      * @param {Function} handler The function called when the button is clicked
32548      * @param {Object} scope (optional) The scope of the handler function (accepts position as a property)
32549      * @return {Roo.Button} The new button
32550      */
32551     addButton : function(config, handler, scope){
32552         var dh = Roo.DomHelper;
32553         if(!this.footer){
32554             this.footer = dh.append(this.bwrap, {tag: "div", cls:"x-dlg-ft"}, true);
32555         }
32556         if(!this.btnContainer){
32557             var tb = this.footer.createChild({
32558
32559                 cls:"x-dlg-btns x-dlg-btns-"+this.buttonAlign,
32560                 html:'<table cellspacing="0"><tbody><tr></tr></tbody></table><div class="x-clear"></div>'
32561             }, null, true);
32562             this.btnContainer = tb.firstChild.firstChild.firstChild;
32563         }
32564         var bconfig = {
32565             handler: handler,
32566             scope: scope,
32567             minWidth: this.minButtonWidth,
32568             hideParent:true
32569         };
32570         if(typeof config == "string"){
32571             bconfig.text = config;
32572         }else{
32573             if(config.tag){
32574                 bconfig.dhconfig = config;
32575             }else{
32576                 Roo.apply(bconfig, config);
32577             }
32578         }
32579         var fc = false;
32580         if ((typeof(bconfig.position) != 'undefined') && bconfig.position < this.btnContainer.childNodes.length-1) {
32581             bconfig.position = Math.max(0, bconfig.position);
32582             fc = this.btnContainer.childNodes[bconfig.position];
32583         }
32584          
32585         var btn = new Roo.Button(
32586             fc ? 
32587                 this.btnContainer.insertBefore(document.createElement("td"),fc)
32588                 : this.btnContainer.appendChild(document.createElement("td")),
32589             //Roo.get(this.btnContainer).createChild( { tag: 'td'},  fc ),
32590             bconfig
32591         );
32592         this.syncBodyHeight();
32593         if(!this.buttons){
32594             /**
32595              * Array of all the buttons that have been added to this dialog via addButton
32596              * @type Array
32597              */
32598             this.buttons = [];
32599         }
32600         this.buttons.push(btn);
32601         return btn;
32602     },
32603
32604     /**
32605      * Sets the default button to be focused when the dialog is displayed.
32606      * @param {Roo.BasicDialog.Button} btn The button object returned by {@link #addButton}
32607      * @return {Roo.BasicDialog} this
32608      */
32609     setDefaultButton : function(btn){
32610         this.defaultButton = btn;
32611         return this;
32612     },
32613
32614     // private
32615     getHeaderFooterHeight : function(safe){
32616         var height = 0;
32617         if(this.header){
32618            height += this.header.getHeight();
32619         }
32620         if(this.footer){
32621            var fm = this.footer.getMargins();
32622             height += (this.footer.getHeight()+fm.top+fm.bottom);
32623         }
32624         height += this.bwrap.getPadding("tb")+this.bwrap.getBorderWidth("tb");
32625         height += this.centerBg.getPadding("tb");
32626         return height;
32627     },
32628
32629     // private
32630     syncBodyHeight : function()
32631     {
32632         var bd = this.body, // the text
32633             cb = this.centerBg, // wrapper around bottom.. but does not seem to be used..
32634             bw = this.bwrap;
32635         var height = this.size.height - this.getHeaderFooterHeight(false);
32636         bd.setHeight(height-bd.getMargins("tb"));
32637         var hh = this.header.getHeight();
32638         var h = this.size.height-hh;
32639         cb.setHeight(h);
32640         
32641         bw.setLeftTop(cb.getPadding("l"), hh+cb.getPadding("t"));
32642         bw.setHeight(h-cb.getPadding("tb"));
32643         
32644         bw.setWidth(this.el.getWidth(true)-cb.getPadding("lr"));
32645         bd.setWidth(bw.getWidth(true));
32646         if(this.tabs){
32647             this.tabs.syncHeight();
32648             if(Roo.isIE){
32649                 this.tabs.el.repaint();
32650             }
32651         }
32652     },
32653
32654     /**
32655      * Restores the previous state of the dialog if Roo.state is configured.
32656      * @return {Roo.BasicDialog} this
32657      */
32658     restoreState : function(){
32659         var box = Roo.state.Manager.get(this.stateId || (this.el.id + "-state"));
32660         if(box && box.width){
32661             this.xy = [box.x, box.y];
32662             this.resizeTo(box.width, box.height);
32663         }
32664         return this;
32665     },
32666
32667     // private
32668     beforeShow : function(){
32669         this.expand();
32670         if(this.fixedcenter){
32671             this.xy = this.el.getCenterXY(true);
32672         }
32673         if(this.modal){
32674             Roo.get(document.body).addClass("x-body-masked");
32675             this.mask.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
32676             this.mask.show();
32677         }
32678         this.constrainXY();
32679     },
32680
32681     // private
32682     animShow : function(){
32683         var b = Roo.get(this.animateTarget).getBox();
32684         this.proxy.setSize(b.width, b.height);
32685         this.proxy.setLocation(b.x, b.y);
32686         this.proxy.show();
32687         this.proxy.setBounds(this.xy[0], this.xy[1], this.size.width, this.size.height,
32688                     true, .35, this.showEl.createDelegate(this));
32689     },
32690
32691     /**
32692      * Shows the dialog.
32693      * @param {String/HTMLElement/Roo.Element} animateTarget (optional) Reset the animation target
32694      * @return {Roo.BasicDialog} this
32695      */
32696     show : function(animateTarget){
32697         if (this.fireEvent("beforeshow", this) === false){
32698             return;
32699         }
32700         if(this.syncHeightBeforeShow){
32701             this.syncBodyHeight();
32702         }else if(this.firstShow){
32703             this.firstShow = false;
32704             this.syncBodyHeight(); // sync the height on the first show instead of in the constructor
32705         }
32706         this.animateTarget = animateTarget || this.animateTarget;
32707         if(!this.el.isVisible()){
32708             this.beforeShow();
32709             if(this.animateTarget && Roo.get(this.animateTarget)){
32710                 this.animShow();
32711             }else{
32712                 this.showEl();
32713             }
32714         }
32715         return this;
32716     },
32717
32718     // private
32719     showEl : function(){
32720         this.proxy.hide();
32721         this.el.setXY(this.xy);
32722         this.el.show();
32723         this.adjustAssets(true);
32724         this.toFront();
32725         this.focus();
32726         // IE peekaboo bug - fix found by Dave Fenwick
32727         if(Roo.isIE){
32728             this.el.repaint();
32729         }
32730         this.fireEvent("show", this);
32731     },
32732
32733     /**
32734      * Focuses the dialog.  If a defaultButton is set, it will receive focus, otherwise the
32735      * dialog itself will receive focus.
32736      */
32737     focus : function(){
32738         if(this.defaultButton){
32739             this.defaultButton.focus();
32740         }else{
32741             this.focusEl.focus();
32742         }
32743     },
32744
32745     // private
32746     constrainXY : function(){
32747         if(this.constraintoviewport !== false){
32748             if(!this.viewSize){
32749                 if(this.container){
32750                     var s = this.container.getSize();
32751                     this.viewSize = [s.width, s.height];
32752                 }else{
32753                     this.viewSize = [Roo.lib.Dom.getViewWidth(),Roo.lib.Dom.getViewHeight()];
32754                 }
32755             }
32756             var s = Roo.get(this.container||document).getScroll();
32757
32758             var x = this.xy[0], y = this.xy[1];
32759             var w = this.size.width, h = this.size.height;
32760             var vw = this.viewSize[0], vh = this.viewSize[1];
32761             // only move it if it needs it
32762             var moved = false;
32763             // first validate right/bottom
32764             if(x + w > vw+s.left){
32765                 x = vw - w;
32766                 moved = true;
32767             }
32768             if(y + h > vh+s.top){
32769                 y = vh - h;
32770                 moved = true;
32771             }
32772             // then make sure top/left isn't negative
32773             if(x < s.left){
32774                 x = s.left;
32775                 moved = true;
32776             }
32777             if(y < s.top){
32778                 y = s.top;
32779                 moved = true;
32780             }
32781             if(moved){
32782                 // cache xy
32783                 this.xy = [x, y];
32784                 if(this.isVisible()){
32785                     this.el.setLocation(x, y);
32786                     this.adjustAssets();
32787                 }
32788             }
32789         }
32790     },
32791
32792     // private
32793     onDrag : function(){
32794         if(!this.proxyDrag){
32795             this.xy = this.el.getXY();
32796             this.adjustAssets();
32797         }
32798     },
32799
32800     // private
32801     adjustAssets : function(doShow){
32802         var x = this.xy[0], y = this.xy[1];
32803         var w = this.size.width, h = this.size.height;
32804         if(doShow === true){
32805             if(this.shadow){
32806                 this.shadow.show(this.el);
32807             }
32808             if(this.shim){
32809                 this.shim.show();
32810             }
32811         }
32812         if(this.shadow && this.shadow.isVisible()){
32813             this.shadow.show(this.el);
32814         }
32815         if(this.shim && this.shim.isVisible()){
32816             this.shim.setBounds(x, y, w, h);
32817         }
32818     },
32819
32820     // private
32821     adjustViewport : function(w, h){
32822         if(!w || !h){
32823             w = Roo.lib.Dom.getViewWidth();
32824             h = Roo.lib.Dom.getViewHeight();
32825         }
32826         // cache the size
32827         this.viewSize = [w, h];
32828         if(this.modal && this.mask.isVisible()){
32829             this.mask.setSize(w, h); // first make sure the mask isn't causing overflow
32830             this.mask.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
32831         }
32832         if(this.isVisible()){
32833             this.constrainXY();
32834         }
32835     },
32836
32837     /**
32838      * Destroys this dialog and all its supporting elements (including any tabs, shim,
32839      * shadow, proxy, mask, etc.)  Also removes all event listeners.
32840      * @param {Boolean} removeEl (optional) true to remove the element from the DOM
32841      */
32842     destroy : function(removeEl){
32843         if(this.isVisible()){
32844             this.animateTarget = null;
32845             this.hide();
32846         }
32847         Roo.EventManager.removeResizeListener(this.adjustViewport, this);
32848         if(this.tabs){
32849             this.tabs.destroy(removeEl);
32850         }
32851         Roo.destroy(
32852              this.shim,
32853              this.proxy,
32854              this.resizer,
32855              this.close,
32856              this.mask
32857         );
32858         if(this.dd){
32859             this.dd.unreg();
32860         }
32861         if(this.buttons){
32862            for(var i = 0, len = this.buttons.length; i < len; i++){
32863                this.buttons[i].destroy();
32864            }
32865         }
32866         this.el.removeAllListeners();
32867         if(removeEl === true){
32868             this.el.update("");
32869             this.el.remove();
32870         }
32871         Roo.DialogManager.unregister(this);
32872     },
32873
32874     // private
32875     startMove : function(){
32876         if(this.proxyDrag){
32877             this.proxy.show();
32878         }
32879         if(this.constraintoviewport !== false){
32880             this.dd.constrainTo(document.body, {right: this.shadowOffset, bottom: this.shadowOffset});
32881         }
32882     },
32883
32884     // private
32885     endMove : function(){
32886         if(!this.proxyDrag){
32887             Roo.dd.DD.prototype.endDrag.apply(this.dd, arguments);
32888         }else{
32889             Roo.dd.DDProxy.prototype.endDrag.apply(this.dd, arguments);
32890             this.proxy.hide();
32891         }
32892         this.refreshSize();
32893         this.adjustAssets();
32894         this.focus();
32895         this.fireEvent("move", this, this.xy[0], this.xy[1]);
32896     },
32897
32898     /**
32899      * Brings this dialog to the front of any other visible dialogs
32900      * @return {Roo.BasicDialog} this
32901      */
32902     toFront : function(){
32903         Roo.DialogManager.bringToFront(this);
32904         return this;
32905     },
32906
32907     /**
32908      * Sends this dialog to the back (under) of any other visible dialogs
32909      * @return {Roo.BasicDialog} this
32910      */
32911     toBack : function(){
32912         Roo.DialogManager.sendToBack(this);
32913         return this;
32914     },
32915
32916     /**
32917      * Centers this dialog in the viewport
32918      * @return {Roo.BasicDialog} this
32919      */
32920     center : function(){
32921         var xy = this.el.getCenterXY(true);
32922         this.moveTo(xy[0], xy[1]);
32923         return this;
32924     },
32925
32926     /**
32927      * Moves the dialog's top-left corner to the specified point
32928      * @param {Number} x
32929      * @param {Number} y
32930      * @return {Roo.BasicDialog} this
32931      */
32932     moveTo : function(x, y){
32933         this.xy = [x,y];
32934         if(this.isVisible()){
32935             this.el.setXY(this.xy);
32936             this.adjustAssets();
32937         }
32938         return this;
32939     },
32940
32941     /**
32942      * Aligns the dialog to the specified element
32943      * @param {String/HTMLElement/Roo.Element} element The element to align to.
32944      * @param {String} position The position to align to (see {@link Roo.Element#alignTo} for more details).
32945      * @param {Array} offsets (optional) Offset the positioning by [x, y]
32946      * @return {Roo.BasicDialog} this
32947      */
32948     alignTo : function(element, position, offsets){
32949         this.xy = this.el.getAlignToXY(element, position, offsets);
32950         if(this.isVisible()){
32951             this.el.setXY(this.xy);
32952             this.adjustAssets();
32953         }
32954         return this;
32955     },
32956
32957     /**
32958      * Anchors an element to another element and realigns it when the window is resized.
32959      * @param {String/HTMLElement/Roo.Element} element The element to align to.
32960      * @param {String} position The position to align to (see {@link Roo.Element#alignTo} for more details)
32961      * @param {Array} offsets (optional) Offset the positioning by [x, y]
32962      * @param {Boolean/Number} monitorScroll (optional) true to monitor body scroll and reposition. If this parameter
32963      * is a number, it is used as the buffer delay (defaults to 50ms).
32964      * @return {Roo.BasicDialog} this
32965      */
32966     anchorTo : function(el, alignment, offsets, monitorScroll){
32967         var action = function(){
32968             this.alignTo(el, alignment, offsets);
32969         };
32970         Roo.EventManager.onWindowResize(action, this);
32971         var tm = typeof monitorScroll;
32972         if(tm != 'undefined'){
32973             Roo.EventManager.on(window, 'scroll', action, this,
32974                 {buffer: tm == 'number' ? monitorScroll : 50});
32975         }
32976         action.call(this);
32977         return this;
32978     },
32979
32980     /**
32981      * Returns true if the dialog is visible
32982      * @return {Boolean}
32983      */
32984     isVisible : function(){
32985         return this.el.isVisible();
32986     },
32987
32988     // private
32989     animHide : function(callback){
32990         var b = Roo.get(this.animateTarget).getBox();
32991         this.proxy.show();
32992         this.proxy.setBounds(this.xy[0], this.xy[1], this.size.width, this.size.height);
32993         this.el.hide();
32994         this.proxy.setBounds(b.x, b.y, b.width, b.height, true, .35,
32995                     this.hideEl.createDelegate(this, [callback]));
32996     },
32997
32998     /**
32999      * Hides the dialog.
33000      * @param {Function} callback (optional) Function to call when the dialog is hidden
33001      * @return {Roo.BasicDialog} this
33002      */
33003     hide : function(callback){
33004         if (this.fireEvent("beforehide", this) === false){
33005             return;
33006         }
33007         if(this.shadow){
33008             this.shadow.hide();
33009         }
33010         if(this.shim) {
33011           this.shim.hide();
33012         }
33013         // sometimes animateTarget seems to get set.. causing problems...
33014         // this just double checks..
33015         if(this.animateTarget && Roo.get(this.animateTarget)) {
33016            this.animHide(callback);
33017         }else{
33018             this.el.hide();
33019             this.hideEl(callback);
33020         }
33021         return this;
33022     },
33023
33024     // private
33025     hideEl : function(callback){
33026         this.proxy.hide();
33027         if(this.modal){
33028             this.mask.hide();
33029             Roo.get(document.body).removeClass("x-body-masked");
33030         }
33031         this.fireEvent("hide", this);
33032         if(typeof callback == "function"){
33033             callback();
33034         }
33035     },
33036
33037     // private
33038     hideAction : function(){
33039         this.setLeft("-10000px");
33040         this.setTop("-10000px");
33041         this.setStyle("visibility", "hidden");
33042     },
33043
33044     // private
33045     refreshSize : function(){
33046         this.size = this.el.getSize();
33047         this.xy = this.el.getXY();
33048         Roo.state.Manager.set(this.stateId || this.el.id + "-state", this.el.getBox());
33049     },
33050
33051     // private
33052     // z-index is managed by the DialogManager and may be overwritten at any time
33053     setZIndex : function(index){
33054         if(this.modal){
33055             this.mask.setStyle("z-index", index);
33056         }
33057         if(this.shim){
33058             this.shim.setStyle("z-index", ++index);
33059         }
33060         if(this.shadow){
33061             this.shadow.setZIndex(++index);
33062         }
33063         this.el.setStyle("z-index", ++index);
33064         if(this.proxy){
33065             this.proxy.setStyle("z-index", ++index);
33066         }
33067         if(this.resizer){
33068             this.resizer.proxy.setStyle("z-index", ++index);
33069         }
33070
33071         this.lastZIndex = index;
33072     },
33073
33074     /**
33075      * Returns the element for this dialog
33076      * @return {Roo.Element} The underlying dialog Element
33077      */
33078     getEl : function(){
33079         return this.el;
33080     }
33081 });
33082
33083 /**
33084  * @class Roo.DialogManager
33085  * Provides global access to BasicDialogs that have been created and
33086  * support for z-indexing (layering) multiple open dialogs.
33087  */
33088 Roo.DialogManager = function(){
33089     var list = {};
33090     var accessList = [];
33091     var front = null;
33092
33093     // private
33094     var sortDialogs = function(d1, d2){
33095         return (!d1._lastAccess || d1._lastAccess < d2._lastAccess) ? -1 : 1;
33096     };
33097
33098     // private
33099     var orderDialogs = function(){
33100         accessList.sort(sortDialogs);
33101         var seed = Roo.DialogManager.zseed;
33102         for(var i = 0, len = accessList.length; i < len; i++){
33103             var dlg = accessList[i];
33104             if(dlg){
33105                 dlg.setZIndex(seed + (i*10));
33106             }
33107         }
33108     };
33109
33110     return {
33111         /**
33112          * The starting z-index for BasicDialogs (defaults to 9000)
33113          * @type Number The z-index value
33114          */
33115         zseed : 9000,
33116
33117         // private
33118         register : function(dlg){
33119             list[dlg.id] = dlg;
33120             accessList.push(dlg);
33121         },
33122
33123         // private
33124         unregister : function(dlg){
33125             delete list[dlg.id];
33126             var i=0;
33127             var len=0;
33128             if(!accessList.indexOf){
33129                 for(  i = 0, len = accessList.length; i < len; i++){
33130                     if(accessList[i] == dlg){
33131                         accessList.splice(i, 1);
33132                         return;
33133                     }
33134                 }
33135             }else{
33136                  i = accessList.indexOf(dlg);
33137                 if(i != -1){
33138                     accessList.splice(i, 1);
33139                 }
33140             }
33141         },
33142
33143         /**
33144          * Gets a registered dialog by id
33145          * @param {String/Object} id The id of the dialog or a dialog
33146          * @return {Roo.BasicDialog} this
33147          */
33148         get : function(id){
33149             return typeof id == "object" ? id : list[id];
33150         },
33151
33152         /**
33153          * Brings the specified dialog to the front
33154          * @param {String/Object} dlg The id of the dialog or a dialog
33155          * @return {Roo.BasicDialog} this
33156          */
33157         bringToFront : function(dlg){
33158             dlg = this.get(dlg);
33159             if(dlg != front){
33160                 front = dlg;
33161                 dlg._lastAccess = new Date().getTime();
33162                 orderDialogs();
33163             }
33164             return dlg;
33165         },
33166
33167         /**
33168          * Sends the specified dialog to the back
33169          * @param {String/Object} dlg The id of the dialog or a dialog
33170          * @return {Roo.BasicDialog} this
33171          */
33172         sendToBack : function(dlg){
33173             dlg = this.get(dlg);
33174             dlg._lastAccess = -(new Date().getTime());
33175             orderDialogs();
33176             return dlg;
33177         },
33178
33179         /**
33180          * Hides all dialogs
33181          */
33182         hideAll : function(){
33183             for(var id in list){
33184                 if(list[id] && typeof list[id] != "function" && list[id].isVisible()){
33185                     list[id].hide();
33186                 }
33187             }
33188         }
33189     };
33190 }();
33191
33192 /**
33193  * @class Roo.LayoutDialog
33194  * @extends Roo.BasicDialog
33195  * Dialog which provides adjustments for working with a layout in a Dialog.
33196  * Add your necessary layout config options to the dialog's config.<br>
33197  * Example usage (including a nested layout):
33198  * <pre><code>
33199 if(!dialog){
33200     dialog = new Roo.LayoutDialog("download-dlg", {
33201         modal: true,
33202         width:600,
33203         height:450,
33204         shadow:true,
33205         minWidth:500,
33206         minHeight:350,
33207         autoTabs:true,
33208         proxyDrag:true,
33209         // layout config merges with the dialog config
33210         center:{
33211             tabPosition: "top",
33212             alwaysShowTabs: true
33213         }
33214     });
33215     dialog.addKeyListener(27, dialog.hide, dialog);
33216     dialog.setDefaultButton(dialog.addButton("Close", dialog.hide, dialog));
33217     dialog.addButton("Build It!", this.getDownload, this);
33218
33219     // we can even add nested layouts
33220     var innerLayout = new Roo.BorderLayout("dl-inner", {
33221         east: {
33222             initialSize: 200,
33223             autoScroll:true,
33224             split:true
33225         },
33226         center: {
33227             autoScroll:true
33228         }
33229     });
33230     innerLayout.beginUpdate();
33231     innerLayout.add("east", new Roo.ContentPanel("dl-details"));
33232     innerLayout.add("center", new Roo.ContentPanel("selection-panel"));
33233     innerLayout.endUpdate(true);
33234
33235     var layout = dialog.getLayout();
33236     layout.beginUpdate();
33237     layout.add("center", new Roo.ContentPanel("standard-panel",
33238                         {title: "Download the Source", fitToFrame:true}));
33239     layout.add("center", new Roo.NestedLayoutPanel(innerLayout,
33240                {title: "Build your own roo.js"}));
33241     layout.getRegion("center").showPanel(sp);
33242     layout.endUpdate();
33243 }
33244 </code></pre>
33245     * @constructor
33246     * @param {String/HTMLElement/Roo.Element} el The id of or container element, or config
33247     * @param {Object} config configuration options
33248   */
33249 Roo.LayoutDialog = function(el, cfg){
33250     
33251     var config=  cfg;
33252     if (typeof(cfg) == 'undefined') {
33253         config = Roo.apply({}, el);
33254         // not sure why we use documentElement here.. - it should always be body.
33255         // IE7 borks horribly if we use documentElement.
33256         // webkit also does not like documentElement - it creates a body element...
33257         el = Roo.get( document.body || document.documentElement ).createChild();
33258         //config.autoCreate = true;
33259     }
33260     
33261     
33262     config.autoTabs = false;
33263     Roo.LayoutDialog.superclass.constructor.call(this, el, config);
33264     this.body.setStyle({overflow:"hidden", position:"relative"});
33265     this.layout = new Roo.BorderLayout(this.body.dom, config);
33266     this.layout.monitorWindowResize = false;
33267     this.el.addClass("x-dlg-auto-layout");
33268     // fix case when center region overwrites center function
33269     this.center = Roo.BasicDialog.prototype.center;
33270     this.on("show", this.layout.layout, this.layout, true);
33271     if (config.items) {
33272         var xitems = config.items;
33273         delete config.items;
33274         Roo.each(xitems, this.addxtype, this);
33275     }
33276     
33277     
33278 };
33279 Roo.extend(Roo.LayoutDialog, Roo.BasicDialog, {
33280     /**
33281      * Ends update of the layout <strike>and resets display to none</strike>. Use standard beginUpdate/endUpdate on the layout.
33282      * @deprecated
33283      */
33284     endUpdate : function(){
33285         this.layout.endUpdate();
33286     },
33287
33288     /**
33289      * Begins an update of the layout <strike>and sets display to block and visibility to hidden</strike>. Use standard beginUpdate/endUpdate on the layout.
33290      *  @deprecated
33291      */
33292     beginUpdate : function(){
33293         this.layout.beginUpdate();
33294     },
33295
33296     /**
33297      * Get the BorderLayout for this dialog
33298      * @return {Roo.BorderLayout}
33299      */
33300     getLayout : function(){
33301         return this.layout;
33302     },
33303
33304     showEl : function(){
33305         Roo.LayoutDialog.superclass.showEl.apply(this, arguments);
33306         if(Roo.isIE7){
33307             this.layout.layout();
33308         }
33309     },
33310
33311     // private
33312     // Use the syncHeightBeforeShow config option to control this automatically
33313     syncBodyHeight : function(){
33314         Roo.LayoutDialog.superclass.syncBodyHeight.call(this);
33315         if(this.layout){this.layout.layout();}
33316     },
33317     
33318       /**
33319      * Add an xtype element (actually adds to the layout.)
33320      * @return {Object} xdata xtype object data.
33321      */
33322     
33323     addxtype : function(c) {
33324         return this.layout.addxtype(c);
33325     }
33326 });/*
33327  * Based on:
33328  * Ext JS Library 1.1.1
33329  * Copyright(c) 2006-2007, Ext JS, LLC.
33330  *
33331  * Originally Released Under LGPL - original licence link has changed is not relivant.
33332  *
33333  * Fork - LGPL
33334  * <script type="text/javascript">
33335  */
33336  
33337 /**
33338  * @class Roo.MessageBox
33339  * Utility class for generating different styles of message boxes.  The alias Roo.Msg can also be used.
33340  * Example usage:
33341  *<pre><code>
33342 // Basic alert:
33343 Roo.Msg.alert('Status', 'Changes saved successfully.');
33344
33345 // Prompt for user data:
33346 Roo.Msg.prompt('Name', 'Please enter your name:', function(btn, text){
33347     if (btn == 'ok'){
33348         // process text value...
33349     }
33350 });
33351
33352 // Show a dialog using config options:
33353 Roo.Msg.show({
33354    title:'Save Changes?',
33355    msg: 'Your are closing a tab that has unsaved changes. Would you like to save your changes?',
33356    buttons: Roo.Msg.YESNOCANCEL,
33357    fn: processResult,
33358    animEl: 'elId'
33359 });
33360 </code></pre>
33361  * @singleton
33362  */
33363 Roo.MessageBox = function(){
33364     var dlg, opt, mask, waitTimer;
33365     var bodyEl, msgEl, textboxEl, textareaEl, progressEl, pp;
33366     var buttons, activeTextEl, bwidth;
33367
33368     // private
33369     var handleButton = function(button){
33370         dlg.hide();
33371         Roo.callback(opt.fn, opt.scope||window, [button, activeTextEl.dom.value], 1);
33372     };
33373
33374     // private
33375     var handleHide = function(){
33376         if(opt && opt.cls){
33377             dlg.el.removeClass(opt.cls);
33378         }
33379         if(waitTimer){
33380             Roo.TaskMgr.stop(waitTimer);
33381             waitTimer = null;
33382         }
33383     };
33384
33385     // private
33386     var updateButtons = function(b){
33387         var width = 0;
33388         if(!b){
33389             buttons["ok"].hide();
33390             buttons["cancel"].hide();
33391             buttons["yes"].hide();
33392             buttons["no"].hide();
33393             dlg.footer.dom.style.display = 'none';
33394             return width;
33395         }
33396         dlg.footer.dom.style.display = '';
33397         for(var k in buttons){
33398             if(typeof buttons[k] != "function"){
33399                 if(b[k]){
33400                     buttons[k].show();
33401                     buttons[k].setText(typeof b[k] == "string" ? b[k] : Roo.MessageBox.buttonText[k]);
33402                     width += buttons[k].el.getWidth()+15;
33403                 }else{
33404                     buttons[k].hide();
33405                 }
33406             }
33407         }
33408         return width;
33409     };
33410
33411     // private
33412     var handleEsc = function(d, k, e){
33413         if(opt && opt.closable !== false){
33414             dlg.hide();
33415         }
33416         if(e){
33417             e.stopEvent();
33418         }
33419     };
33420
33421     return {
33422         /**
33423          * Returns a reference to the underlying {@link Roo.BasicDialog} element
33424          * @return {Roo.BasicDialog} The BasicDialog element
33425          */
33426         getDialog : function(){
33427            if(!dlg){
33428                 dlg = new Roo.BasicDialog("x-msg-box", {
33429                     autoCreate : true,
33430                     shadow: true,
33431                     draggable: true,
33432                     resizable:false,
33433                     constraintoviewport:false,
33434                     fixedcenter:true,
33435                     collapsible : false,
33436                     shim:true,
33437                     modal: true,
33438                     width:400, height:100,
33439                     buttonAlign:"center",
33440                     closeClick : function(){
33441                         if(opt && opt.buttons && opt.buttons.no && !opt.buttons.cancel){
33442                             handleButton("no");
33443                         }else{
33444                             handleButton("cancel");
33445                         }
33446                     }
33447                 });
33448                 dlg.on("hide", handleHide);
33449                 mask = dlg.mask;
33450                 dlg.addKeyListener(27, handleEsc);
33451                 buttons = {};
33452                 var bt = this.buttonText;
33453                 buttons["ok"] = dlg.addButton(bt["ok"], handleButton.createCallback("ok"));
33454                 buttons["yes"] = dlg.addButton(bt["yes"], handleButton.createCallback("yes"));
33455                 buttons["no"] = dlg.addButton(bt["no"], handleButton.createCallback("no"));
33456                 buttons["cancel"] = dlg.addButton(bt["cancel"], handleButton.createCallback("cancel"));
33457                 bodyEl = dlg.body.createChild({
33458
33459                     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>'
33460                 });
33461                 msgEl = bodyEl.dom.firstChild;
33462                 textboxEl = Roo.get(bodyEl.dom.childNodes[2]);
33463                 textboxEl.enableDisplayMode();
33464                 textboxEl.addKeyListener([10,13], function(){
33465                     if(dlg.isVisible() && opt && opt.buttons){
33466                         if(opt.buttons.ok){
33467                             handleButton("ok");
33468                         }else if(opt.buttons.yes){
33469                             handleButton("yes");
33470                         }
33471                     }
33472                 });
33473                 textareaEl = Roo.get(bodyEl.dom.childNodes[3]);
33474                 textareaEl.enableDisplayMode();
33475                 progressEl = Roo.get(bodyEl.dom.childNodes[4]);
33476                 progressEl.enableDisplayMode();
33477                 var pf = progressEl.dom.firstChild;
33478                 if (pf) {
33479                     pp = Roo.get(pf.firstChild);
33480                     pp.setHeight(pf.offsetHeight);
33481                 }
33482                 
33483             }
33484             return dlg;
33485         },
33486
33487         /**
33488          * Updates the message box body text
33489          * @param {String} text (optional) Replaces the message box element's innerHTML with the specified string (defaults to
33490          * the XHTML-compliant non-breaking space character '&amp;#160;')
33491          * @return {Roo.MessageBox} This message box
33492          */
33493         updateText : function(text){
33494             if(!dlg.isVisible() && !opt.width){
33495                 dlg.resizeTo(this.maxWidth, 100); // resize first so content is never clipped from previous shows
33496             }
33497             msgEl.innerHTML = text || '&#160;';
33498       
33499             var cw =  Math.max(msgEl.offsetWidth, msgEl.parentNode.scrollWidth);
33500             //Roo.log("guesed size: " + JSON.stringify([cw,msgEl.offsetWidth, msgEl.parentNode.scrollWidth]));
33501             var w = Math.max(
33502                     Math.min(opt.width || cw , this.maxWidth), 
33503                     Math.max(opt.minWidth || this.minWidth, bwidth)
33504             );
33505             if(opt.prompt){
33506                 activeTextEl.setWidth(w);
33507             }
33508             if(dlg.isVisible()){
33509                 dlg.fixedcenter = false;
33510             }
33511             // to big, make it scroll. = But as usual stupid IE does not support
33512             // !important..
33513             
33514             if ( bodyEl.getHeight() > (Roo.lib.Dom.getViewHeight() - 100)) {
33515                 bodyEl.setHeight ( Roo.lib.Dom.getViewHeight() - 100 );
33516                 bodyEl.dom.style.overflowY = 'auto' + ( Roo.isIE ? '' : ' !important');
33517             } else {
33518                 bodyEl.dom.style.height = '';
33519                 bodyEl.dom.style.overflowY = '';
33520             }
33521             if (cw > w) {
33522                 bodyEl.dom.style.get = 'auto' + ( Roo.isIE ? '' : ' !important');
33523             } else {
33524                 bodyEl.dom.style.overflowX = '';
33525             }
33526             
33527             dlg.setContentSize(w, bodyEl.getHeight());
33528             if(dlg.isVisible()){
33529                 dlg.fixedcenter = true;
33530             }
33531             return this;
33532         },
33533
33534         /**
33535          * Updates a progress-style message box's text and progress bar.  Only relevant on message boxes
33536          * initiated via {@link Roo.MessageBox#progress} or by calling {@link Roo.MessageBox#show} with progress: true.
33537          * @param {Number} value Any number between 0 and 1 (e.g., .5)
33538          * @param {String} text (optional) If defined, the message box's body text is replaced with the specified string (defaults to undefined)
33539          * @return {Roo.MessageBox} This message box
33540          */
33541         updateProgress : function(value, text){
33542             if(text){
33543                 this.updateText(text);
33544             }
33545             if (pp) { // weird bug on my firefox - for some reason this is not defined
33546                 pp.setWidth(Math.floor(value*progressEl.dom.firstChild.offsetWidth));
33547             }
33548             return this;
33549         },        
33550
33551         /**
33552          * Returns true if the message box is currently displayed
33553          * @return {Boolean} True if the message box is visible, else false
33554          */
33555         isVisible : function(){
33556             return dlg && dlg.isVisible();  
33557         },
33558
33559         /**
33560          * Hides the message box if it is displayed
33561          */
33562         hide : function(){
33563             if(this.isVisible()){
33564                 dlg.hide();
33565             }  
33566         },
33567
33568         /**
33569          * Displays a new message box, or reinitializes an existing message box, based on the config options
33570          * passed in. All functions (e.g. prompt, alert, etc) on MessageBox call this function internally.
33571          * The following config object properties are supported:
33572          * <pre>
33573 Property    Type             Description
33574 ----------  ---------------  ------------------------------------------------------------------------------------
33575 animEl            String/Element   An id or Element from which the message box should animate as it opens and
33576                                    closes (defaults to undefined)
33577 buttons           Object/Boolean   A button config object (e.g., Roo.MessageBox.OKCANCEL or {ok:'Foo',
33578                                    cancel:'Bar'}), or false to not show any buttons (defaults to false)
33579 closable          Boolean          False to hide the top-right close button (defaults to true).  Note that
33580                                    progress and wait dialogs will ignore this property and always hide the
33581                                    close button as they can only be closed programmatically.
33582 cls               String           A custom CSS class to apply to the message box element
33583 defaultTextHeight Number           The default height in pixels of the message box's multiline textarea if
33584                                    displayed (defaults to 75)
33585 fn                Function         A callback function to execute after closing the dialog.  The arguments to the
33586                                    function will be btn (the name of the button that was clicked, if applicable,
33587                                    e.g. "ok"), and text (the value of the active text field, if applicable).
33588                                    Progress and wait dialogs will ignore this option since they do not respond to
33589                                    user actions and can only be closed programmatically, so any required function
33590                                    should be called by the same code after it closes the dialog.
33591 icon              String           A CSS class that provides a background image to be used as an icon for
33592                                    the dialog (e.g., Roo.MessageBox.WARNING or 'custom-class', defaults to '')
33593 maxWidth          Number           The maximum width in pixels of the message box (defaults to 600)
33594 minWidth          Number           The minimum width in pixels of the message box (defaults to 100)
33595 modal             Boolean          False to allow user interaction with the page while the message box is
33596                                    displayed (defaults to true)
33597 msg               String           A string that will replace the existing message box body text (defaults
33598                                    to the XHTML-compliant non-breaking space character '&#160;')
33599 multiline         Boolean          True to prompt the user to enter multi-line text (defaults to false)
33600 progress          Boolean          True to display a progress bar (defaults to false)
33601 progressText      String           The text to display inside the progress bar if progress = true (defaults to '')
33602 prompt            Boolean          True to prompt the user to enter single-line text (defaults to false)
33603 proxyDrag         Boolean          True to display a lightweight proxy while dragging (defaults to false)
33604 title             String           The title text
33605 value             String           The string value to set into the active textbox element if displayed
33606 wait              Boolean          True to display a progress bar (defaults to false)
33607 width             Number           The width of the dialog in pixels
33608 </pre>
33609          *
33610          * Example usage:
33611          * <pre><code>
33612 Roo.Msg.show({
33613    title: 'Address',
33614    msg: 'Please enter your address:',
33615    width: 300,
33616    buttons: Roo.MessageBox.OKCANCEL,
33617    multiline: true,
33618    fn: saveAddress,
33619    animEl: 'addAddressBtn'
33620 });
33621 </code></pre>
33622          * @param {Object} config Configuration options
33623          * @return {Roo.MessageBox} This message box
33624          */
33625         show : function(options)
33626         {
33627             
33628             // this causes nightmares if you show one dialog after another
33629             // especially on callbacks..
33630              
33631             if(this.isVisible()){
33632                 
33633                 this.hide();
33634                 Roo.log("[Roo.Messagebox] Show called while message displayed:" );
33635                 Roo.log("Old Dialog Message:" +  msgEl.innerHTML );
33636                 Roo.log("New Dialog Message:" +  options.msg )
33637                 //this.alert("ERROR", "Multiple dialogs where displayed at the same time");
33638                 //throw "Roo.MessageBox ERROR : Multiple dialogs where displayed at the same time";
33639                 
33640             }
33641             var d = this.getDialog();
33642             opt = options;
33643             d.setTitle(opt.title || "&#160;");
33644             d.close.setDisplayed(opt.closable !== false);
33645             activeTextEl = textboxEl;
33646             opt.prompt = opt.prompt || (opt.multiline ? true : false);
33647             if(opt.prompt){
33648                 if(opt.multiline){
33649                     textboxEl.hide();
33650                     textareaEl.show();
33651                     textareaEl.setHeight(typeof opt.multiline == "number" ?
33652                         opt.multiline : this.defaultTextHeight);
33653                     activeTextEl = textareaEl;
33654                 }else{
33655                     textboxEl.show();
33656                     textareaEl.hide();
33657                 }
33658             }else{
33659                 textboxEl.hide();
33660                 textareaEl.hide();
33661             }
33662             progressEl.setDisplayed(opt.progress === true);
33663             this.updateProgress(0);
33664             activeTextEl.dom.value = opt.value || "";
33665             if(opt.prompt){
33666                 dlg.setDefaultButton(activeTextEl);
33667             }else{
33668                 var bs = opt.buttons;
33669                 var db = null;
33670                 if(bs && bs.ok){
33671                     db = buttons["ok"];
33672                 }else if(bs && bs.yes){
33673                     db = buttons["yes"];
33674                 }
33675                 dlg.setDefaultButton(db);
33676             }
33677             bwidth = updateButtons(opt.buttons);
33678             this.updateText(opt.msg);
33679             if(opt.cls){
33680                 d.el.addClass(opt.cls);
33681             }
33682             d.proxyDrag = opt.proxyDrag === true;
33683             d.modal = opt.modal !== false;
33684             d.mask = opt.modal !== false ? mask : false;
33685             if(!d.isVisible()){
33686                 // force it to the end of the z-index stack so it gets a cursor in FF
33687                 document.body.appendChild(dlg.el.dom);
33688                 d.animateTarget = null;
33689                 d.show(options.animEl);
33690             }
33691             return this;
33692         },
33693
33694         /**
33695          * Displays a message box with a progress bar.  This message box has no buttons and is not closeable by
33696          * the user.  You are responsible for updating the progress bar as needed via {@link Roo.MessageBox#updateProgress}
33697          * and closing the message box when the process is complete.
33698          * @param {String} title The title bar text
33699          * @param {String} msg The message box body text
33700          * @return {Roo.MessageBox} This message box
33701          */
33702         progress : function(title, msg){
33703             this.show({
33704                 title : title,
33705                 msg : msg,
33706                 buttons: false,
33707                 progress:true,
33708                 closable:false,
33709                 minWidth: this.minProgressWidth,
33710                 modal : true
33711             });
33712             return this;
33713         },
33714
33715         /**
33716          * Displays a standard read-only message box with an OK button (comparable to the basic JavaScript Window.alert).
33717          * If a callback function is passed it will be called after the user clicks the button, and the
33718          * id of the button that was clicked will be passed as the only parameter to the callback
33719          * (could also be the top-right close button).
33720          * @param {String} title The title bar text
33721          * @param {String} msg The message box body text
33722          * @param {Function} fn (optional) The callback function invoked after the message box is closed
33723          * @param {Object} scope (optional) The scope of the callback function
33724          * @return {Roo.MessageBox} This message box
33725          */
33726         alert : function(title, msg, fn, scope){
33727             this.show({
33728                 title : title,
33729                 msg : msg,
33730                 buttons: this.OK,
33731                 fn: fn,
33732                 scope : scope,
33733                 modal : true
33734             });
33735             return this;
33736         },
33737
33738         /**
33739          * Displays a message box with an infinitely auto-updating progress bar.  This can be used to block user
33740          * interaction while waiting for a long-running process to complete that does not have defined intervals.
33741          * You are responsible for closing the message box when the process is complete.
33742          * @param {String} msg The message box body text
33743          * @param {String} title (optional) The title bar text
33744          * @return {Roo.MessageBox} This message box
33745          */
33746         wait : function(msg, title){
33747             this.show({
33748                 title : title,
33749                 msg : msg,
33750                 buttons: false,
33751                 closable:false,
33752                 progress:true,
33753                 modal:true,
33754                 width:300,
33755                 wait:true
33756             });
33757             waitTimer = Roo.TaskMgr.start({
33758                 run: function(i){
33759                     Roo.MessageBox.updateProgress(((((i+20)%20)+1)*5)*.01);
33760                 },
33761                 interval: 1000
33762             });
33763             return this;
33764         },
33765
33766         /**
33767          * Displays a confirmation message box with Yes and No buttons (comparable to JavaScript's Window.confirm).
33768          * If a callback function is passed it will be called after the user clicks either button, and the id of the
33769          * button that was clicked will be passed as the only parameter to the callback (could also be the top-right close button).
33770          * @param {String} title The title bar text
33771          * @param {String} msg The message box body text
33772          * @param {Function} fn (optional) The callback function invoked after the message box is closed
33773          * @param {Object} scope (optional) The scope of the callback function
33774          * @return {Roo.MessageBox} This message box
33775          */
33776         confirm : function(title, msg, fn, scope){
33777             this.show({
33778                 title : title,
33779                 msg : msg,
33780                 buttons: this.YESNO,
33781                 fn: fn,
33782                 scope : scope,
33783                 modal : true
33784             });
33785             return this;
33786         },
33787
33788         /**
33789          * Displays a message box with OK and Cancel buttons prompting the user to enter some text (comparable to
33790          * JavaScript's Window.prompt).  The prompt can be a single-line or multi-line textbox.  If a callback function
33791          * is passed it will be called after the user clicks either button, and the id of the button that was clicked
33792          * (could also be the top-right close button) and the text that was entered will be passed as the two
33793          * parameters to the callback.
33794          * @param {String} title The title bar text
33795          * @param {String} msg The message box body text
33796          * @param {Function} fn (optional) The callback function invoked after the message box is closed
33797          * @param {Object} scope (optional) The scope of the callback function
33798          * @param {Boolean/Number} multiline (optional) True to create a multiline textbox using the defaultTextHeight
33799          * property, or the height in pixels to create the textbox (defaults to false / single-line)
33800          * @return {Roo.MessageBox} This message box
33801          */
33802         prompt : function(title, msg, fn, scope, multiline){
33803             this.show({
33804                 title : title,
33805                 msg : msg,
33806                 buttons: this.OKCANCEL,
33807                 fn: fn,
33808                 minWidth:250,
33809                 scope : scope,
33810                 prompt:true,
33811                 multiline: multiline,
33812                 modal : true
33813             });
33814             return this;
33815         },
33816
33817         /**
33818          * Button config that displays a single OK button
33819          * @type Object
33820          */
33821         OK : {ok:true},
33822         /**
33823          * Button config that displays Yes and No buttons
33824          * @type Object
33825          */
33826         YESNO : {yes:true, no:true},
33827         /**
33828          * Button config that displays OK and Cancel buttons
33829          * @type Object
33830          */
33831         OKCANCEL : {ok:true, cancel:true},
33832         /**
33833          * Button config that displays Yes, No and Cancel buttons
33834          * @type Object
33835          */
33836         YESNOCANCEL : {yes:true, no:true, cancel:true},
33837
33838         /**
33839          * The default height in pixels of the message box's multiline textarea if displayed (defaults to 75)
33840          * @type Number
33841          */
33842         defaultTextHeight : 75,
33843         /**
33844          * The maximum width in pixels of the message box (defaults to 600)
33845          * @type Number
33846          */
33847         maxWidth : 600,
33848         /**
33849          * The minimum width in pixels of the message box (defaults to 100)
33850          * @type Number
33851          */
33852         minWidth : 100,
33853         /**
33854          * The minimum width in pixels of the message box if it is a progress-style dialog.  This is useful
33855          * for setting a different minimum width than text-only dialogs may need (defaults to 250)
33856          * @type Number
33857          */
33858         minProgressWidth : 250,
33859         /**
33860          * An object containing the default button text strings that can be overriden for localized language support.
33861          * Supported properties are: ok, cancel, yes and no.
33862          * Customize the default text like so: Roo.MessageBox.buttonText.yes = "S?";
33863          * @type Object
33864          */
33865         buttonText : {
33866             ok : "OK",
33867             cancel : "Cancel",
33868             yes : "Yes",
33869             no : "No"
33870         }
33871     };
33872 }();
33873
33874 /**
33875  * Shorthand for {@link Roo.MessageBox}
33876  */
33877 Roo.Msg = Roo.MessageBox;/*
33878  * Based on:
33879  * Ext JS Library 1.1.1
33880  * Copyright(c) 2006-2007, Ext JS, LLC.
33881  *
33882  * Originally Released Under LGPL - original licence link has changed is not relivant.
33883  *
33884  * Fork - LGPL
33885  * <script type="text/javascript">
33886  */
33887 /**
33888  * @class Roo.QuickTips
33889  * Provides attractive and customizable tooltips for any element.
33890  * @singleton
33891  */
33892 Roo.QuickTips = function(){
33893     var el, tipBody, tipBodyText, tipTitle, tm, cfg, close, tagEls = {}, esc, removeCls = null, bdLeft, bdRight;
33894     var ce, bd, xy, dd;
33895     var visible = false, disabled = true, inited = false;
33896     var showProc = 1, hideProc = 1, dismissProc = 1, locks = [];
33897     
33898     var onOver = function(e){
33899         if(disabled){
33900             return;
33901         }
33902         var t = e.getTarget();
33903         if(!t || t.nodeType !== 1 || t == document || t == document.body){
33904             return;
33905         }
33906         if(ce && t == ce.el){
33907             clearTimeout(hideProc);
33908             return;
33909         }
33910         if(t && tagEls[t.id]){
33911             tagEls[t.id].el = t;
33912             showProc = show.defer(tm.showDelay, tm, [tagEls[t.id]]);
33913             return;
33914         }
33915         var ttp, et = Roo.fly(t);
33916         var ns = cfg.namespace;
33917         if(tm.interceptTitles && t.title){
33918             ttp = t.title;
33919             t.qtip = ttp;
33920             t.removeAttribute("title");
33921             e.preventDefault();
33922         }else{
33923             ttp = t.qtip || et.getAttributeNS(ns, cfg.attribute) || et.getAttributeNS(cfg.alt_namespace, cfg.attribute) ;
33924         }
33925         if(ttp){
33926             showProc = show.defer(tm.showDelay, tm, [{
33927                 el: t, 
33928                 text: ttp.replace(/\\n/g,'<br/>'),
33929                 width: et.getAttributeNS(ns, cfg.width),
33930                 autoHide: et.getAttributeNS(ns, cfg.hide) != "user",
33931                 title: et.getAttributeNS(ns, cfg.title),
33932                     cls: et.getAttributeNS(ns, cfg.cls)
33933             }]);
33934         }
33935     };
33936     
33937     var onOut = function(e){
33938         clearTimeout(showProc);
33939         var t = e.getTarget();
33940         if(t && ce && ce.el == t && (tm.autoHide && ce.autoHide !== false)){
33941             hideProc = setTimeout(hide, tm.hideDelay);
33942         }
33943     };
33944     
33945     var onMove = function(e){
33946         if(disabled){
33947             return;
33948         }
33949         xy = e.getXY();
33950         xy[1] += 18;
33951         if(tm.trackMouse && ce){
33952             el.setXY(xy);
33953         }
33954     };
33955     
33956     var onDown = function(e){
33957         clearTimeout(showProc);
33958         clearTimeout(hideProc);
33959         if(!e.within(el)){
33960             if(tm.hideOnClick){
33961                 hide();
33962                 tm.disable();
33963                 tm.enable.defer(100, tm);
33964             }
33965         }
33966     };
33967     
33968     var getPad = function(){
33969         return 2;//bdLeft.getPadding('l')+bdRight.getPadding('r');
33970     };
33971
33972     var show = function(o){
33973         if(disabled){
33974             return;
33975         }
33976         clearTimeout(dismissProc);
33977         ce = o;
33978         if(removeCls){ // in case manually hidden
33979             el.removeClass(removeCls);
33980             removeCls = null;
33981         }
33982         if(ce.cls){
33983             el.addClass(ce.cls);
33984             removeCls = ce.cls;
33985         }
33986         if(ce.title){
33987             tipTitle.update(ce.title);
33988             tipTitle.show();
33989         }else{
33990             tipTitle.update('');
33991             tipTitle.hide();
33992         }
33993         el.dom.style.width  = tm.maxWidth+'px';
33994         //tipBody.dom.style.width = '';
33995         tipBodyText.update(o.text);
33996         var p = getPad(), w = ce.width;
33997         if(!w){
33998             var td = tipBodyText.dom;
33999             var aw = Math.max(td.offsetWidth, td.clientWidth, td.scrollWidth);
34000             if(aw > tm.maxWidth){
34001                 w = tm.maxWidth;
34002             }else if(aw < tm.minWidth){
34003                 w = tm.minWidth;
34004             }else{
34005                 w = aw;
34006             }
34007         }
34008         //tipBody.setWidth(w);
34009         el.setWidth(parseInt(w, 10) + p);
34010         if(ce.autoHide === false){
34011             close.setDisplayed(true);
34012             if(dd){
34013                 dd.unlock();
34014             }
34015         }else{
34016             close.setDisplayed(false);
34017             if(dd){
34018                 dd.lock();
34019             }
34020         }
34021         if(xy){
34022             el.avoidY = xy[1]-18;
34023             el.setXY(xy);
34024         }
34025         if(tm.animate){
34026             el.setOpacity(.1);
34027             el.setStyle("visibility", "visible");
34028             el.fadeIn({callback: afterShow});
34029         }else{
34030             afterShow();
34031         }
34032     };
34033     
34034     var afterShow = function(){
34035         if(ce){
34036             el.show();
34037             esc.enable();
34038             if(tm.autoDismiss && ce.autoHide !== false){
34039                 dismissProc = setTimeout(hide, tm.autoDismissDelay);
34040             }
34041         }
34042     };
34043     
34044     var hide = function(noanim){
34045         clearTimeout(dismissProc);
34046         clearTimeout(hideProc);
34047         ce = null;
34048         if(el.isVisible()){
34049             esc.disable();
34050             if(noanim !== true && tm.animate){
34051                 el.fadeOut({callback: afterHide});
34052             }else{
34053                 afterHide();
34054             } 
34055         }
34056     };
34057     
34058     var afterHide = function(){
34059         el.hide();
34060         if(removeCls){
34061             el.removeClass(removeCls);
34062             removeCls = null;
34063         }
34064     };
34065     
34066     return {
34067         /**
34068         * @cfg {Number} minWidth
34069         * The minimum width of the quick tip (defaults to 40)
34070         */
34071        minWidth : 40,
34072         /**
34073         * @cfg {Number} maxWidth
34074         * The maximum width of the quick tip (defaults to 300)
34075         */
34076        maxWidth : 300,
34077         /**
34078         * @cfg {Boolean} interceptTitles
34079         * True to automatically use the element's DOM title value if available (defaults to false)
34080         */
34081        interceptTitles : false,
34082         /**
34083         * @cfg {Boolean} trackMouse
34084         * True to have the quick tip follow the mouse as it moves over the target element (defaults to false)
34085         */
34086        trackMouse : false,
34087         /**
34088         * @cfg {Boolean} hideOnClick
34089         * True to hide the quick tip if the user clicks anywhere in the document (defaults to true)
34090         */
34091        hideOnClick : true,
34092         /**
34093         * @cfg {Number} showDelay
34094         * Delay in milliseconds before the quick tip displays after the mouse enters the target element (defaults to 500)
34095         */
34096        showDelay : 500,
34097         /**
34098         * @cfg {Number} hideDelay
34099         * Delay in milliseconds before the quick tip hides when autoHide = true (defaults to 200)
34100         */
34101        hideDelay : 200,
34102         /**
34103         * @cfg {Boolean} autoHide
34104         * True to automatically hide the quick tip after the mouse exits the target element (defaults to true).
34105         * Used in conjunction with hideDelay.
34106         */
34107        autoHide : true,
34108         /**
34109         * @cfg {Boolean}
34110         * True to automatically hide the quick tip after a set period of time, regardless of the user's actions
34111         * (defaults to true).  Used in conjunction with autoDismissDelay.
34112         */
34113        autoDismiss : true,
34114         /**
34115         * @cfg {Number}
34116         * Delay in milliseconds before the quick tip hides when autoDismiss = true (defaults to 5000)
34117         */
34118        autoDismissDelay : 5000,
34119        /**
34120         * @cfg {Boolean} animate
34121         * True to turn on fade animation. Defaults to false (ClearType/scrollbar flicker issues in IE7).
34122         */
34123        animate : false,
34124
34125        /**
34126         * @cfg {String} title
34127         * Title text to display (defaults to '').  This can be any valid HTML markup.
34128         */
34129         title: '',
34130        /**
34131         * @cfg {String} text
34132         * Body text to display (defaults to '').  This can be any valid HTML markup.
34133         */
34134         text : '',
34135        /**
34136         * @cfg {String} cls
34137         * A CSS class to apply to the base quick tip element (defaults to '').
34138         */
34139         cls : '',
34140        /**
34141         * @cfg {Number} width
34142         * Width in pixels of the quick tip (defaults to auto).  Width will be ignored if it exceeds the bounds of
34143         * minWidth or maxWidth.
34144         */
34145         width : null,
34146
34147     /**
34148      * Initialize and enable QuickTips for first use.  This should be called once before the first attempt to access
34149      * or display QuickTips in a page.
34150      */
34151        init : function(){
34152           tm = Roo.QuickTips;
34153           cfg = tm.tagConfig;
34154           if(!inited){
34155               if(!Roo.isReady){ // allow calling of init() before onReady
34156                   Roo.onReady(Roo.QuickTips.init, Roo.QuickTips);
34157                   return;
34158               }
34159               el = new Roo.Layer({cls:"x-tip", shadow:"drop", shim: true, constrain:true, shadowOffset:4});
34160               el.fxDefaults = {stopFx: true};
34161               // maximum custom styling
34162               //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>');
34163               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>');              
34164               tipTitle = el.child('h3');
34165               tipTitle.enableDisplayMode("block");
34166               tipBody = el.child('div.x-tip-bd');
34167               tipBodyText = el.child('div.x-tip-bd-inner');
34168               //bdLeft = el.child('div.x-tip-bd-left');
34169               //bdRight = el.child('div.x-tip-bd-right');
34170               close = el.child('div.x-tip-close');
34171               close.enableDisplayMode("block");
34172               close.on("click", hide);
34173               var d = Roo.get(document);
34174               d.on("mousedown", onDown);
34175               d.on("mouseover", onOver);
34176               d.on("mouseout", onOut);
34177               d.on("mousemove", onMove);
34178               esc = d.addKeyListener(27, hide);
34179               esc.disable();
34180               if(Roo.dd.DD){
34181                   dd = el.initDD("default", null, {
34182                       onDrag : function(){
34183                           el.sync();  
34184                       }
34185                   });
34186                   dd.setHandleElId(tipTitle.id);
34187                   dd.lock();
34188               }
34189               inited = true;
34190           }
34191           this.enable(); 
34192        },
34193
34194     /**
34195      * Configures a new quick tip instance and assigns it to a target element.  The following config options
34196      * are supported:
34197      * <pre>
34198 Property    Type                   Description
34199 ----------  ---------------------  ------------------------------------------------------------------------
34200 target      Element/String/Array   An Element, id or array of ids that this quick tip should be tied to
34201      * </ul>
34202      * @param {Object} config The config object
34203      */
34204        register : function(config){
34205            var cs = config instanceof Array ? config : arguments;
34206            for(var i = 0, len = cs.length; i < len; i++) {
34207                var c = cs[i];
34208                var target = c.target;
34209                if(target){
34210                    if(target instanceof Array){
34211                        for(var j = 0, jlen = target.length; j < jlen; j++){
34212                            tagEls[target[j]] = c;
34213                        }
34214                    }else{
34215                        tagEls[typeof target == 'string' ? target : Roo.id(target)] = c;
34216                    }
34217                }
34218            }
34219        },
34220
34221     /**
34222      * Removes this quick tip from its element and destroys it.
34223      * @param {String/HTMLElement/Element} el The element from which the quick tip is to be removed.
34224      */
34225        unregister : function(el){
34226            delete tagEls[Roo.id(el)];
34227        },
34228
34229     /**
34230      * Enable this quick tip.
34231      */
34232        enable : function(){
34233            if(inited && disabled){
34234                locks.pop();
34235                if(locks.length < 1){
34236                    disabled = false;
34237                }
34238            }
34239        },
34240
34241     /**
34242      * Disable this quick tip.
34243      */
34244        disable : function(){
34245           disabled = true;
34246           clearTimeout(showProc);
34247           clearTimeout(hideProc);
34248           clearTimeout(dismissProc);
34249           if(ce){
34250               hide(true);
34251           }
34252           locks.push(1);
34253        },
34254
34255     /**
34256      * Returns true if the quick tip is enabled, else false.
34257      */
34258        isEnabled : function(){
34259             return !disabled;
34260        },
34261
34262         // private
34263        tagConfig : {
34264            namespace : "roo", // was ext?? this may break..
34265            alt_namespace : "ext",
34266            attribute : "qtip",
34267            width : "width",
34268            target : "target",
34269            title : "qtitle",
34270            hide : "hide",
34271            cls : "qclass"
34272        }
34273    };
34274 }();
34275
34276 // backwards compat
34277 Roo.QuickTips.tips = Roo.QuickTips.register;/*
34278  * Based on:
34279  * Ext JS Library 1.1.1
34280  * Copyright(c) 2006-2007, Ext JS, LLC.
34281  *
34282  * Originally Released Under LGPL - original licence link has changed is not relivant.
34283  *
34284  * Fork - LGPL
34285  * <script type="text/javascript">
34286  */
34287  
34288
34289 /**
34290  * @class Roo.tree.TreePanel
34291  * @extends Roo.data.Tree
34292
34293  * @cfg {Boolean} rootVisible false to hide the root node (defaults to true)
34294  * @cfg {Boolean} lines false to disable tree lines (defaults to true)
34295  * @cfg {Boolean} enableDD true to enable drag and drop
34296  * @cfg {Boolean} enableDrag true to enable just drag
34297  * @cfg {Boolean} enableDrop true to enable just drop
34298  * @cfg {Object} dragConfig Custom config to pass to the {@link Roo.tree.TreeDragZone} instance
34299  * @cfg {Object} dropConfig Custom config to pass to the {@link Roo.tree.TreeDropZone} instance
34300  * @cfg {String} ddGroup The DD group this TreePanel belongs to
34301  * @cfg {String} ddAppendOnly True if the tree should only allow append drops (use for trees which are sorted)
34302  * @cfg {Boolean} ddScroll true to enable YUI body scrolling
34303  * @cfg {Boolean} containerScroll true to register this container with ScrollManager
34304  * @cfg {Boolean} hlDrop false to disable node highlight on drop (defaults to the value of Roo.enableFx)
34305  * @cfg {String} hlColor The color of the node highlight (defaults to C3DAF9)
34306  * @cfg {Boolean} animate true to enable animated expand/collapse (defaults to the value of Roo.enableFx)
34307  * @cfg {Boolean} singleExpand true if only 1 node per branch may be expanded
34308  * @cfg {Boolean} selModel A tree selection model to use with this TreePanel (defaults to a {@link Roo.tree.DefaultSelectionModel})
34309  * @cfg {Boolean} loader A TreeLoader for use with this TreePanel
34310  * @cfg {Object|Roo.tree.TreeEditor} editor The TreeEditor or xtype data to display when clicked.
34311  * @cfg {String} pathSeparator The token used to separate sub-paths in path strings (defaults to '/')
34312  * @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>
34313  * @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>
34314  * 
34315  * @constructor
34316  * @param {String/HTMLElement/Element} el The container element
34317  * @param {Object} config
34318  */
34319 Roo.tree.TreePanel = function(el, config){
34320     var root = false;
34321     var loader = false;
34322     if (config.root) {
34323         root = config.root;
34324         delete config.root;
34325     }
34326     if (config.loader) {
34327         loader = config.loader;
34328         delete config.loader;
34329     }
34330     
34331     Roo.apply(this, config);
34332     Roo.tree.TreePanel.superclass.constructor.call(this);
34333     this.el = Roo.get(el);
34334     this.el.addClass('x-tree');
34335     //console.log(root);
34336     if (root) {
34337         this.setRootNode( Roo.factory(root, Roo.tree));
34338     }
34339     if (loader) {
34340         this.loader = Roo.factory(loader, Roo.tree);
34341     }
34342    /**
34343     * Read-only. The id of the container element becomes this TreePanel's id.
34344     */
34345     this.id = this.el.id;
34346     this.addEvents({
34347         /**
34348         * @event beforeload
34349         * Fires before a node is loaded, return false to cancel
34350         * @param {Node} node The node being loaded
34351         */
34352         "beforeload" : true,
34353         /**
34354         * @event load
34355         * Fires when a node is loaded
34356         * @param {Node} node The node that was loaded
34357         */
34358         "load" : true,
34359         /**
34360         * @event textchange
34361         * Fires when the text for a node is changed
34362         * @param {Node} node The node
34363         * @param {String} text The new text
34364         * @param {String} oldText The old text
34365         */
34366         "textchange" : true,
34367         /**
34368         * @event beforeexpand
34369         * Fires before a node is expanded, return false to cancel.
34370         * @param {Node} node The node
34371         * @param {Boolean} deep
34372         * @param {Boolean} anim
34373         */
34374         "beforeexpand" : true,
34375         /**
34376         * @event beforecollapse
34377         * Fires before a node is collapsed, return false to cancel.
34378         * @param {Node} node The node
34379         * @param {Boolean} deep
34380         * @param {Boolean} anim
34381         */
34382         "beforecollapse" : true,
34383         /**
34384         * @event expand
34385         * Fires when a node is expanded
34386         * @param {Node} node The node
34387         */
34388         "expand" : true,
34389         /**
34390         * @event disabledchange
34391         * Fires when the disabled status of a node changes
34392         * @param {Node} node The node
34393         * @param {Boolean} disabled
34394         */
34395         "disabledchange" : true,
34396         /**
34397         * @event collapse
34398         * Fires when a node is collapsed
34399         * @param {Node} node The node
34400         */
34401         "collapse" : true,
34402         /**
34403         * @event beforeclick
34404         * Fires before click processing on a node. Return false to cancel the default action.
34405         * @param {Node} node The node
34406         * @param {Roo.EventObject} e The event object
34407         */
34408         "beforeclick":true,
34409         /**
34410         * @event checkchange
34411         * Fires when a node with a checkbox's checked property changes
34412         * @param {Node} this This node
34413         * @param {Boolean} checked
34414         */
34415         "checkchange":true,
34416         /**
34417         * @event click
34418         * Fires when a node is clicked
34419         * @param {Node} node The node
34420         * @param {Roo.EventObject} e The event object
34421         */
34422         "click":true,
34423         /**
34424         * @event dblclick
34425         * Fires when a node is double clicked
34426         * @param {Node} node The node
34427         * @param {Roo.EventObject} e The event object
34428         */
34429         "dblclick":true,
34430         /**
34431         * @event contextmenu
34432         * Fires when a node is right clicked
34433         * @param {Node} node The node
34434         * @param {Roo.EventObject} e The event object
34435         */
34436         "contextmenu":true,
34437         /**
34438         * @event beforechildrenrendered
34439         * Fires right before the child nodes for a node are rendered
34440         * @param {Node} node The node
34441         */
34442         "beforechildrenrendered":true,
34443         /**
34444         * @event startdrag
34445         * Fires when a node starts being dragged
34446         * @param {Roo.tree.TreePanel} this
34447         * @param {Roo.tree.TreeNode} node
34448         * @param {event} e The raw browser event
34449         */ 
34450        "startdrag" : true,
34451        /**
34452         * @event enddrag
34453         * Fires when a drag operation is complete
34454         * @param {Roo.tree.TreePanel} this
34455         * @param {Roo.tree.TreeNode} node
34456         * @param {event} e The raw browser event
34457         */
34458        "enddrag" : true,
34459        /**
34460         * @event dragdrop
34461         * Fires when a dragged node is dropped on a valid DD target
34462         * @param {Roo.tree.TreePanel} this
34463         * @param {Roo.tree.TreeNode} node
34464         * @param {DD} dd The dd it was dropped on
34465         * @param {event} e The raw browser event
34466         */
34467        "dragdrop" : true,
34468        /**
34469         * @event beforenodedrop
34470         * Fires when a DD object is dropped on a node in this tree for preprocessing. Return false to cancel the drop. The dropEvent
34471         * passed to handlers has the following properties:<br />
34472         * <ul style="padding:5px;padding-left:16px;">
34473         * <li>tree - The TreePanel</li>
34474         * <li>target - The node being targeted for the drop</li>
34475         * <li>data - The drag data from the drag source</li>
34476         * <li>point - The point of the drop - append, above or below</li>
34477         * <li>source - The drag source</li>
34478         * <li>rawEvent - Raw mouse event</li>
34479         * <li>dropNode - Drop node(s) provided by the source <b>OR</b> you can supply node(s)
34480         * to be inserted by setting them on this object.</li>
34481         * <li>cancel - Set this to true to cancel the drop.</li>
34482         * </ul>
34483         * @param {Object} dropEvent
34484         */
34485        "beforenodedrop" : true,
34486        /**
34487         * @event nodedrop
34488         * Fires after a DD object is dropped on a node in this tree. The dropEvent
34489         * passed to handlers has the following properties:<br />
34490         * <ul style="padding:5px;padding-left:16px;">
34491         * <li>tree - The TreePanel</li>
34492         * <li>target - The node being targeted for the drop</li>
34493         * <li>data - The drag data from the drag source</li>
34494         * <li>point - The point of the drop - append, above or below</li>
34495         * <li>source - The drag source</li>
34496         * <li>rawEvent - Raw mouse event</li>
34497         * <li>dropNode - Dropped node(s).</li>
34498         * </ul>
34499         * @param {Object} dropEvent
34500         */
34501        "nodedrop" : true,
34502         /**
34503         * @event nodedragover
34504         * Fires when a tree node is being targeted for a drag drop, return false to signal drop not allowed. The dragOverEvent
34505         * passed to handlers has the following properties:<br />
34506         * <ul style="padding:5px;padding-left:16px;">
34507         * <li>tree - The TreePanel</li>
34508         * <li>target - The node being targeted for the drop</li>
34509         * <li>data - The drag data from the drag source</li>
34510         * <li>point - The point of the drop - append, above or below</li>
34511         * <li>source - The drag source</li>
34512         * <li>rawEvent - Raw mouse event</li>
34513         * <li>dropNode - Drop node(s) provided by the source.</li>
34514         * <li>cancel - Set this to true to signal drop not allowed.</li>
34515         * </ul>
34516         * @param {Object} dragOverEvent
34517         */
34518        "nodedragover" : true,
34519        /**
34520         * @event appendnode
34521         * Fires when append node to the tree
34522         * @param {Roo.tree.TreePanel} this
34523         * @param {Roo.tree.TreeNode} node
34524         * @param {Number} index The index of the newly appended node
34525         */
34526        "appendnode" : true
34527         
34528     });
34529     if(this.singleExpand){
34530        this.on("beforeexpand", this.restrictExpand, this);
34531     }
34532     if (this.editor) {
34533         this.editor.tree = this;
34534         this.editor = Roo.factory(this.editor, Roo.tree);
34535     }
34536     
34537     if (this.selModel) {
34538         this.selModel = Roo.factory(this.selModel, Roo.tree);
34539     }
34540    
34541 };
34542 Roo.extend(Roo.tree.TreePanel, Roo.data.Tree, {
34543     rootVisible : true,
34544     animate: Roo.enableFx,
34545     lines : true,
34546     enableDD : false,
34547     hlDrop : Roo.enableFx,
34548   
34549     renderer: false,
34550     
34551     rendererTip: false,
34552     // private
34553     restrictExpand : function(node){
34554         var p = node.parentNode;
34555         if(p){
34556             if(p.expandedChild && p.expandedChild.parentNode == p){
34557                 p.expandedChild.collapse();
34558             }
34559             p.expandedChild = node;
34560         }
34561     },
34562
34563     // private override
34564     setRootNode : function(node){
34565         Roo.tree.TreePanel.superclass.setRootNode.call(this, node);
34566         if(!this.rootVisible){
34567             node.ui = new Roo.tree.RootTreeNodeUI(node);
34568         }
34569         return node;
34570     },
34571
34572     /**
34573      * Returns the container element for this TreePanel
34574      */
34575     getEl : function(){
34576         return this.el;
34577     },
34578
34579     /**
34580      * Returns the default TreeLoader for this TreePanel
34581      */
34582     getLoader : function(){
34583         return this.loader;
34584     },
34585
34586     /**
34587      * Expand all nodes
34588      */
34589     expandAll : function(){
34590         this.root.expand(true);
34591     },
34592
34593     /**
34594      * Collapse all nodes
34595      */
34596     collapseAll : function(){
34597         this.root.collapse(true);
34598     },
34599
34600     /**
34601      * Returns the selection model used by this TreePanel
34602      */
34603     getSelectionModel : function(){
34604         if(!this.selModel){
34605             this.selModel = new Roo.tree.DefaultSelectionModel();
34606         }
34607         return this.selModel;
34608     },
34609
34610     /**
34611      * Retrieve an array of checked nodes, or an array of a specific attribute of checked nodes (e.g. "id")
34612      * @param {String} attribute (optional) Defaults to null (return the actual nodes)
34613      * @param {TreeNode} startNode (optional) The node to start from, defaults to the root
34614      * @return {Array}
34615      */
34616     getChecked : function(a, startNode){
34617         startNode = startNode || this.root;
34618         var r = [];
34619         var f = function(){
34620             if(this.attributes.checked){
34621                 r.push(!a ? this : (a == 'id' ? this.id : this.attributes[a]));
34622             }
34623         }
34624         startNode.cascade(f);
34625         return r;
34626     },
34627
34628     /**
34629      * Expands a specified path in this TreePanel. A path can be retrieved from a node with {@link Roo.data.Node#getPath}
34630      * @param {String} path
34631      * @param {String} attr (optional) The attribute used in the path (see {@link Roo.data.Node#getPath} for more info)
34632      * @param {Function} callback (optional) The callback to call when the expand is complete. The callback will be called with
34633      * (bSuccess, oLastNode) where bSuccess is if the expand was successful and oLastNode is the last node that was expanded.
34634      */
34635     expandPath : function(path, attr, callback){
34636         attr = attr || "id";
34637         var keys = path.split(this.pathSeparator);
34638         var curNode = this.root;
34639         if(curNode.attributes[attr] != keys[1]){ // invalid root
34640             if(callback){
34641                 callback(false, null);
34642             }
34643             return;
34644         }
34645         var index = 1;
34646         var f = function(){
34647             if(++index == keys.length){
34648                 if(callback){
34649                     callback(true, curNode);
34650                 }
34651                 return;
34652             }
34653             var c = curNode.findChild(attr, keys[index]);
34654             if(!c){
34655                 if(callback){
34656                     callback(false, curNode);
34657                 }
34658                 return;
34659             }
34660             curNode = c;
34661             c.expand(false, false, f);
34662         };
34663         curNode.expand(false, false, f);
34664     },
34665
34666     /**
34667      * Selects the node in this tree at the specified path. A path can be retrieved from a node with {@link Roo.data.Node#getPath}
34668      * @param {String} path
34669      * @param {String} attr (optional) The attribute used in the path (see {@link Roo.data.Node#getPath} for more info)
34670      * @param {Function} callback (optional) The callback to call when the selection is complete. The callback will be called with
34671      * (bSuccess, oSelNode) where bSuccess is if the selection was successful and oSelNode is the selected node.
34672      */
34673     selectPath : function(path, attr, callback){
34674         attr = attr || "id";
34675         var keys = path.split(this.pathSeparator);
34676         var v = keys.pop();
34677         if(keys.length > 0){
34678             var f = function(success, node){
34679                 if(success && node){
34680                     var n = node.findChild(attr, v);
34681                     if(n){
34682                         n.select();
34683                         if(callback){
34684                             callback(true, n);
34685                         }
34686                     }else if(callback){
34687                         callback(false, n);
34688                     }
34689                 }else{
34690                     if(callback){
34691                         callback(false, n);
34692                     }
34693                 }
34694             };
34695             this.expandPath(keys.join(this.pathSeparator), attr, f);
34696         }else{
34697             this.root.select();
34698             if(callback){
34699                 callback(true, this.root);
34700             }
34701         }
34702     },
34703
34704     getTreeEl : function(){
34705         return this.el;
34706     },
34707
34708     /**
34709      * Trigger rendering of this TreePanel
34710      */
34711     render : function(){
34712         if (this.innerCt) {
34713             return this; // stop it rendering more than once!!
34714         }
34715         
34716         this.innerCt = this.el.createChild({tag:"ul",
34717                cls:"x-tree-root-ct " +
34718                (this.lines ? "x-tree-lines" : "x-tree-no-lines")});
34719
34720         if(this.containerScroll){
34721             Roo.dd.ScrollManager.register(this.el);
34722         }
34723         if((this.enableDD || this.enableDrop) && !this.dropZone){
34724            /**
34725             * The dropZone used by this tree if drop is enabled
34726             * @type Roo.tree.TreeDropZone
34727             */
34728              this.dropZone = new Roo.tree.TreeDropZone(this, this.dropConfig || {
34729                ddGroup: this.ddGroup || "TreeDD", appendOnly: this.ddAppendOnly === true
34730            });
34731         }
34732         if((this.enableDD || this.enableDrag) && !this.dragZone){
34733            /**
34734             * The dragZone used by this tree if drag is enabled
34735             * @type Roo.tree.TreeDragZone
34736             */
34737             this.dragZone = new Roo.tree.TreeDragZone(this, this.dragConfig || {
34738                ddGroup: this.ddGroup || "TreeDD",
34739                scroll: this.ddScroll
34740            });
34741         }
34742         this.getSelectionModel().init(this);
34743         if (!this.root) {
34744             Roo.log("ROOT not set in tree");
34745             return this;
34746         }
34747         this.root.render();
34748         if(!this.rootVisible){
34749             this.root.renderChildren();
34750         }
34751         return this;
34752     }
34753 });/*
34754  * Based on:
34755  * Ext JS Library 1.1.1
34756  * Copyright(c) 2006-2007, Ext JS, LLC.
34757  *
34758  * Originally Released Under LGPL - original licence link has changed is not relivant.
34759  *
34760  * Fork - LGPL
34761  * <script type="text/javascript">
34762  */
34763  
34764
34765 /**
34766  * @class Roo.tree.DefaultSelectionModel
34767  * @extends Roo.util.Observable
34768  * The default single selection for a TreePanel.
34769  * @param {Object} cfg Configuration
34770  */
34771 Roo.tree.DefaultSelectionModel = function(cfg){
34772    this.selNode = null;
34773    
34774    
34775    
34776    this.addEvents({
34777        /**
34778         * @event selectionchange
34779         * Fires when the selected node changes
34780         * @param {DefaultSelectionModel} this
34781         * @param {TreeNode} node the new selection
34782         */
34783        "selectionchange" : true,
34784
34785        /**
34786         * @event beforeselect
34787         * Fires before the selected node changes, return false to cancel the change
34788         * @param {DefaultSelectionModel} this
34789         * @param {TreeNode} node the new selection
34790         * @param {TreeNode} node the old selection
34791         */
34792        "beforeselect" : true
34793    });
34794    
34795     Roo.tree.DefaultSelectionModel.superclass.constructor.call(this,cfg);
34796 };
34797
34798 Roo.extend(Roo.tree.DefaultSelectionModel, Roo.util.Observable, {
34799     init : function(tree){
34800         this.tree = tree;
34801         tree.getTreeEl().on("keydown", this.onKeyDown, this);
34802         tree.on("click", this.onNodeClick, this);
34803     },
34804     
34805     onNodeClick : function(node, e){
34806         if (e.ctrlKey && this.selNode == node)  {
34807             this.unselect(node);
34808             return;
34809         }
34810         this.select(node);
34811     },
34812     
34813     /**
34814      * Select a node.
34815      * @param {TreeNode} node The node to select
34816      * @return {TreeNode} The selected node
34817      */
34818     select : function(node){
34819         var last = this.selNode;
34820         if(last != node && this.fireEvent('beforeselect', this, node, last) !== false){
34821             if(last){
34822                 last.ui.onSelectedChange(false);
34823             }
34824             this.selNode = node;
34825             node.ui.onSelectedChange(true);
34826             this.fireEvent("selectionchange", this, node, last);
34827         }
34828         return node;
34829     },
34830     
34831     /**
34832      * Deselect a node.
34833      * @param {TreeNode} node The node to unselect
34834      */
34835     unselect : function(node){
34836         if(this.selNode == node){
34837             this.clearSelections();
34838         }    
34839     },
34840     
34841     /**
34842      * Clear all selections
34843      */
34844     clearSelections : function(){
34845         var n = this.selNode;
34846         if(n){
34847             n.ui.onSelectedChange(false);
34848             this.selNode = null;
34849             this.fireEvent("selectionchange", this, null);
34850         }
34851         return n;
34852     },
34853     
34854     /**
34855      * Get the selected node
34856      * @return {TreeNode} The selected node
34857      */
34858     getSelectedNode : function(){
34859         return this.selNode;    
34860     },
34861     
34862     /**
34863      * Returns true if the node is selected
34864      * @param {TreeNode} node The node to check
34865      * @return {Boolean}
34866      */
34867     isSelected : function(node){
34868         return this.selNode == node;  
34869     },
34870
34871     /**
34872      * Selects the node above the selected node in the tree, intelligently walking the nodes
34873      * @return TreeNode The new selection
34874      */
34875     selectPrevious : function(){
34876         var s = this.selNode || this.lastSelNode;
34877         if(!s){
34878             return null;
34879         }
34880         var ps = s.previousSibling;
34881         if(ps){
34882             if(!ps.isExpanded() || ps.childNodes.length < 1){
34883                 return this.select(ps);
34884             } else{
34885                 var lc = ps.lastChild;
34886                 while(lc && lc.isExpanded() && lc.childNodes.length > 0){
34887                     lc = lc.lastChild;
34888                 }
34889                 return this.select(lc);
34890             }
34891         } else if(s.parentNode && (this.tree.rootVisible || !s.parentNode.isRoot)){
34892             return this.select(s.parentNode);
34893         }
34894         return null;
34895     },
34896
34897     /**
34898      * Selects the node above the selected node in the tree, intelligently walking the nodes
34899      * @return TreeNode The new selection
34900      */
34901     selectNext : function(){
34902         var s = this.selNode || this.lastSelNode;
34903         if(!s){
34904             return null;
34905         }
34906         if(s.firstChild && s.isExpanded()){
34907              return this.select(s.firstChild);
34908          }else if(s.nextSibling){
34909              return this.select(s.nextSibling);
34910          }else if(s.parentNode){
34911             var newS = null;
34912             s.parentNode.bubble(function(){
34913                 if(this.nextSibling){
34914                     newS = this.getOwnerTree().selModel.select(this.nextSibling);
34915                     return false;
34916                 }
34917             });
34918             return newS;
34919          }
34920         return null;
34921     },
34922
34923     onKeyDown : function(e){
34924         var s = this.selNode || this.lastSelNode;
34925         // undesirable, but required
34926         var sm = this;
34927         if(!s){
34928             return;
34929         }
34930         var k = e.getKey();
34931         switch(k){
34932              case e.DOWN:
34933                  e.stopEvent();
34934                  this.selectNext();
34935              break;
34936              case e.UP:
34937                  e.stopEvent();
34938                  this.selectPrevious();
34939              break;
34940              case e.RIGHT:
34941                  e.preventDefault();
34942                  if(s.hasChildNodes()){
34943                      if(!s.isExpanded()){
34944                          s.expand();
34945                      }else if(s.firstChild){
34946                          this.select(s.firstChild, e);
34947                      }
34948                  }
34949              break;
34950              case e.LEFT:
34951                  e.preventDefault();
34952                  if(s.hasChildNodes() && s.isExpanded()){
34953                      s.collapse();
34954                  }else if(s.parentNode && (this.tree.rootVisible || s.parentNode != this.tree.getRootNode())){
34955                      this.select(s.parentNode, e);
34956                  }
34957              break;
34958         };
34959     }
34960 });
34961
34962 /**
34963  * @class Roo.tree.MultiSelectionModel
34964  * @extends Roo.util.Observable
34965  * Multi selection for a TreePanel.
34966  * @param {Object} cfg Configuration
34967  */
34968 Roo.tree.MultiSelectionModel = function(){
34969    this.selNodes = [];
34970    this.selMap = {};
34971    this.addEvents({
34972        /**
34973         * @event selectionchange
34974         * Fires when the selected nodes change
34975         * @param {MultiSelectionModel} this
34976         * @param {Array} nodes Array of the selected nodes
34977         */
34978        "selectionchange" : true
34979    });
34980    Roo.tree.MultiSelectionModel.superclass.constructor.call(this,cfg);
34981    
34982 };
34983
34984 Roo.extend(Roo.tree.MultiSelectionModel, Roo.util.Observable, {
34985     init : function(tree){
34986         this.tree = tree;
34987         tree.getTreeEl().on("keydown", this.onKeyDown, this);
34988         tree.on("click", this.onNodeClick, this);
34989     },
34990     
34991     onNodeClick : function(node, e){
34992         this.select(node, e, e.ctrlKey);
34993     },
34994     
34995     /**
34996      * Select a node.
34997      * @param {TreeNode} node The node to select
34998      * @param {EventObject} e (optional) An event associated with the selection
34999      * @param {Boolean} keepExisting True to retain existing selections
35000      * @return {TreeNode} The selected node
35001      */
35002     select : function(node, e, keepExisting){
35003         if(keepExisting !== true){
35004             this.clearSelections(true);
35005         }
35006         if(this.isSelected(node)){
35007             this.lastSelNode = node;
35008             return node;
35009         }
35010         this.selNodes.push(node);
35011         this.selMap[node.id] = node;
35012         this.lastSelNode = node;
35013         node.ui.onSelectedChange(true);
35014         this.fireEvent("selectionchange", this, this.selNodes);
35015         return node;
35016     },
35017     
35018     /**
35019      * Deselect a node.
35020      * @param {TreeNode} node The node to unselect
35021      */
35022     unselect : function(node){
35023         if(this.selMap[node.id]){
35024             node.ui.onSelectedChange(false);
35025             var sn = this.selNodes;
35026             var index = -1;
35027             if(sn.indexOf){
35028                 index = sn.indexOf(node);
35029             }else{
35030                 for(var i = 0, len = sn.length; i < len; i++){
35031                     if(sn[i] == node){
35032                         index = i;
35033                         break;
35034                     }
35035                 }
35036             }
35037             if(index != -1){
35038                 this.selNodes.splice(index, 1);
35039             }
35040             delete this.selMap[node.id];
35041             this.fireEvent("selectionchange", this, this.selNodes);
35042         }
35043     },
35044     
35045     /**
35046      * Clear all selections
35047      */
35048     clearSelections : function(suppressEvent){
35049         var sn = this.selNodes;
35050         if(sn.length > 0){
35051             for(var i = 0, len = sn.length; i < len; i++){
35052                 sn[i].ui.onSelectedChange(false);
35053             }
35054             this.selNodes = [];
35055             this.selMap = {};
35056             if(suppressEvent !== true){
35057                 this.fireEvent("selectionchange", this, this.selNodes);
35058             }
35059         }
35060     },
35061     
35062     /**
35063      * Returns true if the node is selected
35064      * @param {TreeNode} node The node to check
35065      * @return {Boolean}
35066      */
35067     isSelected : function(node){
35068         return this.selMap[node.id] ? true : false;  
35069     },
35070     
35071     /**
35072      * Returns an array of the selected nodes
35073      * @return {Array}
35074      */
35075     getSelectedNodes : function(){
35076         return this.selNodes;    
35077     },
35078
35079     onKeyDown : Roo.tree.DefaultSelectionModel.prototype.onKeyDown,
35080
35081     selectNext : Roo.tree.DefaultSelectionModel.prototype.selectNext,
35082
35083     selectPrevious : Roo.tree.DefaultSelectionModel.prototype.selectPrevious
35084 });/*
35085  * Based on:
35086  * Ext JS Library 1.1.1
35087  * Copyright(c) 2006-2007, Ext JS, LLC.
35088  *
35089  * Originally Released Under LGPL - original licence link has changed is not relivant.
35090  *
35091  * Fork - LGPL
35092  * <script type="text/javascript">
35093  */
35094  
35095 /**
35096  * @class Roo.tree.TreeNode
35097  * @extends Roo.data.Node
35098  * @cfg {String} text The text for this node
35099  * @cfg {Boolean} expanded true to start the node expanded
35100  * @cfg {Boolean} allowDrag false to make this node undraggable if DD is on (defaults to true)
35101  * @cfg {Boolean} allowDrop false if this node cannot be drop on
35102  * @cfg {Boolean} disabled true to start the node disabled
35103  * @cfg {String} icon The path to an icon for the node. The preferred way to do this
35104  *    is to use the cls or iconCls attributes and add the icon via a CSS background image.
35105  * @cfg {String} cls A css class to be added to the node
35106  * @cfg {String} iconCls A css class to be added to the nodes icon element for applying css background images
35107  * @cfg {String} href URL of the link used for the node (defaults to #)
35108  * @cfg {String} hrefTarget target frame for the link
35109  * @cfg {String} qtip An Ext QuickTip for the node
35110  * @cfg {String} qtipCfg An Ext QuickTip config for the node (used instead of qtip)
35111  * @cfg {Boolean} singleClickExpand True for single click expand on this node
35112  * @cfg {Function} uiProvider A UI <b>class</b> to use for this node (defaults to Roo.tree.TreeNodeUI)
35113  * @cfg {Boolean} checked True to render a checked checkbox for this node, false to render an unchecked checkbox
35114  * (defaults to undefined with no checkbox rendered)
35115  * @constructor
35116  * @param {Object/String} attributes The attributes/config for the node or just a string with the text for the node
35117  */
35118 Roo.tree.TreeNode = function(attributes){
35119     attributes = attributes || {};
35120     if(typeof attributes == "string"){
35121         attributes = {text: attributes};
35122     }
35123     this.childrenRendered = false;
35124     this.rendered = false;
35125     Roo.tree.TreeNode.superclass.constructor.call(this, attributes);
35126     this.expanded = attributes.expanded === true;
35127     this.isTarget = attributes.isTarget !== false;
35128     this.draggable = attributes.draggable !== false && attributes.allowDrag !== false;
35129     this.allowChildren = attributes.allowChildren !== false && attributes.allowDrop !== false;
35130
35131     /**
35132      * Read-only. The text for this node. To change it use setText().
35133      * @type String
35134      */
35135     this.text = attributes.text;
35136     /**
35137      * True if this node is disabled.
35138      * @type Boolean
35139      */
35140     this.disabled = attributes.disabled === true;
35141
35142     this.addEvents({
35143         /**
35144         * @event textchange
35145         * Fires when the text for this node is changed
35146         * @param {Node} this This node
35147         * @param {String} text The new text
35148         * @param {String} oldText The old text
35149         */
35150         "textchange" : true,
35151         /**
35152         * @event beforeexpand
35153         * Fires before this node is expanded, return false to cancel.
35154         * @param {Node} this This node
35155         * @param {Boolean} deep
35156         * @param {Boolean} anim
35157         */
35158         "beforeexpand" : true,
35159         /**
35160         * @event beforecollapse
35161         * Fires before this node is collapsed, return false to cancel.
35162         * @param {Node} this This node
35163         * @param {Boolean} deep
35164         * @param {Boolean} anim
35165         */
35166         "beforecollapse" : true,
35167         /**
35168         * @event expand
35169         * Fires when this node is expanded
35170         * @param {Node} this This node
35171         */
35172         "expand" : true,
35173         /**
35174         * @event disabledchange
35175         * Fires when the disabled status of this node changes
35176         * @param {Node} this This node
35177         * @param {Boolean} disabled
35178         */
35179         "disabledchange" : true,
35180         /**
35181         * @event collapse
35182         * Fires when this node is collapsed
35183         * @param {Node} this This node
35184         */
35185         "collapse" : true,
35186         /**
35187         * @event beforeclick
35188         * Fires before click processing. Return false to cancel the default action.
35189         * @param {Node} this This node
35190         * @param {Roo.EventObject} e The event object
35191         */
35192         "beforeclick":true,
35193         /**
35194         * @event checkchange
35195         * Fires when a node with a checkbox's checked property changes
35196         * @param {Node} this This node
35197         * @param {Boolean} checked
35198         */
35199         "checkchange":true,
35200         /**
35201         * @event click
35202         * Fires when this node is clicked
35203         * @param {Node} this This node
35204         * @param {Roo.EventObject} e The event object
35205         */
35206         "click":true,
35207         /**
35208         * @event dblclick
35209         * Fires when this node is double clicked
35210         * @param {Node} this This node
35211         * @param {Roo.EventObject} e The event object
35212         */
35213         "dblclick":true,
35214         /**
35215         * @event contextmenu
35216         * Fires when this node is right clicked
35217         * @param {Node} this This node
35218         * @param {Roo.EventObject} e The event object
35219         */
35220         "contextmenu":true,
35221         /**
35222         * @event beforechildrenrendered
35223         * Fires right before the child nodes for this node are rendered
35224         * @param {Node} this This node
35225         */
35226         "beforechildrenrendered":true
35227     });
35228
35229     var uiClass = this.attributes.uiProvider || Roo.tree.TreeNodeUI;
35230
35231     /**
35232      * Read-only. The UI for this node
35233      * @type TreeNodeUI
35234      */
35235     this.ui = new uiClass(this);
35236     
35237     // finally support items[]
35238     if (typeof(this.attributes.items) == 'undefined' || !this.attributes.items) {
35239         return;
35240     }
35241     
35242     
35243     Roo.each(this.attributes.items, function(c) {
35244         this.appendChild(Roo.factory(c,Roo.Tree));
35245     }, this);
35246     delete this.attributes.items;
35247     
35248     
35249     
35250 };
35251 Roo.extend(Roo.tree.TreeNode, Roo.data.Node, {
35252     preventHScroll: true,
35253     /**
35254      * Returns true if this node is expanded
35255      * @return {Boolean}
35256      */
35257     isExpanded : function(){
35258         return this.expanded;
35259     },
35260
35261     /**
35262      * Returns the UI object for this node
35263      * @return {TreeNodeUI}
35264      */
35265     getUI : function(){
35266         return this.ui;
35267     },
35268
35269     // private override
35270     setFirstChild : function(node){
35271         var of = this.firstChild;
35272         Roo.tree.TreeNode.superclass.setFirstChild.call(this, node);
35273         if(this.childrenRendered && of && node != of){
35274             of.renderIndent(true, true);
35275         }
35276         if(this.rendered){
35277             this.renderIndent(true, true);
35278         }
35279     },
35280
35281     // private override
35282     setLastChild : function(node){
35283         var ol = this.lastChild;
35284         Roo.tree.TreeNode.superclass.setLastChild.call(this, node);
35285         if(this.childrenRendered && ol && node != ol){
35286             ol.renderIndent(true, true);
35287         }
35288         if(this.rendered){
35289             this.renderIndent(true, true);
35290         }
35291     },
35292
35293     // these methods are overridden to provide lazy rendering support
35294     // private override
35295     appendChild : function()
35296     {
35297         var node = Roo.tree.TreeNode.superclass.appendChild.apply(this, arguments);
35298         if(node && this.childrenRendered){
35299             node.render();
35300         }
35301         this.ui.updateExpandIcon();
35302         return node;
35303     },
35304
35305     // private override
35306     removeChild : function(node){
35307         this.ownerTree.getSelectionModel().unselect(node);
35308         Roo.tree.TreeNode.superclass.removeChild.apply(this, arguments);
35309         // if it's been rendered remove dom node
35310         if(this.childrenRendered){
35311             node.ui.remove();
35312         }
35313         if(this.childNodes.length < 1){
35314             this.collapse(false, false);
35315         }else{
35316             this.ui.updateExpandIcon();
35317         }
35318         if(!this.firstChild) {
35319             this.childrenRendered = false;
35320         }
35321         return node;
35322     },
35323
35324     // private override
35325     insertBefore : function(node, refNode){
35326         var newNode = Roo.tree.TreeNode.superclass.insertBefore.apply(this, arguments);
35327         if(newNode && refNode && this.childrenRendered){
35328             node.render();
35329         }
35330         this.ui.updateExpandIcon();
35331         return newNode;
35332     },
35333
35334     /**
35335      * Sets the text for this node
35336      * @param {String} text
35337      */
35338     setText : function(text){
35339         var oldText = this.text;
35340         this.text = text;
35341         this.attributes.text = text;
35342         if(this.rendered){ // event without subscribing
35343             this.ui.onTextChange(this, text, oldText);
35344         }
35345         this.fireEvent("textchange", this, text, oldText);
35346     },
35347
35348     /**
35349      * Triggers selection of this node
35350      */
35351     select : function(){
35352         this.getOwnerTree().getSelectionModel().select(this);
35353     },
35354
35355     /**
35356      * Triggers deselection of this node
35357      */
35358     unselect : function(){
35359         this.getOwnerTree().getSelectionModel().unselect(this);
35360     },
35361
35362     /**
35363      * Returns true if this node is selected
35364      * @return {Boolean}
35365      */
35366     isSelected : function(){
35367         return this.getOwnerTree().getSelectionModel().isSelected(this);
35368     },
35369
35370     /**
35371      * Expand this node.
35372      * @param {Boolean} deep (optional) True to expand all children as well
35373      * @param {Boolean} anim (optional) false to cancel the default animation
35374      * @param {Function} callback (optional) A callback to be called when
35375      * expanding this node completes (does not wait for deep expand to complete).
35376      * Called with 1 parameter, this node.
35377      */
35378     expand : function(deep, anim, callback){
35379         if(!this.expanded){
35380             if(this.fireEvent("beforeexpand", this, deep, anim) === false){
35381                 return;
35382             }
35383             if(!this.childrenRendered){
35384                 this.renderChildren();
35385             }
35386             this.expanded = true;
35387             
35388             if(!this.isHiddenRoot() && (this.getOwnerTree() && this.getOwnerTree().animate && anim !== false) || anim){
35389                 this.ui.animExpand(function(){
35390                     this.fireEvent("expand", this);
35391                     if(typeof callback == "function"){
35392                         callback(this);
35393                     }
35394                     if(deep === true){
35395                         this.expandChildNodes(true);
35396                     }
35397                 }.createDelegate(this));
35398                 return;
35399             }else{
35400                 this.ui.expand();
35401                 this.fireEvent("expand", this);
35402                 if(typeof callback == "function"){
35403                     callback(this);
35404                 }
35405             }
35406         }else{
35407            if(typeof callback == "function"){
35408                callback(this);
35409            }
35410         }
35411         if(deep === true){
35412             this.expandChildNodes(true);
35413         }
35414     },
35415
35416     isHiddenRoot : function(){
35417         return this.isRoot && !this.getOwnerTree().rootVisible;
35418     },
35419
35420     /**
35421      * Collapse this node.
35422      * @param {Boolean} deep (optional) True to collapse all children as well
35423      * @param {Boolean} anim (optional) false to cancel the default animation
35424      */
35425     collapse : function(deep, anim){
35426         if(this.expanded && !this.isHiddenRoot()){
35427             if(this.fireEvent("beforecollapse", this, deep, anim) === false){
35428                 return;
35429             }
35430             this.expanded = false;
35431             if((this.getOwnerTree().animate && anim !== false) || anim){
35432                 this.ui.animCollapse(function(){
35433                     this.fireEvent("collapse", this);
35434                     if(deep === true){
35435                         this.collapseChildNodes(true);
35436                     }
35437                 }.createDelegate(this));
35438                 return;
35439             }else{
35440                 this.ui.collapse();
35441                 this.fireEvent("collapse", this);
35442             }
35443         }
35444         if(deep === true){
35445             var cs = this.childNodes;
35446             for(var i = 0, len = cs.length; i < len; i++) {
35447                 cs[i].collapse(true, false);
35448             }
35449         }
35450     },
35451
35452     // private
35453     delayedExpand : function(delay){
35454         if(!this.expandProcId){
35455             this.expandProcId = this.expand.defer(delay, this);
35456         }
35457     },
35458
35459     // private
35460     cancelExpand : function(){
35461         if(this.expandProcId){
35462             clearTimeout(this.expandProcId);
35463         }
35464         this.expandProcId = false;
35465     },
35466
35467     /**
35468      * Toggles expanded/collapsed state of the node
35469      */
35470     toggle : function(){
35471         if(this.expanded){
35472             this.collapse();
35473         }else{
35474             this.expand();
35475         }
35476     },
35477
35478     /**
35479      * Ensures all parent nodes are expanded
35480      */
35481     ensureVisible : function(callback){
35482         var tree = this.getOwnerTree();
35483         tree.expandPath(this.parentNode.getPath(), false, function(){
35484             tree.getTreeEl().scrollChildIntoView(this.ui.anchor);
35485             Roo.callback(callback);
35486         }.createDelegate(this));
35487     },
35488
35489     /**
35490      * Expand all child nodes
35491      * @param {Boolean} deep (optional) true if the child nodes should also expand their child nodes
35492      */
35493     expandChildNodes : function(deep){
35494         var cs = this.childNodes;
35495         for(var i = 0, len = cs.length; i < len; i++) {
35496                 cs[i].expand(deep);
35497         }
35498     },
35499
35500     /**
35501      * Collapse all child nodes
35502      * @param {Boolean} deep (optional) true if the child nodes should also collapse their child nodes
35503      */
35504     collapseChildNodes : function(deep){
35505         var cs = this.childNodes;
35506         for(var i = 0, len = cs.length; i < len; i++) {
35507                 cs[i].collapse(deep);
35508         }
35509     },
35510
35511     /**
35512      * Disables this node
35513      */
35514     disable : function(){
35515         this.disabled = true;
35516         this.unselect();
35517         if(this.rendered && this.ui.onDisableChange){ // event without subscribing
35518             this.ui.onDisableChange(this, true);
35519         }
35520         this.fireEvent("disabledchange", this, true);
35521     },
35522
35523     /**
35524      * Enables this node
35525      */
35526     enable : function(){
35527         this.disabled = false;
35528         if(this.rendered && this.ui.onDisableChange){ // event without subscribing
35529             this.ui.onDisableChange(this, false);
35530         }
35531         this.fireEvent("disabledchange", this, false);
35532     },
35533
35534     // private
35535     renderChildren : function(suppressEvent){
35536         if(suppressEvent !== false){
35537             this.fireEvent("beforechildrenrendered", this);
35538         }
35539         var cs = this.childNodes;
35540         for(var i = 0, len = cs.length; i < len; i++){
35541             cs[i].render(true);
35542         }
35543         this.childrenRendered = true;
35544     },
35545
35546     // private
35547     sort : function(fn, scope){
35548         Roo.tree.TreeNode.superclass.sort.apply(this, arguments);
35549         if(this.childrenRendered){
35550             var cs = this.childNodes;
35551             for(var i = 0, len = cs.length; i < len; i++){
35552                 cs[i].render(true);
35553             }
35554         }
35555     },
35556
35557     // private
35558     render : function(bulkRender){
35559         this.ui.render(bulkRender);
35560         if(!this.rendered){
35561             this.rendered = true;
35562             if(this.expanded){
35563                 this.expanded = false;
35564                 this.expand(false, false);
35565             }
35566         }
35567     },
35568
35569     // private
35570     renderIndent : function(deep, refresh){
35571         if(refresh){
35572             this.ui.childIndent = null;
35573         }
35574         this.ui.renderIndent();
35575         if(deep === true && this.childrenRendered){
35576             var cs = this.childNodes;
35577             for(var i = 0, len = cs.length; i < len; i++){
35578                 cs[i].renderIndent(true, refresh);
35579             }
35580         }
35581     }
35582 });/*
35583  * Based on:
35584  * Ext JS Library 1.1.1
35585  * Copyright(c) 2006-2007, Ext JS, LLC.
35586  *
35587  * Originally Released Under LGPL - original licence link has changed is not relivant.
35588  *
35589  * Fork - LGPL
35590  * <script type="text/javascript">
35591  */
35592  
35593 /**
35594  * @class Roo.tree.AsyncTreeNode
35595  * @extends Roo.tree.TreeNode
35596  * @cfg {TreeLoader} loader A TreeLoader to be used by this node (defaults to the loader defined on the tree)
35597  * @constructor
35598  * @param {Object/String} attributes The attributes/config for the node or just a string with the text for the node 
35599  */
35600  Roo.tree.AsyncTreeNode = function(config){
35601     this.loaded = false;
35602     this.loading = false;
35603     Roo.tree.AsyncTreeNode.superclass.constructor.apply(this, arguments);
35604     /**
35605     * @event beforeload
35606     * Fires before this node is loaded, return false to cancel
35607     * @param {Node} this This node
35608     */
35609     this.addEvents({'beforeload':true, 'load': true});
35610     /**
35611     * @event load
35612     * Fires when this node is loaded
35613     * @param {Node} this This node
35614     */
35615     /**
35616      * The loader used by this node (defaults to using the tree's defined loader)
35617      * @type TreeLoader
35618      * @property loader
35619      */
35620 };
35621 Roo.extend(Roo.tree.AsyncTreeNode, Roo.tree.TreeNode, {
35622     expand : function(deep, anim, callback){
35623         if(this.loading){ // if an async load is already running, waiting til it's done
35624             var timer;
35625             var f = function(){
35626                 if(!this.loading){ // done loading
35627                     clearInterval(timer);
35628                     this.expand(deep, anim, callback);
35629                 }
35630             }.createDelegate(this);
35631             timer = setInterval(f, 200);
35632             return;
35633         }
35634         if(!this.loaded){
35635             if(this.fireEvent("beforeload", this) === false){
35636                 return;
35637             }
35638             this.loading = true;
35639             this.ui.beforeLoad(this);
35640             var loader = this.loader || this.attributes.loader || this.getOwnerTree().getLoader();
35641             if(loader){
35642                 loader.load(this, this.loadComplete.createDelegate(this, [deep, anim, callback]));
35643                 return;
35644             }
35645         }
35646         Roo.tree.AsyncTreeNode.superclass.expand.call(this, deep, anim, callback);
35647     },
35648     
35649     /**
35650      * Returns true if this node is currently loading
35651      * @return {Boolean}
35652      */
35653     isLoading : function(){
35654         return this.loading;  
35655     },
35656     
35657     loadComplete : function(deep, anim, callback){
35658         this.loading = false;
35659         this.loaded = true;
35660         this.ui.afterLoad(this);
35661         this.fireEvent("load", this);
35662         this.expand(deep, anim, callback);
35663     },
35664     
35665     /**
35666      * Returns true if this node has been loaded
35667      * @return {Boolean}
35668      */
35669     isLoaded : function(){
35670         return this.loaded;
35671     },
35672     
35673     hasChildNodes : function(){
35674         if(!this.isLeaf() && !this.loaded){
35675             return true;
35676         }else{
35677             return Roo.tree.AsyncTreeNode.superclass.hasChildNodes.call(this);
35678         }
35679     },
35680
35681     /**
35682      * Trigger a reload for this node
35683      * @param {Function} callback
35684      */
35685     reload : function(callback){
35686         this.collapse(false, false);
35687         while(this.firstChild){
35688             this.removeChild(this.firstChild);
35689         }
35690         this.childrenRendered = false;
35691         this.loaded = false;
35692         if(this.isHiddenRoot()){
35693             this.expanded = false;
35694         }
35695         this.expand(false, false, callback);
35696     }
35697 });/*
35698  * Based on:
35699  * Ext JS Library 1.1.1
35700  * Copyright(c) 2006-2007, Ext JS, LLC.
35701  *
35702  * Originally Released Under LGPL - original licence link has changed is not relivant.
35703  *
35704  * Fork - LGPL
35705  * <script type="text/javascript">
35706  */
35707  
35708 /**
35709  * @class Roo.tree.TreeNodeUI
35710  * @constructor
35711  * @param {Object} node The node to render
35712  * The TreeNode UI implementation is separate from the
35713  * tree implementation. Unless you are customizing the tree UI,
35714  * you should never have to use this directly.
35715  */
35716 Roo.tree.TreeNodeUI = function(node){
35717     this.node = node;
35718     this.rendered = false;
35719     this.animating = false;
35720     this.emptyIcon = Roo.BLANK_IMAGE_URL;
35721 };
35722
35723 Roo.tree.TreeNodeUI.prototype = {
35724     removeChild : function(node){
35725         if(this.rendered){
35726             this.ctNode.removeChild(node.ui.getEl());
35727         }
35728     },
35729
35730     beforeLoad : function(){
35731          this.addClass("x-tree-node-loading");
35732     },
35733
35734     afterLoad : function(){
35735          this.removeClass("x-tree-node-loading");
35736     },
35737
35738     onTextChange : function(node, text, oldText){
35739         if(this.rendered){
35740             this.textNode.innerHTML = text;
35741         }
35742     },
35743
35744     onDisableChange : function(node, state){
35745         this.disabled = state;
35746         if(state){
35747             this.addClass("x-tree-node-disabled");
35748         }else{
35749             this.removeClass("x-tree-node-disabled");
35750         }
35751     },
35752
35753     onSelectedChange : function(state){
35754         if(state){
35755             this.focus();
35756             this.addClass("x-tree-selected");
35757         }else{
35758             //this.blur();
35759             this.removeClass("x-tree-selected");
35760         }
35761     },
35762
35763     onMove : function(tree, node, oldParent, newParent, index, refNode){
35764         this.childIndent = null;
35765         if(this.rendered){
35766             var targetNode = newParent.ui.getContainer();
35767             if(!targetNode){//target not rendered
35768                 this.holder = document.createElement("div");
35769                 this.holder.appendChild(this.wrap);
35770                 return;
35771             }
35772             var insertBefore = refNode ? refNode.ui.getEl() : null;
35773             if(insertBefore){
35774                 targetNode.insertBefore(this.wrap, insertBefore);
35775             }else{
35776                 targetNode.appendChild(this.wrap);
35777             }
35778             this.node.renderIndent(true);
35779         }
35780     },
35781
35782     addClass : function(cls){
35783         if(this.elNode){
35784             Roo.fly(this.elNode).addClass(cls);
35785         }
35786     },
35787
35788     removeClass : function(cls){
35789         if(this.elNode){
35790             Roo.fly(this.elNode).removeClass(cls);
35791         }
35792     },
35793
35794     remove : function(){
35795         if(this.rendered){
35796             this.holder = document.createElement("div");
35797             this.holder.appendChild(this.wrap);
35798         }
35799     },
35800
35801     fireEvent : function(){
35802         return this.node.fireEvent.apply(this.node, arguments);
35803     },
35804
35805     initEvents : function(){
35806         this.node.on("move", this.onMove, this);
35807         var E = Roo.EventManager;
35808         var a = this.anchor;
35809
35810         var el = Roo.fly(a, '_treeui');
35811
35812         if(Roo.isOpera){ // opera render bug ignores the CSS
35813             el.setStyle("text-decoration", "none");
35814         }
35815
35816         el.on("click", this.onClick, this);
35817         el.on("dblclick", this.onDblClick, this);
35818
35819         if(this.checkbox){
35820             Roo.EventManager.on(this.checkbox,
35821                     Roo.isIE ? 'click' : 'change', this.onCheckChange, this);
35822         }
35823
35824         el.on("contextmenu", this.onContextMenu, this);
35825
35826         var icon = Roo.fly(this.iconNode);
35827         icon.on("click", this.onClick, this);
35828         icon.on("dblclick", this.onDblClick, this);
35829         icon.on("contextmenu", this.onContextMenu, this);
35830         E.on(this.ecNode, "click", this.ecClick, this, true);
35831
35832         if(this.node.disabled){
35833             this.addClass("x-tree-node-disabled");
35834         }
35835         if(this.node.hidden){
35836             this.addClass("x-tree-node-disabled");
35837         }
35838         var ot = this.node.getOwnerTree();
35839         var dd = ot ? (ot.enableDD || ot.enableDrag || ot.enableDrop) : false;
35840         if(dd && (!this.node.isRoot || ot.rootVisible)){
35841             Roo.dd.Registry.register(this.elNode, {
35842                 node: this.node,
35843                 handles: this.getDDHandles(),
35844                 isHandle: false
35845             });
35846         }
35847     },
35848
35849     getDDHandles : function(){
35850         return [this.iconNode, this.textNode];
35851     },
35852
35853     hide : function(){
35854         if(this.rendered){
35855             this.wrap.style.display = "none";
35856         }
35857     },
35858
35859     show : function(){
35860         if(this.rendered){
35861             this.wrap.style.display = "";
35862         }
35863     },
35864
35865     onContextMenu : function(e){
35866         if (this.node.hasListener("contextmenu") || this.node.getOwnerTree().hasListener("contextmenu")) {
35867             e.preventDefault();
35868             this.focus();
35869             this.fireEvent("contextmenu", this.node, e);
35870         }
35871     },
35872
35873     onClick : function(e){
35874         if(this.dropping){
35875             e.stopEvent();
35876             return;
35877         }
35878         if(this.fireEvent("beforeclick", this.node, e) !== false){
35879             if(!this.disabled && this.node.attributes.href){
35880                 this.fireEvent("click", this.node, e);
35881                 return;
35882             }
35883             e.preventDefault();
35884             if(this.disabled){
35885                 return;
35886             }
35887
35888             if(this.node.attributes.singleClickExpand && !this.animating && this.node.hasChildNodes()){
35889                 this.node.toggle();
35890             }
35891
35892             this.fireEvent("click", this.node, e);
35893         }else{
35894             e.stopEvent();
35895         }
35896     },
35897
35898     onDblClick : function(e){
35899         e.preventDefault();
35900         if(this.disabled){
35901             return;
35902         }
35903         if(this.checkbox){
35904             this.toggleCheck();
35905         }
35906         if(!this.animating && this.node.hasChildNodes()){
35907             this.node.toggle();
35908         }
35909         this.fireEvent("dblclick", this.node, e);
35910     },
35911
35912     onCheckChange : function(){
35913         var checked = this.checkbox.checked;
35914         this.node.attributes.checked = checked;
35915         this.fireEvent('checkchange', this.node, checked);
35916     },
35917
35918     ecClick : function(e){
35919         if(!this.animating && this.node.hasChildNodes()){
35920             this.node.toggle();
35921         }
35922     },
35923
35924     startDrop : function(){
35925         this.dropping = true;
35926     },
35927
35928     // delayed drop so the click event doesn't get fired on a drop
35929     endDrop : function(){
35930        setTimeout(function(){
35931            this.dropping = false;
35932        }.createDelegate(this), 50);
35933     },
35934
35935     expand : function(){
35936         this.updateExpandIcon();
35937         this.ctNode.style.display = "";
35938     },
35939
35940     focus : function(){
35941         if(!this.node.preventHScroll){
35942             try{this.anchor.focus();
35943             }catch(e){}
35944         }else if(!Roo.isIE){
35945             try{
35946                 var noscroll = this.node.getOwnerTree().getTreeEl().dom;
35947                 var l = noscroll.scrollLeft;
35948                 this.anchor.focus();
35949                 noscroll.scrollLeft = l;
35950             }catch(e){}
35951         }
35952     },
35953
35954     toggleCheck : function(value){
35955         var cb = this.checkbox;
35956         if(cb){
35957             cb.checked = (value === undefined ? !cb.checked : value);
35958         }
35959     },
35960
35961     blur : function(){
35962         try{
35963             this.anchor.blur();
35964         }catch(e){}
35965     },
35966
35967     animExpand : function(callback){
35968         var ct = Roo.get(this.ctNode);
35969         ct.stopFx();
35970         if(!this.node.hasChildNodes()){
35971             this.updateExpandIcon();
35972             this.ctNode.style.display = "";
35973             Roo.callback(callback);
35974             return;
35975         }
35976         this.animating = true;
35977         this.updateExpandIcon();
35978
35979         ct.slideIn('t', {
35980            callback : function(){
35981                this.animating = false;
35982                Roo.callback(callback);
35983             },
35984             scope: this,
35985             duration: this.node.ownerTree.duration || .25
35986         });
35987     },
35988
35989     highlight : function(){
35990         var tree = this.node.getOwnerTree();
35991         Roo.fly(this.wrap).highlight(
35992             tree.hlColor || "C3DAF9",
35993             {endColor: tree.hlBaseColor}
35994         );
35995     },
35996
35997     collapse : function(){
35998         this.updateExpandIcon();
35999         this.ctNode.style.display = "none";
36000     },
36001
36002     animCollapse : function(callback){
36003         var ct = Roo.get(this.ctNode);
36004         ct.enableDisplayMode('block');
36005         ct.stopFx();
36006
36007         this.animating = true;
36008         this.updateExpandIcon();
36009
36010         ct.slideOut('t', {
36011             callback : function(){
36012                this.animating = false;
36013                Roo.callback(callback);
36014             },
36015             scope: this,
36016             duration: this.node.ownerTree.duration || .25
36017         });
36018     },
36019
36020     getContainer : function(){
36021         return this.ctNode;
36022     },
36023
36024     getEl : function(){
36025         return this.wrap;
36026     },
36027
36028     appendDDGhost : function(ghostNode){
36029         ghostNode.appendChild(this.elNode.cloneNode(true));
36030     },
36031
36032     getDDRepairXY : function(){
36033         return Roo.lib.Dom.getXY(this.iconNode);
36034     },
36035
36036     onRender : function(){
36037         this.render();
36038     },
36039
36040     render : function(bulkRender){
36041         var n = this.node, a = n.attributes;
36042         var targetNode = n.parentNode ?
36043               n.parentNode.ui.getContainer() : n.ownerTree.innerCt.dom;
36044
36045         if(!this.rendered){
36046             this.rendered = true;
36047
36048             this.renderElements(n, a, targetNode, bulkRender);
36049
36050             if(a.qtip){
36051                if(this.textNode.setAttributeNS){
36052                    this.textNode.setAttributeNS("ext", "qtip", a.qtip);
36053                    if(a.qtipTitle){
36054                        this.textNode.setAttributeNS("ext", "qtitle", a.qtipTitle);
36055                    }
36056                }else{
36057                    this.textNode.setAttribute("ext:qtip", a.qtip);
36058                    if(a.qtipTitle){
36059                        this.textNode.setAttribute("ext:qtitle", a.qtipTitle);
36060                    }
36061                }
36062             }else if(a.qtipCfg){
36063                 a.qtipCfg.target = Roo.id(this.textNode);
36064                 Roo.QuickTips.register(a.qtipCfg);
36065             }
36066             this.initEvents();
36067             if(!this.node.expanded){
36068                 this.updateExpandIcon();
36069             }
36070         }else{
36071             if(bulkRender === true) {
36072                 targetNode.appendChild(this.wrap);
36073             }
36074         }
36075     },
36076
36077     renderElements : function(n, a, targetNode, bulkRender)
36078     {
36079         // add some indent caching, this helps performance when rendering a large tree
36080         this.indentMarkup = n.parentNode ? n.parentNode.ui.getChildIndent() : '';
36081         var t = n.getOwnerTree();
36082         var txt = t && t.renderer ? t.renderer(n.attributes) : Roo.util.Format.htmlEncode(n.text);
36083         if (typeof(n.attributes.html) != 'undefined') {
36084             txt = n.attributes.html;
36085         }
36086         var tip = t && t.rendererTip ? t.rendererTip(n.attributes) : txt;
36087         var cb = typeof a.checked == 'boolean';
36088         var href = a.href ? a.href : Roo.isGecko ? "" : "#";
36089         var buf = ['<li class="x-tree-node"><div class="x-tree-node-el ', a.cls,'">',
36090             '<span class="x-tree-node-indent">',this.indentMarkup,"</span>",
36091             '<img src="', this.emptyIcon, '" class="x-tree-ec-icon" />',
36092             '<img src="', a.icon || this.emptyIcon, '" class="x-tree-node-icon',(a.icon ? " x-tree-node-inline-icon" : ""),(a.iconCls ? " "+a.iconCls : ""),'" unselectable="on" />',
36093             cb ? ('<input class="x-tree-node-cb" type="checkbox" ' + (a.checked ? 'checked="checked" />' : ' />')) : '',
36094             '<a hidefocus="on" href="',href,'" tabIndex="1" ',
36095              a.hrefTarget ? ' target="'+a.hrefTarget+'"' : "", 
36096                 '><span unselectable="on" qtip="' , tip ,'">',txt,"</span></a></div>",
36097             '<ul class="x-tree-node-ct" style="display:none;"></ul>',
36098             "</li>"];
36099
36100         if(bulkRender !== true && n.nextSibling && n.nextSibling.ui.getEl()){
36101             this.wrap = Roo.DomHelper.insertHtml("beforeBegin",
36102                                 n.nextSibling.ui.getEl(), buf.join(""));
36103         }else{
36104             this.wrap = Roo.DomHelper.insertHtml("beforeEnd", targetNode, buf.join(""));
36105         }
36106
36107         this.elNode = this.wrap.childNodes[0];
36108         this.ctNode = this.wrap.childNodes[1];
36109         var cs = this.elNode.childNodes;
36110         this.indentNode = cs[0];
36111         this.ecNode = cs[1];
36112         this.iconNode = cs[2];
36113         var index = 3;
36114         if(cb){
36115             this.checkbox = cs[3];
36116             index++;
36117         }
36118         this.anchor = cs[index];
36119         this.textNode = cs[index].firstChild;
36120     },
36121
36122     getAnchor : function(){
36123         return this.anchor;
36124     },
36125
36126     getTextEl : function(){
36127         return this.textNode;
36128     },
36129
36130     getIconEl : function(){
36131         return this.iconNode;
36132     },
36133
36134     isChecked : function(){
36135         return this.checkbox ? this.checkbox.checked : false;
36136     },
36137
36138     updateExpandIcon : function(){
36139         if(this.rendered){
36140             var n = this.node, c1, c2;
36141             var cls = n.isLast() ? "x-tree-elbow-end" : "x-tree-elbow";
36142             var hasChild = n.hasChildNodes();
36143             if(hasChild){
36144                 if(n.expanded){
36145                     cls += "-minus";
36146                     c1 = "x-tree-node-collapsed";
36147                     c2 = "x-tree-node-expanded";
36148                 }else{
36149                     cls += "-plus";
36150                     c1 = "x-tree-node-expanded";
36151                     c2 = "x-tree-node-collapsed";
36152                 }
36153                 if(this.wasLeaf){
36154                     this.removeClass("x-tree-node-leaf");
36155                     this.wasLeaf = false;
36156                 }
36157                 if(this.c1 != c1 || this.c2 != c2){
36158                     Roo.fly(this.elNode).replaceClass(c1, c2);
36159                     this.c1 = c1; this.c2 = c2;
36160                 }
36161             }else{
36162                 // this changes non-leafs into leafs if they have no children.
36163                 // it's not very rational behaviour..
36164                 
36165                 if(!this.wasLeaf && this.node.leaf){
36166                     Roo.fly(this.elNode).replaceClass("x-tree-node-expanded", "x-tree-node-leaf");
36167                     delete this.c1;
36168                     delete this.c2;
36169                     this.wasLeaf = true;
36170                 }
36171             }
36172             var ecc = "x-tree-ec-icon "+cls;
36173             if(this.ecc != ecc){
36174                 this.ecNode.className = ecc;
36175                 this.ecc = ecc;
36176             }
36177         }
36178     },
36179
36180     getChildIndent : function(){
36181         if(!this.childIndent){
36182             var buf = [];
36183             var p = this.node;
36184             while(p){
36185                 if(!p.isRoot || (p.isRoot && p.ownerTree.rootVisible)){
36186                     if(!p.isLast()) {
36187                         buf.unshift('<img src="'+this.emptyIcon+'" class="x-tree-elbow-line" />');
36188                     } else {
36189                         buf.unshift('<img src="'+this.emptyIcon+'" class="x-tree-icon" />');
36190                     }
36191                 }
36192                 p = p.parentNode;
36193             }
36194             this.childIndent = buf.join("");
36195         }
36196         return this.childIndent;
36197     },
36198
36199     renderIndent : function(){
36200         if(this.rendered){
36201             var indent = "";
36202             var p = this.node.parentNode;
36203             if(p){
36204                 indent = p.ui.getChildIndent();
36205             }
36206             if(this.indentMarkup != indent){ // don't rerender if not required
36207                 this.indentNode.innerHTML = indent;
36208                 this.indentMarkup = indent;
36209             }
36210             this.updateExpandIcon();
36211         }
36212     }
36213 };
36214
36215 Roo.tree.RootTreeNodeUI = function(){
36216     Roo.tree.RootTreeNodeUI.superclass.constructor.apply(this, arguments);
36217 };
36218 Roo.extend(Roo.tree.RootTreeNodeUI, Roo.tree.TreeNodeUI, {
36219     render : function(){
36220         if(!this.rendered){
36221             var targetNode = this.node.ownerTree.innerCt.dom;
36222             this.node.expanded = true;
36223             targetNode.innerHTML = '<div class="x-tree-root-node"></div>';
36224             this.wrap = this.ctNode = targetNode.firstChild;
36225         }
36226     },
36227     collapse : function(){
36228     },
36229     expand : function(){
36230     }
36231 });/*
36232  * Based on:
36233  * Ext JS Library 1.1.1
36234  * Copyright(c) 2006-2007, Ext JS, LLC.
36235  *
36236  * Originally Released Under LGPL - original licence link has changed is not relivant.
36237  *
36238  * Fork - LGPL
36239  * <script type="text/javascript">
36240  */
36241 /**
36242  * @class Roo.tree.TreeLoader
36243  * @extends Roo.util.Observable
36244  * A TreeLoader provides for lazy loading of an {@link Roo.tree.TreeNode}'s child
36245  * nodes from a specified URL. The response must be a javascript Array definition
36246  * who's elements are node definition objects. eg:
36247  * <pre><code>
36248 {  success : true,
36249    data :      [
36250    
36251     { 'id': 1, 'text': 'A folder Node', 'leaf': false },
36252     { 'id': 2, 'text': 'A leaf Node', 'leaf': true }
36253     ]
36254 }
36255
36256
36257 </code></pre>
36258  * <br><br>
36259  * The old style respose with just an array is still supported, but not recommended.
36260  * <br><br>
36261  *
36262  * A server request is sent, and child nodes are loaded only when a node is expanded.
36263  * The loading node's id is passed to the server under the parameter name "node" to
36264  * enable the server to produce the correct child nodes.
36265  * <br><br>
36266  * To pass extra parameters, an event handler may be attached to the "beforeload"
36267  * event, and the parameters specified in the TreeLoader's baseParams property:
36268  * <pre><code>
36269     myTreeLoader.on("beforeload", function(treeLoader, node) {
36270         this.baseParams.category = node.attributes.category;
36271     }, this);
36272     
36273 </code></pre>
36274  *
36275  * This would pass an HTTP parameter called "category" to the server containing
36276  * the value of the Node's "category" attribute.
36277  * @constructor
36278  * Creates a new Treeloader.
36279  * @param {Object} config A config object containing config properties.
36280  */
36281 Roo.tree.TreeLoader = function(config){
36282     this.baseParams = {};
36283     this.requestMethod = "POST";
36284     Roo.apply(this, config);
36285
36286     this.addEvents({
36287     
36288         /**
36289          * @event beforeload
36290          * Fires before a network request is made to retrieve the Json text which specifies a node's children.
36291          * @param {Object} This TreeLoader object.
36292          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
36293          * @param {Object} callback The callback function specified in the {@link #load} call.
36294          */
36295         beforeload : true,
36296         /**
36297          * @event load
36298          * Fires when the node has been successfuly loaded.
36299          * @param {Object} This TreeLoader object.
36300          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
36301          * @param {Object} response The response object containing the data from the server.
36302          */
36303         load : true,
36304         /**
36305          * @event loadexception
36306          * Fires if the network request failed.
36307          * @param {Object} This TreeLoader object.
36308          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
36309          * @param {Object} response The response object containing the data from the server.
36310          */
36311         loadexception : true,
36312         /**
36313          * @event create
36314          * Fires before a node is created, enabling you to return custom Node types 
36315          * @param {Object} This TreeLoader object.
36316          * @param {Object} attr - the data returned from the AJAX call (modify it to suit)
36317          */
36318         create : true
36319     });
36320
36321     Roo.tree.TreeLoader.superclass.constructor.call(this);
36322 };
36323
36324 Roo.extend(Roo.tree.TreeLoader, Roo.util.Observable, {
36325     /**
36326     * @cfg {String} dataUrl The URL from which to request a Json string which
36327     * specifies an array of node definition object representing the child nodes
36328     * to be loaded.
36329     */
36330     /**
36331     * @cfg {String} requestMethod either GET or POST
36332     * defaults to POST (due to BC)
36333     * to be loaded.
36334     */
36335     /**
36336     * @cfg {Object} baseParams (optional) An object containing properties which
36337     * specify HTTP parameters to be passed to each request for child nodes.
36338     */
36339     /**
36340     * @cfg {Object} baseAttrs (optional) An object containing attributes to be added to all nodes
36341     * created by this loader. If the attributes sent by the server have an attribute in this object,
36342     * they take priority.
36343     */
36344     /**
36345     * @cfg {Object} uiProviders (optional) An object containing properties which
36346     * 
36347     * DEPRECATED - use 'create' event handler to modify attributes - which affect creation.
36348     * specify custom {@link Roo.tree.TreeNodeUI} implementations. If the optional
36349     * <i>uiProvider</i> attribute of a returned child node is a string rather
36350     * than a reference to a TreeNodeUI implementation, this that string value
36351     * is used as a property name in the uiProviders object. You can define the provider named
36352     * 'default' , and this will be used for all nodes (if no uiProvider is delivered by the node data)
36353     */
36354     uiProviders : {},
36355
36356     /**
36357     * @cfg {Boolean} clearOnLoad (optional) Default to true. Remove previously existing
36358     * child nodes before loading.
36359     */
36360     clearOnLoad : true,
36361
36362     /**
36363     * @cfg {String} root (optional) Default to false. Use this to read data from an object 
36364     * property on loading, rather than expecting an array. (eg. more compatible to a standard
36365     * Grid query { data : [ .....] }
36366     */
36367     
36368     root : false,
36369      /**
36370     * @cfg {String} queryParam (optional) 
36371     * Name of the query as it will be passed on the querystring (defaults to 'node')
36372     * eg. the request will be ?node=[id]
36373     */
36374     
36375     
36376     queryParam: false,
36377     
36378     /**
36379      * Load an {@link Roo.tree.TreeNode} from the URL specified in the constructor.
36380      * This is called automatically when a node is expanded, but may be used to reload
36381      * a node (or append new children if the {@link #clearOnLoad} option is false.)
36382      * @param {Roo.tree.TreeNode} node
36383      * @param {Function} callback
36384      */
36385     load : function(node, callback){
36386         if(this.clearOnLoad){
36387             while(node.firstChild){
36388                 node.removeChild(node.firstChild);
36389             }
36390         }
36391         if(node.attributes.children){ // preloaded json children
36392             var cs = node.attributes.children;
36393             for(var i = 0, len = cs.length; i < len; i++){
36394                 node.appendChild(this.createNode(cs[i]));
36395             }
36396             if(typeof callback == "function"){
36397                 callback();
36398             }
36399         }else if(this.dataUrl){
36400             this.requestData(node, callback);
36401         }
36402     },
36403
36404     getParams: function(node){
36405         var buf = [], bp = this.baseParams;
36406         for(var key in bp){
36407             if(typeof bp[key] != "function"){
36408                 buf.push(encodeURIComponent(key), "=", encodeURIComponent(bp[key]), "&");
36409             }
36410         }
36411         var n = this.queryParam === false ? 'node' : this.queryParam;
36412         buf.push(n + "=", encodeURIComponent(node.id));
36413         return buf.join("");
36414     },
36415
36416     requestData : function(node, callback){
36417         if(this.fireEvent("beforeload", this, node, callback) !== false){
36418             this.transId = Roo.Ajax.request({
36419                 method:this.requestMethod,
36420                 url: this.dataUrl||this.url,
36421                 success: this.handleResponse,
36422                 failure: this.handleFailure,
36423                 scope: this,
36424                 argument: {callback: callback, node: node},
36425                 params: this.getParams(node)
36426             });
36427         }else{
36428             // if the load is cancelled, make sure we notify
36429             // the node that we are done
36430             if(typeof callback == "function"){
36431                 callback();
36432             }
36433         }
36434     },
36435
36436     isLoading : function(){
36437         return this.transId ? true : false;
36438     },
36439
36440     abort : function(){
36441         if(this.isLoading()){
36442             Roo.Ajax.abort(this.transId);
36443         }
36444     },
36445
36446     // private
36447     createNode : function(attr)
36448     {
36449         // apply baseAttrs, nice idea Corey!
36450         if(this.baseAttrs){
36451             Roo.applyIf(attr, this.baseAttrs);
36452         }
36453         if(this.applyLoader !== false){
36454             attr.loader = this;
36455         }
36456         // uiProvider = depreciated..
36457         
36458         if(typeof(attr.uiProvider) == 'string'){
36459            attr.uiProvider = this.uiProviders[attr.uiProvider] || 
36460                 /**  eval:var:attr */ eval(attr.uiProvider);
36461         }
36462         if(typeof(this.uiProviders['default']) != 'undefined') {
36463             attr.uiProvider = this.uiProviders['default'];
36464         }
36465         
36466         this.fireEvent('create', this, attr);
36467         
36468         attr.leaf  = typeof(attr.leaf) == 'string' ? attr.leaf * 1 : attr.leaf;
36469         return(attr.leaf ?
36470                         new Roo.tree.TreeNode(attr) :
36471                         new Roo.tree.AsyncTreeNode(attr));
36472     },
36473
36474     processResponse : function(response, node, callback)
36475     {
36476         var json = response.responseText;
36477         try {
36478             
36479             var o = Roo.decode(json);
36480             
36481             if (this.root === false && typeof(o.success) != undefined) {
36482                 this.root = 'data'; // the default behaviour for list like data..
36483                 }
36484                 
36485             if (this.root !== false &&  !o.success) {
36486                 // it's a failure condition.
36487                 var a = response.argument;
36488                 this.fireEvent("loadexception", this, a.node, response);
36489                 Roo.log("Load failed - should have a handler really");
36490                 return;
36491             }
36492             
36493             
36494             
36495             if (this.root !== false) {
36496                  o = o[this.root];
36497             }
36498             
36499             for(var i = 0, len = o.length; i < len; i++){
36500                 var n = this.createNode(o[i]);
36501                 if(n){
36502                     node.appendChild(n);
36503                 }
36504             }
36505             if(typeof callback == "function"){
36506                 callback(this, node);
36507             }
36508         }catch(e){
36509             this.handleFailure(response);
36510         }
36511     },
36512
36513     handleResponse : function(response){
36514         this.transId = false;
36515         var a = response.argument;
36516         this.processResponse(response, a.node, a.callback);
36517         this.fireEvent("load", this, a.node, response);
36518     },
36519
36520     handleFailure : function(response)
36521     {
36522         // should handle failure better..
36523         this.transId = false;
36524         var a = response.argument;
36525         this.fireEvent("loadexception", this, a.node, response);
36526         if(typeof a.callback == "function"){
36527             a.callback(this, a.node);
36528         }
36529     }
36530 });/*
36531  * Based on:
36532  * Ext JS Library 1.1.1
36533  * Copyright(c) 2006-2007, Ext JS, LLC.
36534  *
36535  * Originally Released Under LGPL - original licence link has changed is not relivant.
36536  *
36537  * Fork - LGPL
36538  * <script type="text/javascript">
36539  */
36540
36541 /**
36542 * @class Roo.tree.TreeFilter
36543 * Note this class is experimental and doesn't update the indent (lines) or expand collapse icons of the nodes
36544 * @param {TreePanel} tree
36545 * @param {Object} config (optional)
36546  */
36547 Roo.tree.TreeFilter = function(tree, config){
36548     this.tree = tree;
36549     this.filtered = {};
36550     Roo.apply(this, config);
36551 };
36552
36553 Roo.tree.TreeFilter.prototype = {
36554     clearBlank:false,
36555     reverse:false,
36556     autoClear:false,
36557     remove:false,
36558
36559      /**
36560      * Filter the data by a specific attribute.
36561      * @param {String/RegExp} value Either string that the attribute value
36562      * should start with or a RegExp to test against the attribute
36563      * @param {String} attr (optional) The attribute passed in your node's attributes collection. Defaults to "text".
36564      * @param {TreeNode} startNode (optional) The node to start the filter at.
36565      */
36566     filter : function(value, attr, startNode){
36567         attr = attr || "text";
36568         var f;
36569         if(typeof value == "string"){
36570             var vlen = value.length;
36571             // auto clear empty filter
36572             if(vlen == 0 && this.clearBlank){
36573                 this.clear();
36574                 return;
36575             }
36576             value = value.toLowerCase();
36577             f = function(n){
36578                 return n.attributes[attr].substr(0, vlen).toLowerCase() == value;
36579             };
36580         }else if(value.exec){ // regex?
36581             f = function(n){
36582                 return value.test(n.attributes[attr]);
36583             };
36584         }else{
36585             throw 'Illegal filter type, must be string or regex';
36586         }
36587         this.filterBy(f, null, startNode);
36588         },
36589
36590     /**
36591      * Filter by a function. The passed function will be called with each
36592      * node in the tree (or from the startNode). If the function returns true, the node is kept
36593      * otherwise it is filtered. If a node is filtered, its children are also filtered.
36594      * @param {Function} fn The filter function
36595      * @param {Object} scope (optional) The scope of the function (defaults to the current node)
36596      */
36597     filterBy : function(fn, scope, startNode){
36598         startNode = startNode || this.tree.root;
36599         if(this.autoClear){
36600             this.clear();
36601         }
36602         var af = this.filtered, rv = this.reverse;
36603         var f = function(n){
36604             if(n == startNode){
36605                 return true;
36606             }
36607             if(af[n.id]){
36608                 return false;
36609             }
36610             var m = fn.call(scope || n, n);
36611             if(!m || rv){
36612                 af[n.id] = n;
36613                 n.ui.hide();
36614                 return false;
36615             }
36616             return true;
36617         };
36618         startNode.cascade(f);
36619         if(this.remove){
36620            for(var id in af){
36621                if(typeof id != "function"){
36622                    var n = af[id];
36623                    if(n && n.parentNode){
36624                        n.parentNode.removeChild(n);
36625                    }
36626                }
36627            }
36628         }
36629     },
36630
36631     /**
36632      * Clears the current filter. Note: with the "remove" option
36633      * set a filter cannot be cleared.
36634      */
36635     clear : function(){
36636         var t = this.tree;
36637         var af = this.filtered;
36638         for(var id in af){
36639             if(typeof id != "function"){
36640                 var n = af[id];
36641                 if(n){
36642                     n.ui.show();
36643                 }
36644             }
36645         }
36646         this.filtered = {};
36647     }
36648 };
36649 /*
36650  * Based on:
36651  * Ext JS Library 1.1.1
36652  * Copyright(c) 2006-2007, Ext JS, LLC.
36653  *
36654  * Originally Released Under LGPL - original licence link has changed is not relivant.
36655  *
36656  * Fork - LGPL
36657  * <script type="text/javascript">
36658  */
36659  
36660
36661 /**
36662  * @class Roo.tree.TreeSorter
36663  * Provides sorting of nodes in a TreePanel
36664  * 
36665  * @cfg {Boolean} folderSort True to sort leaf nodes under non leaf nodes
36666  * @cfg {String} property The named attribute on the node to sort by (defaults to text)
36667  * @cfg {String} dir The direction to sort (asc or desc) (defaults to asc)
36668  * @cfg {String} leafAttr The attribute used to determine leaf nodes in folder sort (defaults to "leaf")
36669  * @cfg {Boolean} caseSensitive true for case sensitive sort (defaults to false)
36670  * @cfg {Function} sortType A custom "casting" function used to convert node values before sorting
36671  * @constructor
36672  * @param {TreePanel} tree
36673  * @param {Object} config
36674  */
36675 Roo.tree.TreeSorter = function(tree, config){
36676     Roo.apply(this, config);
36677     tree.on("beforechildrenrendered", this.doSort, this);
36678     tree.on("append", this.updateSort, this);
36679     tree.on("insert", this.updateSort, this);
36680     
36681     var dsc = this.dir && this.dir.toLowerCase() == "desc";
36682     var p = this.property || "text";
36683     var sortType = this.sortType;
36684     var fs = this.folderSort;
36685     var cs = this.caseSensitive === true;
36686     var leafAttr = this.leafAttr || 'leaf';
36687
36688     this.sortFn = function(n1, n2){
36689         if(fs){
36690             if(n1.attributes[leafAttr] && !n2.attributes[leafAttr]){
36691                 return 1;
36692             }
36693             if(!n1.attributes[leafAttr] && n2.attributes[leafAttr]){
36694                 return -1;
36695             }
36696         }
36697         var v1 = sortType ? sortType(n1) : (cs ? n1.attributes[p] : n1.attributes[p].toUpperCase());
36698         var v2 = sortType ? sortType(n2) : (cs ? n2.attributes[p] : n2.attributes[p].toUpperCase());
36699         if(v1 < v2){
36700                         return dsc ? +1 : -1;
36701                 }else if(v1 > v2){
36702                         return dsc ? -1 : +1;
36703         }else{
36704                 return 0;
36705         }
36706     };
36707 };
36708
36709 Roo.tree.TreeSorter.prototype = {
36710     doSort : function(node){
36711         node.sort(this.sortFn);
36712     },
36713     
36714     compareNodes : function(n1, n2){
36715         return (n1.text.toUpperCase() > n2.text.toUpperCase() ? 1 : -1);
36716     },
36717     
36718     updateSort : function(tree, node){
36719         if(node.childrenRendered){
36720             this.doSort.defer(1, this, [node]);
36721         }
36722     }
36723 };/*
36724  * Based on:
36725  * Ext JS Library 1.1.1
36726  * Copyright(c) 2006-2007, Ext JS, LLC.
36727  *
36728  * Originally Released Under LGPL - original licence link has changed is not relivant.
36729  *
36730  * Fork - LGPL
36731  * <script type="text/javascript">
36732  */
36733
36734 if(Roo.dd.DropZone){
36735     
36736 Roo.tree.TreeDropZone = function(tree, config){
36737     this.allowParentInsert = false;
36738     this.allowContainerDrop = false;
36739     this.appendOnly = false;
36740     Roo.tree.TreeDropZone.superclass.constructor.call(this, tree.innerCt, config);
36741     this.tree = tree;
36742     this.lastInsertClass = "x-tree-no-status";
36743     this.dragOverData = {};
36744 };
36745
36746 Roo.extend(Roo.tree.TreeDropZone, Roo.dd.DropZone, {
36747     ddGroup : "TreeDD",
36748     scroll:  true,
36749     
36750     expandDelay : 1000,
36751     
36752     expandNode : function(node){
36753         if(node.hasChildNodes() && !node.isExpanded()){
36754             node.expand(false, null, this.triggerCacheRefresh.createDelegate(this));
36755         }
36756     },
36757     
36758     queueExpand : function(node){
36759         this.expandProcId = this.expandNode.defer(this.expandDelay, this, [node]);
36760     },
36761     
36762     cancelExpand : function(){
36763         if(this.expandProcId){
36764             clearTimeout(this.expandProcId);
36765             this.expandProcId = false;
36766         }
36767     },
36768     
36769     isValidDropPoint : function(n, pt, dd, e, data){
36770         if(!n || !data){ return false; }
36771         var targetNode = n.node;
36772         var dropNode = data.node;
36773         // default drop rules
36774         if(!(targetNode && targetNode.isTarget && pt)){
36775             return false;
36776         }
36777         if(pt == "append" && targetNode.allowChildren === false){
36778             return false;
36779         }
36780         if((pt == "above" || pt == "below") && (targetNode.parentNode && targetNode.parentNode.allowChildren === false)){
36781             return false;
36782         }
36783         if(dropNode && (targetNode == dropNode || dropNode.contains(targetNode))){
36784             return false;
36785         }
36786         // reuse the object
36787         var overEvent = this.dragOverData;
36788         overEvent.tree = this.tree;
36789         overEvent.target = targetNode;
36790         overEvent.data = data;
36791         overEvent.point = pt;
36792         overEvent.source = dd;
36793         overEvent.rawEvent = e;
36794         overEvent.dropNode = dropNode;
36795         overEvent.cancel = false;  
36796         var result = this.tree.fireEvent("nodedragover", overEvent);
36797         return overEvent.cancel === false && result !== false;
36798     },
36799     
36800     getDropPoint : function(e, n, dd)
36801     {
36802         var tn = n.node;
36803         if(tn.isRoot){
36804             return tn.allowChildren !== false ? "append" : false; // always append for root
36805         }
36806         var dragEl = n.ddel;
36807         var t = Roo.lib.Dom.getY(dragEl), b = t + dragEl.offsetHeight;
36808         var y = Roo.lib.Event.getPageY(e);
36809         //var noAppend = tn.allowChildren === false || tn.isLeaf();
36810         
36811         // we may drop nodes anywhere, as long as allowChildren has not been set to false..
36812         var noAppend = tn.allowChildren === false;
36813         if(this.appendOnly || tn.parentNode.allowChildren === false){
36814             return noAppend ? false : "append";
36815         }
36816         var noBelow = false;
36817         if(!this.allowParentInsert){
36818             noBelow = tn.hasChildNodes() && tn.isExpanded();
36819         }
36820         var q = (b - t) / (noAppend ? 2 : 3);
36821         if(y >= t && y < (t + q)){
36822             return "above";
36823         }else if(!noBelow && (noAppend || y >= b-q && y <= b)){
36824             return "below";
36825         }else{
36826             return "append";
36827         }
36828     },
36829     
36830     onNodeEnter : function(n, dd, e, data)
36831     {
36832         this.cancelExpand();
36833     },
36834     
36835     onNodeOver : function(n, dd, e, data)
36836     {
36837        
36838         var pt = this.getDropPoint(e, n, dd);
36839         var node = n.node;
36840         
36841         // auto node expand check
36842         if(!this.expandProcId && pt == "append" && node.hasChildNodes() && !n.node.isExpanded()){
36843             this.queueExpand(node);
36844         }else if(pt != "append"){
36845             this.cancelExpand();
36846         }
36847         
36848         // set the insert point style on the target node
36849         var returnCls = this.dropNotAllowed;
36850         if(this.isValidDropPoint(n, pt, dd, e, data)){
36851            if(pt){
36852                var el = n.ddel;
36853                var cls;
36854                if(pt == "above"){
36855                    returnCls = n.node.isFirst() ? "x-tree-drop-ok-above" : "x-tree-drop-ok-between";
36856                    cls = "x-tree-drag-insert-above";
36857                }else if(pt == "below"){
36858                    returnCls = n.node.isLast() ? "x-tree-drop-ok-below" : "x-tree-drop-ok-between";
36859                    cls = "x-tree-drag-insert-below";
36860                }else{
36861                    returnCls = "x-tree-drop-ok-append";
36862                    cls = "x-tree-drag-append";
36863                }
36864                if(this.lastInsertClass != cls){
36865                    Roo.fly(el).replaceClass(this.lastInsertClass, cls);
36866                    this.lastInsertClass = cls;
36867                }
36868            }
36869        }
36870        return returnCls;
36871     },
36872     
36873     onNodeOut : function(n, dd, e, data){
36874         
36875         this.cancelExpand();
36876         this.removeDropIndicators(n);
36877     },
36878     
36879     onNodeDrop : function(n, dd, e, data){
36880         var point = this.getDropPoint(e, n, dd);
36881         var targetNode = n.node;
36882         targetNode.ui.startDrop();
36883         if(!this.isValidDropPoint(n, point, dd, e, data)){
36884             targetNode.ui.endDrop();
36885             return false;
36886         }
36887         // first try to find the drop node
36888         var dropNode = data.node || (dd.getTreeNode ? dd.getTreeNode(data, targetNode, point, e) : null);
36889         var dropEvent = {
36890             tree : this.tree,
36891             target: targetNode,
36892             data: data,
36893             point: point,
36894             source: dd,
36895             rawEvent: e,
36896             dropNode: dropNode,
36897             cancel: !dropNode   
36898         };
36899         var retval = this.tree.fireEvent("beforenodedrop", dropEvent);
36900         if(retval === false || dropEvent.cancel === true || !dropEvent.dropNode){
36901             targetNode.ui.endDrop();
36902             return false;
36903         }
36904         // allow target changing
36905         targetNode = dropEvent.target;
36906         if(point == "append" && !targetNode.isExpanded()){
36907             targetNode.expand(false, null, function(){
36908                 this.completeDrop(dropEvent);
36909             }.createDelegate(this));
36910         }else{
36911             this.completeDrop(dropEvent);
36912         }
36913         return true;
36914     },
36915     
36916     completeDrop : function(de){
36917         var ns = de.dropNode, p = de.point, t = de.target;
36918         if(!(ns instanceof Array)){
36919             ns = [ns];
36920         }
36921         var n;
36922         for(var i = 0, len = ns.length; i < len; i++){
36923             n = ns[i];
36924             if(p == "above"){
36925                 t.parentNode.insertBefore(n, t);
36926             }else if(p == "below"){
36927                 t.parentNode.insertBefore(n, t.nextSibling);
36928             }else{
36929                 t.appendChild(n);
36930             }
36931         }
36932         n.ui.focus();
36933         if(this.tree.hlDrop){
36934             n.ui.highlight();
36935         }
36936         t.ui.endDrop();
36937         this.tree.fireEvent("nodedrop", de);
36938     },
36939     
36940     afterNodeMoved : function(dd, data, e, targetNode, dropNode){
36941         if(this.tree.hlDrop){
36942             dropNode.ui.focus();
36943             dropNode.ui.highlight();
36944         }
36945         this.tree.fireEvent("nodedrop", this.tree, targetNode, data, dd, e);
36946     },
36947     
36948     getTree : function(){
36949         return this.tree;
36950     },
36951     
36952     removeDropIndicators : function(n){
36953         if(n && n.ddel){
36954             var el = n.ddel;
36955             Roo.fly(el).removeClass([
36956                     "x-tree-drag-insert-above",
36957                     "x-tree-drag-insert-below",
36958                     "x-tree-drag-append"]);
36959             this.lastInsertClass = "_noclass";
36960         }
36961     },
36962     
36963     beforeDragDrop : function(target, e, id){
36964         this.cancelExpand();
36965         return true;
36966     },
36967     
36968     afterRepair : function(data){
36969         if(data && Roo.enableFx){
36970             data.node.ui.highlight();
36971         }
36972         this.hideProxy();
36973     } 
36974     
36975 });
36976
36977 }
36978 /*
36979  * Based on:
36980  * Ext JS Library 1.1.1
36981  * Copyright(c) 2006-2007, Ext JS, LLC.
36982  *
36983  * Originally Released Under LGPL - original licence link has changed is not relivant.
36984  *
36985  * Fork - LGPL
36986  * <script type="text/javascript">
36987  */
36988  
36989
36990 if(Roo.dd.DragZone){
36991 Roo.tree.TreeDragZone = function(tree, config){
36992     Roo.tree.TreeDragZone.superclass.constructor.call(this, tree.getTreeEl(), config);
36993     this.tree = tree;
36994 };
36995
36996 Roo.extend(Roo.tree.TreeDragZone, Roo.dd.DragZone, {
36997     ddGroup : "TreeDD",
36998    
36999     onBeforeDrag : function(data, e){
37000         var n = data.node;
37001         return n && n.draggable && !n.disabled;
37002     },
37003      
37004     
37005     onInitDrag : function(e){
37006         var data = this.dragData;
37007         this.tree.getSelectionModel().select(data.node);
37008         this.proxy.update("");
37009         data.node.ui.appendDDGhost(this.proxy.ghost.dom);
37010         this.tree.fireEvent("startdrag", this.tree, data.node, e);
37011     },
37012     
37013     getRepairXY : function(e, data){
37014         return data.node.ui.getDDRepairXY();
37015     },
37016     
37017     onEndDrag : function(data, e){
37018         this.tree.fireEvent("enddrag", this.tree, data.node, e);
37019         
37020         
37021     },
37022     
37023     onValidDrop : function(dd, e, id){
37024         this.tree.fireEvent("dragdrop", this.tree, this.dragData.node, dd, e);
37025         this.hideProxy();
37026     },
37027     
37028     beforeInvalidDrop : function(e, id){
37029         // this scrolls the original position back into view
37030         var sm = this.tree.getSelectionModel();
37031         sm.clearSelections();
37032         sm.select(this.dragData.node);
37033     }
37034 });
37035 }/*
37036  * Based on:
37037  * Ext JS Library 1.1.1
37038  * Copyright(c) 2006-2007, Ext JS, LLC.
37039  *
37040  * Originally Released Under LGPL - original licence link has changed is not relivant.
37041  *
37042  * Fork - LGPL
37043  * <script type="text/javascript">
37044  */
37045 /**
37046  * @class Roo.tree.TreeEditor
37047  * @extends Roo.Editor
37048  * Provides editor functionality for inline tree node editing.  Any valid {@link Roo.form.Field} can be used
37049  * as the editor field.
37050  * @constructor
37051  * @param {Object} config (used to be the tree panel.)
37052  * @param {Object} oldconfig DEPRECIATED Either a prebuilt {@link Roo.form.Field} instance or a Field config object
37053  * 
37054  * @cfg {Roo.tree.TreePanel} tree The tree to bind to.
37055  * @cfg {Roo.form.TextField|Object} field The field configuration
37056  *
37057  * 
37058  */
37059 Roo.tree.TreeEditor = function(config, oldconfig) { // was -- (tree, config){
37060     var tree = config;
37061     var field;
37062     if (oldconfig) { // old style..
37063         field = oldconfig.events ? oldconfig : new Roo.form.TextField(oldconfig);
37064     } else {
37065         // new style..
37066         tree = config.tree;
37067         config.field = config.field  || {};
37068         config.field.xtype = 'TextField';
37069         field = Roo.factory(config.field, Roo.form);
37070     }
37071     config = config || {};
37072     
37073     
37074     this.addEvents({
37075         /**
37076          * @event beforenodeedit
37077          * Fires when editing is initiated, but before the value changes.  Editing can be canceled by returning
37078          * false from the handler of this event.
37079          * @param {Editor} this
37080          * @param {Roo.tree.Node} node 
37081          */
37082         "beforenodeedit" : true
37083     });
37084     
37085     //Roo.log(config);
37086     Roo.tree.TreeEditor.superclass.constructor.call(this, field, config);
37087
37088     this.tree = tree;
37089
37090     tree.on('beforeclick', this.beforeNodeClick, this);
37091     tree.getTreeEl().on('mousedown', this.hide, this);
37092     this.on('complete', this.updateNode, this);
37093     this.on('beforestartedit', this.fitToTree, this);
37094     this.on('startedit', this.bindScroll, this, {delay:10});
37095     this.on('specialkey', this.onSpecialKey, this);
37096 };
37097
37098 Roo.extend(Roo.tree.TreeEditor, Roo.Editor, {
37099     /**
37100      * @cfg {String} alignment
37101      * The position to align to (see {@link Roo.Element#alignTo} for more details, defaults to "l-l").
37102      */
37103     alignment: "l-l",
37104     // inherit
37105     autoSize: false,
37106     /**
37107      * @cfg {Boolean} hideEl
37108      * True to hide the bound element while the editor is displayed (defaults to false)
37109      */
37110     hideEl : false,
37111     /**
37112      * @cfg {String} cls
37113      * CSS class to apply to the editor (defaults to "x-small-editor x-tree-editor")
37114      */
37115     cls: "x-small-editor x-tree-editor",
37116     /**
37117      * @cfg {Boolean} shim
37118      * True to shim the editor if selects/iframes could be displayed beneath it (defaults to false)
37119      */
37120     shim:false,
37121     // inherit
37122     shadow:"frame",
37123     /**
37124      * @cfg {Number} maxWidth
37125      * The maximum width in pixels of the editor field (defaults to 250).  Note that if the maxWidth would exceed
37126      * the containing tree element's size, it will be automatically limited for you to the container width, taking
37127      * scroll and client offsets into account prior to each edit.
37128      */
37129     maxWidth: 250,
37130
37131     editDelay : 350,
37132
37133     // private
37134     fitToTree : function(ed, el){
37135         var td = this.tree.getTreeEl().dom, nd = el.dom;
37136         if(td.scrollLeft >  nd.offsetLeft){ // ensure the node left point is visible
37137             td.scrollLeft = nd.offsetLeft;
37138         }
37139         var w = Math.min(
37140                 this.maxWidth,
37141                 (td.clientWidth > 20 ? td.clientWidth : td.offsetWidth) - Math.max(0, nd.offsetLeft-td.scrollLeft) - /*cushion*/5);
37142         this.setSize(w, '');
37143         
37144         return this.fireEvent('beforenodeedit', this, this.editNode);
37145         
37146     },
37147
37148     // private
37149     triggerEdit : function(node){
37150         this.completeEdit();
37151         this.editNode = node;
37152         this.startEdit(node.ui.textNode, node.text);
37153     },
37154
37155     // private
37156     bindScroll : function(){
37157         this.tree.getTreeEl().on('scroll', this.cancelEdit, this);
37158     },
37159
37160     // private
37161     beforeNodeClick : function(node, e){
37162         var sinceLast = (this.lastClick ? this.lastClick.getElapsed() : 0);
37163         this.lastClick = new Date();
37164         if(sinceLast > this.editDelay && this.tree.getSelectionModel().isSelected(node)){
37165             e.stopEvent();
37166             this.triggerEdit(node);
37167             return false;
37168         }
37169         return true;
37170     },
37171
37172     // private
37173     updateNode : function(ed, value){
37174         this.tree.getTreeEl().un('scroll', this.cancelEdit, this);
37175         this.editNode.setText(value);
37176     },
37177
37178     // private
37179     onHide : function(){
37180         Roo.tree.TreeEditor.superclass.onHide.call(this);
37181         if(this.editNode){
37182             this.editNode.ui.focus();
37183         }
37184     },
37185
37186     // private
37187     onSpecialKey : function(field, e){
37188         var k = e.getKey();
37189         if(k == e.ESC){
37190             e.stopEvent();
37191             this.cancelEdit();
37192         }else if(k == e.ENTER && !e.hasModifier()){
37193             e.stopEvent();
37194             this.completeEdit();
37195         }
37196     }
37197 });//<Script type="text/javascript">
37198 /*
37199  * Based on:
37200  * Ext JS Library 1.1.1
37201  * Copyright(c) 2006-2007, Ext JS, LLC.
37202  *
37203  * Originally Released Under LGPL - original licence link has changed is not relivant.
37204  *
37205  * Fork - LGPL
37206  * <script type="text/javascript">
37207  */
37208  
37209 /**
37210  * Not documented??? - probably should be...
37211  */
37212
37213 Roo.tree.ColumnNodeUI = Roo.extend(Roo.tree.TreeNodeUI, {
37214     //focus: Roo.emptyFn, // prevent odd scrolling behavior
37215     
37216     renderElements : function(n, a, targetNode, bulkRender){
37217         //consel.log("renderElements?");
37218         this.indentMarkup = n.parentNode ? n.parentNode.ui.getChildIndent() : '';
37219
37220         var t = n.getOwnerTree();
37221         var tid = Pman.Tab.Document_TypesTree.tree.el.id;
37222         
37223         var cols = t.columns;
37224         var bw = t.borderWidth;
37225         var c = cols[0];
37226         var href = a.href ? a.href : Roo.isGecko ? "" : "#";
37227          var cb = typeof a.checked == "boolean";
37228         var tx = String.format('{0}',n.text || (c.renderer ? c.renderer(a[c.dataIndex], n, a) : a[c.dataIndex]));
37229         var colcls = 'x-t-' + tid + '-c0';
37230         var buf = [
37231             '<li class="x-tree-node">',
37232             
37233                 
37234                 '<div class="x-tree-node-el ', a.cls,'">',
37235                     // extran...
37236                     '<div class="x-tree-col ', colcls, '" style="width:', c.width-bw, 'px;">',
37237                 
37238                 
37239                         '<span class="x-tree-node-indent">',this.indentMarkup,'</span>',
37240                         '<img src="', this.emptyIcon, '" class="x-tree-ec-icon  " />',
37241                         '<img src="', a.icon || this.emptyIcon, '" class="x-tree-node-icon',
37242                            (a.icon ? ' x-tree-node-inline-icon' : ''),
37243                            (a.iconCls ? ' '+a.iconCls : ''),
37244                            '" unselectable="on" />',
37245                         (cb ? ('<input class="x-tree-node-cb" type="checkbox" ' + 
37246                              (a.checked ? 'checked="checked" />' : ' />')) : ''),
37247                              
37248                         '<a class="x-tree-node-anchor" hidefocus="on" href="',href,'" tabIndex="1" ',
37249                             (a.hrefTarget ? ' target="' +a.hrefTarget + '"' : ''), '>',
37250                             '<span unselectable="on" qtip="' + tx + '">',
37251                              tx,
37252                              '</span></a>' ,
37253                     '</div>',
37254                      '<a class="x-tree-node-anchor" hidefocus="on" href="',href,'" tabIndex="1" ',
37255                             (a.hrefTarget ? ' target="' +a.hrefTarget + '"' : ''), '>'
37256                  ];
37257         for(var i = 1, len = cols.length; i < len; i++){
37258             c = cols[i];
37259             colcls = 'x-t-' + tid + '-c' +i;
37260             tx = String.format('{0}', (c.renderer ? c.renderer(a[c.dataIndex], n, a) : a[c.dataIndex]));
37261             buf.push('<div class="x-tree-col ', colcls, ' ' ,(c.cls?c.cls:''),'" style="width:',c.width-bw,'px;">',
37262                         '<div class="x-tree-col-text" qtip="' + tx +'">',tx,"</div>",
37263                       "</div>");
37264          }
37265          
37266          buf.push(
37267             '</a>',
37268             '<div class="x-clear"></div></div>',
37269             '<ul class="x-tree-node-ct" style="display:none;"></ul>',
37270             "</li>");
37271         
37272         if(bulkRender !== true && n.nextSibling && n.nextSibling.ui.getEl()){
37273             this.wrap = Roo.DomHelper.insertHtml("beforeBegin",
37274                                 n.nextSibling.ui.getEl(), buf.join(""));
37275         }else{
37276             this.wrap = Roo.DomHelper.insertHtml("beforeEnd", targetNode, buf.join(""));
37277         }
37278         var el = this.wrap.firstChild;
37279         this.elRow = el;
37280         this.elNode = el.firstChild;
37281         this.ranchor = el.childNodes[1];
37282         this.ctNode = this.wrap.childNodes[1];
37283         var cs = el.firstChild.childNodes;
37284         this.indentNode = cs[0];
37285         this.ecNode = cs[1];
37286         this.iconNode = cs[2];
37287         var index = 3;
37288         if(cb){
37289             this.checkbox = cs[3];
37290             index++;
37291         }
37292         this.anchor = cs[index];
37293         
37294         this.textNode = cs[index].firstChild;
37295         
37296         //el.on("click", this.onClick, this);
37297         //el.on("dblclick", this.onDblClick, this);
37298         
37299         
37300        // console.log(this);
37301     },
37302     initEvents : function(){
37303         Roo.tree.ColumnNodeUI.superclass.initEvents.call(this);
37304         
37305             
37306         var a = this.ranchor;
37307
37308         var el = Roo.get(a);
37309
37310         if(Roo.isOpera){ // opera render bug ignores the CSS
37311             el.setStyle("text-decoration", "none");
37312         }
37313
37314         el.on("click", this.onClick, this);
37315         el.on("dblclick", this.onDblClick, this);
37316         el.on("contextmenu", this.onContextMenu, this);
37317         
37318     },
37319     
37320     /*onSelectedChange : function(state){
37321         if(state){
37322             this.focus();
37323             this.addClass("x-tree-selected");
37324         }else{
37325             //this.blur();
37326             this.removeClass("x-tree-selected");
37327         }
37328     },*/
37329     addClass : function(cls){
37330         if(this.elRow){
37331             Roo.fly(this.elRow).addClass(cls);
37332         }
37333         
37334     },
37335     
37336     
37337     removeClass : function(cls){
37338         if(this.elRow){
37339             Roo.fly(this.elRow).removeClass(cls);
37340         }
37341     }
37342
37343     
37344     
37345 });//<Script type="text/javascript">
37346
37347 /*
37348  * Based on:
37349  * Ext JS Library 1.1.1
37350  * Copyright(c) 2006-2007, Ext JS, LLC.
37351  *
37352  * Originally Released Under LGPL - original licence link has changed is not relivant.
37353  *
37354  * Fork - LGPL
37355  * <script type="text/javascript">
37356  */
37357  
37358
37359 /**
37360  * @class Roo.tree.ColumnTree
37361  * @extends Roo.data.TreePanel
37362  * @cfg {Object} columns  Including width, header, renderer, cls, dataIndex 
37363  * @cfg {int} borderWidth  compined right/left border allowance
37364  * @constructor
37365  * @param {String/HTMLElement/Element} el The container element
37366  * @param {Object} config
37367  */
37368 Roo.tree.ColumnTree =  function(el, config)
37369 {
37370    Roo.tree.ColumnTree.superclass.constructor.call(this, el , config);
37371    this.addEvents({
37372         /**
37373         * @event resize
37374         * Fire this event on a container when it resizes
37375         * @param {int} w Width
37376         * @param {int} h Height
37377         */
37378        "resize" : true
37379     });
37380     this.on('resize', this.onResize, this);
37381 };
37382
37383 Roo.extend(Roo.tree.ColumnTree, Roo.tree.TreePanel, {
37384     //lines:false,
37385     
37386     
37387     borderWidth: Roo.isBorderBox ? 0 : 2, 
37388     headEls : false,
37389     
37390     render : function(){
37391         // add the header.....
37392        
37393         Roo.tree.ColumnTree.superclass.render.apply(this);
37394         
37395         this.el.addClass('x-column-tree');
37396         
37397         this.headers = this.el.createChild(
37398             {cls:'x-tree-headers'},this.innerCt.dom);
37399    
37400         var cols = this.columns, c;
37401         var totalWidth = 0;
37402         this.headEls = [];
37403         var  len = cols.length;
37404         for(var i = 0; i < len; i++){
37405              c = cols[i];
37406              totalWidth += c.width;
37407             this.headEls.push(this.headers.createChild({
37408                  cls:'x-tree-hd ' + (c.cls?c.cls+'-hd':''),
37409                  cn: {
37410                      cls:'x-tree-hd-text',
37411                      html: c.header
37412                  },
37413                  style:'width:'+(c.width-this.borderWidth)+'px;'
37414              }));
37415         }
37416         this.headers.createChild({cls:'x-clear'});
37417         // prevent floats from wrapping when clipped
37418         this.headers.setWidth(totalWidth);
37419         //this.innerCt.setWidth(totalWidth);
37420         this.innerCt.setStyle({ overflow: 'auto' });
37421         this.onResize(this.width, this.height);
37422              
37423         
37424     },
37425     onResize : function(w,h)
37426     {
37427         this.height = h;
37428         this.width = w;
37429         // resize cols..
37430         this.innerCt.setWidth(this.width);
37431         this.innerCt.setHeight(this.height-20);
37432         
37433         // headers...
37434         var cols = this.columns, c;
37435         var totalWidth = 0;
37436         var expEl = false;
37437         var len = cols.length;
37438         for(var i = 0; i < len; i++){
37439             c = cols[i];
37440             if (this.autoExpandColumn !== false && c.dataIndex == this.autoExpandColumn) {
37441                 // it's the expander..
37442                 expEl  = this.headEls[i];
37443                 continue;
37444             }
37445             totalWidth += c.width;
37446             
37447         }
37448         if (expEl) {
37449             expEl.setWidth(  ((w - totalWidth)-this.borderWidth - 20));
37450         }
37451         this.headers.setWidth(w-20);
37452
37453         
37454         
37455         
37456     }
37457 });
37458 /*
37459  * Based on:
37460  * Ext JS Library 1.1.1
37461  * Copyright(c) 2006-2007, Ext JS, LLC.
37462  *
37463  * Originally Released Under LGPL - original licence link has changed is not relivant.
37464  *
37465  * Fork - LGPL
37466  * <script type="text/javascript">
37467  */
37468  
37469 /**
37470  * @class Roo.menu.Menu
37471  * @extends Roo.util.Observable
37472  * A menu object.  This is the container to which you add all other menu items.  Menu can also serve a as a base class
37473  * when you want a specialzed menu based off of another component (like {@link Roo.menu.DateMenu} for example).
37474  * @constructor
37475  * Creates a new Menu
37476  * @param {Object} config Configuration options
37477  */
37478 Roo.menu.Menu = function(config){
37479     
37480     Roo.menu.Menu.superclass.constructor.call(this, config);
37481     
37482     this.id = this.id || Roo.id();
37483     this.addEvents({
37484         /**
37485          * @event beforeshow
37486          * Fires before this menu is displayed
37487          * @param {Roo.menu.Menu} this
37488          */
37489         beforeshow : true,
37490         /**
37491          * @event beforehide
37492          * Fires before this menu is hidden
37493          * @param {Roo.menu.Menu} this
37494          */
37495         beforehide : true,
37496         /**
37497          * @event show
37498          * Fires after this menu is displayed
37499          * @param {Roo.menu.Menu} this
37500          */
37501         show : true,
37502         /**
37503          * @event hide
37504          * Fires after this menu is hidden
37505          * @param {Roo.menu.Menu} this
37506          */
37507         hide : true,
37508         /**
37509          * @event click
37510          * Fires when this menu is clicked (or when the enter key is pressed while it is active)
37511          * @param {Roo.menu.Menu} this
37512          * @param {Roo.menu.Item} menuItem The menu item that was clicked
37513          * @param {Roo.EventObject} e
37514          */
37515         click : true,
37516         /**
37517          * @event mouseover
37518          * Fires when the mouse is hovering over this menu
37519          * @param {Roo.menu.Menu} this
37520          * @param {Roo.EventObject} e
37521          * @param {Roo.menu.Item} menuItem The menu item that was clicked
37522          */
37523         mouseover : true,
37524         /**
37525          * @event mouseout
37526          * Fires when the mouse exits this menu
37527          * @param {Roo.menu.Menu} this
37528          * @param {Roo.EventObject} e
37529          * @param {Roo.menu.Item} menuItem The menu item that was clicked
37530          */
37531         mouseout : true,
37532         /**
37533          * @event itemclick
37534          * Fires when a menu item contained in this menu is clicked
37535          * @param {Roo.menu.BaseItem} baseItem The BaseItem that was clicked
37536          * @param {Roo.EventObject} e
37537          */
37538         itemclick: true
37539     });
37540     if (this.registerMenu) {
37541         Roo.menu.MenuMgr.register(this);
37542     }
37543     
37544     var mis = this.items;
37545     this.items = new Roo.util.MixedCollection();
37546     if(mis){
37547         this.add.apply(this, mis);
37548     }
37549 };
37550
37551 Roo.extend(Roo.menu.Menu, Roo.util.Observable, {
37552     /**
37553      * @cfg {Number} minWidth The minimum width of the menu in pixels (defaults to 120)
37554      */
37555     minWidth : 120,
37556     /**
37557      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop"
37558      * for bottom-right shadow (defaults to "sides")
37559      */
37560     shadow : "sides",
37561     /**
37562      * @cfg {String} subMenuAlign The {@link Roo.Element#alignTo} anchor position value to use for submenus of
37563      * this menu (defaults to "tl-tr?")
37564      */
37565     subMenuAlign : "tl-tr?",
37566     /**
37567      * @cfg {String} defaultAlign The default {@link Roo.Element#alignTo) anchor position value for this menu
37568      * relative to its element of origin (defaults to "tl-bl?")
37569      */
37570     defaultAlign : "tl-bl?",
37571     /**
37572      * @cfg {Boolean} allowOtherMenus True to allow multiple menus to be displayed at the same time (defaults to false)
37573      */
37574     allowOtherMenus : false,
37575     /**
37576      * @cfg {Boolean} registerMenu True (default) - means that clicking on screen etc. hides it.
37577      */
37578     registerMenu : true,
37579
37580     hidden:true,
37581
37582     // private
37583     render : function(){
37584         if(this.el){
37585             return;
37586         }
37587         var el = this.el = new Roo.Layer({
37588             cls: "x-menu",
37589             shadow:this.shadow,
37590             constrain: false,
37591             parentEl: this.parentEl || document.body,
37592             zindex:15000
37593         });
37594
37595         this.keyNav = new Roo.menu.MenuNav(this);
37596
37597         if(this.plain){
37598             el.addClass("x-menu-plain");
37599         }
37600         if(this.cls){
37601             el.addClass(this.cls);
37602         }
37603         // generic focus element
37604         this.focusEl = el.createChild({
37605             tag: "a", cls: "x-menu-focus", href: "#", onclick: "return false;", tabIndex:"-1"
37606         });
37607         var ul = el.createChild({tag: "ul", cls: "x-menu-list"});
37608         //disabling touch- as it's causing issues ..
37609         //ul.on(Roo.isTouch ? 'touchstart' : 'click'   , this.onClick, this);
37610         ul.on('click'   , this.onClick, this);
37611         
37612         
37613         ul.on("mouseover", this.onMouseOver, this);
37614         ul.on("mouseout", this.onMouseOut, this);
37615         this.items.each(function(item){
37616             if (item.hidden) {
37617                 return;
37618             }
37619             
37620             var li = document.createElement("li");
37621             li.className = "x-menu-list-item";
37622             ul.dom.appendChild(li);
37623             item.render(li, this);
37624         }, this);
37625         this.ul = ul;
37626         this.autoWidth();
37627     },
37628
37629     // private
37630     autoWidth : function(){
37631         var el = this.el, ul = this.ul;
37632         if(!el){
37633             return;
37634         }
37635         var w = this.width;
37636         if(w){
37637             el.setWidth(w);
37638         }else if(Roo.isIE){
37639             el.setWidth(this.minWidth);
37640             var t = el.dom.offsetWidth; // force recalc
37641             el.setWidth(ul.getWidth()+el.getFrameWidth("lr"));
37642         }
37643     },
37644
37645     // private
37646     delayAutoWidth : function(){
37647         if(this.rendered){
37648             if(!this.awTask){
37649                 this.awTask = new Roo.util.DelayedTask(this.autoWidth, this);
37650             }
37651             this.awTask.delay(20);
37652         }
37653     },
37654
37655     // private
37656     findTargetItem : function(e){
37657         var t = e.getTarget(".x-menu-list-item", this.ul,  true);
37658         if(t && t.menuItemId){
37659             return this.items.get(t.menuItemId);
37660         }
37661     },
37662
37663     // private
37664     onClick : function(e){
37665         Roo.log("menu.onClick");
37666         var t = this.findTargetItem(e);
37667         if(!t){
37668             return;
37669         }
37670         Roo.log(e);
37671         if (Roo.isTouch && e.type == 'touchstart' && t.menu  && !t.disabled) {
37672             if(t == this.activeItem && t.shouldDeactivate(e)){
37673                 this.activeItem.deactivate();
37674                 delete this.activeItem;
37675                 return;
37676             }
37677             if(t.canActivate){
37678                 this.setActiveItem(t, true);
37679             }
37680             return;
37681             
37682             
37683         }
37684         
37685         t.onClick(e);
37686         this.fireEvent("click", this, t, e);
37687     },
37688
37689     // private
37690     setActiveItem : function(item, autoExpand){
37691         if(item != this.activeItem){
37692             if(this.activeItem){
37693                 this.activeItem.deactivate();
37694             }
37695             this.activeItem = item;
37696             item.activate(autoExpand);
37697         }else if(autoExpand){
37698             item.expandMenu();
37699         }
37700     },
37701
37702     // private
37703     tryActivate : function(start, step){
37704         var items = this.items;
37705         for(var i = start, len = items.length; i >= 0 && i < len; i+= step){
37706             var item = items.get(i);
37707             if(!item.disabled && item.canActivate){
37708                 this.setActiveItem(item, false);
37709                 return item;
37710             }
37711         }
37712         return false;
37713     },
37714
37715     // private
37716     onMouseOver : function(e){
37717         var t;
37718         if(t = this.findTargetItem(e)){
37719             if(t.canActivate && !t.disabled){
37720                 this.setActiveItem(t, true);
37721             }
37722         }
37723         this.fireEvent("mouseover", this, e, t);
37724     },
37725
37726     // private
37727     onMouseOut : function(e){
37728         var t;
37729         if(t = this.findTargetItem(e)){
37730             if(t == this.activeItem && t.shouldDeactivate(e)){
37731                 this.activeItem.deactivate();
37732                 delete this.activeItem;
37733             }
37734         }
37735         this.fireEvent("mouseout", this, e, t);
37736     },
37737
37738     /**
37739      * Read-only.  Returns true if the menu is currently displayed, else false.
37740      * @type Boolean
37741      */
37742     isVisible : function(){
37743         return this.el && !this.hidden;
37744     },
37745
37746     /**
37747      * Displays this menu relative to another element
37748      * @param {String/HTMLElement/Roo.Element} element The element to align to
37749      * @param {String} position (optional) The {@link Roo.Element#alignTo} anchor position to use in aligning to
37750      * the element (defaults to this.defaultAlign)
37751      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
37752      */
37753     show : function(el, pos, parentMenu){
37754         this.parentMenu = parentMenu;
37755         if(!this.el){
37756             this.render();
37757         }
37758         this.fireEvent("beforeshow", this);
37759         this.showAt(this.el.getAlignToXY(el, pos || this.defaultAlign), parentMenu, false);
37760     },
37761
37762     /**
37763      * Displays this menu at a specific xy position
37764      * @param {Array} xyPosition Contains X & Y [x, y] values for the position at which to show the menu (coordinates are page-based)
37765      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
37766      */
37767     showAt : function(xy, parentMenu, /* private: */_e){
37768         this.parentMenu = parentMenu;
37769         if(!this.el){
37770             this.render();
37771         }
37772         if(_e !== false){
37773             this.fireEvent("beforeshow", this);
37774             xy = this.el.adjustForConstraints(xy);
37775         }
37776         this.el.setXY(xy);
37777         this.el.show();
37778         this.hidden = false;
37779         this.focus();
37780         this.fireEvent("show", this);
37781     },
37782
37783     focus : function(){
37784         if(!this.hidden){
37785             this.doFocus.defer(50, this);
37786         }
37787     },
37788
37789     doFocus : function(){
37790         if(!this.hidden){
37791             this.focusEl.focus();
37792         }
37793     },
37794
37795     /**
37796      * Hides this menu and optionally all parent menus
37797      * @param {Boolean} deep (optional) True to hide all parent menus recursively, if any (defaults to false)
37798      */
37799     hide : function(deep){
37800         if(this.el && this.isVisible()){
37801             this.fireEvent("beforehide", this);
37802             if(this.activeItem){
37803                 this.activeItem.deactivate();
37804                 this.activeItem = null;
37805             }
37806             this.el.hide();
37807             this.hidden = true;
37808             this.fireEvent("hide", this);
37809         }
37810         if(deep === true && this.parentMenu){
37811             this.parentMenu.hide(true);
37812         }
37813     },
37814
37815     /**
37816      * Addds one or more items of any type supported by the Menu class, or that can be converted into menu items.
37817      * Any of the following are valid:
37818      * <ul>
37819      * <li>Any menu item object based on {@link Roo.menu.Item}</li>
37820      * <li>An HTMLElement object which will be converted to a menu item</li>
37821      * <li>A menu item config object that will be created as a new menu item</li>
37822      * <li>A string, which can either be '-' or 'separator' to add a menu separator, otherwise
37823      * it will be converted into a {@link Roo.menu.TextItem} and added</li>
37824      * </ul>
37825      * Usage:
37826      * <pre><code>
37827 // Create the menu
37828 var menu = new Roo.menu.Menu();
37829
37830 // Create a menu item to add by reference
37831 var menuItem = new Roo.menu.Item({ text: 'New Item!' });
37832
37833 // Add a bunch of items at once using different methods.
37834 // Only the last item added will be returned.
37835 var item = menu.add(
37836     menuItem,                // add existing item by ref
37837     'Dynamic Item',          // new TextItem
37838     '-',                     // new separator
37839     { text: 'Config Item' }  // new item by config
37840 );
37841 </code></pre>
37842      * @param {Mixed} args One or more menu items, menu item configs or other objects that can be converted to menu items
37843      * @return {Roo.menu.Item} The menu item that was added, or the last one if multiple items were added
37844      */
37845     add : function(){
37846         var a = arguments, l = a.length, item;
37847         for(var i = 0; i < l; i++){
37848             var el = a[i];
37849             if ((typeof(el) == "object") && el.xtype && el.xns) {
37850                 el = Roo.factory(el, Roo.menu);
37851             }
37852             
37853             if(el.render){ // some kind of Item
37854                 item = this.addItem(el);
37855             }else if(typeof el == "string"){ // string
37856                 if(el == "separator" || el == "-"){
37857                     item = this.addSeparator();
37858                 }else{
37859                     item = this.addText(el);
37860                 }
37861             }else if(el.tagName || el.el){ // element
37862                 item = this.addElement(el);
37863             }else if(typeof el == "object"){ // must be menu item config?
37864                 item = this.addMenuItem(el);
37865             }
37866         }
37867         return item;
37868     },
37869
37870     /**
37871      * Returns this menu's underlying {@link Roo.Element} object
37872      * @return {Roo.Element} The element
37873      */
37874     getEl : function(){
37875         if(!this.el){
37876             this.render();
37877         }
37878         return this.el;
37879     },
37880
37881     /**
37882      * Adds a separator bar to the menu
37883      * @return {Roo.menu.Item} The menu item that was added
37884      */
37885     addSeparator : function(){
37886         return this.addItem(new Roo.menu.Separator());
37887     },
37888
37889     /**
37890      * Adds an {@link Roo.Element} object to the menu
37891      * @param {String/HTMLElement/Roo.Element} el The element or DOM node to add, or its id
37892      * @return {Roo.menu.Item} The menu item that was added
37893      */
37894     addElement : function(el){
37895         return this.addItem(new Roo.menu.BaseItem(el));
37896     },
37897
37898     /**
37899      * Adds an existing object based on {@link Roo.menu.Item} to the menu
37900      * @param {Roo.menu.Item} item The menu item to add
37901      * @return {Roo.menu.Item} The menu item that was added
37902      */
37903     addItem : function(item){
37904         this.items.add(item);
37905         if(this.ul){
37906             var li = document.createElement("li");
37907             li.className = "x-menu-list-item";
37908             this.ul.dom.appendChild(li);
37909             item.render(li, this);
37910             this.delayAutoWidth();
37911         }
37912         return item;
37913     },
37914
37915     /**
37916      * Creates a new {@link Roo.menu.Item} based an the supplied config object and adds it to the menu
37917      * @param {Object} config A MenuItem config object
37918      * @return {Roo.menu.Item} The menu item that was added
37919      */
37920     addMenuItem : function(config){
37921         if(!(config instanceof Roo.menu.Item)){
37922             if(typeof config.checked == "boolean"){ // must be check menu item config?
37923                 config = new Roo.menu.CheckItem(config);
37924             }else{
37925                 config = new Roo.menu.Item(config);
37926             }
37927         }
37928         return this.addItem(config);
37929     },
37930
37931     /**
37932      * Creates a new {@link Roo.menu.TextItem} with the supplied text and adds it to the menu
37933      * @param {String} text The text to display in the menu item
37934      * @return {Roo.menu.Item} The menu item that was added
37935      */
37936     addText : function(text){
37937         return this.addItem(new Roo.menu.TextItem({ text : text }));
37938     },
37939
37940     /**
37941      * Inserts an existing object based on {@link Roo.menu.Item} to the menu at a specified index
37942      * @param {Number} index The index in the menu's list of current items where the new item should be inserted
37943      * @param {Roo.menu.Item} item The menu item to add
37944      * @return {Roo.menu.Item} The menu item that was added
37945      */
37946     insert : function(index, item){
37947         this.items.insert(index, item);
37948         if(this.ul){
37949             var li = document.createElement("li");
37950             li.className = "x-menu-list-item";
37951             this.ul.dom.insertBefore(li, this.ul.dom.childNodes[index]);
37952             item.render(li, this);
37953             this.delayAutoWidth();
37954         }
37955         return item;
37956     },
37957
37958     /**
37959      * Removes an {@link Roo.menu.Item} from the menu and destroys the object
37960      * @param {Roo.menu.Item} item The menu item to remove
37961      */
37962     remove : function(item){
37963         this.items.removeKey(item.id);
37964         item.destroy();
37965     },
37966
37967     /**
37968      * Removes and destroys all items in the menu
37969      */
37970     removeAll : function(){
37971         var f;
37972         while(f = this.items.first()){
37973             this.remove(f);
37974         }
37975     }
37976 });
37977
37978 // MenuNav is a private utility class used internally by the Menu
37979 Roo.menu.MenuNav = function(menu){
37980     Roo.menu.MenuNav.superclass.constructor.call(this, menu.el);
37981     this.scope = this.menu = menu;
37982 };
37983
37984 Roo.extend(Roo.menu.MenuNav, Roo.KeyNav, {
37985     doRelay : function(e, h){
37986         var k = e.getKey();
37987         if(!this.menu.activeItem && e.isNavKeyPress() && k != e.SPACE && k != e.RETURN){
37988             this.menu.tryActivate(0, 1);
37989             return false;
37990         }
37991         return h.call(this.scope || this, e, this.menu);
37992     },
37993
37994     up : function(e, m){
37995         if(!m.tryActivate(m.items.indexOf(m.activeItem)-1, -1)){
37996             m.tryActivate(m.items.length-1, -1);
37997         }
37998     },
37999
38000     down : function(e, m){
38001         if(!m.tryActivate(m.items.indexOf(m.activeItem)+1, 1)){
38002             m.tryActivate(0, 1);
38003         }
38004     },
38005
38006     right : function(e, m){
38007         if(m.activeItem){
38008             m.activeItem.expandMenu(true);
38009         }
38010     },
38011
38012     left : function(e, m){
38013         m.hide();
38014         if(m.parentMenu && m.parentMenu.activeItem){
38015             m.parentMenu.activeItem.activate();
38016         }
38017     },
38018
38019     enter : function(e, m){
38020         if(m.activeItem){
38021             e.stopPropagation();
38022             m.activeItem.onClick(e);
38023             m.fireEvent("click", this, m.activeItem);
38024             return true;
38025         }
38026     }
38027 });/*
38028  * Based on:
38029  * Ext JS Library 1.1.1
38030  * Copyright(c) 2006-2007, Ext JS, LLC.
38031  *
38032  * Originally Released Under LGPL - original licence link has changed is not relivant.
38033  *
38034  * Fork - LGPL
38035  * <script type="text/javascript">
38036  */
38037  
38038 /**
38039  * @class Roo.menu.MenuMgr
38040  * Provides a common registry of all menu items on a page so that they can be easily accessed by id.
38041  * @singleton
38042  */
38043 Roo.menu.MenuMgr = function(){
38044    var menus, active, groups = {}, attached = false, lastShow = new Date();
38045
38046    // private - called when first menu is created
38047    function init(){
38048        menus = {};
38049        active = new Roo.util.MixedCollection();
38050        Roo.get(document).addKeyListener(27, function(){
38051            if(active.length > 0){
38052                hideAll();
38053            }
38054        });
38055    }
38056
38057    // private
38058    function hideAll(){
38059        if(active && active.length > 0){
38060            var c = active.clone();
38061            c.each(function(m){
38062                m.hide();
38063            });
38064        }
38065    }
38066
38067    // private
38068    function onHide(m){
38069        active.remove(m);
38070        if(active.length < 1){
38071            Roo.get(document).un("mousedown", onMouseDown);
38072            attached = false;
38073        }
38074    }
38075
38076    // private
38077    function onShow(m){
38078        var last = active.last();
38079        lastShow = new Date();
38080        active.add(m);
38081        if(!attached){
38082            Roo.get(document).on("mousedown", onMouseDown);
38083            attached = true;
38084        }
38085        if(m.parentMenu){
38086           m.getEl().setZIndex(parseInt(m.parentMenu.getEl().getStyle("z-index"), 10) + 3);
38087           m.parentMenu.activeChild = m;
38088        }else if(last && last.isVisible()){
38089           m.getEl().setZIndex(parseInt(last.getEl().getStyle("z-index"), 10) + 3);
38090        }
38091    }
38092
38093    // private
38094    function onBeforeHide(m){
38095        if(m.activeChild){
38096            m.activeChild.hide();
38097        }
38098        if(m.autoHideTimer){
38099            clearTimeout(m.autoHideTimer);
38100            delete m.autoHideTimer;
38101        }
38102    }
38103
38104    // private
38105    function onBeforeShow(m){
38106        var pm = m.parentMenu;
38107        if(!pm && !m.allowOtherMenus){
38108            hideAll();
38109        }else if(pm && pm.activeChild && active != m){
38110            pm.activeChild.hide();
38111        }
38112    }
38113
38114    // private
38115    function onMouseDown(e){
38116        if(lastShow.getElapsed() > 50 && active.length > 0 && !e.getTarget(".x-menu")){
38117            hideAll();
38118        }
38119    }
38120
38121    // private
38122    function onBeforeCheck(mi, state){
38123        if(state){
38124            var g = groups[mi.group];
38125            for(var i = 0, l = g.length; i < l; i++){
38126                if(g[i] != mi){
38127                    g[i].setChecked(false);
38128                }
38129            }
38130        }
38131    }
38132
38133    return {
38134
38135        /**
38136         * Hides all menus that are currently visible
38137         */
38138        hideAll : function(){
38139             hideAll();  
38140        },
38141
38142        // private
38143        register : function(menu){
38144            if(!menus){
38145                init();
38146            }
38147            menus[menu.id] = menu;
38148            menu.on("beforehide", onBeforeHide);
38149            menu.on("hide", onHide);
38150            menu.on("beforeshow", onBeforeShow);
38151            menu.on("show", onShow);
38152            var g = menu.group;
38153            if(g && menu.events["checkchange"]){
38154                if(!groups[g]){
38155                    groups[g] = [];
38156                }
38157                groups[g].push(menu);
38158                menu.on("checkchange", onCheck);
38159            }
38160        },
38161
38162         /**
38163          * Returns a {@link Roo.menu.Menu} object
38164          * @param {String/Object} menu The string menu id, an existing menu object reference, or a Menu config that will
38165          * be used to generate and return a new Menu instance.
38166          */
38167        get : function(menu){
38168            if(typeof menu == "string"){ // menu id
38169                return menus[menu];
38170            }else if(menu.events){  // menu instance
38171                return menu;
38172            }else if(typeof menu.length == 'number'){ // array of menu items?
38173                return new Roo.menu.Menu({items:menu});
38174            }else{ // otherwise, must be a config
38175                return new Roo.menu.Menu(menu);
38176            }
38177        },
38178
38179        // private
38180        unregister : function(menu){
38181            delete menus[menu.id];
38182            menu.un("beforehide", onBeforeHide);
38183            menu.un("hide", onHide);
38184            menu.un("beforeshow", onBeforeShow);
38185            menu.un("show", onShow);
38186            var g = menu.group;
38187            if(g && menu.events["checkchange"]){
38188                groups[g].remove(menu);
38189                menu.un("checkchange", onCheck);
38190            }
38191        },
38192
38193        // private
38194        registerCheckable : function(menuItem){
38195            var g = menuItem.group;
38196            if(g){
38197                if(!groups[g]){
38198                    groups[g] = [];
38199                }
38200                groups[g].push(menuItem);
38201                menuItem.on("beforecheckchange", onBeforeCheck);
38202            }
38203        },
38204
38205        // private
38206        unregisterCheckable : function(menuItem){
38207            var g = menuItem.group;
38208            if(g){
38209                groups[g].remove(menuItem);
38210                menuItem.un("beforecheckchange", onBeforeCheck);
38211            }
38212        }
38213    };
38214 }();/*
38215  * Based on:
38216  * Ext JS Library 1.1.1
38217  * Copyright(c) 2006-2007, Ext JS, LLC.
38218  *
38219  * Originally Released Under LGPL - original licence link has changed is not relivant.
38220  *
38221  * Fork - LGPL
38222  * <script type="text/javascript">
38223  */
38224  
38225
38226 /**
38227  * @class Roo.menu.BaseItem
38228  * @extends Roo.Component
38229  * The base class for all items that render into menus.  BaseItem provides default rendering, activated state
38230  * management and base configuration options shared by all menu components.
38231  * @constructor
38232  * Creates a new BaseItem
38233  * @param {Object} config Configuration options
38234  */
38235 Roo.menu.BaseItem = function(config){
38236     Roo.menu.BaseItem.superclass.constructor.call(this, config);
38237
38238     this.addEvents({
38239         /**
38240          * @event click
38241          * Fires when this item is clicked
38242          * @param {Roo.menu.BaseItem} this
38243          * @param {Roo.EventObject} e
38244          */
38245         click: true,
38246         /**
38247          * @event activate
38248          * Fires when this item is activated
38249          * @param {Roo.menu.BaseItem} this
38250          */
38251         activate : true,
38252         /**
38253          * @event deactivate
38254          * Fires when this item is deactivated
38255          * @param {Roo.menu.BaseItem} this
38256          */
38257         deactivate : true
38258     });
38259
38260     if(this.handler){
38261         this.on("click", this.handler, this.scope, true);
38262     }
38263 };
38264
38265 Roo.extend(Roo.menu.BaseItem, Roo.Component, {
38266     /**
38267      * @cfg {Function} handler
38268      * A function that will handle the click event of this menu item (defaults to undefined)
38269      */
38270     /**
38271      * @cfg {Boolean} canActivate True if this item can be visually activated (defaults to false)
38272      */
38273     canActivate : false,
38274     
38275      /**
38276      * @cfg {Boolean} hidden True to prevent creation of this menu item (defaults to false)
38277      */
38278     hidden: false,
38279     
38280     /**
38281      * @cfg {String} activeClass The CSS class to use when the item becomes activated (defaults to "x-menu-item-active")
38282      */
38283     activeClass : "x-menu-item-active",
38284     /**
38285      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to true)
38286      */
38287     hideOnClick : true,
38288     /**
38289      * @cfg {Number} hideDelay Length of time in milliseconds to wait before hiding after a click (defaults to 100)
38290      */
38291     hideDelay : 100,
38292
38293     // private
38294     ctype: "Roo.menu.BaseItem",
38295
38296     // private
38297     actionMode : "container",
38298
38299     // private
38300     render : function(container, parentMenu){
38301         this.parentMenu = parentMenu;
38302         Roo.menu.BaseItem.superclass.render.call(this, container);
38303         this.container.menuItemId = this.id;
38304     },
38305
38306     // private
38307     onRender : function(container, position){
38308         this.el = Roo.get(this.el);
38309         container.dom.appendChild(this.el.dom);
38310     },
38311
38312     // private
38313     onClick : function(e){
38314         if(!this.disabled && this.fireEvent("click", this, e) !== false
38315                 && this.parentMenu.fireEvent("itemclick", this, e) !== false){
38316             this.handleClick(e);
38317         }else{
38318             e.stopEvent();
38319         }
38320     },
38321
38322     // private
38323     activate : function(){
38324         if(this.disabled){
38325             return false;
38326         }
38327         var li = this.container;
38328         li.addClass(this.activeClass);
38329         this.region = li.getRegion().adjust(2, 2, -2, -2);
38330         this.fireEvent("activate", this);
38331         return true;
38332     },
38333
38334     // private
38335     deactivate : function(){
38336         this.container.removeClass(this.activeClass);
38337         this.fireEvent("deactivate", this);
38338     },
38339
38340     // private
38341     shouldDeactivate : function(e){
38342         return !this.region || !this.region.contains(e.getPoint());
38343     },
38344
38345     // private
38346     handleClick : function(e){
38347         if(this.hideOnClick){
38348             this.parentMenu.hide.defer(this.hideDelay, this.parentMenu, [true]);
38349         }
38350     },
38351
38352     // private
38353     expandMenu : function(autoActivate){
38354         // do nothing
38355     },
38356
38357     // private
38358     hideMenu : function(){
38359         // do nothing
38360     }
38361 });/*
38362  * Based on:
38363  * Ext JS Library 1.1.1
38364  * Copyright(c) 2006-2007, Ext JS, LLC.
38365  *
38366  * Originally Released Under LGPL - original licence link has changed is not relivant.
38367  *
38368  * Fork - LGPL
38369  * <script type="text/javascript">
38370  */
38371  
38372 /**
38373  * @class Roo.menu.Adapter
38374  * @extends Roo.menu.BaseItem
38375  * 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.
38376  * It provides basic rendering, activation management and enable/disable logic required to work in menus.
38377  * @constructor
38378  * Creates a new Adapter
38379  * @param {Object} config Configuration options
38380  */
38381 Roo.menu.Adapter = function(component, config){
38382     Roo.menu.Adapter.superclass.constructor.call(this, config);
38383     this.component = component;
38384 };
38385 Roo.extend(Roo.menu.Adapter, Roo.menu.BaseItem, {
38386     // private
38387     canActivate : true,
38388
38389     // private
38390     onRender : function(container, position){
38391         this.component.render(container);
38392         this.el = this.component.getEl();
38393     },
38394
38395     // private
38396     activate : function(){
38397         if(this.disabled){
38398             return false;
38399         }
38400         this.component.focus();
38401         this.fireEvent("activate", this);
38402         return true;
38403     },
38404
38405     // private
38406     deactivate : function(){
38407         this.fireEvent("deactivate", this);
38408     },
38409
38410     // private
38411     disable : function(){
38412         this.component.disable();
38413         Roo.menu.Adapter.superclass.disable.call(this);
38414     },
38415
38416     // private
38417     enable : function(){
38418         this.component.enable();
38419         Roo.menu.Adapter.superclass.enable.call(this);
38420     }
38421 });/*
38422  * Based on:
38423  * Ext JS Library 1.1.1
38424  * Copyright(c) 2006-2007, Ext JS, LLC.
38425  *
38426  * Originally Released Under LGPL - original licence link has changed is not relivant.
38427  *
38428  * Fork - LGPL
38429  * <script type="text/javascript">
38430  */
38431
38432 /**
38433  * @class Roo.menu.TextItem
38434  * @extends Roo.menu.BaseItem
38435  * Adds a static text string to a menu, usually used as either a heading or group separator.
38436  * Note: old style constructor with text is still supported.
38437  * 
38438  * @constructor
38439  * Creates a new TextItem
38440  * @param {Object} cfg Configuration
38441  */
38442 Roo.menu.TextItem = function(cfg){
38443     if (typeof(cfg) == 'string') {
38444         this.text = cfg;
38445     } else {
38446         Roo.apply(this,cfg);
38447     }
38448     
38449     Roo.menu.TextItem.superclass.constructor.call(this);
38450 };
38451
38452 Roo.extend(Roo.menu.TextItem, Roo.menu.BaseItem, {
38453     /**
38454      * @cfg {String} text Text to show on item.
38455      */
38456     text : '',
38457     
38458     /**
38459      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to false)
38460      */
38461     hideOnClick : false,
38462     /**
38463      * @cfg {String} itemCls The default CSS class to use for text items (defaults to "x-menu-text")
38464      */
38465     itemCls : "x-menu-text",
38466
38467     // private
38468     onRender : function(){
38469         var s = document.createElement("span");
38470         s.className = this.itemCls;
38471         s.innerHTML = this.text;
38472         this.el = s;
38473         Roo.menu.TextItem.superclass.onRender.apply(this, arguments);
38474     }
38475 });/*
38476  * Based on:
38477  * Ext JS Library 1.1.1
38478  * Copyright(c) 2006-2007, Ext JS, LLC.
38479  *
38480  * Originally Released Under LGPL - original licence link has changed is not relivant.
38481  *
38482  * Fork - LGPL
38483  * <script type="text/javascript">
38484  */
38485
38486 /**
38487  * @class Roo.menu.Separator
38488  * @extends Roo.menu.BaseItem
38489  * Adds a separator bar to a menu, used to divide logical groups of menu items. Generally you will
38490  * add one of these by using "-" in you call to add() or in your items config rather than creating one directly.
38491  * @constructor
38492  * @param {Object} config Configuration options
38493  */
38494 Roo.menu.Separator = function(config){
38495     Roo.menu.Separator.superclass.constructor.call(this, config);
38496 };
38497
38498 Roo.extend(Roo.menu.Separator, Roo.menu.BaseItem, {
38499     /**
38500      * @cfg {String} itemCls The default CSS class to use for separators (defaults to "x-menu-sep")
38501      */
38502     itemCls : "x-menu-sep",
38503     /**
38504      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to false)
38505      */
38506     hideOnClick : false,
38507
38508     // private
38509     onRender : function(li){
38510         var s = document.createElement("span");
38511         s.className = this.itemCls;
38512         s.innerHTML = "&#160;";
38513         this.el = s;
38514         li.addClass("x-menu-sep-li");
38515         Roo.menu.Separator.superclass.onRender.apply(this, arguments);
38516     }
38517 });/*
38518  * Based on:
38519  * Ext JS Library 1.1.1
38520  * Copyright(c) 2006-2007, Ext JS, LLC.
38521  *
38522  * Originally Released Under LGPL - original licence link has changed is not relivant.
38523  *
38524  * Fork - LGPL
38525  * <script type="text/javascript">
38526  */
38527 /**
38528  * @class Roo.menu.Item
38529  * @extends Roo.menu.BaseItem
38530  * A base class for all menu items that require menu-related functionality (like sub-menus) and are not static
38531  * display items.  Item extends the base functionality of {@link Roo.menu.BaseItem} by adding menu-specific
38532  * activation and click handling.
38533  * @constructor
38534  * Creates a new Item
38535  * @param {Object} config Configuration options
38536  */
38537 Roo.menu.Item = function(config){
38538     Roo.menu.Item.superclass.constructor.call(this, config);
38539     if(this.menu){
38540         this.menu = Roo.menu.MenuMgr.get(this.menu);
38541     }
38542 };
38543 Roo.extend(Roo.menu.Item, Roo.menu.BaseItem, {
38544     
38545     /**
38546      * @cfg {String} text
38547      * The text to show on the menu item.
38548      */
38549     text: '',
38550      /**
38551      * @cfg {String} HTML to render in menu
38552      * The text to show on the menu item (HTML version).
38553      */
38554     html: '',
38555     /**
38556      * @cfg {String} icon
38557      * The path to an icon to display in this menu item (defaults to Roo.BLANK_IMAGE_URL)
38558      */
38559     icon: undefined,
38560     /**
38561      * @cfg {String} itemCls The default CSS class to use for menu items (defaults to "x-menu-item")
38562      */
38563     itemCls : "x-menu-item",
38564     /**
38565      * @cfg {Boolean} canActivate True if this item can be visually activated (defaults to true)
38566      */
38567     canActivate : true,
38568     /**
38569      * @cfg {Number} showDelay Length of time in milliseconds to wait before showing this item (defaults to 200)
38570      */
38571     showDelay: 200,
38572     // doc'd in BaseItem
38573     hideDelay: 200,
38574
38575     // private
38576     ctype: "Roo.menu.Item",
38577     
38578     // private
38579     onRender : function(container, position){
38580         var el = document.createElement("a");
38581         el.hideFocus = true;
38582         el.unselectable = "on";
38583         el.href = this.href || "#";
38584         if(this.hrefTarget){
38585             el.target = this.hrefTarget;
38586         }
38587         el.className = this.itemCls + (this.menu ?  " x-menu-item-arrow" : "") + (this.cls ?  " " + this.cls : "");
38588         
38589         var html = this.html.length ? this.html  : String.format('{0}',this.text);
38590         
38591         el.innerHTML = String.format(
38592                 '<img src="{0}" class="x-menu-item-icon {1}" />' + html,
38593                 this.icon || Roo.BLANK_IMAGE_URL, this.iconCls || '');
38594         this.el = el;
38595         Roo.menu.Item.superclass.onRender.call(this, container, position);
38596     },
38597
38598     /**
38599      * Sets the text to display in this menu item
38600      * @param {String} text The text to display
38601      * @param {Boolean} isHTML true to indicate text is pure html.
38602      */
38603     setText : function(text, isHTML){
38604         if (isHTML) {
38605             this.html = text;
38606         } else {
38607             this.text = text;
38608             this.html = '';
38609         }
38610         if(this.rendered){
38611             var html = this.html.length ? this.html  : String.format('{0}',this.text);
38612      
38613             this.el.update(String.format(
38614                 '<img src="{0}" class="x-menu-item-icon {2}">' + html,
38615                 this.icon || Roo.BLANK_IMAGE_URL, this.text, this.iconCls || ''));
38616             this.parentMenu.autoWidth();
38617         }
38618     },
38619
38620     // private
38621     handleClick : function(e){
38622         if(!this.href){ // if no link defined, stop the event automatically
38623             e.stopEvent();
38624         }
38625         Roo.menu.Item.superclass.handleClick.apply(this, arguments);
38626     },
38627
38628     // private
38629     activate : function(autoExpand){
38630         if(Roo.menu.Item.superclass.activate.apply(this, arguments)){
38631             this.focus();
38632             if(autoExpand){
38633                 this.expandMenu();
38634             }
38635         }
38636         return true;
38637     },
38638
38639     // private
38640     shouldDeactivate : function(e){
38641         if(Roo.menu.Item.superclass.shouldDeactivate.call(this, e)){
38642             if(this.menu && this.menu.isVisible()){
38643                 return !this.menu.getEl().getRegion().contains(e.getPoint());
38644             }
38645             return true;
38646         }
38647         return false;
38648     },
38649
38650     // private
38651     deactivate : function(){
38652         Roo.menu.Item.superclass.deactivate.apply(this, arguments);
38653         this.hideMenu();
38654     },
38655
38656     // private
38657     expandMenu : function(autoActivate){
38658         if(!this.disabled && this.menu){
38659             clearTimeout(this.hideTimer);
38660             delete this.hideTimer;
38661             if(!this.menu.isVisible() && !this.showTimer){
38662                 this.showTimer = this.deferExpand.defer(this.showDelay, this, [autoActivate]);
38663             }else if (this.menu.isVisible() && autoActivate){
38664                 this.menu.tryActivate(0, 1);
38665             }
38666         }
38667     },
38668
38669     // private
38670     deferExpand : function(autoActivate){
38671         delete this.showTimer;
38672         this.menu.show(this.container, this.parentMenu.subMenuAlign || "tl-tr?", this.parentMenu);
38673         if(autoActivate){
38674             this.menu.tryActivate(0, 1);
38675         }
38676     },
38677
38678     // private
38679     hideMenu : function(){
38680         clearTimeout(this.showTimer);
38681         delete this.showTimer;
38682         if(!this.hideTimer && this.menu && this.menu.isVisible()){
38683             this.hideTimer = this.deferHide.defer(this.hideDelay, this);
38684         }
38685     },
38686
38687     // private
38688     deferHide : function(){
38689         delete this.hideTimer;
38690         this.menu.hide();
38691     }
38692 });/*
38693  * Based on:
38694  * Ext JS Library 1.1.1
38695  * Copyright(c) 2006-2007, Ext JS, LLC.
38696  *
38697  * Originally Released Under LGPL - original licence link has changed is not relivant.
38698  *
38699  * Fork - LGPL
38700  * <script type="text/javascript">
38701  */
38702  
38703 /**
38704  * @class Roo.menu.CheckItem
38705  * @extends Roo.menu.Item
38706  * Adds a menu item that contains a checkbox by default, but can also be part of a radio group.
38707  * @constructor
38708  * Creates a new CheckItem
38709  * @param {Object} config Configuration options
38710  */
38711 Roo.menu.CheckItem = function(config){
38712     Roo.menu.CheckItem.superclass.constructor.call(this, config);
38713     this.addEvents({
38714         /**
38715          * @event beforecheckchange
38716          * Fires before the checked value is set, providing an opportunity to cancel if needed
38717          * @param {Roo.menu.CheckItem} this
38718          * @param {Boolean} checked The new checked value that will be set
38719          */
38720         "beforecheckchange" : true,
38721         /**
38722          * @event checkchange
38723          * Fires after the checked value has been set
38724          * @param {Roo.menu.CheckItem} this
38725          * @param {Boolean} checked The checked value that was set
38726          */
38727         "checkchange" : true
38728     });
38729     if(this.checkHandler){
38730         this.on('checkchange', this.checkHandler, this.scope);
38731     }
38732 };
38733 Roo.extend(Roo.menu.CheckItem, Roo.menu.Item, {
38734     /**
38735      * @cfg {String} group
38736      * All check items with the same group name will automatically be grouped into a single-select
38737      * radio button group (defaults to '')
38738      */
38739     /**
38740      * @cfg {String} itemCls The default CSS class to use for check items (defaults to "x-menu-item x-menu-check-item")
38741      */
38742     itemCls : "x-menu-item x-menu-check-item",
38743     /**
38744      * @cfg {String} groupClass The default CSS class to use for radio group check items (defaults to "x-menu-group-item")
38745      */
38746     groupClass : "x-menu-group-item",
38747
38748     /**
38749      * @cfg {Boolean} checked True to initialize this checkbox as checked (defaults to false).  Note that
38750      * if this checkbox is part of a radio group (group = true) only the last item in the group that is
38751      * initialized with checked = true will be rendered as checked.
38752      */
38753     checked: false,
38754
38755     // private
38756     ctype: "Roo.menu.CheckItem",
38757
38758     // private
38759     onRender : function(c){
38760         Roo.menu.CheckItem.superclass.onRender.apply(this, arguments);
38761         if(this.group){
38762             this.el.addClass(this.groupClass);
38763         }
38764         Roo.menu.MenuMgr.registerCheckable(this);
38765         if(this.checked){
38766             this.checked = false;
38767             this.setChecked(true, true);
38768         }
38769     },
38770
38771     // private
38772     destroy : function(){
38773         if(this.rendered){
38774             Roo.menu.MenuMgr.unregisterCheckable(this);
38775         }
38776         Roo.menu.CheckItem.superclass.destroy.apply(this, arguments);
38777     },
38778
38779     /**
38780      * Set the checked state of this item
38781      * @param {Boolean} checked The new checked value
38782      * @param {Boolean} suppressEvent (optional) True to prevent the checkchange event from firing (defaults to false)
38783      */
38784     setChecked : function(state, suppressEvent){
38785         if(this.checked != state && this.fireEvent("beforecheckchange", this, state) !== false){
38786             if(this.container){
38787                 this.container[state ? "addClass" : "removeClass"]("x-menu-item-checked");
38788             }
38789             this.checked = state;
38790             if(suppressEvent !== true){
38791                 this.fireEvent("checkchange", this, state);
38792             }
38793         }
38794     },
38795
38796     // private
38797     handleClick : function(e){
38798        if(!this.disabled && !(this.checked && this.group)){// disable unselect on radio item
38799            this.setChecked(!this.checked);
38800        }
38801        Roo.menu.CheckItem.superclass.handleClick.apply(this, arguments);
38802     }
38803 });/*
38804  * Based on:
38805  * Ext JS Library 1.1.1
38806  * Copyright(c) 2006-2007, Ext JS, LLC.
38807  *
38808  * Originally Released Under LGPL - original licence link has changed is not relivant.
38809  *
38810  * Fork - LGPL
38811  * <script type="text/javascript">
38812  */
38813  
38814 /**
38815  * @class Roo.menu.DateItem
38816  * @extends Roo.menu.Adapter
38817  * A menu item that wraps the {@link Roo.DatPicker} component.
38818  * @constructor
38819  * Creates a new DateItem
38820  * @param {Object} config Configuration options
38821  */
38822 Roo.menu.DateItem = function(config){
38823     Roo.menu.DateItem.superclass.constructor.call(this, new Roo.DatePicker(config), config);
38824     /** The Roo.DatePicker object @type Roo.DatePicker */
38825     this.picker = this.component;
38826     this.addEvents({select: true});
38827     
38828     this.picker.on("render", function(picker){
38829         picker.getEl().swallowEvent("click");
38830         picker.container.addClass("x-menu-date-item");
38831     });
38832
38833     this.picker.on("select", this.onSelect, this);
38834 };
38835
38836 Roo.extend(Roo.menu.DateItem, Roo.menu.Adapter, {
38837     // private
38838     onSelect : function(picker, date){
38839         this.fireEvent("select", this, date, picker);
38840         Roo.menu.DateItem.superclass.handleClick.call(this);
38841     }
38842 });/*
38843  * Based on:
38844  * Ext JS Library 1.1.1
38845  * Copyright(c) 2006-2007, Ext JS, LLC.
38846  *
38847  * Originally Released Under LGPL - original licence link has changed is not relivant.
38848  *
38849  * Fork - LGPL
38850  * <script type="text/javascript">
38851  */
38852  
38853 /**
38854  * @class Roo.menu.ColorItem
38855  * @extends Roo.menu.Adapter
38856  * A menu item that wraps the {@link Roo.ColorPalette} component.
38857  * @constructor
38858  * Creates a new ColorItem
38859  * @param {Object} config Configuration options
38860  */
38861 Roo.menu.ColorItem = function(config){
38862     Roo.menu.ColorItem.superclass.constructor.call(this, new Roo.ColorPalette(config), config);
38863     /** The Roo.ColorPalette object @type Roo.ColorPalette */
38864     this.palette = this.component;
38865     this.relayEvents(this.palette, ["select"]);
38866     if(this.selectHandler){
38867         this.on('select', this.selectHandler, this.scope);
38868     }
38869 };
38870 Roo.extend(Roo.menu.ColorItem, Roo.menu.Adapter);/*
38871  * Based on:
38872  * Ext JS Library 1.1.1
38873  * Copyright(c) 2006-2007, Ext JS, LLC.
38874  *
38875  * Originally Released Under LGPL - original licence link has changed is not relivant.
38876  *
38877  * Fork - LGPL
38878  * <script type="text/javascript">
38879  */
38880  
38881
38882 /**
38883  * @class Roo.menu.DateMenu
38884  * @extends Roo.menu.Menu
38885  * A menu containing a {@link Roo.menu.DateItem} component (which provides a date picker).
38886  * @constructor
38887  * Creates a new DateMenu
38888  * @param {Object} config Configuration options
38889  */
38890 Roo.menu.DateMenu = function(config){
38891     Roo.menu.DateMenu.superclass.constructor.call(this, config);
38892     this.plain = true;
38893     var di = new Roo.menu.DateItem(config);
38894     this.add(di);
38895     /**
38896      * The {@link Roo.DatePicker} instance for this DateMenu
38897      * @type DatePicker
38898      */
38899     this.picker = di.picker;
38900     /**
38901      * @event select
38902      * @param {DatePicker} picker
38903      * @param {Date} date
38904      */
38905     this.relayEvents(di, ["select"]);
38906     this.on('beforeshow', function(){
38907         if(this.picker){
38908             this.picker.hideMonthPicker(false);
38909         }
38910     }, this);
38911 };
38912 Roo.extend(Roo.menu.DateMenu, Roo.menu.Menu, {
38913     cls:'x-date-menu'
38914 });/*
38915  * Based on:
38916  * Ext JS Library 1.1.1
38917  * Copyright(c) 2006-2007, Ext JS, LLC.
38918  *
38919  * Originally Released Under LGPL - original licence link has changed is not relivant.
38920  *
38921  * Fork - LGPL
38922  * <script type="text/javascript">
38923  */
38924  
38925
38926 /**
38927  * @class Roo.menu.ColorMenu
38928  * @extends Roo.menu.Menu
38929  * A menu containing a {@link Roo.menu.ColorItem} component (which provides a basic color picker).
38930  * @constructor
38931  * Creates a new ColorMenu
38932  * @param {Object} config Configuration options
38933  */
38934 Roo.menu.ColorMenu = function(config){
38935     Roo.menu.ColorMenu.superclass.constructor.call(this, config);
38936     this.plain = true;
38937     var ci = new Roo.menu.ColorItem(config);
38938     this.add(ci);
38939     /**
38940      * The {@link Roo.ColorPalette} instance for this ColorMenu
38941      * @type ColorPalette
38942      */
38943     this.palette = ci.palette;
38944     /**
38945      * @event select
38946      * @param {ColorPalette} palette
38947      * @param {String} color
38948      */
38949     this.relayEvents(ci, ["select"]);
38950 };
38951 Roo.extend(Roo.menu.ColorMenu, Roo.menu.Menu);/*
38952  * Based on:
38953  * Ext JS Library 1.1.1
38954  * Copyright(c) 2006-2007, Ext JS, LLC.
38955  *
38956  * Originally Released Under LGPL - original licence link has changed is not relivant.
38957  *
38958  * Fork - LGPL
38959  * <script type="text/javascript">
38960  */
38961  
38962 /**
38963  * @class Roo.form.TextItem
38964  * @extends Roo.BoxComponent
38965  * Base class for form fields that provides default event handling, sizing, value handling and other functionality.
38966  * @constructor
38967  * Creates a new TextItem
38968  * @param {Object} config Configuration options
38969  */
38970 Roo.form.TextItem = function(config){
38971     Roo.form.TextItem.superclass.constructor.call(this, config);
38972 };
38973
38974 Roo.extend(Roo.form.TextItem, Roo.BoxComponent,  {
38975     
38976     /**
38977      * @cfg {String} tag the tag for this item (default div)
38978      */
38979     tag : 'div',
38980     /**
38981      * @cfg {String} html the content for this item
38982      */
38983     html : '',
38984     
38985     getAutoCreate : function()
38986     {
38987         var cfg = {
38988             id: this.id,
38989             tag: this.tag,
38990             html: this.html,
38991             cls: 'x-form-item'
38992         };
38993         
38994         return cfg;
38995         
38996     },
38997     
38998     onRender : function(ct, position)
38999     {
39000         Roo.form.TextItem.superclass.onRender.call(this, ct, position);
39001         
39002         if(!this.el){
39003             var cfg = this.getAutoCreate();
39004             if(!cfg.name){
39005                 cfg.name = typeof(this.name) == 'undefined' ? this.id : this.name;
39006             }
39007             if (!cfg.name.length) {
39008                 delete cfg.name;
39009             }
39010             this.el = ct.createChild(cfg, position);
39011         }
39012     },
39013     /*
39014      * setHTML
39015      * @param {String} html update the Contents of the element.
39016      */
39017     setHTML : function(html)
39018     {
39019         this.fieldEl.dom.innerHTML = html;
39020     }
39021     
39022 });/*
39023  * Based on:
39024  * Ext JS Library 1.1.1
39025  * Copyright(c) 2006-2007, Ext JS, LLC.
39026  *
39027  * Originally Released Under LGPL - original licence link has changed is not relivant.
39028  *
39029  * Fork - LGPL
39030  * <script type="text/javascript">
39031  */
39032  
39033 /**
39034  * @class Roo.form.Field
39035  * @extends Roo.BoxComponent
39036  * Base class for form fields that provides default event handling, sizing, value handling and other functionality.
39037  * @constructor
39038  * Creates a new Field
39039  * @param {Object} config Configuration options
39040  */
39041 Roo.form.Field = function(config){
39042     Roo.form.Field.superclass.constructor.call(this, config);
39043 };
39044
39045 Roo.extend(Roo.form.Field, Roo.BoxComponent,  {
39046     /**
39047      * @cfg {String} fieldLabel Label to use when rendering a form.
39048      */
39049        /**
39050      * @cfg {String} qtip Mouse over tip
39051      */
39052      
39053     /**
39054      * @cfg {String} invalidClass The CSS class to use when marking a field invalid (defaults to "x-form-invalid")
39055      */
39056     invalidClass : "x-form-invalid",
39057     /**
39058      * @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")
39059      */
39060     invalidText : "The value in this field is invalid",
39061     /**
39062      * @cfg {String} focusClass The CSS class to use when the field receives focus (defaults to "x-form-focus")
39063      */
39064     focusClass : "x-form-focus",
39065     /**
39066      * @cfg {String/Boolean} validationEvent The event that should initiate field validation. Set to false to disable
39067       automatic validation (defaults to "keyup").
39068      */
39069     validationEvent : "keyup",
39070     /**
39071      * @cfg {Boolean} validateOnBlur Whether the field should validate when it loses focus (defaults to true).
39072      */
39073     validateOnBlur : true,
39074     /**
39075      * @cfg {Number} validationDelay The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)
39076      */
39077     validationDelay : 250,
39078     /**
39079      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
39080      * {tag: "input", type: "text", size: "20", autocomplete: "off"})
39081      */
39082     defaultAutoCreate : {tag: "input", type: "text", size: "20", autocomplete: "new-password"},
39083     /**
39084      * @cfg {String} fieldClass The default CSS class for the field (defaults to "x-form-field")
39085      */
39086     fieldClass : "x-form-field",
39087     /**
39088      * @cfg {String} msgTarget The location where error text should display.  Should be one of the following values (defaults to 'qtip'):
39089      *<pre>
39090 Value         Description
39091 -----------   ----------------------------------------------------------------------
39092 qtip          Display a quick tip when the user hovers over the field
39093 title         Display a default browser title attribute popup
39094 under         Add a block div beneath the field containing the error text
39095 side          Add an error icon to the right of the field with a popup on hover
39096 [element id]  Add the error text directly to the innerHTML of the specified element
39097 </pre>
39098      */
39099     msgTarget : 'qtip',
39100     /**
39101      * @cfg {String} msgFx <b>Experimental</b> The effect used when displaying a validation message under the field (defaults to 'normal').
39102      */
39103     msgFx : 'normal',
39104
39105     /**
39106      * @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.
39107      */
39108     readOnly : false,
39109
39110     /**
39111      * @cfg {Boolean} disabled True to disable the field (defaults to false).
39112      */
39113     disabled : false,
39114
39115     /**
39116      * @cfg {String} inputType The type attribute for input fields -- e.g. radio, text, password (defaults to "text").
39117      */
39118     inputType : undefined,
39119     
39120     /**
39121      * @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).
39122          */
39123         tabIndex : undefined,
39124         
39125     // private
39126     isFormField : true,
39127
39128     // private
39129     hasFocus : false,
39130     /**
39131      * @property {Roo.Element} fieldEl
39132      * Element Containing the rendered Field (with label etc.)
39133      */
39134     /**
39135      * @cfg {Mixed} value A value to initialize this field with.
39136      */
39137     value : undefined,
39138
39139     /**
39140      * @cfg {String} name The field's HTML name attribute.
39141      */
39142     /**
39143      * @cfg {String} cls A CSS class to apply to the field's underlying element.
39144      */
39145     // private
39146     loadedValue : false,
39147      
39148      
39149         // private ??
39150         initComponent : function(){
39151         Roo.form.Field.superclass.initComponent.call(this);
39152         this.addEvents({
39153             /**
39154              * @event focus
39155              * Fires when this field receives input focus.
39156              * @param {Roo.form.Field} this
39157              */
39158             focus : true,
39159             /**
39160              * @event blur
39161              * Fires when this field loses input focus.
39162              * @param {Roo.form.Field} this
39163              */
39164             blur : true,
39165             /**
39166              * @event specialkey
39167              * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
39168              * {@link Roo.EventObject#getKey} to determine which key was pressed.
39169              * @param {Roo.form.Field} this
39170              * @param {Roo.EventObject} e The event object
39171              */
39172             specialkey : true,
39173             /**
39174              * @event change
39175              * Fires just before the field blurs if the field value has changed.
39176              * @param {Roo.form.Field} this
39177              * @param {Mixed} newValue The new value
39178              * @param {Mixed} oldValue The original value
39179              */
39180             change : true,
39181             /**
39182              * @event invalid
39183              * Fires after the field has been marked as invalid.
39184              * @param {Roo.form.Field} this
39185              * @param {String} msg The validation message
39186              */
39187             invalid : true,
39188             /**
39189              * @event valid
39190              * Fires after the field has been validated with no errors.
39191              * @param {Roo.form.Field} this
39192              */
39193             valid : true,
39194              /**
39195              * @event keyup
39196              * Fires after the key up
39197              * @param {Roo.form.Field} this
39198              * @param {Roo.EventObject}  e The event Object
39199              */
39200             keyup : true
39201         });
39202     },
39203
39204     /**
39205      * Returns the name attribute of the field if available
39206      * @return {String} name The field name
39207      */
39208     getName: function(){
39209          return this.rendered && this.el.dom.name ? this.el.dom.name : (this.hiddenName || '');
39210     },
39211
39212     // private
39213     onRender : function(ct, position){
39214         Roo.form.Field.superclass.onRender.call(this, ct, position);
39215         if(!this.el){
39216             var cfg = this.getAutoCreate();
39217             if(!cfg.name){
39218                 cfg.name = typeof(this.name) == 'undefined' ? this.id : this.name;
39219             }
39220             if (!cfg.name.length) {
39221                 delete cfg.name;
39222             }
39223             if(this.inputType){
39224                 cfg.type = this.inputType;
39225             }
39226             this.el = ct.createChild(cfg, position);
39227         }
39228         var type = this.el.dom.type;
39229         if(type){
39230             if(type == 'password'){
39231                 type = 'text';
39232             }
39233             this.el.addClass('x-form-'+type);
39234         }
39235         if(this.readOnly){
39236             this.el.dom.readOnly = true;
39237         }
39238         if(this.tabIndex !== undefined){
39239             this.el.dom.setAttribute('tabIndex', this.tabIndex);
39240         }
39241
39242         this.el.addClass([this.fieldClass, this.cls]);
39243         this.initValue();
39244     },
39245
39246     /**
39247      * Apply the behaviors of this component to an existing element. <b>This is used instead of render().</b>
39248      * @param {String/HTMLElement/Element} el The id of the node, a DOM node or an existing Element
39249      * @return {Roo.form.Field} this
39250      */
39251     applyTo : function(target){
39252         this.allowDomMove = false;
39253         this.el = Roo.get(target);
39254         this.render(this.el.dom.parentNode);
39255         return this;
39256     },
39257
39258     // private
39259     initValue : function(){
39260         if(this.value !== undefined){
39261             this.setValue(this.value);
39262         }else if(this.el.dom.value.length > 0){
39263             this.setValue(this.el.dom.value);
39264         }
39265     },
39266
39267     /**
39268      * Returns true if this field has been changed since it was originally loaded and is not disabled.
39269      * DEPRICATED  - it never worked well - use hasChanged/resetHasChanged.
39270      */
39271     isDirty : function() {
39272         if(this.disabled) {
39273             return false;
39274         }
39275         return String(this.getValue()) !== String(this.originalValue);
39276     },
39277
39278     /**
39279      * stores the current value in loadedValue
39280      */
39281     resetHasChanged : function()
39282     {
39283         this.loadedValue = String(this.getValue());
39284     },
39285     /**
39286      * checks the current value against the 'loaded' value.
39287      * Note - will return false if 'resetHasChanged' has not been called first.
39288      */
39289     hasChanged : function()
39290     {
39291         if(this.disabled || this.readOnly) {
39292             return false;
39293         }
39294         return this.loadedValue !== false && String(this.getValue()) !== this.loadedValue;
39295     },
39296     
39297     
39298     
39299     // private
39300     afterRender : function(){
39301         Roo.form.Field.superclass.afterRender.call(this);
39302         this.initEvents();
39303     },
39304
39305     // private
39306     fireKey : function(e){
39307         //Roo.log('field ' + e.getKey());
39308         if(e.isNavKeyPress()){
39309             this.fireEvent("specialkey", this, e);
39310         }
39311     },
39312
39313     /**
39314      * Resets the current field value to the originally loaded value and clears any validation messages
39315      */
39316     reset : function(){
39317         this.setValue(this.resetValue);
39318         this.originalValue = this.getValue();
39319         this.clearInvalid();
39320     },
39321
39322     // private
39323     initEvents : function(){
39324         // safari killled keypress - so keydown is now used..
39325         this.el.on("keydown" , this.fireKey,  this);
39326         this.el.on("focus", this.onFocus,  this);
39327         this.el.on("blur", this.onBlur,  this);
39328         this.el.relayEvent('keyup', this);
39329
39330         // reference to original value for reset
39331         this.originalValue = this.getValue();
39332         this.resetValue =  this.getValue();
39333     },
39334
39335     // private
39336     onFocus : function(){
39337         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
39338             this.el.addClass(this.focusClass);
39339         }
39340         if(!this.hasFocus){
39341             this.hasFocus = true;
39342             this.startValue = this.getValue();
39343             this.fireEvent("focus", this);
39344         }
39345     },
39346
39347     beforeBlur : Roo.emptyFn,
39348
39349     // private
39350     onBlur : function(){
39351         this.beforeBlur();
39352         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
39353             this.el.removeClass(this.focusClass);
39354         }
39355         this.hasFocus = false;
39356         if(this.validationEvent !== false && this.validateOnBlur && this.validationEvent != "blur"){
39357             this.validate();
39358         }
39359         var v = this.getValue();
39360         if(String(v) !== String(this.startValue)){
39361             this.fireEvent('change', this, v, this.startValue);
39362         }
39363         this.fireEvent("blur", this);
39364     },
39365
39366     /**
39367      * Returns whether or not the field value is currently valid
39368      * @param {Boolean} preventMark True to disable marking the field invalid
39369      * @return {Boolean} True if the value is valid, else false
39370      */
39371     isValid : function(preventMark){
39372         if(this.disabled){
39373             return true;
39374         }
39375         var restore = this.preventMark;
39376         this.preventMark = preventMark === true;
39377         var v = this.validateValue(this.processValue(this.getRawValue()));
39378         this.preventMark = restore;
39379         return v;
39380     },
39381
39382     /**
39383      * Validates the field value
39384      * @return {Boolean} True if the value is valid, else false
39385      */
39386     validate : function(){
39387         if(this.disabled || this.validateValue(this.processValue(this.getRawValue()))){
39388             this.clearInvalid();
39389             return true;
39390         }
39391         return false;
39392     },
39393
39394     processValue : function(value){
39395         return value;
39396     },
39397
39398     // private
39399     // Subclasses should provide the validation implementation by overriding this
39400     validateValue : function(value){
39401         return true;
39402     },
39403
39404     /**
39405      * Mark this field as invalid
39406      * @param {String} msg The validation message
39407      */
39408     markInvalid : function(msg){
39409         if(!this.rendered || this.preventMark){ // not rendered
39410             return;
39411         }
39412         
39413         var obj = (typeof(this.combo) != 'undefined') ? this.combo : this; // fix the combox array!!
39414         
39415         obj.el.addClass(this.invalidClass);
39416         msg = msg || this.invalidText;
39417         switch(this.msgTarget){
39418             case 'qtip':
39419                 obj.el.dom.qtip = msg;
39420                 obj.el.dom.qclass = 'x-form-invalid-tip';
39421                 if(Roo.QuickTips){ // fix for floating editors interacting with DND
39422                     Roo.QuickTips.enable();
39423                 }
39424                 break;
39425             case 'title':
39426                 this.el.dom.title = msg;
39427                 break;
39428             case 'under':
39429                 if(!this.errorEl){
39430                     var elp = this.el.findParent('.x-form-element', 5, true);
39431                     this.errorEl = elp.createChild({cls:'x-form-invalid-msg'});
39432                     this.errorEl.setWidth(elp.getWidth(true)-20);
39433                 }
39434                 this.errorEl.update(msg);
39435                 Roo.form.Field.msgFx[this.msgFx].show(this.errorEl, this);
39436                 break;
39437             case 'side':
39438                 if(!this.errorIcon){
39439                     var elp = this.el.findParent('.x-form-element', 5, true);
39440                     this.errorIcon = elp.createChild({cls:'x-form-invalid-icon'});
39441                 }
39442                 this.alignErrorIcon();
39443                 this.errorIcon.dom.qtip = msg;
39444                 this.errorIcon.dom.qclass = 'x-form-invalid-tip';
39445                 this.errorIcon.show();
39446                 this.on('resize', this.alignErrorIcon, this);
39447                 break;
39448             default:
39449                 var t = Roo.getDom(this.msgTarget);
39450                 t.innerHTML = msg;
39451                 t.style.display = this.msgDisplay;
39452                 break;
39453         }
39454         this.fireEvent('invalid', this, msg);
39455     },
39456
39457     // private
39458     alignErrorIcon : function(){
39459         this.errorIcon.alignTo(this.el, 'tl-tr', [2, 0]);
39460     },
39461
39462     /**
39463      * Clear any invalid styles/messages for this field
39464      */
39465     clearInvalid : function(){
39466         if(!this.rendered || this.preventMark){ // not rendered
39467             return;
39468         }
39469         var obj = (typeof(this.combo) != 'undefined') ? this.combo : this; // fix the combox array!!
39470         
39471         obj.el.removeClass(this.invalidClass);
39472         switch(this.msgTarget){
39473             case 'qtip':
39474                 obj.el.dom.qtip = '';
39475                 break;
39476             case 'title':
39477                 this.el.dom.title = '';
39478                 break;
39479             case 'under':
39480                 if(this.errorEl){
39481                     Roo.form.Field.msgFx[this.msgFx].hide(this.errorEl, this);
39482                 }
39483                 break;
39484             case 'side':
39485                 if(this.errorIcon){
39486                     this.errorIcon.dom.qtip = '';
39487                     this.errorIcon.hide();
39488                     this.un('resize', this.alignErrorIcon, this);
39489                 }
39490                 break;
39491             default:
39492                 var t = Roo.getDom(this.msgTarget);
39493                 t.innerHTML = '';
39494                 t.style.display = 'none';
39495                 break;
39496         }
39497         this.fireEvent('valid', this);
39498     },
39499
39500     /**
39501      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
39502      * @return {Mixed} value The field value
39503      */
39504     getRawValue : function(){
39505         var v = this.el.getValue();
39506         
39507         return v;
39508     },
39509
39510     /**
39511      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
39512      * @return {Mixed} value The field value
39513      */
39514     getValue : function(){
39515         var v = this.el.getValue();
39516          
39517         return v;
39518     },
39519
39520     /**
39521      * Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}.
39522      * @param {Mixed} value The value to set
39523      */
39524     setRawValue : function(v){
39525         return this.el.dom.value = (v === null || v === undefined ? '' : v);
39526     },
39527
39528     /**
39529      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
39530      * @param {Mixed} value The value to set
39531      */
39532     setValue : function(v){
39533         this.value = v;
39534         if(this.rendered){
39535             this.el.dom.value = (v === null || v === undefined ? '' : v);
39536              this.validate();
39537         }
39538     },
39539
39540     adjustSize : function(w, h){
39541         var s = Roo.form.Field.superclass.adjustSize.call(this, w, h);
39542         s.width = this.adjustWidth(this.el.dom.tagName, s.width);
39543         return s;
39544     },
39545
39546     adjustWidth : function(tag, w){
39547         tag = tag.toLowerCase();
39548         if(typeof w == 'number' && Roo.isStrict && !Roo.isSafari){
39549             if(Roo.isIE && (tag == 'input' || tag == 'textarea')){
39550                 if(tag == 'input'){
39551                     return w + 2;
39552                 }
39553                 if(tag == 'textarea'){
39554                     return w-2;
39555                 }
39556             }else if(Roo.isOpera){
39557                 if(tag == 'input'){
39558                     return w + 2;
39559                 }
39560                 if(tag == 'textarea'){
39561                     return w-2;
39562                 }
39563             }
39564         }
39565         return w;
39566     }
39567 });
39568
39569
39570 // anything other than normal should be considered experimental
39571 Roo.form.Field.msgFx = {
39572     normal : {
39573         show: function(msgEl, f){
39574             msgEl.setDisplayed('block');
39575         },
39576
39577         hide : function(msgEl, f){
39578             msgEl.setDisplayed(false).update('');
39579         }
39580     },
39581
39582     slide : {
39583         show: function(msgEl, f){
39584             msgEl.slideIn('t', {stopFx:true});
39585         },
39586
39587         hide : function(msgEl, f){
39588             msgEl.slideOut('t', {stopFx:true,useDisplay:true});
39589         }
39590     },
39591
39592     slideRight : {
39593         show: function(msgEl, f){
39594             msgEl.fixDisplay();
39595             msgEl.alignTo(f.el, 'tl-tr');
39596             msgEl.slideIn('l', {stopFx:true});
39597         },
39598
39599         hide : function(msgEl, f){
39600             msgEl.slideOut('l', {stopFx:true,useDisplay:true});
39601         }
39602     }
39603 };/*
39604  * Based on:
39605  * Ext JS Library 1.1.1
39606  * Copyright(c) 2006-2007, Ext JS, LLC.
39607  *
39608  * Originally Released Under LGPL - original licence link has changed is not relivant.
39609  *
39610  * Fork - LGPL
39611  * <script type="text/javascript">
39612  */
39613  
39614
39615 /**
39616  * @class Roo.form.TextField
39617  * @extends Roo.form.Field
39618  * Basic text field.  Can be used as a direct replacement for traditional text inputs, or as the base
39619  * class for more sophisticated input controls (like {@link Roo.form.TextArea} and {@link Roo.form.ComboBox}).
39620  * @constructor
39621  * Creates a new TextField
39622  * @param {Object} config Configuration options
39623  */
39624 Roo.form.TextField = function(config){
39625     Roo.form.TextField.superclass.constructor.call(this, config);
39626     this.addEvents({
39627         /**
39628          * @event autosize
39629          * Fires when the autosize function is triggered.  The field may or may not have actually changed size
39630          * according to the default logic, but this event provides a hook for the developer to apply additional
39631          * logic at runtime to resize the field if needed.
39632              * @param {Roo.form.Field} this This text field
39633              * @param {Number} width The new field width
39634              */
39635         autosize : true
39636     });
39637 };
39638
39639 Roo.extend(Roo.form.TextField, Roo.form.Field,  {
39640     /**
39641      * @cfg {Boolean} grow True if this field should automatically grow and shrink to its content
39642      */
39643     grow : false,
39644     /**
39645      * @cfg {Number} growMin The minimum width to allow when grow = true (defaults to 30)
39646      */
39647     growMin : 30,
39648     /**
39649      * @cfg {Number} growMax The maximum width to allow when grow = true (defaults to 800)
39650      */
39651     growMax : 800,
39652     /**
39653      * @cfg {String} vtype A validation type name as defined in {@link Roo.form.VTypes} (defaults to null)
39654      */
39655     vtype : null,
39656     /**
39657      * @cfg {String} maskRe An input mask regular expression that will be used to filter keystrokes that don't match (defaults to null)
39658      */
39659     maskRe : null,
39660     /**
39661      * @cfg {Boolean} disableKeyFilter True to disable input keystroke filtering (defaults to false)
39662      */
39663     disableKeyFilter : false,
39664     /**
39665      * @cfg {Boolean} allowBlank False to validate that the value length > 0 (defaults to true)
39666      */
39667     allowBlank : true,
39668     /**
39669      * @cfg {Number} minLength Minimum input field length required (defaults to 0)
39670      */
39671     minLength : 0,
39672     /**
39673      * @cfg {Number} maxLength Maximum input field length allowed (defaults to Number.MAX_VALUE)
39674      */
39675     maxLength : Number.MAX_VALUE,
39676     /**
39677      * @cfg {String} minLengthText Error text to display if the minimum length validation fails (defaults to "The minimum length for this field is {minLength}")
39678      */
39679     minLengthText : "The minimum length for this field is {0}",
39680     /**
39681      * @cfg {String} maxLengthText Error text to display if the maximum length validation fails (defaults to "The maximum length for this field is {maxLength}")
39682      */
39683     maxLengthText : "The maximum length for this field is {0}",
39684     /**
39685      * @cfg {Boolean} selectOnFocus True to automatically select any existing field text when the field receives input focus (defaults to false)
39686      */
39687     selectOnFocus : false,
39688     /**
39689      * @cfg {Boolean} allowLeadingSpace True to prevent the stripping of leading white space 
39690      */    
39691     allowLeadingSpace : false,
39692     /**
39693      * @cfg {String} blankText Error text to display if the allow blank validation fails (defaults to "This field is required")
39694      */
39695     blankText : "This field is required",
39696     /**
39697      * @cfg {Function} validator A custom validation function to be called during field validation (defaults to null).
39698      * If available, this function will be called only after the basic validators all return true, and will be passed the
39699      * current field value and expected to return boolean true if the value is valid or a string error message if invalid.
39700      */
39701     validator : null,
39702     /**
39703      * @cfg {RegExp} regex A JavaScript RegExp object to be tested against the field value during validation (defaults to null).
39704      * If available, this regex will be evaluated only after the basic validators all return true, and will be passed the
39705      * current field value.  If the test fails, the field will be marked invalid using {@link #regexText}.
39706      */
39707     regex : null,
39708     /**
39709      * @cfg {String} regexText The error text to display if {@link #regex} is used and the test fails during validation (defaults to "")
39710      */
39711     regexText : "",
39712     /**
39713      * @cfg {String} emptyText The default text to display in an empty field - placeholder... (defaults to null).
39714      */
39715     emptyText : null,
39716    
39717
39718     // private
39719     initEvents : function()
39720     {
39721         if (this.emptyText) {
39722             this.el.attr('placeholder', this.emptyText);
39723         }
39724         
39725         Roo.form.TextField.superclass.initEvents.call(this);
39726         if(this.validationEvent == 'keyup'){
39727             this.validationTask = new Roo.util.DelayedTask(this.validate, this);
39728             this.el.on('keyup', this.filterValidation, this);
39729         }
39730         else if(this.validationEvent !== false){
39731             this.el.on(this.validationEvent, this.validate, this, {buffer: this.validationDelay});
39732         }
39733         
39734         if(this.selectOnFocus){
39735             this.on("focus", this.preFocus, this);
39736         }
39737         if (!this.allowLeadingSpace) {
39738             this.on('blur', this.cleanLeadingSpace, this);
39739         }
39740         
39741         if(this.maskRe || (this.vtype && this.disableKeyFilter !== true && (this.maskRe = Roo.form.VTypes[this.vtype+'Mask']))){
39742             this.el.on("keypress", this.filterKeys, this);
39743         }
39744         if(this.grow){
39745             this.el.on("keyup", this.onKeyUp,  this, {buffer:50});
39746             this.el.on("click", this.autoSize,  this);
39747         }
39748         if(this.el.is('input[type=password]') && Roo.isSafari){
39749             this.el.on('keydown', this.SafariOnKeyDown, this);
39750         }
39751     },
39752
39753     processValue : function(value){
39754         if(this.stripCharsRe){
39755             var newValue = value.replace(this.stripCharsRe, '');
39756             if(newValue !== value){
39757                 this.setRawValue(newValue);
39758                 return newValue;
39759             }
39760         }
39761         return value;
39762     },
39763
39764     filterValidation : function(e){
39765         if(!e.isNavKeyPress()){
39766             this.validationTask.delay(this.validationDelay);
39767         }
39768     },
39769
39770     // private
39771     onKeyUp : function(e){
39772         if(!e.isNavKeyPress()){
39773             this.autoSize();
39774         }
39775     },
39776     // private - clean the leading white space
39777     cleanLeadingSpace : function(e)
39778     {
39779         if ( this.inputType == 'file') {
39780             return;
39781         }
39782         
39783         this.setValue((this.getValue() + '').replace(/^\s+/,''));
39784     },
39785     /**
39786      * Resets the current field value to the originally-loaded value and clears any validation messages.
39787      *  
39788      */
39789     reset : function(){
39790         Roo.form.TextField.superclass.reset.call(this);
39791        
39792     }, 
39793     // private
39794     preFocus : function(){
39795         
39796         if(this.selectOnFocus){
39797             this.el.dom.select();
39798         }
39799     },
39800
39801     
39802     // private
39803     filterKeys : function(e){
39804         var k = e.getKey();
39805         if(!Roo.isIE && (e.isNavKeyPress() || k == e.BACKSPACE || (k == e.DELETE && e.button == -1))){
39806             return;
39807         }
39808         var c = e.getCharCode(), cc = String.fromCharCode(c);
39809         if(Roo.isIE && (e.isSpecialKey() || !cc)){
39810             return;
39811         }
39812         if(!this.maskRe.test(cc)){
39813             e.stopEvent();
39814         }
39815     },
39816
39817     setValue : function(v){
39818         
39819         Roo.form.TextField.superclass.setValue.apply(this, arguments);
39820         
39821         this.autoSize();
39822     },
39823
39824     /**
39825      * Validates a value according to the field's validation rules and marks the field as invalid
39826      * if the validation fails
39827      * @param {Mixed} value The value to validate
39828      * @return {Boolean} True if the value is valid, else false
39829      */
39830     validateValue : function(value){
39831         if(value.length < 1)  { // if it's blank
39832              if(this.allowBlank){
39833                 this.clearInvalid();
39834                 return true;
39835              }else{
39836                 this.markInvalid(this.blankText);
39837                 return false;
39838              }
39839         }
39840         if(value.length < this.minLength){
39841             this.markInvalid(String.format(this.minLengthText, this.minLength));
39842             return false;
39843         }
39844         if(value.length > this.maxLength){
39845             this.markInvalid(String.format(this.maxLengthText, this.maxLength));
39846             return false;
39847         }
39848         if(this.vtype){
39849             var vt = Roo.form.VTypes;
39850             if(!vt[this.vtype](value, this)){
39851                 this.markInvalid(this.vtypeText || vt[this.vtype +'Text']);
39852                 return false;
39853             }
39854         }
39855         if(typeof this.validator == "function"){
39856             var msg = this.validator(value);
39857             if(msg !== true){
39858                 this.markInvalid(msg);
39859                 return false;
39860             }
39861         }
39862         if(this.regex && !this.regex.test(value)){
39863             this.markInvalid(this.regexText);
39864             return false;
39865         }
39866         return true;
39867     },
39868
39869     /**
39870      * Selects text in this field
39871      * @param {Number} start (optional) The index where the selection should start (defaults to 0)
39872      * @param {Number} end (optional) The index where the selection should end (defaults to the text length)
39873      */
39874     selectText : function(start, end){
39875         var v = this.getRawValue();
39876         if(v.length > 0){
39877             start = start === undefined ? 0 : start;
39878             end = end === undefined ? v.length : end;
39879             var d = this.el.dom;
39880             if(d.setSelectionRange){
39881                 d.setSelectionRange(start, end);
39882             }else if(d.createTextRange){
39883                 var range = d.createTextRange();
39884                 range.moveStart("character", start);
39885                 range.moveEnd("character", v.length-end);
39886                 range.select();
39887             }
39888         }
39889     },
39890
39891     /**
39892      * Automatically grows the field to accomodate the width of the text up to the maximum field width allowed.
39893      * This only takes effect if grow = true, and fires the autosize event.
39894      */
39895     autoSize : function(){
39896         if(!this.grow || !this.rendered){
39897             return;
39898         }
39899         if(!this.metrics){
39900             this.metrics = Roo.util.TextMetrics.createInstance(this.el);
39901         }
39902         var el = this.el;
39903         var v = el.dom.value;
39904         var d = document.createElement('div');
39905         d.appendChild(document.createTextNode(v));
39906         v = d.innerHTML;
39907         d = null;
39908         v += "&#160;";
39909         var w = Math.min(this.growMax, Math.max(this.metrics.getWidth(v) + /* add extra padding */ 10, this.growMin));
39910         this.el.setWidth(w);
39911         this.fireEvent("autosize", this, w);
39912     },
39913     
39914     // private
39915     SafariOnKeyDown : function(event)
39916     {
39917         // this is a workaround for a password hang bug on chrome/ webkit.
39918         
39919         var isSelectAll = false;
39920         
39921         if(this.el.dom.selectionEnd > 0){
39922             isSelectAll = (this.el.dom.selectionEnd - this.el.dom.selectionStart - this.getValue().length == 0) ? true : false;
39923         }
39924         if(((event.getKey() == 8 || event.getKey() == 46) && this.getValue().length ==1)){ // backspace and delete key
39925             event.preventDefault();
39926             this.setValue('');
39927             return;
39928         }
39929         
39930         if(isSelectAll && event.getCharCode() > 31){ // backspace and delete key
39931             
39932             event.preventDefault();
39933             // this is very hacky as keydown always get's upper case.
39934             
39935             var cc = String.fromCharCode(event.getCharCode());
39936             
39937             
39938             this.setValue( event.shiftKey ?  cc : cc.toLowerCase());
39939             
39940         }
39941         
39942         
39943     }
39944 });/*
39945  * Based on:
39946  * Ext JS Library 1.1.1
39947  * Copyright(c) 2006-2007, Ext JS, LLC.
39948  *
39949  * Originally Released Under LGPL - original licence link has changed is not relivant.
39950  *
39951  * Fork - LGPL
39952  * <script type="text/javascript">
39953  */
39954  
39955 /**
39956  * @class Roo.form.Hidden
39957  * @extends Roo.form.TextField
39958  * Simple Hidden element used on forms 
39959  * 
39960  * usage: form.add(new Roo.form.HiddenField({ 'name' : 'test1' }));
39961  * 
39962  * @constructor
39963  * Creates a new Hidden form element.
39964  * @param {Object} config Configuration options
39965  */
39966
39967
39968
39969 // easy hidden field...
39970 Roo.form.Hidden = function(config){
39971     Roo.form.Hidden.superclass.constructor.call(this, config);
39972 };
39973   
39974 Roo.extend(Roo.form.Hidden, Roo.form.TextField, {
39975     fieldLabel:      '',
39976     inputType:      'hidden',
39977     width:          50,
39978     allowBlank:     true,
39979     labelSeparator: '',
39980     hidden:         true,
39981     itemCls :       'x-form-item-display-none'
39982
39983
39984 });
39985
39986
39987 /*
39988  * Based on:
39989  * Ext JS Library 1.1.1
39990  * Copyright(c) 2006-2007, Ext JS, LLC.
39991  *
39992  * Originally Released Under LGPL - original licence link has changed is not relivant.
39993  *
39994  * Fork - LGPL
39995  * <script type="text/javascript">
39996  */
39997  
39998 /**
39999  * @class Roo.form.TriggerField
40000  * @extends Roo.form.TextField
40001  * Provides a convenient wrapper for TextFields that adds a clickable trigger button (looks like a combobox by default).
40002  * The trigger has no default action, so you must assign a function to implement the trigger click handler by
40003  * overriding {@link #onTriggerClick}. You can create a TriggerField directly, as it renders exactly like a combobox
40004  * for which you can provide a custom implementation.  For example:
40005  * <pre><code>
40006 var trigger = new Roo.form.TriggerField();
40007 trigger.onTriggerClick = myTriggerFn;
40008 trigger.applyTo('my-field');
40009 </code></pre>
40010  *
40011  * However, in general you will most likely want to use TriggerField as the base class for a reusable component.
40012  * {@link Roo.form.DateField} and {@link Roo.form.ComboBox} are perfect examples of this.
40013  * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
40014  * class 'x-form-trigger' by default and triggerClass will be <b>appended</b> if specified.
40015  * @constructor
40016  * Create a new TriggerField.
40017  * @param {Object} config Configuration options (valid {@Roo.form.TextField} config options will also be applied
40018  * to the base TextField)
40019  */
40020 Roo.form.TriggerField = function(config){
40021     this.mimicing = false;
40022     Roo.form.TriggerField.superclass.constructor.call(this, config);
40023 };
40024
40025 Roo.extend(Roo.form.TriggerField, Roo.form.TextField,  {
40026     /**
40027      * @cfg {String} triggerClass A CSS class to apply to the trigger
40028      */
40029     /**
40030      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
40031      * {tag: "input", type: "text", size: "16", autocomplete: "off"})
40032      */
40033     defaultAutoCreate : {tag: "input", type: "text", size: "16", autocomplete: "new-password"},
40034     /**
40035      * @cfg {Boolean} hideTrigger True to hide the trigger element and display only the base text field (defaults to false)
40036      */
40037     hideTrigger:false,
40038
40039     /** @cfg {Boolean} grow @hide */
40040     /** @cfg {Number} growMin @hide */
40041     /** @cfg {Number} growMax @hide */
40042
40043     /**
40044      * @hide 
40045      * @method
40046      */
40047     autoSize: Roo.emptyFn,
40048     // private
40049     monitorTab : true,
40050     // private
40051     deferHeight : true,
40052
40053     
40054     actionMode : 'wrap',
40055     // private
40056     onResize : function(w, h){
40057         Roo.form.TriggerField.superclass.onResize.apply(this, arguments);
40058         if(typeof w == 'number'){
40059             var x = w - this.trigger.getWidth();
40060             this.el.setWidth(this.adjustWidth('input', x));
40061             this.trigger.setStyle('left', x+'px');
40062         }
40063     },
40064
40065     // private
40066     adjustSize : Roo.BoxComponent.prototype.adjustSize,
40067
40068     // private
40069     getResizeEl : function(){
40070         return this.wrap;
40071     },
40072
40073     // private
40074     getPositionEl : function(){
40075         return this.wrap;
40076     },
40077
40078     // private
40079     alignErrorIcon : function(){
40080         this.errorIcon.alignTo(this.wrap, 'tl-tr', [2, 0]);
40081     },
40082
40083     // private
40084     onRender : function(ct, position){
40085         Roo.form.TriggerField.superclass.onRender.call(this, ct, position);
40086         this.wrap = this.el.wrap({cls: "x-form-field-wrap"});
40087         this.trigger = this.wrap.createChild(this.triggerConfig ||
40088                 {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.triggerClass});
40089         if(this.hideTrigger){
40090             this.trigger.setDisplayed(false);
40091         }
40092         this.initTrigger();
40093         if(!this.width){
40094             this.wrap.setWidth(this.el.getWidth()+this.trigger.getWidth());
40095         }
40096     },
40097
40098     // private
40099     initTrigger : function(){
40100         this.trigger.on("click", this.onTriggerClick, this, {preventDefault:true});
40101         this.trigger.addClassOnOver('x-form-trigger-over');
40102         this.trigger.addClassOnClick('x-form-trigger-click');
40103     },
40104
40105     // private
40106     onDestroy : function(){
40107         if(this.trigger){
40108             this.trigger.removeAllListeners();
40109             this.trigger.remove();
40110         }
40111         if(this.wrap){
40112             this.wrap.remove();
40113         }
40114         Roo.form.TriggerField.superclass.onDestroy.call(this);
40115     },
40116
40117     // private
40118     onFocus : function(){
40119         Roo.form.TriggerField.superclass.onFocus.call(this);
40120         if(!this.mimicing){
40121             this.wrap.addClass('x-trigger-wrap-focus');
40122             this.mimicing = true;
40123             Roo.get(Roo.isIE ? document.body : document).on("mousedown", this.mimicBlur, this);
40124             if(this.monitorTab){
40125                 this.el.on("keydown", this.checkTab, this);
40126             }
40127         }
40128     },
40129
40130     // private
40131     checkTab : function(e){
40132         if(e.getKey() == e.TAB){
40133             this.triggerBlur();
40134         }
40135     },
40136
40137     // private
40138     onBlur : function(){
40139         // do nothing
40140     },
40141
40142     // private
40143     mimicBlur : function(e, t){
40144         if(!this.wrap.contains(t) && this.validateBlur()){
40145             this.triggerBlur();
40146         }
40147     },
40148
40149     // private
40150     triggerBlur : function(){
40151         this.mimicing = false;
40152         Roo.get(Roo.isIE ? document.body : document).un("mousedown", this.mimicBlur);
40153         if(this.monitorTab){
40154             this.el.un("keydown", this.checkTab, this);
40155         }
40156         this.wrap.removeClass('x-trigger-wrap-focus');
40157         Roo.form.TriggerField.superclass.onBlur.call(this);
40158     },
40159
40160     // private
40161     // This should be overriden by any subclass that needs to check whether or not the field can be blurred.
40162     validateBlur : function(e, t){
40163         return true;
40164     },
40165
40166     // private
40167     onDisable : function(){
40168         Roo.form.TriggerField.superclass.onDisable.call(this);
40169         if(this.wrap){
40170             this.wrap.addClass('x-item-disabled');
40171         }
40172     },
40173
40174     // private
40175     onEnable : function(){
40176         Roo.form.TriggerField.superclass.onEnable.call(this);
40177         if(this.wrap){
40178             this.wrap.removeClass('x-item-disabled');
40179         }
40180     },
40181
40182     // private
40183     onShow : function(){
40184         var ae = this.getActionEl();
40185         
40186         if(ae){
40187             ae.dom.style.display = '';
40188             ae.dom.style.visibility = 'visible';
40189         }
40190     },
40191
40192     // private
40193     
40194     onHide : function(){
40195         var ae = this.getActionEl();
40196         ae.dom.style.display = 'none';
40197     },
40198
40199     /**
40200      * The function that should handle the trigger's click event.  This method does nothing by default until overridden
40201      * by an implementing function.
40202      * @method
40203      * @param {EventObject} e
40204      */
40205     onTriggerClick : Roo.emptyFn
40206 });
40207
40208 // TwinTriggerField is not a public class to be used directly.  It is meant as an abstract base class
40209 // to be extended by an implementing class.  For an example of implementing this class, see the custom
40210 // SearchField implementation here: http://extjs.com/deploy/ext/examples/form/custom.html
40211 Roo.form.TwinTriggerField = Roo.extend(Roo.form.TriggerField, {
40212     initComponent : function(){
40213         Roo.form.TwinTriggerField.superclass.initComponent.call(this);
40214
40215         this.triggerConfig = {
40216             tag:'span', cls:'x-form-twin-triggers', cn:[
40217             {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.trigger1Class},
40218             {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.trigger2Class}
40219         ]};
40220     },
40221
40222     getTrigger : function(index){
40223         return this.triggers[index];
40224     },
40225
40226     initTrigger : function(){
40227         var ts = this.trigger.select('.x-form-trigger', true);
40228         this.wrap.setStyle('overflow', 'hidden');
40229         var triggerField = this;
40230         ts.each(function(t, all, index){
40231             t.hide = function(){
40232                 var w = triggerField.wrap.getWidth();
40233                 this.dom.style.display = 'none';
40234                 triggerField.el.setWidth(w-triggerField.trigger.getWidth());
40235             };
40236             t.show = function(){
40237                 var w = triggerField.wrap.getWidth();
40238                 this.dom.style.display = '';
40239                 triggerField.el.setWidth(w-triggerField.trigger.getWidth());
40240             };
40241             var triggerIndex = 'Trigger'+(index+1);
40242
40243             if(this['hide'+triggerIndex]){
40244                 t.dom.style.display = 'none';
40245             }
40246             t.on("click", this['on'+triggerIndex+'Click'], this, {preventDefault:true});
40247             t.addClassOnOver('x-form-trigger-over');
40248             t.addClassOnClick('x-form-trigger-click');
40249         }, this);
40250         this.triggers = ts.elements;
40251     },
40252
40253     onTrigger1Click : Roo.emptyFn,
40254     onTrigger2Click : Roo.emptyFn
40255 });/*
40256  * Based on:
40257  * Ext JS Library 1.1.1
40258  * Copyright(c) 2006-2007, Ext JS, LLC.
40259  *
40260  * Originally Released Under LGPL - original licence link has changed is not relivant.
40261  *
40262  * Fork - LGPL
40263  * <script type="text/javascript">
40264  */
40265  
40266 /**
40267  * @class Roo.form.TextArea
40268  * @extends Roo.form.TextField
40269  * Multiline text field.  Can be used as a direct replacement for traditional textarea fields, plus adds
40270  * support for auto-sizing.
40271  * @constructor
40272  * Creates a new TextArea
40273  * @param {Object} config Configuration options
40274  */
40275 Roo.form.TextArea = function(config){
40276     Roo.form.TextArea.superclass.constructor.call(this, config);
40277     // these are provided exchanges for backwards compat
40278     // minHeight/maxHeight were replaced by growMin/growMax to be
40279     // compatible with TextField growing config values
40280     if(this.minHeight !== undefined){
40281         this.growMin = this.minHeight;
40282     }
40283     if(this.maxHeight !== undefined){
40284         this.growMax = this.maxHeight;
40285     }
40286 };
40287
40288 Roo.extend(Roo.form.TextArea, Roo.form.TextField,  {
40289     /**
40290      * @cfg {Number} growMin The minimum height to allow when grow = true (defaults to 60)
40291      */
40292     growMin : 60,
40293     /**
40294      * @cfg {Number} growMax The maximum height to allow when grow = true (defaults to 1000)
40295      */
40296     growMax: 1000,
40297     /**
40298      * @cfg {Boolean} preventScrollbars True to prevent scrollbars from appearing regardless of how much text is
40299      * in the field (equivalent to setting overflow: hidden, defaults to false)
40300      */
40301     preventScrollbars: false,
40302     /**
40303      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
40304      * {tag: "textarea", style: "width:300px;height:60px;", autocomplete: "off"})
40305      */
40306
40307     // private
40308     onRender : function(ct, position){
40309         if(!this.el){
40310             this.defaultAutoCreate = {
40311                 tag: "textarea",
40312                 style:"width:300px;height:60px;",
40313                 autocomplete: "new-password"
40314             };
40315         }
40316         Roo.form.TextArea.superclass.onRender.call(this, ct, position);
40317         if(this.grow){
40318             this.textSizeEl = Roo.DomHelper.append(document.body, {
40319                 tag: "pre", cls: "x-form-grow-sizer"
40320             });
40321             if(this.preventScrollbars){
40322                 this.el.setStyle("overflow", "hidden");
40323             }
40324             this.el.setHeight(this.growMin);
40325         }
40326     },
40327
40328     onDestroy : function(){
40329         if(this.textSizeEl){
40330             this.textSizeEl.parentNode.removeChild(this.textSizeEl);
40331         }
40332         Roo.form.TextArea.superclass.onDestroy.call(this);
40333     },
40334
40335     // private
40336     onKeyUp : function(e){
40337         if(!e.isNavKeyPress() || e.getKey() == e.ENTER){
40338             this.autoSize();
40339         }
40340     },
40341
40342     /**
40343      * Automatically grows the field to accomodate the height of the text up to the maximum field height allowed.
40344      * This only takes effect if grow = true, and fires the autosize event if the height changes.
40345      */
40346     autoSize : function(){
40347         if(!this.grow || !this.textSizeEl){
40348             return;
40349         }
40350         var el = this.el;
40351         var v = el.dom.value;
40352         var ts = this.textSizeEl;
40353
40354         ts.innerHTML = '';
40355         ts.appendChild(document.createTextNode(v));
40356         v = ts.innerHTML;
40357
40358         Roo.fly(ts).setWidth(this.el.getWidth());
40359         if(v.length < 1){
40360             v = "&#160;&#160;";
40361         }else{
40362             if(Roo.isIE){
40363                 v = v.replace(/\n/g, '<p>&#160;</p>');
40364             }
40365             v += "&#160;\n&#160;";
40366         }
40367         ts.innerHTML = v;
40368         var h = Math.min(this.growMax, Math.max(ts.offsetHeight, this.growMin));
40369         if(h != this.lastHeight){
40370             this.lastHeight = h;
40371             this.el.setHeight(h);
40372             this.fireEvent("autosize", this, h);
40373         }
40374     }
40375 });/*
40376  * Based on:
40377  * Ext JS Library 1.1.1
40378  * Copyright(c) 2006-2007, Ext JS, LLC.
40379  *
40380  * Originally Released Under LGPL - original licence link has changed is not relivant.
40381  *
40382  * Fork - LGPL
40383  * <script type="text/javascript">
40384  */
40385  
40386
40387 /**
40388  * @class Roo.form.NumberField
40389  * @extends Roo.form.TextField
40390  * Numeric text field that provides automatic keystroke filtering and numeric validation.
40391  * @constructor
40392  * Creates a new NumberField
40393  * @param {Object} config Configuration options
40394  */
40395 Roo.form.NumberField = function(config){
40396     Roo.form.NumberField.superclass.constructor.call(this, config);
40397 };
40398
40399 Roo.extend(Roo.form.NumberField, Roo.form.TextField,  {
40400     /**
40401      * @cfg {String} fieldClass The default CSS class for the field (defaults to "x-form-field x-form-num-field")
40402      */
40403     fieldClass: "x-form-field x-form-num-field",
40404     /**
40405      * @cfg {Boolean} allowDecimals False to disallow decimal values (defaults to true)
40406      */
40407     allowDecimals : true,
40408     /**
40409      * @cfg {String} decimalSeparator Character(s) to allow as the decimal separator (defaults to '.')
40410      */
40411     decimalSeparator : ".",
40412     /**
40413      * @cfg {Number} decimalPrecision The maximum precision to display after the decimal separator (defaults to 2)
40414      */
40415     decimalPrecision : 2,
40416     /**
40417      * @cfg {Boolean} allowNegative False to prevent entering a negative sign (defaults to true)
40418      */
40419     allowNegative : true,
40420     /**
40421      * @cfg {Number} minValue The minimum allowed value (defaults to Number.NEGATIVE_INFINITY)
40422      */
40423     minValue : Number.NEGATIVE_INFINITY,
40424     /**
40425      * @cfg {Number} maxValue The maximum allowed value (defaults to Number.MAX_VALUE)
40426      */
40427     maxValue : Number.MAX_VALUE,
40428     /**
40429      * @cfg {String} minText Error text to display if the minimum value validation fails (defaults to "The minimum value for this field is {minValue}")
40430      */
40431     minText : "The minimum value for this field is {0}",
40432     /**
40433      * @cfg {String} maxText Error text to display if the maximum value validation fails (defaults to "The maximum value for this field is {maxValue}")
40434      */
40435     maxText : "The maximum value for this field is {0}",
40436     /**
40437      * @cfg {String} nanText Error text to display if the value is not a valid number.  For example, this can happen
40438      * if a valid character like '.' or '-' is left in the field with no number (defaults to "{value} is not a valid number")
40439      */
40440     nanText : "{0} is not a valid number",
40441
40442     // private
40443     initEvents : function(){
40444         Roo.form.NumberField.superclass.initEvents.call(this);
40445         var allowed = "0123456789";
40446         if(this.allowDecimals){
40447             allowed += this.decimalSeparator;
40448         }
40449         if(this.allowNegative){
40450             allowed += "-";
40451         }
40452         this.stripCharsRe = new RegExp('[^'+allowed+']', 'gi');
40453         var keyPress = function(e){
40454             var k = e.getKey();
40455             if(!Roo.isIE && (e.isSpecialKey() || k == e.BACKSPACE || k == e.DELETE)){
40456                 return;
40457             }
40458             var c = e.getCharCode();
40459             if(allowed.indexOf(String.fromCharCode(c)) === -1){
40460                 e.stopEvent();
40461             }
40462         };
40463         this.el.on("keypress", keyPress, this);
40464     },
40465
40466     // private
40467     validateValue : function(value){
40468         if(!Roo.form.NumberField.superclass.validateValue.call(this, value)){
40469             return false;
40470         }
40471         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
40472              return true;
40473         }
40474         var num = this.parseValue(value);
40475         if(isNaN(num)){
40476             this.markInvalid(String.format(this.nanText, value));
40477             return false;
40478         }
40479         if(num < this.minValue){
40480             this.markInvalid(String.format(this.minText, this.minValue));
40481             return false;
40482         }
40483         if(num > this.maxValue){
40484             this.markInvalid(String.format(this.maxText, this.maxValue));
40485             return false;
40486         }
40487         return true;
40488     },
40489
40490     getValue : function(){
40491         return this.fixPrecision(this.parseValue(Roo.form.NumberField.superclass.getValue.call(this)));
40492     },
40493
40494     // private
40495     parseValue : function(value){
40496         value = parseFloat(String(value).replace(this.decimalSeparator, "."));
40497         return isNaN(value) ? '' : value;
40498     },
40499
40500     // private
40501     fixPrecision : function(value){
40502         var nan = isNaN(value);
40503         if(!this.allowDecimals || this.decimalPrecision == -1 || nan || !value){
40504             return nan ? '' : value;
40505         }
40506         return parseFloat(value).toFixed(this.decimalPrecision);
40507     },
40508
40509     setValue : function(v){
40510         v = this.fixPrecision(v);
40511         Roo.form.NumberField.superclass.setValue.call(this, String(v).replace(".", this.decimalSeparator));
40512     },
40513
40514     // private
40515     decimalPrecisionFcn : function(v){
40516         return Math.floor(v);
40517     },
40518
40519     beforeBlur : function(){
40520         var v = this.parseValue(this.getRawValue());
40521         if(v){
40522             this.setValue(v);
40523         }
40524     }
40525 });/*
40526  * Based on:
40527  * Ext JS Library 1.1.1
40528  * Copyright(c) 2006-2007, Ext JS, LLC.
40529  *
40530  * Originally Released Under LGPL - original licence link has changed is not relivant.
40531  *
40532  * Fork - LGPL
40533  * <script type="text/javascript">
40534  */
40535  
40536 /**
40537  * @class Roo.form.DateField
40538  * @extends Roo.form.TriggerField
40539  * Provides a date input field with a {@link Roo.DatePicker} dropdown and automatic date validation.
40540 * @constructor
40541 * Create a new DateField
40542 * @param {Object} config
40543  */
40544 Roo.form.DateField = function(config)
40545 {
40546     Roo.form.DateField.superclass.constructor.call(this, config);
40547     
40548       this.addEvents({
40549          
40550         /**
40551          * @event select
40552          * Fires when a date is selected
40553              * @param {Roo.form.DateField} combo This combo box
40554              * @param {Date} date The date selected
40555              */
40556         'select' : true
40557          
40558     });
40559     
40560     
40561     if(typeof this.minValue == "string") {
40562         this.minValue = this.parseDate(this.minValue);
40563     }
40564     if(typeof this.maxValue == "string") {
40565         this.maxValue = this.parseDate(this.maxValue);
40566     }
40567     this.ddMatch = null;
40568     if(this.disabledDates){
40569         var dd = this.disabledDates;
40570         var re = "(?:";
40571         for(var i = 0; i < dd.length; i++){
40572             re += dd[i];
40573             if(i != dd.length-1) {
40574                 re += "|";
40575             }
40576         }
40577         this.ddMatch = new RegExp(re + ")");
40578     }
40579 };
40580
40581 Roo.extend(Roo.form.DateField, Roo.form.TriggerField,  {
40582     /**
40583      * @cfg {String} format
40584      * The default date format string which can be overriden for localization support.  The format must be
40585      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
40586      */
40587     format : "m/d/y",
40588     /**
40589      * @cfg {String} altFormats
40590      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
40591      * format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
40592      */
40593     altFormats : "m/d/Y|m-d-y|m-d-Y|m/d|m-d|md|mdy|mdY|d",
40594     /**
40595      * @cfg {Array} disabledDays
40596      * An array of days to disable, 0 based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
40597      */
40598     disabledDays : null,
40599     /**
40600      * @cfg {String} disabledDaysText
40601      * The tooltip to display when the date falls on a disabled day (defaults to 'Disabled')
40602      */
40603     disabledDaysText : "Disabled",
40604     /**
40605      * @cfg {Array} disabledDates
40606      * An array of "dates" to disable, as strings. These strings will be used to build a dynamic regular
40607      * expression so they are very powerful. Some examples:
40608      * <ul>
40609      * <li>["03/08/2003", "09/16/2003"] would disable those exact dates</li>
40610      * <li>["03/08", "09/16"] would disable those days for every year</li>
40611      * <li>["^03/08"] would only match the beginning (useful if you are using short years)</li>
40612      * <li>["03/../2006"] would disable every day in March 2006</li>
40613      * <li>["^03"] would disable every day in every March</li>
40614      * </ul>
40615      * In order to support regular expressions, if you are using a date format that has "." in it, you will have to
40616      * escape the dot when restricting dates. For example: ["03\\.08\\.03"].
40617      */
40618     disabledDates : null,
40619     /**
40620      * @cfg {String} disabledDatesText
40621      * The tooltip text to display when the date falls on a disabled date (defaults to 'Disabled')
40622      */
40623     disabledDatesText : "Disabled",
40624     /**
40625      * @cfg {Date/String} minValue
40626      * The minimum allowed date. Can be either a Javascript date object or a string date in a
40627      * valid format (defaults to null).
40628      */
40629     minValue : null,
40630     /**
40631      * @cfg {Date/String} maxValue
40632      * The maximum allowed date. Can be either a Javascript date object or a string date in a
40633      * valid format (defaults to null).
40634      */
40635     maxValue : null,
40636     /**
40637      * @cfg {String} minText
40638      * The error text to display when the date in the cell is before minValue (defaults to
40639      * 'The date in this field must be after {minValue}').
40640      */
40641     minText : "The date in this field must be equal to or after {0}",
40642     /**
40643      * @cfg {String} maxText
40644      * The error text to display when the date in the cell is after maxValue (defaults to
40645      * 'The date in this field must be before {maxValue}').
40646      */
40647     maxText : "The date in this field must be equal to or before {0}",
40648     /**
40649      * @cfg {String} invalidText
40650      * The error text to display when the date in the field is invalid (defaults to
40651      * '{value} is not a valid date - it must be in the format {format}').
40652      */
40653     invalidText : "{0} is not a valid date - it must be in the format {1}",
40654     /**
40655      * @cfg {String} triggerClass
40656      * An additional CSS class used to style the trigger button.  The trigger will always get the
40657      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-date-trigger'
40658      * which displays a calendar icon).
40659      */
40660     triggerClass : 'x-form-date-trigger',
40661     
40662
40663     /**
40664      * @cfg {Boolean} useIso
40665      * if enabled, then the date field will use a hidden field to store the 
40666      * real value as iso formated date. default (false)
40667      */ 
40668     useIso : false,
40669     /**
40670      * @cfg {String/Object} autoCreate
40671      * A DomHelper element spec, or true for a default element spec (defaults to
40672      * {tag: "input", type: "text", size: "10", autocomplete: "off"})
40673      */ 
40674     // private
40675     defaultAutoCreate : {tag: "input", type: "text", size: "10", autocomplete: "off"},
40676     
40677     // private
40678     hiddenField: false,
40679     
40680     onRender : function(ct, position)
40681     {
40682         Roo.form.DateField.superclass.onRender.call(this, ct, position);
40683         if (this.useIso) {
40684             //this.el.dom.removeAttribute('name'); 
40685             Roo.log("Changing name?");
40686             this.el.dom.setAttribute('name', this.name + '____hidden___' ); 
40687             this.hiddenField = this.el.insertSibling({ tag:'input', type:'hidden', name: this.name },
40688                     'before', true);
40689             this.hiddenField.value = this.value ? this.formatDate(this.value, 'Y-m-d') : '';
40690             // prevent input submission
40691             this.hiddenName = this.name;
40692         }
40693             
40694             
40695     },
40696     
40697     // private
40698     validateValue : function(value)
40699     {
40700         value = this.formatDate(value);
40701         if(!Roo.form.DateField.superclass.validateValue.call(this, value)){
40702             Roo.log('super failed');
40703             return false;
40704         }
40705         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
40706              return true;
40707         }
40708         var svalue = value;
40709         value = this.parseDate(value);
40710         if(!value){
40711             Roo.log('parse date failed' + svalue);
40712             this.markInvalid(String.format(this.invalidText, svalue, this.format));
40713             return false;
40714         }
40715         var time = value.getTime();
40716         if(this.minValue && time < this.minValue.getTime()){
40717             this.markInvalid(String.format(this.minText, this.formatDate(this.minValue)));
40718             return false;
40719         }
40720         if(this.maxValue && time > this.maxValue.getTime()){
40721             this.markInvalid(String.format(this.maxText, this.formatDate(this.maxValue)));
40722             return false;
40723         }
40724         if(this.disabledDays){
40725             var day = value.getDay();
40726             for(var i = 0; i < this.disabledDays.length; i++) {
40727                 if(day === this.disabledDays[i]){
40728                     this.markInvalid(this.disabledDaysText);
40729                     return false;
40730                 }
40731             }
40732         }
40733         var fvalue = this.formatDate(value);
40734         if(this.ddMatch && this.ddMatch.test(fvalue)){
40735             this.markInvalid(String.format(this.disabledDatesText, fvalue));
40736             return false;
40737         }
40738         return true;
40739     },
40740
40741     // private
40742     // Provides logic to override the default TriggerField.validateBlur which just returns true
40743     validateBlur : function(){
40744         return !this.menu || !this.menu.isVisible();
40745     },
40746     
40747     getName: function()
40748     {
40749         // returns hidden if it's set..
40750         if (!this.rendered) {return ''};
40751         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
40752         
40753     },
40754
40755     /**
40756      * Returns the current date value of the date field.
40757      * @return {Date} The date value
40758      */
40759     getValue : function(){
40760         
40761         return  this.hiddenField ?
40762                 this.hiddenField.value :
40763                 this.parseDate(Roo.form.DateField.superclass.getValue.call(this)) || "";
40764     },
40765
40766     /**
40767      * Sets the value of the date field.  You can pass a date object or any string that can be parsed into a valid
40768      * date, using DateField.format as the date format, according to the same rules as {@link Date#parseDate}
40769      * (the default format used is "m/d/y").
40770      * <br />Usage:
40771      * <pre><code>
40772 //All of these calls set the same date value (May 4, 2006)
40773
40774 //Pass a date object:
40775 var dt = new Date('5/4/06');
40776 dateField.setValue(dt);
40777
40778 //Pass a date string (default format):
40779 dateField.setValue('5/4/06');
40780
40781 //Pass a date string (custom format):
40782 dateField.format = 'Y-m-d';
40783 dateField.setValue('2006-5-4');
40784 </code></pre>
40785      * @param {String/Date} date The date or valid date string
40786      */
40787     setValue : function(date){
40788         if (this.hiddenField) {
40789             this.hiddenField.value = this.formatDate(this.parseDate(date), 'Y-m-d');
40790         }
40791         Roo.form.DateField.superclass.setValue.call(this, this.formatDate(this.parseDate(date)));
40792         // make sure the value field is always stored as a date..
40793         this.value = this.parseDate(date);
40794         
40795         
40796     },
40797
40798     // private
40799     parseDate : function(value){
40800         if(!value || value instanceof Date){
40801             return value;
40802         }
40803         var v = Date.parseDate(value, this.format);
40804          if (!v && this.useIso) {
40805             v = Date.parseDate(value, 'Y-m-d');
40806         }
40807         if(!v && this.altFormats){
40808             if(!this.altFormatsArray){
40809                 this.altFormatsArray = this.altFormats.split("|");
40810             }
40811             for(var i = 0, len = this.altFormatsArray.length; i < len && !v; i++){
40812                 v = Date.parseDate(value, this.altFormatsArray[i]);
40813             }
40814         }
40815         return v;
40816     },
40817
40818     // private
40819     formatDate : function(date, fmt){
40820         return (!date || !(date instanceof Date)) ?
40821                date : date.dateFormat(fmt || this.format);
40822     },
40823
40824     // private
40825     menuListeners : {
40826         select: function(m, d){
40827             
40828             this.setValue(d);
40829             this.fireEvent('select', this, d);
40830         },
40831         show : function(){ // retain focus styling
40832             this.onFocus();
40833         },
40834         hide : function(){
40835             this.focus.defer(10, this);
40836             var ml = this.menuListeners;
40837             this.menu.un("select", ml.select,  this);
40838             this.menu.un("show", ml.show,  this);
40839             this.menu.un("hide", ml.hide,  this);
40840         }
40841     },
40842
40843     // private
40844     // Implements the default empty TriggerField.onTriggerClick function to display the DatePicker
40845     onTriggerClick : function(){
40846         if(this.disabled){
40847             return;
40848         }
40849         if(this.menu == null){
40850             this.menu = new Roo.menu.DateMenu();
40851         }
40852         Roo.apply(this.menu.picker,  {
40853             showClear: this.allowBlank,
40854             minDate : this.minValue,
40855             maxDate : this.maxValue,
40856             disabledDatesRE : this.ddMatch,
40857             disabledDatesText : this.disabledDatesText,
40858             disabledDays : this.disabledDays,
40859             disabledDaysText : this.disabledDaysText,
40860             format : this.useIso ? 'Y-m-d' : this.format,
40861             minText : String.format(this.minText, this.formatDate(this.minValue)),
40862             maxText : String.format(this.maxText, this.formatDate(this.maxValue))
40863         });
40864         this.menu.on(Roo.apply({}, this.menuListeners, {
40865             scope:this
40866         }));
40867         this.menu.picker.setValue(this.getValue() || new Date());
40868         this.menu.show(this.el, "tl-bl?");
40869     },
40870
40871     beforeBlur : function(){
40872         var v = this.parseDate(this.getRawValue());
40873         if(v){
40874             this.setValue(v);
40875         }
40876     },
40877
40878     /*@
40879      * overide
40880      * 
40881      */
40882     isDirty : function() {
40883         if(this.disabled) {
40884             return false;
40885         }
40886         
40887         if(typeof(this.startValue) === 'undefined'){
40888             return false;
40889         }
40890         
40891         return String(this.getValue()) !== String(this.startValue);
40892         
40893     },
40894     // @overide
40895     cleanLeadingSpace : function(e)
40896     {
40897        return;
40898     }
40899     
40900 });/*
40901  * Based on:
40902  * Ext JS Library 1.1.1
40903  * Copyright(c) 2006-2007, Ext JS, LLC.
40904  *
40905  * Originally Released Under LGPL - original licence link has changed is not relivant.
40906  *
40907  * Fork - LGPL
40908  * <script type="text/javascript">
40909  */
40910  
40911 /**
40912  * @class Roo.form.MonthField
40913  * @extends Roo.form.TriggerField
40914  * Provides a date input field with a {@link Roo.DatePicker} dropdown and automatic date validation.
40915 * @constructor
40916 * Create a new MonthField
40917 * @param {Object} config
40918  */
40919 Roo.form.MonthField = function(config){
40920     
40921     Roo.form.MonthField.superclass.constructor.call(this, config);
40922     
40923       this.addEvents({
40924          
40925         /**
40926          * @event select
40927          * Fires when a date is selected
40928              * @param {Roo.form.MonthFieeld} combo This combo box
40929              * @param {Date} date The date selected
40930              */
40931         'select' : true
40932          
40933     });
40934     
40935     
40936     if(typeof this.minValue == "string") {
40937         this.minValue = this.parseDate(this.minValue);
40938     }
40939     if(typeof this.maxValue == "string") {
40940         this.maxValue = this.parseDate(this.maxValue);
40941     }
40942     this.ddMatch = null;
40943     if(this.disabledDates){
40944         var dd = this.disabledDates;
40945         var re = "(?:";
40946         for(var i = 0; i < dd.length; i++){
40947             re += dd[i];
40948             if(i != dd.length-1) {
40949                 re += "|";
40950             }
40951         }
40952         this.ddMatch = new RegExp(re + ")");
40953     }
40954 };
40955
40956 Roo.extend(Roo.form.MonthField, Roo.form.TriggerField,  {
40957     /**
40958      * @cfg {String} format
40959      * The default date format string which can be overriden for localization support.  The format must be
40960      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
40961      */
40962     format : "M Y",
40963     /**
40964      * @cfg {String} altFormats
40965      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
40966      * format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
40967      */
40968     altFormats : "M Y|m/Y|m-y|m-Y|my|mY",
40969     /**
40970      * @cfg {Array} disabledDays
40971      * An array of days to disable, 0 based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
40972      */
40973     disabledDays : [0,1,2,3,4,5,6],
40974     /**
40975      * @cfg {String} disabledDaysText
40976      * The tooltip to display when the date falls on a disabled day (defaults to 'Disabled')
40977      */
40978     disabledDaysText : "Disabled",
40979     /**
40980      * @cfg {Array} disabledDates
40981      * An array of "dates" to disable, as strings. These strings will be used to build a dynamic regular
40982      * expression so they are very powerful. Some examples:
40983      * <ul>
40984      * <li>["03/08/2003", "09/16/2003"] would disable those exact dates</li>
40985      * <li>["03/08", "09/16"] would disable those days for every year</li>
40986      * <li>["^03/08"] would only match the beginning (useful if you are using short years)</li>
40987      * <li>["03/../2006"] would disable every day in March 2006</li>
40988      * <li>["^03"] would disable every day in every March</li>
40989      * </ul>
40990      * In order to support regular expressions, if you are using a date format that has "." in it, you will have to
40991      * escape the dot when restricting dates. For example: ["03\\.08\\.03"].
40992      */
40993     disabledDates : null,
40994     /**
40995      * @cfg {String} disabledDatesText
40996      * The tooltip text to display when the date falls on a disabled date (defaults to 'Disabled')
40997      */
40998     disabledDatesText : "Disabled",
40999     /**
41000      * @cfg {Date/String} minValue
41001      * The minimum allowed date. Can be either a Javascript date object or a string date in a
41002      * valid format (defaults to null).
41003      */
41004     minValue : null,
41005     /**
41006      * @cfg {Date/String} maxValue
41007      * The maximum allowed date. Can be either a Javascript date object or a string date in a
41008      * valid format (defaults to null).
41009      */
41010     maxValue : null,
41011     /**
41012      * @cfg {String} minText
41013      * The error text to display when the date in the cell is before minValue (defaults to
41014      * 'The date in this field must be after {minValue}').
41015      */
41016     minText : "The date in this field must be equal to or after {0}",
41017     /**
41018      * @cfg {String} maxTextf
41019      * The error text to display when the date in the cell is after maxValue (defaults to
41020      * 'The date in this field must be before {maxValue}').
41021      */
41022     maxText : "The date in this field must be equal to or before {0}",
41023     /**
41024      * @cfg {String} invalidText
41025      * The error text to display when the date in the field is invalid (defaults to
41026      * '{value} is not a valid date - it must be in the format {format}').
41027      */
41028     invalidText : "{0} is not a valid date - it must be in the format {1}",
41029     /**
41030      * @cfg {String} triggerClass
41031      * An additional CSS class used to style the trigger button.  The trigger will always get the
41032      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-date-trigger'
41033      * which displays a calendar icon).
41034      */
41035     triggerClass : 'x-form-date-trigger',
41036     
41037
41038     /**
41039      * @cfg {Boolean} useIso
41040      * if enabled, then the date field will use a hidden field to store the 
41041      * real value as iso formated date. default (true)
41042      */ 
41043     useIso : true,
41044     /**
41045      * @cfg {String/Object} autoCreate
41046      * A DomHelper element spec, or true for a default element spec (defaults to
41047      * {tag: "input", type: "text", size: "10", autocomplete: "off"})
41048      */ 
41049     // private
41050     defaultAutoCreate : {tag: "input", type: "text", size: "10", autocomplete: "new-password"},
41051     
41052     // private
41053     hiddenField: false,
41054     
41055     hideMonthPicker : false,
41056     
41057     onRender : function(ct, position)
41058     {
41059         Roo.form.MonthField.superclass.onRender.call(this, ct, position);
41060         if (this.useIso) {
41061             this.el.dom.removeAttribute('name'); 
41062             this.hiddenField = this.el.insertSibling({ tag:'input', type:'hidden', name: this.name },
41063                     'before', true);
41064             this.hiddenField.value = this.value ? this.formatDate(this.value, 'Y-m-d') : '';
41065             // prevent input submission
41066             this.hiddenName = this.name;
41067         }
41068             
41069             
41070     },
41071     
41072     // private
41073     validateValue : function(value)
41074     {
41075         value = this.formatDate(value);
41076         if(!Roo.form.MonthField.superclass.validateValue.call(this, value)){
41077             return false;
41078         }
41079         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
41080              return true;
41081         }
41082         var svalue = value;
41083         value = this.parseDate(value);
41084         if(!value){
41085             this.markInvalid(String.format(this.invalidText, svalue, this.format));
41086             return false;
41087         }
41088         var time = value.getTime();
41089         if(this.minValue && time < this.minValue.getTime()){
41090             this.markInvalid(String.format(this.minText, this.formatDate(this.minValue)));
41091             return false;
41092         }
41093         if(this.maxValue && time > this.maxValue.getTime()){
41094             this.markInvalid(String.format(this.maxText, this.formatDate(this.maxValue)));
41095             return false;
41096         }
41097         /*if(this.disabledDays){
41098             var day = value.getDay();
41099             for(var i = 0; i < this.disabledDays.length; i++) {
41100                 if(day === this.disabledDays[i]){
41101                     this.markInvalid(this.disabledDaysText);
41102                     return false;
41103                 }
41104             }
41105         }
41106         */
41107         var fvalue = this.formatDate(value);
41108         /*if(this.ddMatch && this.ddMatch.test(fvalue)){
41109             this.markInvalid(String.format(this.disabledDatesText, fvalue));
41110             return false;
41111         }
41112         */
41113         return true;
41114     },
41115
41116     // private
41117     // Provides logic to override the default TriggerField.validateBlur which just returns true
41118     validateBlur : function(){
41119         return !this.menu || !this.menu.isVisible();
41120     },
41121
41122     /**
41123      * Returns the current date value of the date field.
41124      * @return {Date} The date value
41125      */
41126     getValue : function(){
41127         
41128         
41129         
41130         return  this.hiddenField ?
41131                 this.hiddenField.value :
41132                 this.parseDate(Roo.form.MonthField.superclass.getValue.call(this)) || "";
41133     },
41134
41135     /**
41136      * Sets the value of the date field.  You can pass a date object or any string that can be parsed into a valid
41137      * date, using MonthField.format as the date format, according to the same rules as {@link Date#parseDate}
41138      * (the default format used is "m/d/y").
41139      * <br />Usage:
41140      * <pre><code>
41141 //All of these calls set the same date value (May 4, 2006)
41142
41143 //Pass a date object:
41144 var dt = new Date('5/4/06');
41145 monthField.setValue(dt);
41146
41147 //Pass a date string (default format):
41148 monthField.setValue('5/4/06');
41149
41150 //Pass a date string (custom format):
41151 monthField.format = 'Y-m-d';
41152 monthField.setValue('2006-5-4');
41153 </code></pre>
41154      * @param {String/Date} date The date or valid date string
41155      */
41156     setValue : function(date){
41157         Roo.log('month setValue' + date);
41158         // can only be first of month..
41159         
41160         var val = this.parseDate(date);
41161         
41162         if (this.hiddenField) {
41163             this.hiddenField.value = this.formatDate(this.parseDate(date), 'Y-m-d');
41164         }
41165         Roo.form.MonthField.superclass.setValue.call(this, this.formatDate(this.parseDate(date)));
41166         this.value = this.parseDate(date);
41167     },
41168
41169     // private
41170     parseDate : function(value){
41171         if(!value || value instanceof Date){
41172             value = value ? Date.parseDate(value.format('Y-m') + '-01', 'Y-m-d') : null;
41173             return value;
41174         }
41175         var v = Date.parseDate(value, this.format);
41176         if (!v && this.useIso) {
41177             v = Date.parseDate(value, 'Y-m-d');
41178         }
41179         if (v) {
41180             // 
41181             v = Date.parseDate(v.format('Y-m') +'-01', 'Y-m-d');
41182         }
41183         
41184         
41185         if(!v && this.altFormats){
41186             if(!this.altFormatsArray){
41187                 this.altFormatsArray = this.altFormats.split("|");
41188             }
41189             for(var i = 0, len = this.altFormatsArray.length; i < len && !v; i++){
41190                 v = Date.parseDate(value, this.altFormatsArray[i]);
41191             }
41192         }
41193         return v;
41194     },
41195
41196     // private
41197     formatDate : function(date, fmt){
41198         return (!date || !(date instanceof Date)) ?
41199                date : date.dateFormat(fmt || this.format);
41200     },
41201
41202     // private
41203     menuListeners : {
41204         select: function(m, d){
41205             this.setValue(d);
41206             this.fireEvent('select', this, d);
41207         },
41208         show : function(){ // retain focus styling
41209             this.onFocus();
41210         },
41211         hide : function(){
41212             this.focus.defer(10, this);
41213             var ml = this.menuListeners;
41214             this.menu.un("select", ml.select,  this);
41215             this.menu.un("show", ml.show,  this);
41216             this.menu.un("hide", ml.hide,  this);
41217         }
41218     },
41219     // private
41220     // Implements the default empty TriggerField.onTriggerClick function to display the DatePicker
41221     onTriggerClick : function(){
41222         if(this.disabled){
41223             return;
41224         }
41225         if(this.menu == null){
41226             this.menu = new Roo.menu.DateMenu();
41227            
41228         }
41229         
41230         Roo.apply(this.menu.picker,  {
41231             
41232             showClear: this.allowBlank,
41233             minDate : this.minValue,
41234             maxDate : this.maxValue,
41235             disabledDatesRE : this.ddMatch,
41236             disabledDatesText : this.disabledDatesText,
41237             
41238             format : this.useIso ? 'Y-m-d' : this.format,
41239             minText : String.format(this.minText, this.formatDate(this.minValue)),
41240             maxText : String.format(this.maxText, this.formatDate(this.maxValue))
41241             
41242         });
41243          this.menu.on(Roo.apply({}, this.menuListeners, {
41244             scope:this
41245         }));
41246        
41247         
41248         var m = this.menu;
41249         var p = m.picker;
41250         
41251         // hide month picker get's called when we called by 'before hide';
41252         
41253         var ignorehide = true;
41254         p.hideMonthPicker  = function(disableAnim){
41255             if (ignorehide) {
41256                 return;
41257             }
41258              if(this.monthPicker){
41259                 Roo.log("hideMonthPicker called");
41260                 if(disableAnim === true){
41261                     this.monthPicker.hide();
41262                 }else{
41263                     this.monthPicker.slideOut('t', {duration:.2});
41264                     p.setValue(new Date(m.picker.mpSelYear, m.picker.mpSelMonth, 1));
41265                     p.fireEvent("select", this, this.value);
41266                     m.hide();
41267                 }
41268             }
41269         }
41270         
41271         Roo.log('picker set value');
41272         Roo.log(this.getValue());
41273         p.setValue(this.getValue() ? this.parseDate(this.getValue()) : new Date());
41274         m.show(this.el, 'tl-bl?');
41275         ignorehide  = false;
41276         // this will trigger hideMonthPicker..
41277         
41278         
41279         // hidden the day picker
41280         Roo.select('.x-date-picker table', true).first().dom.style.visibility = "hidden";
41281         
41282         
41283         
41284       
41285         
41286         p.showMonthPicker.defer(100, p);
41287     
41288         
41289        
41290     },
41291
41292     beforeBlur : function(){
41293         var v = this.parseDate(this.getRawValue());
41294         if(v){
41295             this.setValue(v);
41296         }
41297     }
41298
41299     /** @cfg {Boolean} grow @hide */
41300     /** @cfg {Number} growMin @hide */
41301     /** @cfg {Number} growMax @hide */
41302     /**
41303      * @hide
41304      * @method autoSize
41305      */
41306 });/*
41307  * Based on:
41308  * Ext JS Library 1.1.1
41309  * Copyright(c) 2006-2007, Ext JS, LLC.
41310  *
41311  * Originally Released Under LGPL - original licence link has changed is not relivant.
41312  *
41313  * Fork - LGPL
41314  * <script type="text/javascript">
41315  */
41316  
41317
41318 /**
41319  * @class Roo.form.ComboBox
41320  * @extends Roo.form.TriggerField
41321  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
41322  * @constructor
41323  * Create a new ComboBox.
41324  * @param {Object} config Configuration options
41325  */
41326 Roo.form.ComboBox = function(config){
41327     Roo.form.ComboBox.superclass.constructor.call(this, config);
41328     this.addEvents({
41329         /**
41330          * @event expand
41331          * Fires when the dropdown list is expanded
41332              * @param {Roo.form.ComboBox} combo This combo box
41333              */
41334         'expand' : true,
41335         /**
41336          * @event collapse
41337          * Fires when the dropdown list is collapsed
41338              * @param {Roo.form.ComboBox} combo This combo box
41339              */
41340         'collapse' : true,
41341         /**
41342          * @event beforeselect
41343          * Fires before a list item is selected. Return false to cancel the selection.
41344              * @param {Roo.form.ComboBox} combo This combo box
41345              * @param {Roo.data.Record} record The data record returned from the underlying store
41346              * @param {Number} index The index of the selected item in the dropdown list
41347              */
41348         'beforeselect' : true,
41349         /**
41350          * @event select
41351          * Fires when a list item is selected
41352              * @param {Roo.form.ComboBox} combo This combo box
41353              * @param {Roo.data.Record} record The data record returned from the underlying store (or false on clear)
41354              * @param {Number} index The index of the selected item in the dropdown list
41355              */
41356         'select' : true,
41357         /**
41358          * @event beforequery
41359          * Fires before all queries are processed. Return false to cancel the query or set cancel to true.
41360          * The event object passed has these properties:
41361              * @param {Roo.form.ComboBox} combo This combo box
41362              * @param {String} query The query
41363              * @param {Boolean} forceAll true to force "all" query
41364              * @param {Boolean} cancel true to cancel the query
41365              * @param {Object} e The query event object
41366              */
41367         'beforequery': true,
41368          /**
41369          * @event add
41370          * Fires when the 'add' icon is pressed (add a listener to enable add button)
41371              * @param {Roo.form.ComboBox} combo This combo box
41372              */
41373         'add' : true,
41374         /**
41375          * @event edit
41376          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
41377              * @param {Roo.form.ComboBox} combo This combo box
41378              * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
41379              */
41380         'edit' : true
41381         
41382         
41383     });
41384     if(this.transform){
41385         this.allowDomMove = false;
41386         var s = Roo.getDom(this.transform);
41387         if(!this.hiddenName){
41388             this.hiddenName = s.name;
41389         }
41390         if(!this.store){
41391             this.mode = 'local';
41392             var d = [], opts = s.options;
41393             for(var i = 0, len = opts.length;i < len; i++){
41394                 var o = opts[i];
41395                 var value = (Roo.isIE ? o.getAttributeNode('value').specified : o.hasAttribute('value')) ? o.value : o.text;
41396                 if(o.selected) {
41397                     this.value = value;
41398                 }
41399                 d.push([value, o.text]);
41400             }
41401             this.store = new Roo.data.SimpleStore({
41402                 'id': 0,
41403                 fields: ['value', 'text'],
41404                 data : d
41405             });
41406             this.valueField = 'value';
41407             this.displayField = 'text';
41408         }
41409         s.name = Roo.id(); // wipe out the name in case somewhere else they have a reference
41410         if(!this.lazyRender){
41411             this.target = true;
41412             this.el = Roo.DomHelper.insertBefore(s, this.autoCreate || this.defaultAutoCreate);
41413             s.parentNode.removeChild(s); // remove it
41414             this.render(this.el.parentNode);
41415         }else{
41416             s.parentNode.removeChild(s); // remove it
41417         }
41418
41419     }
41420     if (this.store) {
41421         this.store = Roo.factory(this.store, Roo.data);
41422     }
41423     
41424     this.selectedIndex = -1;
41425     if(this.mode == 'local'){
41426         if(config.queryDelay === undefined){
41427             this.queryDelay = 10;
41428         }
41429         if(config.minChars === undefined){
41430             this.minChars = 0;
41431         }
41432     }
41433 };
41434
41435 Roo.extend(Roo.form.ComboBox, Roo.form.TriggerField, {
41436     /**
41437      * @cfg {String/HTMLElement/Element} transform The id, DOM node or element of an existing select to convert to a ComboBox
41438      */
41439     /**
41440      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
41441      * rendering into an Roo.Editor, defaults to false)
41442      */
41443     /**
41444      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
41445      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
41446      */
41447     /**
41448      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
41449      */
41450     /**
41451      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
41452      * the dropdown list (defaults to undefined, with no header element)
41453      */
41454
41455      /**
41456      * @cfg {String/Roo.Template} tpl The template to use to render the output
41457      */
41458      
41459     // private
41460     defaultAutoCreate : {tag: "input", type: "text", size: "24", autocomplete: "off"},
41461     /**
41462      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
41463      */
41464     listWidth: undefined,
41465     /**
41466      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
41467      * mode = 'remote' or 'text' if mode = 'local')
41468      */
41469     displayField: undefined,
41470     /**
41471      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
41472      * mode = 'remote' or 'value' if mode = 'local'). 
41473      * Note: use of a valueField requires the user make a selection
41474      * in order for a value to be mapped.
41475      */
41476     valueField: undefined,
41477     
41478     
41479     /**
41480      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
41481      * field's data value (defaults to the underlying DOM element's name)
41482      */
41483     hiddenName: undefined,
41484     /**
41485      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
41486      */
41487     listClass: '',
41488     /**
41489      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
41490      */
41491     selectedClass: 'x-combo-selected',
41492     /**
41493      * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
41494      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-arrow-trigger'
41495      * which displays a downward arrow icon).
41496      */
41497     triggerClass : 'x-form-arrow-trigger',
41498     /**
41499      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
41500      */
41501     shadow:'sides',
41502     /**
41503      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
41504      * anchor positions (defaults to 'tl-bl')
41505      */
41506     listAlign: 'tl-bl?',
41507     /**
41508      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
41509      */
41510     maxHeight: 300,
41511     /**
41512      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
41513      * query specified by the allQuery config option (defaults to 'query')
41514      */
41515     triggerAction: 'query',
41516     /**
41517      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
41518      * (defaults to 4, does not apply if editable = false)
41519      */
41520     minChars : 4,
41521     /**
41522      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
41523      * delay (typeAheadDelay) if it matches a known value (defaults to false)
41524      */
41525     typeAhead: false,
41526     /**
41527      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
41528      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
41529      */
41530     queryDelay: 500,
41531     /**
41532      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
41533      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
41534      */
41535     pageSize: 0,
41536     /**
41537      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
41538      * when editable = true (defaults to false)
41539      */
41540     selectOnFocus:false,
41541     /**
41542      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
41543      */
41544     queryParam: 'query',
41545     /**
41546      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
41547      * when mode = 'remote' (defaults to 'Loading...')
41548      */
41549     loadingText: 'Loading...',
41550     /**
41551      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
41552      */
41553     resizable: false,
41554     /**
41555      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
41556      */
41557     handleHeight : 8,
41558     /**
41559      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
41560      * traditional select (defaults to true)
41561      */
41562     editable: true,
41563     /**
41564      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
41565      */
41566     allQuery: '',
41567     /**
41568      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
41569      */
41570     mode: 'remote',
41571     /**
41572      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
41573      * listWidth has a higher value)
41574      */
41575     minListWidth : 70,
41576     /**
41577      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
41578      * allow the user to set arbitrary text into the field (defaults to false)
41579      */
41580     forceSelection:false,
41581     /**
41582      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
41583      * if typeAhead = true (defaults to 250)
41584      */
41585     typeAheadDelay : 250,
41586     /**
41587      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
41588      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
41589      */
41590     valueNotFoundText : undefined,
41591     /**
41592      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
41593      */
41594     blockFocus : false,
41595     
41596     /**
41597      * @cfg {Boolean} disableClear Disable showing of clear button.
41598      */
41599     disableClear : false,
41600     /**
41601      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
41602      */
41603     alwaysQuery : false,
41604     
41605     //private
41606     addicon : false,
41607     editicon: false,
41608     
41609     // element that contains real text value.. (when hidden is used..)
41610      
41611     // private
41612     onRender : function(ct, position)
41613     {
41614         Roo.form.ComboBox.superclass.onRender.call(this, ct, position);
41615         
41616         if(this.hiddenName){
41617             this.hiddenField = this.el.insertSibling({tag:'input', type:'hidden', name: this.hiddenName, id:  (this.hiddenId||this.hiddenName)},
41618                     'before', true);
41619             this.hiddenField.value =
41620                 this.hiddenValue !== undefined ? this.hiddenValue :
41621                 this.value !== undefined ? this.value : '';
41622
41623             // prevent input submission
41624             this.el.dom.removeAttribute('name');
41625              
41626              
41627         }
41628         
41629         if(Roo.isGecko){
41630             this.el.dom.setAttribute('autocomplete', 'off');
41631         }
41632
41633         var cls = 'x-combo-list';
41634
41635         this.list = new Roo.Layer({
41636             shadow: this.shadow, cls: [cls, this.listClass].join(' '), constrain:false
41637         });
41638
41639         var lw = this.listWidth || Math.max(this.wrap.getWidth(), this.minListWidth);
41640         this.list.setWidth(lw);
41641         this.list.swallowEvent('mousewheel');
41642         this.assetHeight = 0;
41643
41644         if(this.title){
41645             this.header = this.list.createChild({cls:cls+'-hd', html: this.title});
41646             this.assetHeight += this.header.getHeight();
41647         }
41648
41649         this.innerList = this.list.createChild({cls:cls+'-inner'});
41650         this.innerList.on('mouseover', this.onViewOver, this);
41651         this.innerList.on('mousemove', this.onViewMove, this);
41652         this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
41653         
41654         if(this.allowBlank && !this.pageSize && !this.disableClear){
41655             this.footer = this.list.createChild({cls:cls+'-ft'});
41656             this.pageTb = new Roo.Toolbar(this.footer);
41657            
41658         }
41659         if(this.pageSize){
41660             this.footer = this.list.createChild({cls:cls+'-ft'});
41661             this.pageTb = new Roo.PagingToolbar(this.footer, this.store,
41662                     {pageSize: this.pageSize});
41663             
41664         }
41665         
41666         if (this.pageTb && this.allowBlank && !this.disableClear) {
41667             var _this = this;
41668             this.pageTb.add(new Roo.Toolbar.Fill(), {
41669                 cls: 'x-btn-icon x-btn-clear',
41670                 text: '&#160;',
41671                 handler: function()
41672                 {
41673                     _this.collapse();
41674                     _this.clearValue();
41675                     _this.onSelect(false, -1);
41676                 }
41677             });
41678         }
41679         if (this.footer) {
41680             this.assetHeight += this.footer.getHeight();
41681         }
41682         
41683
41684         if(!this.tpl){
41685             this.tpl = '<div class="'+cls+'-item">{' + this.displayField + '}</div>';
41686         }
41687
41688         this.view = new Roo.View(this.innerList, this.tpl, {
41689             singleSelect:true,
41690             store: this.store,
41691             selectedClass: this.selectedClass
41692         });
41693
41694         this.view.on('click', this.onViewClick, this);
41695
41696         this.store.on('beforeload', this.onBeforeLoad, this);
41697         this.store.on('load', this.onLoad, this);
41698         this.store.on('loadexception', this.onLoadException, this);
41699
41700         if(this.resizable){
41701             this.resizer = new Roo.Resizable(this.list,  {
41702                pinned:true, handles:'se'
41703             });
41704             this.resizer.on('resize', function(r, w, h){
41705                 this.maxHeight = h-this.handleHeight-this.list.getFrameWidth('tb')-this.assetHeight;
41706                 this.listWidth = w;
41707                 this.innerList.setWidth(w - this.list.getFrameWidth('lr'));
41708                 this.restrictHeight();
41709             }, this);
41710             this[this.pageSize?'footer':'innerList'].setStyle('margin-bottom', this.handleHeight+'px');
41711         }
41712         if(!this.editable){
41713             this.editable = true;
41714             this.setEditable(false);
41715         }  
41716         
41717         
41718         if (typeof(this.events.add.listeners) != 'undefined') {
41719             
41720             this.addicon = this.wrap.createChild(
41721                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-add' });  
41722        
41723             this.addicon.on('click', function(e) {
41724                 this.fireEvent('add', this);
41725             }, this);
41726         }
41727         if (typeof(this.events.edit.listeners) != 'undefined') {
41728             
41729             this.editicon = this.wrap.createChild(
41730                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-edit' });  
41731             if (this.addicon) {
41732                 this.editicon.setStyle('margin-left', '40px');
41733             }
41734             this.editicon.on('click', function(e) {
41735                 
41736                 // we fire even  if inothing is selected..
41737                 this.fireEvent('edit', this, this.lastData );
41738                 
41739             }, this);
41740         }
41741         
41742         
41743         
41744     },
41745
41746     // private
41747     initEvents : function(){
41748         Roo.form.ComboBox.superclass.initEvents.call(this);
41749
41750         this.keyNav = new Roo.KeyNav(this.el, {
41751             "up" : function(e){
41752                 this.inKeyMode = true;
41753                 this.selectPrev();
41754             },
41755
41756             "down" : function(e){
41757                 if(!this.isExpanded()){
41758                     this.onTriggerClick();
41759                 }else{
41760                     this.inKeyMode = true;
41761                     this.selectNext();
41762                 }
41763             },
41764
41765             "enter" : function(e){
41766                 this.onViewClick();
41767                 //return true;
41768             },
41769
41770             "esc" : function(e){
41771                 this.collapse();
41772             },
41773
41774             "tab" : function(e){
41775                 this.onViewClick(false);
41776                 this.fireEvent("specialkey", this, e);
41777                 return true;
41778             },
41779
41780             scope : this,
41781
41782             doRelay : function(foo, bar, hname){
41783                 if(hname == 'down' || this.scope.isExpanded()){
41784                    return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
41785                 }
41786                 return true;
41787             },
41788
41789             forceKeyDown: true
41790         });
41791         this.queryDelay = Math.max(this.queryDelay || 10,
41792                 this.mode == 'local' ? 10 : 250);
41793         this.dqTask = new Roo.util.DelayedTask(this.initQuery, this);
41794         if(this.typeAhead){
41795             this.taTask = new Roo.util.DelayedTask(this.onTypeAhead, this);
41796         }
41797         if(this.editable !== false){
41798             this.el.on("keyup", this.onKeyUp, this);
41799         }
41800         if(this.forceSelection){
41801             this.on('blur', this.doForce, this);
41802         }
41803     },
41804
41805     onDestroy : function(){
41806         if(this.view){
41807             this.view.setStore(null);
41808             this.view.el.removeAllListeners();
41809             this.view.el.remove();
41810             this.view.purgeListeners();
41811         }
41812         if(this.list){
41813             this.list.destroy();
41814         }
41815         if(this.store){
41816             this.store.un('beforeload', this.onBeforeLoad, this);
41817             this.store.un('load', this.onLoad, this);
41818             this.store.un('loadexception', this.onLoadException, this);
41819         }
41820         Roo.form.ComboBox.superclass.onDestroy.call(this);
41821     },
41822
41823     // private
41824     fireKey : function(e){
41825         if(e.isNavKeyPress() && !this.list.isVisible()){
41826             this.fireEvent("specialkey", this, e);
41827         }
41828     },
41829
41830     // private
41831     onResize: function(w, h){
41832         Roo.form.ComboBox.superclass.onResize.apply(this, arguments);
41833         
41834         if(typeof w != 'number'){
41835             // we do not handle it!?!?
41836             return;
41837         }
41838         var tw = this.trigger.getWidth();
41839         tw += this.addicon ? this.addicon.getWidth() : 0;
41840         tw += this.editicon ? this.editicon.getWidth() : 0;
41841         var x = w - tw;
41842         this.el.setWidth( this.adjustWidth('input', x));
41843             
41844         this.trigger.setStyle('left', x+'px');
41845         
41846         if(this.list && this.listWidth === undefined){
41847             var lw = Math.max(x + this.trigger.getWidth(), this.minListWidth);
41848             this.list.setWidth(lw);
41849             this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
41850         }
41851         
41852     
41853         
41854     },
41855
41856     /**
41857      * Allow or prevent the user from directly editing the field text.  If false is passed,
41858      * the user will only be able to select from the items defined in the dropdown list.  This method
41859      * is the runtime equivalent of setting the 'editable' config option at config time.
41860      * @param {Boolean} value True to allow the user to directly edit the field text
41861      */
41862     setEditable : function(value){
41863         if(value == this.editable){
41864             return;
41865         }
41866         this.editable = value;
41867         if(!value){
41868             this.el.dom.setAttribute('readOnly', true);
41869             this.el.on('mousedown', this.onTriggerClick,  this);
41870             this.el.addClass('x-combo-noedit');
41871         }else{
41872             this.el.dom.setAttribute('readOnly', false);
41873             this.el.un('mousedown', this.onTriggerClick,  this);
41874             this.el.removeClass('x-combo-noedit');
41875         }
41876     },
41877
41878     // private
41879     onBeforeLoad : function(){
41880         if(!this.hasFocus){
41881             return;
41882         }
41883         this.innerList.update(this.loadingText ?
41884                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
41885         this.restrictHeight();
41886         this.selectedIndex = -1;
41887     },
41888
41889     // private
41890     onLoad : function(){
41891         if(!this.hasFocus){
41892             return;
41893         }
41894         if(this.store.getCount() > 0){
41895             this.expand();
41896             this.restrictHeight();
41897             if(this.lastQuery == this.allQuery){
41898                 if(this.editable){
41899                     this.el.dom.select();
41900                 }
41901                 if(!this.selectByValue(this.value, true)){
41902                     this.select(0, true);
41903                 }
41904             }else{
41905                 this.selectNext();
41906                 if(this.typeAhead && this.lastKey != Roo.EventObject.BACKSPACE && this.lastKey != Roo.EventObject.DELETE){
41907                     this.taTask.delay(this.typeAheadDelay);
41908                 }
41909             }
41910         }else{
41911             this.onEmptyResults();
41912         }
41913         //this.el.focus();
41914     },
41915     // private
41916     onLoadException : function()
41917     {
41918         this.collapse();
41919         Roo.log(this.store.reader.jsonData);
41920         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
41921             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
41922         }
41923         
41924         
41925     },
41926     // private
41927     onTypeAhead : function(){
41928         if(this.store.getCount() > 0){
41929             var r = this.store.getAt(0);
41930             var newValue = r.data[this.displayField];
41931             var len = newValue.length;
41932             var selStart = this.getRawValue().length;
41933             if(selStart != len){
41934                 this.setRawValue(newValue);
41935                 this.selectText(selStart, newValue.length);
41936             }
41937         }
41938     },
41939
41940     // private
41941     onSelect : function(record, index){
41942         if(this.fireEvent('beforeselect', this, record, index) !== false){
41943             this.setFromData(index > -1 ? record.data : false);
41944             this.collapse();
41945             this.fireEvent('select', this, record, index);
41946         }
41947     },
41948
41949     /**
41950      * Returns the currently selected field value or empty string if no value is set.
41951      * @return {String} value The selected value
41952      */
41953     getValue : function(){
41954         if(this.valueField){
41955             return typeof this.value != 'undefined' ? this.value : '';
41956         }
41957         return Roo.form.ComboBox.superclass.getValue.call(this);
41958     },
41959
41960     /**
41961      * Clears any text/value currently set in the field
41962      */
41963     clearValue : function(){
41964         if(this.hiddenField){
41965             this.hiddenField.value = '';
41966         }
41967         this.value = '';
41968         this.setRawValue('');
41969         this.lastSelectionText = '';
41970         
41971     },
41972
41973     /**
41974      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
41975      * will be displayed in the field.  If the value does not match the data value of an existing item,
41976      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
41977      * Otherwise the field will be blank (although the value will still be set).
41978      * @param {String} value The value to match
41979      */
41980     setValue : function(v){
41981         var text = v;
41982         if(this.valueField){
41983             var r = this.findRecord(this.valueField, v);
41984             if(r){
41985                 text = r.data[this.displayField];
41986             }else if(this.valueNotFoundText !== undefined){
41987                 text = this.valueNotFoundText;
41988             }
41989         }
41990         this.lastSelectionText = text;
41991         if(this.hiddenField){
41992             this.hiddenField.value = v;
41993         }
41994         Roo.form.ComboBox.superclass.setValue.call(this, text);
41995         this.value = v;
41996     },
41997     /**
41998      * @property {Object} the last set data for the element
41999      */
42000     
42001     lastData : false,
42002     /**
42003      * Sets the value of the field based on a object which is related to the record format for the store.
42004      * @param {Object} value the value to set as. or false on reset?
42005      */
42006     setFromData : function(o){
42007         var dv = ''; // display value
42008         var vv = ''; // value value..
42009         this.lastData = o;
42010         if (this.displayField) {
42011             dv = !o || typeof(o[this.displayField]) == 'undefined' ? '' : o[this.displayField];
42012         } else {
42013             // this is an error condition!!!
42014             Roo.log('no  displayField value set for '+ (this.name ? this.name : this.id));
42015         }
42016         
42017         if(this.valueField){
42018             vv = !o || typeof(o[this.valueField]) == 'undefined' ? dv : o[this.valueField];
42019         }
42020         if(this.hiddenField){
42021             this.hiddenField.value = vv;
42022             
42023             this.lastSelectionText = dv;
42024             Roo.form.ComboBox.superclass.setValue.call(this, dv);
42025             this.value = vv;
42026             return;
42027         }
42028         // no hidden field.. - we store the value in 'value', but still display
42029         // display field!!!!
42030         this.lastSelectionText = dv;
42031         Roo.form.ComboBox.superclass.setValue.call(this, dv);
42032         this.value = vv;
42033         
42034         
42035     },
42036     // private
42037     reset : function(){
42038         // overridden so that last data is reset..
42039         this.setValue(this.resetValue);
42040         this.originalValue = this.getValue();
42041         this.clearInvalid();
42042         this.lastData = false;
42043         if (this.view) {
42044             this.view.clearSelections();
42045         }
42046     },
42047     // private
42048     findRecord : function(prop, value){
42049         var record;
42050         if(this.store.getCount() > 0){
42051             this.store.each(function(r){
42052                 if(r.data[prop] == value){
42053                     record = r;
42054                     return false;
42055                 }
42056                 return true;
42057             });
42058         }
42059         return record;
42060     },
42061     
42062     getName: function()
42063     {
42064         // returns hidden if it's set..
42065         if (!this.rendered) {return ''};
42066         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
42067         
42068     },
42069     // private
42070     onViewMove : function(e, t){
42071         this.inKeyMode = false;
42072     },
42073
42074     // private
42075     onViewOver : function(e, t){
42076         if(this.inKeyMode){ // prevent key nav and mouse over conflicts
42077             return;
42078         }
42079         var item = this.view.findItemFromChild(t);
42080         if(item){
42081             var index = this.view.indexOf(item);
42082             this.select(index, false);
42083         }
42084     },
42085
42086     // private
42087     onViewClick : function(doFocus)
42088     {
42089         var index = this.view.getSelectedIndexes()[0];
42090         var r = this.store.getAt(index);
42091         if(r){
42092             this.onSelect(r, index);
42093         }
42094         if(doFocus !== false && !this.blockFocus){
42095             this.el.focus();
42096         }
42097     },
42098
42099     // private
42100     restrictHeight : function(){
42101         this.innerList.dom.style.height = '';
42102         var inner = this.innerList.dom;
42103         var h = Math.max(inner.clientHeight, inner.offsetHeight, inner.scrollHeight);
42104         this.innerList.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
42105         this.list.beginUpdate();
42106         this.list.setHeight(this.innerList.getHeight()+this.list.getFrameWidth('tb')+(this.resizable?this.handleHeight:0)+this.assetHeight);
42107         this.list.alignTo(this.el, this.listAlign);
42108         this.list.endUpdate();
42109     },
42110
42111     // private
42112     onEmptyResults : function(){
42113         this.collapse();
42114     },
42115
42116     /**
42117      * Returns true if the dropdown list is expanded, else false.
42118      */
42119     isExpanded : function(){
42120         return this.list.isVisible();
42121     },
42122
42123     /**
42124      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
42125      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
42126      * @param {String} value The data value of the item to select
42127      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
42128      * selected item if it is not currently in view (defaults to true)
42129      * @return {Boolean} True if the value matched an item in the list, else false
42130      */
42131     selectByValue : function(v, scrollIntoView){
42132         if(v !== undefined && v !== null){
42133             var r = this.findRecord(this.valueField || this.displayField, v);
42134             if(r){
42135                 this.select(this.store.indexOf(r), scrollIntoView);
42136                 return true;
42137             }
42138         }
42139         return false;
42140     },
42141
42142     /**
42143      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
42144      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
42145      * @param {Number} index The zero-based index of the list item to select
42146      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
42147      * selected item if it is not currently in view (defaults to true)
42148      */
42149     select : function(index, scrollIntoView){
42150         this.selectedIndex = index;
42151         this.view.select(index);
42152         if(scrollIntoView !== false){
42153             var el = this.view.getNode(index);
42154             if(el){
42155                 this.innerList.scrollChildIntoView(el, false);
42156             }
42157         }
42158     },
42159
42160     // private
42161     selectNext : function(){
42162         var ct = this.store.getCount();
42163         if(ct > 0){
42164             if(this.selectedIndex == -1){
42165                 this.select(0);
42166             }else if(this.selectedIndex < ct-1){
42167                 this.select(this.selectedIndex+1);
42168             }
42169         }
42170     },
42171
42172     // private
42173     selectPrev : function(){
42174         var ct = this.store.getCount();
42175         if(ct > 0){
42176             if(this.selectedIndex == -1){
42177                 this.select(0);
42178             }else if(this.selectedIndex != 0){
42179                 this.select(this.selectedIndex-1);
42180             }
42181         }
42182     },
42183
42184     // private
42185     onKeyUp : function(e){
42186         if(this.editable !== false && !e.isSpecialKey()){
42187             this.lastKey = e.getKey();
42188             this.dqTask.delay(this.queryDelay);
42189         }
42190     },
42191
42192     // private
42193     validateBlur : function(){
42194         return !this.list || !this.list.isVisible();   
42195     },
42196
42197     // private
42198     initQuery : function(){
42199         this.doQuery(this.getRawValue());
42200     },
42201
42202     // private
42203     doForce : function(){
42204         if(this.el.dom.value.length > 0){
42205             this.el.dom.value =
42206                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
42207              
42208         }
42209     },
42210
42211     /**
42212      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
42213      * query allowing the query action to be canceled if needed.
42214      * @param {String} query The SQL query to execute
42215      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
42216      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
42217      * saved in the current store (defaults to false)
42218      */
42219     doQuery : function(q, forceAll){
42220         if(q === undefined || q === null){
42221             q = '';
42222         }
42223         var qe = {
42224             query: q,
42225             forceAll: forceAll,
42226             combo: this,
42227             cancel:false
42228         };
42229         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
42230             return false;
42231         }
42232         q = qe.query;
42233         forceAll = qe.forceAll;
42234         if(forceAll === true || (q.length >= this.minChars)){
42235             if(this.lastQuery != q || this.alwaysQuery){
42236                 this.lastQuery = q;
42237                 if(this.mode == 'local'){
42238                     this.selectedIndex = -1;
42239                     if(forceAll){
42240                         this.store.clearFilter();
42241                     }else{
42242                         this.store.filter(this.displayField, q);
42243                     }
42244                     this.onLoad();
42245                 }else{
42246                     this.store.baseParams[this.queryParam] = q;
42247                     this.store.load({
42248                         params: this.getParams(q)
42249                     });
42250                     this.expand();
42251                 }
42252             }else{
42253                 this.selectedIndex = -1;
42254                 this.onLoad();   
42255             }
42256         }
42257     },
42258
42259     // private
42260     getParams : function(q){
42261         var p = {};
42262         //p[this.queryParam] = q;
42263         if(this.pageSize){
42264             p.start = 0;
42265             p.limit = this.pageSize;
42266         }
42267         return p;
42268     },
42269
42270     /**
42271      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
42272      */
42273     collapse : function(){
42274         if(!this.isExpanded()){
42275             return;
42276         }
42277         this.list.hide();
42278         Roo.get(document).un('mousedown', this.collapseIf, this);
42279         Roo.get(document).un('mousewheel', this.collapseIf, this);
42280         if (!this.editable) {
42281             Roo.get(document).un('keydown', this.listKeyPress, this);
42282         }
42283         this.fireEvent('collapse', this);
42284     },
42285
42286     // private
42287     collapseIf : function(e){
42288         if(!e.within(this.wrap) && !e.within(this.list)){
42289             this.collapse();
42290         }
42291     },
42292
42293     /**
42294      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
42295      */
42296     expand : function(){
42297         if(this.isExpanded() || !this.hasFocus){
42298             return;
42299         }
42300         this.list.alignTo(this.el, this.listAlign);
42301         this.list.show();
42302         Roo.get(document).on('mousedown', this.collapseIf, this);
42303         Roo.get(document).on('mousewheel', this.collapseIf, this);
42304         if (!this.editable) {
42305             Roo.get(document).on('keydown', this.listKeyPress, this);
42306         }
42307         
42308         this.fireEvent('expand', this);
42309     },
42310
42311     // private
42312     // Implements the default empty TriggerField.onTriggerClick function
42313     onTriggerClick : function(){
42314         if(this.disabled){
42315             return;
42316         }
42317         if(this.isExpanded()){
42318             this.collapse();
42319             if (!this.blockFocus) {
42320                 this.el.focus();
42321             }
42322             
42323         }else {
42324             this.hasFocus = true;
42325             if(this.triggerAction == 'all') {
42326                 this.doQuery(this.allQuery, true);
42327             } else {
42328                 this.doQuery(this.getRawValue());
42329             }
42330             if (!this.blockFocus) {
42331                 this.el.focus();
42332             }
42333         }
42334     },
42335     listKeyPress : function(e)
42336     {
42337         //Roo.log('listkeypress');
42338         // scroll to first matching element based on key pres..
42339         if (e.isSpecialKey()) {
42340             return false;
42341         }
42342         var k = String.fromCharCode(e.getKey()).toUpperCase();
42343         //Roo.log(k);
42344         var match  = false;
42345         var csel = this.view.getSelectedNodes();
42346         var cselitem = false;
42347         if (csel.length) {
42348             var ix = this.view.indexOf(csel[0]);
42349             cselitem  = this.store.getAt(ix);
42350             if (!cselitem.get(this.displayField) || cselitem.get(this.displayField).substring(0,1).toUpperCase() != k) {
42351                 cselitem = false;
42352             }
42353             
42354         }
42355         
42356         this.store.each(function(v) { 
42357             if (cselitem) {
42358                 // start at existing selection.
42359                 if (cselitem.id == v.id) {
42360                     cselitem = false;
42361                 }
42362                 return;
42363             }
42364                 
42365             if (v.get(this.displayField) && v.get(this.displayField).substring(0,1).toUpperCase() == k) {
42366                 match = this.store.indexOf(v);
42367                 return false;
42368             }
42369         }, this);
42370         
42371         if (match === false) {
42372             return true; // no more action?
42373         }
42374         // scroll to?
42375         this.view.select(match);
42376         var sn = Roo.get(this.view.getSelectedNodes()[0]);
42377         sn.scrollIntoView(sn.dom.parentNode, false);
42378     } 
42379
42380     /** 
42381     * @cfg {Boolean} grow 
42382     * @hide 
42383     */
42384     /** 
42385     * @cfg {Number} growMin 
42386     * @hide 
42387     */
42388     /** 
42389     * @cfg {Number} growMax 
42390     * @hide 
42391     */
42392     /**
42393      * @hide
42394      * @method autoSize
42395      */
42396 });/*
42397  * Copyright(c) 2010-2012, Roo J Solutions Limited
42398  *
42399  * Licence LGPL
42400  *
42401  */
42402
42403 /**
42404  * @class Roo.form.ComboBoxArray
42405  * @extends Roo.form.TextField
42406  * A facebook style adder... for lists of email / people / countries  etc...
42407  * pick multiple items from a combo box, and shows each one.
42408  *
42409  *  Fred [x]  Brian [x]  [Pick another |v]
42410  *
42411  *
42412  *  For this to work: it needs various extra information
42413  *    - normal combo problay has
42414  *      name, hiddenName
42415  *    + displayField, valueField
42416  *
42417  *    For our purpose...
42418  *
42419  *
42420  *   If we change from 'extends' to wrapping...
42421  *   
42422  *  
42423  *
42424  
42425  
42426  * @constructor
42427  * Create a new ComboBoxArray.
42428  * @param {Object} config Configuration options
42429  */
42430  
42431
42432 Roo.form.ComboBoxArray = function(config)
42433 {
42434     this.addEvents({
42435         /**
42436          * @event beforeremove
42437          * Fires before remove the value from the list
42438              * @param {Roo.form.ComboBoxArray} _self This combo box array
42439              * @param {Roo.form.ComboBoxArray.Item} item removed item
42440              */
42441         'beforeremove' : true,
42442         /**
42443          * @event remove
42444          * Fires when remove the value from the list
42445              * @param {Roo.form.ComboBoxArray} _self This combo box array
42446              * @param {Roo.form.ComboBoxArray.Item} item removed item
42447              */
42448         'remove' : true
42449         
42450         
42451     });
42452     
42453     Roo.form.ComboBoxArray.superclass.constructor.call(this, config);
42454     
42455     this.items = new Roo.util.MixedCollection(false);
42456     
42457     // construct the child combo...
42458     
42459     
42460     
42461     
42462    
42463     
42464 }
42465
42466  
42467 Roo.extend(Roo.form.ComboBoxArray, Roo.form.TextField,
42468
42469     /**
42470      * @cfg {Roo.form.Combo} combo The combo box that is wrapped
42471      */
42472     
42473     lastData : false,
42474     
42475     // behavies liek a hiddne field
42476     inputType:      'hidden',
42477     /**
42478      * @cfg {Number} width The width of the box that displays the selected element
42479      */ 
42480     width:          300,
42481
42482     
42483     
42484     /**
42485      * @cfg {String} name    The name of the visable items on this form (eg. titles not ids)
42486      */
42487     name : false,
42488     /**
42489      * @cfg {String} hiddenName    The hidden name of the field, often contains an comma seperated list of names
42490      */
42491     hiddenName : false,
42492       /**
42493      * @cfg {String} seperator    The value seperator normally ',' 
42494      */
42495     seperator : ',',
42496     
42497     // private the array of items that are displayed..
42498     items  : false,
42499     // private - the hidden field el.
42500     hiddenEl : false,
42501     // private - the filed el..
42502     el : false,
42503     
42504     //validateValue : function() { return true; }, // all values are ok!
42505     //onAddClick: function() { },
42506     
42507     onRender : function(ct, position) 
42508     {
42509         
42510         // create the standard hidden element
42511         //Roo.form.ComboBoxArray.superclass.onRender.call(this, ct, position);
42512         
42513         
42514         // give fake names to child combo;
42515         this.combo.hiddenName = this.hiddenName ? (this.hiddenName+'-subcombo') : this.hiddenName;
42516         this.combo.name = this.name ? (this.name+'-subcombo') : this.name;
42517         
42518         this.combo = Roo.factory(this.combo, Roo.form);
42519         this.combo.onRender(ct, position);
42520         if (typeof(this.combo.width) != 'undefined') {
42521             this.combo.onResize(this.combo.width,0);
42522         }
42523         
42524         this.combo.initEvents();
42525         
42526         // assigned so form know we need to do this..
42527         this.store          = this.combo.store;
42528         this.valueField     = this.combo.valueField;
42529         this.displayField   = this.combo.displayField ;
42530         
42531         
42532         this.combo.wrap.addClass('x-cbarray-grp');
42533         
42534         var cbwrap = this.combo.wrap.createChild(
42535             {tag: 'div', cls: 'x-cbarray-cb'},
42536             this.combo.el.dom
42537         );
42538         
42539              
42540         this.hiddenEl = this.combo.wrap.createChild({
42541             tag: 'input',  type:'hidden' , name: this.hiddenName, value : ''
42542         });
42543         this.el = this.combo.wrap.createChild({
42544             tag: 'input',  type:'hidden' , name: this.name, value : ''
42545         });
42546          //   this.el.dom.removeAttribute("name");
42547         
42548         
42549         this.outerWrap = this.combo.wrap;
42550         this.wrap = cbwrap;
42551         
42552         this.outerWrap.setWidth(this.width);
42553         this.outerWrap.dom.removeChild(this.el.dom);
42554         
42555         this.wrap.dom.appendChild(this.el.dom);
42556         this.outerWrap.dom.removeChild(this.combo.trigger.dom);
42557         this.combo.wrap.dom.appendChild(this.combo.trigger.dom);
42558         
42559         this.combo.trigger.setStyle('position','relative');
42560         this.combo.trigger.setStyle('left', '0px');
42561         this.combo.trigger.setStyle('top', '2px');
42562         
42563         this.combo.el.setStyle('vertical-align', 'text-bottom');
42564         
42565         //this.trigger.setStyle('vertical-align', 'top');
42566         
42567         // this should use the code from combo really... on('add' ....)
42568         if (this.adder) {
42569             
42570         
42571             this.adder = this.outerWrap.createChild(
42572                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-adder', style: 'margin-left:2px'});  
42573             var _t = this;
42574             this.adder.on('click', function(e) {
42575                 _t.fireEvent('adderclick', this, e);
42576             }, _t);
42577         }
42578         //var _t = this;
42579         //this.adder.on('click', this.onAddClick, _t);
42580         
42581         
42582         this.combo.on('select', function(cb, rec, ix) {
42583             this.addItem(rec.data);
42584             
42585             cb.setValue('');
42586             cb.el.dom.value = '';
42587             //cb.lastData = rec.data;
42588             // add to list
42589             
42590         }, this);
42591         
42592         
42593     },
42594     
42595     
42596     getName: function()
42597     {
42598         // returns hidden if it's set..
42599         if (!this.rendered) {return ''};
42600         return  this.hiddenName ? this.hiddenName : this.name;
42601         
42602     },
42603     
42604     
42605     onResize: function(w, h){
42606         
42607         return;
42608         // not sure if this is needed..
42609         //this.combo.onResize(w,h);
42610         
42611         if(typeof w != 'number'){
42612             // we do not handle it!?!?
42613             return;
42614         }
42615         var tw = this.combo.trigger.getWidth();
42616         tw += this.addicon ? this.addicon.getWidth() : 0;
42617         tw += this.editicon ? this.editicon.getWidth() : 0;
42618         var x = w - tw;
42619         this.combo.el.setWidth( this.combo.adjustWidth('input', x));
42620             
42621         this.combo.trigger.setStyle('left', '0px');
42622         
42623         if(this.list && this.listWidth === undefined){
42624             var lw = Math.max(x + this.combo.trigger.getWidth(), this.combo.minListWidth);
42625             this.list.setWidth(lw);
42626             this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
42627         }
42628         
42629     
42630         
42631     },
42632     
42633     addItem: function(rec)
42634     {
42635         var valueField = this.combo.valueField;
42636         var displayField = this.combo.displayField;
42637         
42638         if (this.items.indexOfKey(rec[valueField]) > -1) {
42639             //console.log("GOT " + rec.data.id);
42640             return;
42641         }
42642         
42643         var x = new Roo.form.ComboBoxArray.Item({
42644             //id : rec[this.idField],
42645             data : rec,
42646             displayField : displayField ,
42647             tipField : displayField ,
42648             cb : this
42649         });
42650         // use the 
42651         this.items.add(rec[valueField],x);
42652         // add it before the element..
42653         this.updateHiddenEl();
42654         x.render(this.outerWrap, this.wrap.dom);
42655         // add the image handler..
42656     },
42657     
42658     updateHiddenEl : function()
42659     {
42660         this.validate();
42661         if (!this.hiddenEl) {
42662             return;
42663         }
42664         var ar = [];
42665         var idField = this.combo.valueField;
42666         
42667         this.items.each(function(f) {
42668             ar.push(f.data[idField]);
42669         });
42670         this.hiddenEl.dom.value = ar.join(this.seperator);
42671         this.validate();
42672     },
42673     
42674     reset : function()
42675     {
42676         this.items.clear();
42677         
42678         Roo.each(this.outerWrap.select('.x-cbarray-item', true).elements, function(el){
42679            el.remove();
42680         });
42681         
42682         this.el.dom.value = '';
42683         if (this.hiddenEl) {
42684             this.hiddenEl.dom.value = '';
42685         }
42686         
42687     },
42688     getValue: function()
42689     {
42690         return this.hiddenEl ? this.hiddenEl.dom.value : '';
42691     },
42692     setValue: function(v) // not a valid action - must use addItems..
42693     {
42694         
42695         this.reset();
42696          
42697         if (this.store.isLocal && (typeof(v) == 'string')) {
42698             // then we can use the store to find the values..
42699             // comma seperated at present.. this needs to allow JSON based encoding..
42700             this.hiddenEl.value  = v;
42701             var v_ar = [];
42702             Roo.each(v.split(this.seperator), function(k) {
42703                 Roo.log("CHECK " + this.valueField + ',' + k);
42704                 var li = this.store.query(this.valueField, k);
42705                 if (!li.length) {
42706                     return;
42707                 }
42708                 var add = {};
42709                 add[this.valueField] = k;
42710                 add[this.displayField] = li.item(0).data[this.displayField];
42711                 
42712                 this.addItem(add);
42713             }, this) 
42714              
42715         }
42716         if (typeof(v) == 'object' ) {
42717             // then let's assume it's an array of objects..
42718             Roo.each(v, function(l) {
42719                 var add = l;
42720                 if (typeof(l) == 'string') {
42721                     add = {};
42722                     add[this.valueField] = l;
42723                     add[this.displayField] = l
42724                 }
42725                 this.addItem(add);
42726             }, this);
42727              
42728         }
42729         
42730         
42731     },
42732     setFromData: function(v)
42733     {
42734         // this recieves an object, if setValues is called.
42735         this.reset();
42736         this.el.dom.value = v[this.displayField];
42737         this.hiddenEl.dom.value = v[this.valueField];
42738         if (typeof(v[this.valueField]) != 'string' || !v[this.valueField].length) {
42739             return;
42740         }
42741         var kv = v[this.valueField];
42742         var dv = v[this.displayField];
42743         kv = typeof(kv) != 'string' ? '' : kv;
42744         dv = typeof(dv) != 'string' ? '' : dv;
42745         
42746         
42747         var keys = kv.split(this.seperator);
42748         var display = dv.split(this.seperator);
42749         for (var i = 0 ; i < keys.length; i++) {
42750             add = {};
42751             add[this.valueField] = keys[i];
42752             add[this.displayField] = display[i];
42753             this.addItem(add);
42754         }
42755       
42756         
42757     },
42758     
42759     /**
42760      * Validates the combox array value
42761      * @return {Boolean} True if the value is valid, else false
42762      */
42763     validate : function(){
42764         if(this.disabled || this.validateValue(this.processValue(this.getValue()))){
42765             this.clearInvalid();
42766             return true;
42767         }
42768         return false;
42769     },
42770     
42771     validateValue : function(value){
42772         return Roo.form.ComboBoxArray.superclass.validateValue.call(this, this.getValue());
42773         
42774     },
42775     
42776     /*@
42777      * overide
42778      * 
42779      */
42780     isDirty : function() {
42781         if(this.disabled) {
42782             return false;
42783         }
42784         
42785         try {
42786             var d = Roo.decode(String(this.originalValue));
42787         } catch (e) {
42788             return String(this.getValue()) !== String(this.originalValue);
42789         }
42790         
42791         var originalValue = [];
42792         
42793         for (var i = 0; i < d.length; i++){
42794             originalValue.push(d[i][this.valueField]);
42795         }
42796         
42797         return String(this.getValue()) !== String(originalValue.join(this.seperator));
42798         
42799     }
42800     
42801 });
42802
42803
42804
42805 /**
42806  * @class Roo.form.ComboBoxArray.Item
42807  * @extends Roo.BoxComponent
42808  * A selected item in the list
42809  *  Fred [x]  Brian [x]  [Pick another |v]
42810  * 
42811  * @constructor
42812  * Create a new item.
42813  * @param {Object} config Configuration options
42814  */
42815  
42816 Roo.form.ComboBoxArray.Item = function(config) {
42817     config.id = Roo.id();
42818     Roo.form.ComboBoxArray.Item.superclass.constructor.call(this, config);
42819 }
42820
42821 Roo.extend(Roo.form.ComboBoxArray.Item, Roo.BoxComponent, {
42822     data : {},
42823     cb: false,
42824     displayField : false,
42825     tipField : false,
42826     
42827     
42828     defaultAutoCreate : {
42829         tag: 'div',
42830         cls: 'x-cbarray-item',
42831         cn : [ 
42832             { tag: 'div' },
42833             {
42834                 tag: 'img',
42835                 width:16,
42836                 height : 16,
42837                 src : Roo.BLANK_IMAGE_URL ,
42838                 align: 'center'
42839             }
42840         ]
42841         
42842     },
42843     
42844  
42845     onRender : function(ct, position)
42846     {
42847         Roo.form.Field.superclass.onRender.call(this, ct, position);
42848         
42849         if(!this.el){
42850             var cfg = this.getAutoCreate();
42851             this.el = ct.createChild(cfg, position);
42852         }
42853         
42854         this.el.child('img').dom.setAttribute('src', Roo.BLANK_IMAGE_URL);
42855         
42856         this.el.child('div').dom.innerHTML = this.cb.renderer ? 
42857             this.cb.renderer(this.data) :
42858             String.format('{0}',this.data[this.displayField]);
42859         
42860             
42861         this.el.child('div').dom.setAttribute('qtip',
42862                         String.format('{0}',this.data[this.tipField])
42863         );
42864         
42865         this.el.child('img').on('click', this.remove, this);
42866         
42867     },
42868    
42869     remove : function()
42870     {
42871         if(this.cb.disabled){
42872             return;
42873         }
42874         
42875         if(false !== this.cb.fireEvent('beforeremove', this.cb, this)){
42876             this.cb.items.remove(this);
42877             this.el.child('img').un('click', this.remove, this);
42878             this.el.remove();
42879             this.cb.updateHiddenEl();
42880
42881             this.cb.fireEvent('remove', this.cb, this);
42882         }
42883         
42884     }
42885 });/*
42886  * RooJS Library 1.1.1
42887  * Copyright(c) 2008-2011  Alan Knowles
42888  *
42889  * License - LGPL
42890  */
42891  
42892
42893 /**
42894  * @class Roo.form.ComboNested
42895  * @extends Roo.form.ComboBox
42896  * A combobox for that allows selection of nested items in a list,
42897  * eg.
42898  *
42899  *  Book
42900  *    -> red
42901  *    -> green
42902  *  Table
42903  *    -> square
42904  *      ->red
42905  *      ->green
42906  *    -> rectangle
42907  *      ->green
42908  *      
42909  * 
42910  * @constructor
42911  * Create a new ComboNested
42912  * @param {Object} config Configuration options
42913  */
42914 Roo.form.ComboNested = function(config){
42915     Roo.form.ComboCheck.superclass.constructor.call(this, config);
42916     // should verify some data...
42917     // like
42918     // hiddenName = required..
42919     // displayField = required
42920     // valudField == required
42921     var req= [ 'hiddenName', 'displayField', 'valueField' ];
42922     var _t = this;
42923     Roo.each(req, function(e) {
42924         if ((typeof(_t[e]) == 'undefined' ) || !_t[e].length) {
42925             throw "Roo.form.ComboNested : missing value for: " + e;
42926         }
42927     });
42928      
42929     
42930 };
42931
42932 Roo.extend(Roo.form.ComboNested, Roo.form.ComboBox, {
42933    
42934     /*
42935      * @config {Number} max Number of columns to show
42936      */
42937     
42938     maxColumns : 3,
42939    
42940     list : null, // the outermost div..
42941     innerLists : null, // the
42942     views : null,
42943     stores : null,
42944     // private
42945     loadingChildren : false,
42946     
42947     onRender : function(ct, position)
42948     {
42949         Roo.form.ComboBox.superclass.onRender.call(this, ct, position); // skip parent call - got to above..
42950         
42951         if(this.hiddenName){
42952             this.hiddenField = this.el.insertSibling({tag:'input', type:'hidden', name: this.hiddenName, id:  (this.hiddenId||this.hiddenName)},
42953                     'before', true);
42954             this.hiddenField.value =
42955                 this.hiddenValue !== undefined ? this.hiddenValue :
42956                 this.value !== undefined ? this.value : '';
42957
42958             // prevent input submission
42959             this.el.dom.removeAttribute('name');
42960              
42961              
42962         }
42963         
42964         if(Roo.isGecko){
42965             this.el.dom.setAttribute('autocomplete', 'off');
42966         }
42967
42968         var cls = 'x-combo-list';
42969
42970         this.list = new Roo.Layer({
42971             shadow: this.shadow, cls: [cls, this.listClass].join(' '), constrain:false
42972         });
42973
42974         var lw = this.listWidth || Math.max(this.wrap.getWidth(), this.minListWidth);
42975         this.list.setWidth(lw);
42976         this.list.swallowEvent('mousewheel');
42977         this.assetHeight = 0;
42978
42979         if(this.title){
42980             this.header = this.list.createChild({cls:cls+'-hd', html: this.title});
42981             this.assetHeight += this.header.getHeight();
42982         }
42983         this.innerLists = [];
42984         this.views = [];
42985         this.stores = [];
42986         for (var i =0 ; i < this.maxColumns; i++) {
42987             this.onRenderList( cls, i);
42988         }
42989         
42990         // always needs footer, as we are going to have an 'OK' button.
42991         this.footer = this.list.createChild({cls:cls+'-ft'});
42992         this.pageTb = new Roo.Toolbar(this.footer);  
42993         var _this = this;
42994         this.pageTb.add(  {
42995             
42996             text: 'Done',
42997             handler: function()
42998             {
42999                 _this.collapse();
43000             }
43001         });
43002         
43003         if ( this.allowBlank && !this.disableClear) {
43004             
43005             this.pageTb.add(new Roo.Toolbar.Fill(), {
43006                 cls: 'x-btn-icon x-btn-clear',
43007                 text: '&#160;',
43008                 handler: function()
43009                 {
43010                     _this.collapse();
43011                     _this.clearValue();
43012                     _this.onSelect(false, -1);
43013                 }
43014             });
43015         }
43016         if (this.footer) {
43017             this.assetHeight += this.footer.getHeight();
43018         }
43019         
43020     },
43021     onRenderList : function (  cls, i)
43022     {
43023         
43024         var lw = Math.floor(
43025                 ((this.listWidth * this.maxColumns || Math.max(this.wrap.getWidth(), this.minListWidth)) - this.list.getFrameWidth('lr')) / this.maxColumns
43026         );
43027         
43028         this.list.setWidth(lw); // default to '1'
43029
43030         var il = this.innerLists[i] = this.list.createChild({cls:cls+'-inner'});
43031         //il.on('mouseover', this.onViewOver, this, { list:  i });
43032         //il.on('mousemove', this.onViewMove, this, { list:  i });
43033         il.setWidth(lw);
43034         il.setStyle({ 'overflow-x' : 'hidden'});
43035
43036         if(!this.tpl){
43037             this.tpl = new Roo.Template({
43038                 html :  '<div class="'+cls+'-item '+cls+'-item-{cn:this.isEmpty}">{' + this.displayField + '}</div>',
43039                 isEmpty: function (value, allValues) {
43040                     //Roo.log(value);
43041                     var dl = typeof(value.data) != 'undefined' ? value.data.length : value.length; ///json is a nested response..
43042                     return dl ? 'has-children' : 'no-children'
43043                 }
43044             });
43045         }
43046         
43047         var store  = this.store;
43048         if (i > 0) {
43049             store  = new Roo.data.SimpleStore({
43050                 //fields : this.store.reader.meta.fields,
43051                 reader : this.store.reader,
43052                 data : [ ]
43053             });
43054         }
43055         this.stores[i]  = store;
43056                   
43057         var view = this.views[i] = new Roo.View(
43058             il,
43059             this.tpl,
43060             {
43061                 singleSelect:true,
43062                 store: store,
43063                 selectedClass: this.selectedClass
43064             }
43065         );
43066         view.getEl().setWidth(lw);
43067         view.getEl().setStyle({
43068             position: i < 1 ? 'relative' : 'absolute',
43069             top: 0,
43070             left: (i * lw ) + 'px',
43071             display : i > 0 ? 'none' : 'block'
43072         });
43073         view.on('selectionchange', this.onSelectChange.createDelegate(this, {list : i }, true));
43074         view.on('dblclick', this.onDoubleClick.createDelegate(this, {list : i }, true));
43075         //view.on('click', this.onViewClick, this, { list : i });
43076
43077         store.on('beforeload', this.onBeforeLoad, this);
43078         store.on('load',  this.onLoad, this, { list  : i});
43079         store.on('loadexception', this.onLoadException, this);
43080
43081         // hide the other vies..
43082         
43083         
43084         
43085     },
43086       
43087     restrictHeight : function()
43088     {
43089         var mh = 0;
43090         Roo.each(this.innerLists, function(il,i) {
43091             var el = this.views[i].getEl();
43092             el.dom.style.height = '';
43093             var inner = el.dom;
43094             var h = Math.max(il.clientHeight, il.offsetHeight, il.scrollHeight);
43095             // only adjust heights on other ones..
43096             mh = Math.max(h, mh);
43097             if (i < 1) {
43098                 
43099                 el.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
43100                 il.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
43101                
43102             }
43103             
43104             
43105         }, this);
43106         
43107         this.list.beginUpdate();
43108         this.list.setHeight(mh+this.list.getFrameWidth('tb')+this.assetHeight);
43109         this.list.alignTo(this.el, this.listAlign);
43110         this.list.endUpdate();
43111         
43112     },
43113      
43114     
43115     // -- store handlers..
43116     // private
43117     onBeforeLoad : function()
43118     {
43119         if(!this.hasFocus){
43120             return;
43121         }
43122         this.innerLists[0].update(this.loadingText ?
43123                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
43124         this.restrictHeight();
43125         this.selectedIndex = -1;
43126     },
43127     // private
43128     onLoad : function(a,b,c,d)
43129     {
43130         if (!this.loadingChildren) {
43131             // then we are loading the top level. - hide the children
43132             for (var i = 1;i < this.views.length; i++) {
43133                 this.views[i].getEl().setStyle({ display : 'none' });
43134             }
43135             var lw = Math.floor(
43136                 ((this.listWidth * this.maxColumns || Math.max(this.wrap.getWidth(), this.minListWidth)) - this.list.getFrameWidth('lr')) / this.maxColumns
43137             );
43138         
43139              this.list.setWidth(lw); // default to '1'
43140
43141             
43142         }
43143         if(!this.hasFocus){
43144             return;
43145         }
43146         
43147         if(this.store.getCount() > 0) {
43148             this.expand();
43149             this.restrictHeight();   
43150         } else {
43151             this.onEmptyResults();
43152         }
43153         
43154         if (!this.loadingChildren) {
43155             this.selectActive();
43156         }
43157         /*
43158         this.stores[1].loadData([]);
43159         this.stores[2].loadData([]);
43160         this.views
43161         */    
43162     
43163         //this.el.focus();
43164     },
43165     
43166     
43167     // private
43168     onLoadException : function()
43169     {
43170         this.collapse();
43171         Roo.log(this.store.reader.jsonData);
43172         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
43173             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
43174         }
43175         
43176         
43177     },
43178     // no cleaning of leading spaces on blur here.
43179     cleanLeadingSpace : function(e) { },
43180     
43181
43182     onSelectChange : function (view, sels, opts )
43183     {
43184         var ix = view.getSelectedIndexes();
43185          
43186         if (opts.list > this.maxColumns - 2) {
43187             if (view.store.getCount()<  1) {
43188                 this.views[opts.list ].getEl().setStyle({ display :   'none' });
43189
43190             } else  {
43191                 if (ix.length) {
43192                     // used to clear ?? but if we are loading unselected 
43193                     this.setFromData(view.store.getAt(ix[0]).data);
43194                 }
43195                 
43196             }
43197             
43198             return;
43199         }
43200         
43201         if (!ix.length) {
43202             // this get's fired when trigger opens..
43203            // this.setFromData({});
43204             var str = this.stores[opts.list+1];
43205             str.data.clear(); // removeall wihtout the fire events..
43206             return;
43207         }
43208         
43209         var rec = view.store.getAt(ix[0]);
43210          
43211         this.setFromData(rec.data);
43212         this.fireEvent('select', this, rec, ix[0]);
43213         
43214         var lw = Math.floor(
43215              (
43216                 (this.listWidth * this.maxColumns || Math.max(this.wrap.getWidth(), this.minListWidth)) - this.list.getFrameWidth('lr')
43217              ) / this.maxColumns
43218         );
43219         this.loadingChildren = true;
43220         this.stores[opts.list+1].loadDataFromChildren( rec );
43221         this.loadingChildren = false;
43222         var dl = this.stores[opts.list+1]. getTotalCount();
43223         
43224         this.views[opts.list+1].getEl().setHeight( this.innerLists[0].getHeight());
43225         
43226         this.views[opts.list+1].getEl().setStyle({ display : dl ? 'block' : 'none' });
43227         for (var i = opts.list+2; i < this.views.length;i++) {
43228             this.views[i].getEl().setStyle({ display : 'none' });
43229         }
43230         
43231         this.innerLists[opts.list+1].setHeight( this.innerLists[0].getHeight());
43232         this.list.setWidth(lw * (opts.list + (dl ? 2 : 1)));
43233         
43234         if (this.isLoading) {
43235            // this.selectActive(opts.list);
43236         }
43237          
43238     },
43239     
43240     
43241     
43242     
43243     onDoubleClick : function()
43244     {
43245         this.collapse(); //??
43246     },
43247     
43248      
43249     
43250     
43251     
43252     // private
43253     recordToStack : function(store, prop, value, stack)
43254     {
43255         var cstore = new Roo.data.SimpleStore({
43256             //fields : this.store.reader.meta.fields, // we need array reader.. for
43257             reader : this.store.reader,
43258             data : [ ]
43259         });
43260         var _this = this;
43261         var record  = false;
43262         var srec = false;
43263         if(store.getCount() < 1){
43264             return false;
43265         }
43266         store.each(function(r){
43267             if(r.data[prop] == value){
43268                 record = r;
43269             srec = r;
43270                 return false;
43271             }
43272             if (r.data.cn && r.data.cn.length) {
43273                 cstore.loadDataFromChildren( r);
43274                 var cret = _this.recordToStack(cstore, prop, value, stack);
43275                 if (cret !== false) {
43276                     record = cret;
43277                     srec = r;
43278                     return false;
43279                 }
43280             }
43281              
43282             return true;
43283         });
43284         if (record == false) {
43285             return false
43286         }
43287         stack.unshift(srec);
43288         return record;
43289     },
43290     
43291     /*
43292      * find the stack of stores that match our value.
43293      *
43294      * 
43295      */
43296     
43297     selectActive : function ()
43298     {
43299         // if store is not loaded, then we will need to wait for that to happen first.
43300         var stack = [];
43301         this.recordToStack(this.store, this.valueField, this.getValue(), stack);
43302         for (var i = 0; i < stack.length; i++ ) {
43303             this.views[i].select(stack[i].store.indexOf(stack[i]), false, false );
43304         }
43305         
43306     }
43307         
43308          
43309     
43310     
43311     
43312     
43313 });/*
43314  * Based on:
43315  * Ext JS Library 1.1.1
43316  * Copyright(c) 2006-2007, Ext JS, LLC.
43317  *
43318  * Originally Released Under LGPL - original licence link has changed is not relivant.
43319  *
43320  * Fork - LGPL
43321  * <script type="text/javascript">
43322  */
43323 /**
43324  * @class Roo.form.Checkbox
43325  * @extends Roo.form.Field
43326  * Single checkbox field.  Can be used as a direct replacement for traditional checkbox fields.
43327  * @constructor
43328  * Creates a new Checkbox
43329  * @param {Object} config Configuration options
43330  */
43331 Roo.form.Checkbox = function(config){
43332     Roo.form.Checkbox.superclass.constructor.call(this, config);
43333     this.addEvents({
43334         /**
43335          * @event check
43336          * Fires when the checkbox is checked or unchecked.
43337              * @param {Roo.form.Checkbox} this This checkbox
43338              * @param {Boolean} checked The new checked value
43339              */
43340         check : true
43341     });
43342 };
43343
43344 Roo.extend(Roo.form.Checkbox, Roo.form.Field,  {
43345     /**
43346      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
43347      */
43348     focusClass : undefined,
43349     /**
43350      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
43351      */
43352     fieldClass: "x-form-field",
43353     /**
43354      * @cfg {Boolean} checked True if the the checkbox should render already checked (defaults to false)
43355      */
43356     checked: false,
43357     /**
43358      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
43359      * {tag: "input", type: "checkbox", autocomplete: "off"})
43360      */
43361     defaultAutoCreate : { tag: "input", type: 'hidden', autocomplete: "off"},
43362     /**
43363      * @cfg {String} boxLabel The text that appears beside the checkbox
43364      */
43365     boxLabel : "",
43366     /**
43367      * @cfg {String} inputValue The value that should go into the generated input element's value attribute
43368      */  
43369     inputValue : '1',
43370     /**
43371      * @cfg {String} valueOff The value that should go into the generated input element's value when unchecked.
43372      */
43373      valueOff: '0', // value when not checked..
43374
43375     actionMode : 'viewEl', 
43376     //
43377     // private
43378     itemCls : 'x-menu-check-item x-form-item',
43379     groupClass : 'x-menu-group-item',
43380     inputType : 'hidden',
43381     
43382     
43383     inSetChecked: false, // check that we are not calling self...
43384     
43385     inputElement: false, // real input element?
43386     basedOn: false, // ????
43387     
43388     isFormField: true, // not sure where this is needed!!!!
43389
43390     onResize : function(){
43391         Roo.form.Checkbox.superclass.onResize.apply(this, arguments);
43392         if(!this.boxLabel){
43393             this.el.alignTo(this.wrap, 'c-c');
43394         }
43395     },
43396
43397     initEvents : function(){
43398         Roo.form.Checkbox.superclass.initEvents.call(this);
43399         this.el.on("click", this.onClick,  this);
43400         this.el.on("change", this.onClick,  this);
43401     },
43402
43403
43404     getResizeEl : function(){
43405         return this.wrap;
43406     },
43407
43408     getPositionEl : function(){
43409         return this.wrap;
43410     },
43411
43412     // private
43413     onRender : function(ct, position){
43414         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
43415         /*
43416         if(this.inputValue !== undefined){
43417             this.el.dom.value = this.inputValue;
43418         }
43419         */
43420         //this.wrap = this.el.wrap({cls: "x-form-check-wrap"});
43421         this.wrap = this.el.wrap({cls: 'x-menu-check-item '});
43422         var viewEl = this.wrap.createChild({ 
43423             tag: 'img', cls: 'x-menu-item-icon', style: 'margin: 0px;' ,src : Roo.BLANK_IMAGE_URL });
43424         this.viewEl = viewEl;   
43425         this.wrap.on('click', this.onClick,  this); 
43426         
43427         this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
43428         this.el.on('propertychange', this.setFromHidden,  this);  //ie
43429         
43430         
43431         
43432         if(this.boxLabel){
43433             this.wrap.createChild({tag: 'label', htmlFor: this.el.id, cls: 'x-form-cb-label', html: this.boxLabel});
43434         //    viewEl.on('click', this.onClick,  this); 
43435         }
43436         //if(this.checked){
43437             this.setChecked(this.checked);
43438         //}else{
43439             //this.checked = this.el.dom;
43440         //}
43441
43442     },
43443
43444     // private
43445     initValue : Roo.emptyFn,
43446
43447     /**
43448      * Returns the checked state of the checkbox.
43449      * @return {Boolean} True if checked, else false
43450      */
43451     getValue : function(){
43452         if(this.el){
43453             return String(this.el.dom.value) == String(this.inputValue ) ? this.inputValue : this.valueOff;
43454         }
43455         return this.valueOff;
43456         
43457     },
43458
43459         // private
43460     onClick : function(){ 
43461         if (this.disabled) {
43462             return;
43463         }
43464         this.setChecked(!this.checked);
43465
43466         //if(this.el.dom.checked != this.checked){
43467         //    this.setValue(this.el.dom.checked);
43468        // }
43469     },
43470
43471     /**
43472      * Sets the checked state of the checkbox.
43473      * On is always based on a string comparison between inputValue and the param.
43474      * @param {Boolean/String} value - the value to set 
43475      * @param {Boolean/String} suppressEvent - whether to suppress the checkchange event.
43476      */
43477     setValue : function(v,suppressEvent){
43478         
43479         
43480         //this.checked = (v === true || v === 'true' || v == '1' || String(v).toLowerCase() == 'on');
43481         //if(this.el && this.el.dom){
43482         //    this.el.dom.checked = this.checked;
43483         //    this.el.dom.defaultChecked = this.checked;
43484         //}
43485         this.setChecked(String(v) === String(this.inputValue), suppressEvent);
43486         //this.fireEvent("check", this, this.checked);
43487     },
43488     // private..
43489     setChecked : function(state,suppressEvent)
43490     {
43491         if (this.inSetChecked) {
43492             this.checked = state;
43493             return;
43494         }
43495         
43496     
43497         if(this.wrap){
43498             this.wrap[state ? 'addClass' : 'removeClass']('x-menu-item-checked');
43499         }
43500         this.checked = state;
43501         if(suppressEvent !== true){
43502             this.fireEvent('check', this, state);
43503         }
43504         this.inSetChecked = true;
43505         this.el.dom.value = state ? this.inputValue : this.valueOff;
43506         this.inSetChecked = false;
43507         
43508     },
43509     // handle setting of hidden value by some other method!!?!?
43510     setFromHidden: function()
43511     {
43512         if(!this.el){
43513             return;
43514         }
43515         //console.log("SET FROM HIDDEN");
43516         //alert('setFrom hidden');
43517         this.setValue(this.el.dom.value);
43518     },
43519     
43520     onDestroy : function()
43521     {
43522         if(this.viewEl){
43523             Roo.get(this.viewEl).remove();
43524         }
43525          
43526         Roo.form.Checkbox.superclass.onDestroy.call(this);
43527     },
43528     
43529     setBoxLabel : function(str)
43530     {
43531         this.wrap.select('.x-form-cb-label', true).first().dom.innerHTML = str;
43532     }
43533
43534 });/*
43535  * Based on:
43536  * Ext JS Library 1.1.1
43537  * Copyright(c) 2006-2007, Ext JS, LLC.
43538  *
43539  * Originally Released Under LGPL - original licence link has changed is not relivant.
43540  *
43541  * Fork - LGPL
43542  * <script type="text/javascript">
43543  */
43544  
43545 /**
43546  * @class Roo.form.Radio
43547  * @extends Roo.form.Checkbox
43548  * Single radio field.  Same as Checkbox, but provided as a convenience for automatically setting the input type.
43549  * Radio grouping is handled automatically by the browser if you give each radio in a group the same name.
43550  * @constructor
43551  * Creates a new Radio
43552  * @param {Object} config Configuration options
43553  */
43554 Roo.form.Radio = function(){
43555     Roo.form.Radio.superclass.constructor.apply(this, arguments);
43556 };
43557 Roo.extend(Roo.form.Radio, Roo.form.Checkbox, {
43558     inputType: 'radio',
43559
43560     /**
43561      * If this radio is part of a group, it will return the selected value
43562      * @return {String}
43563      */
43564     getGroupValue : function(){
43565         return this.el.up('form').child('input[name='+this.el.dom.name+']:checked', true).value;
43566     },
43567     
43568     
43569     onRender : function(ct, position){
43570         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
43571         
43572         if(this.inputValue !== undefined){
43573             this.el.dom.value = this.inputValue;
43574         }
43575          
43576         this.wrap = this.el.wrap({cls: "x-form-check-wrap"});
43577         //this.wrap = this.el.wrap({cls: 'x-menu-check-item '});
43578         //var viewEl = this.wrap.createChild({ 
43579         //    tag: 'img', cls: 'x-menu-item-icon', style: 'margin: 0px;' ,src : Roo.BLANK_IMAGE_URL });
43580         //this.viewEl = viewEl;   
43581         //this.wrap.on('click', this.onClick,  this); 
43582         
43583         //this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
43584         //this.el.on('propertychange', this.setFromHidden,  this);  //ie
43585         
43586         
43587         
43588         if(this.boxLabel){
43589             this.wrap.createChild({tag: 'label', htmlFor: this.el.id, cls: 'x-form-cb-label', html: this.boxLabel});
43590         //    viewEl.on('click', this.onClick,  this); 
43591         }
43592          if(this.checked){
43593             this.el.dom.checked =   'checked' ;
43594         }
43595          
43596     } 
43597     
43598     
43599 });//<script type="text/javascript">
43600
43601 /*
43602  * Based  Ext JS Library 1.1.1
43603  * Copyright(c) 2006-2007, Ext JS, LLC.
43604  * LGPL
43605  *
43606  */
43607  
43608 /**
43609  * @class Roo.HtmlEditorCore
43610  * @extends Roo.Component
43611  * Provides a the editing component for the HTML editors in Roo. (bootstrap and Roo.form)
43612  *
43613  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
43614  */
43615
43616 Roo.HtmlEditorCore = function(config){
43617     
43618     
43619     Roo.HtmlEditorCore.superclass.constructor.call(this, config);
43620     
43621     
43622     this.addEvents({
43623         /**
43624          * @event initialize
43625          * Fires when the editor is fully initialized (including the iframe)
43626          * @param {Roo.HtmlEditorCore} this
43627          */
43628         initialize: true,
43629         /**
43630          * @event activate
43631          * Fires when the editor is first receives the focus. Any insertion must wait
43632          * until after this event.
43633          * @param {Roo.HtmlEditorCore} this
43634          */
43635         activate: true,
43636          /**
43637          * @event beforesync
43638          * Fires before the textarea is updated with content from the editor iframe. Return false
43639          * to cancel the sync.
43640          * @param {Roo.HtmlEditorCore} this
43641          * @param {String} html
43642          */
43643         beforesync: true,
43644          /**
43645          * @event beforepush
43646          * Fires before the iframe editor is updated with content from the textarea. Return false
43647          * to cancel the push.
43648          * @param {Roo.HtmlEditorCore} this
43649          * @param {String} html
43650          */
43651         beforepush: true,
43652          /**
43653          * @event sync
43654          * Fires when the textarea is updated with content from the editor iframe.
43655          * @param {Roo.HtmlEditorCore} this
43656          * @param {String} html
43657          */
43658         sync: true,
43659          /**
43660          * @event push
43661          * Fires when the iframe editor is updated with content from the textarea.
43662          * @param {Roo.HtmlEditorCore} this
43663          * @param {String} html
43664          */
43665         push: true,
43666         
43667         /**
43668          * @event editorevent
43669          * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
43670          * @param {Roo.HtmlEditorCore} this
43671          */
43672         editorevent: true
43673         
43674     });
43675     
43676     // at this point this.owner is set, so we can start working out the whitelisted / blacklisted elements
43677     
43678     // defaults : white / black...
43679     this.applyBlacklists();
43680     
43681     
43682     
43683 };
43684
43685
43686 Roo.extend(Roo.HtmlEditorCore, Roo.Component,  {
43687
43688
43689      /**
43690      * @cfg {Roo.form.HtmlEditor|Roo.bootstrap.HtmlEditor} the owner field 
43691      */
43692     
43693     owner : false,
43694     
43695      /**
43696      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
43697      *                        Roo.resizable.
43698      */
43699     resizable : false,
43700      /**
43701      * @cfg {Number} height (in pixels)
43702      */   
43703     height: 300,
43704    /**
43705      * @cfg {Number} width (in pixels)
43706      */   
43707     width: 500,
43708     
43709     /**
43710      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
43711      * 
43712      */
43713     stylesheets: false,
43714     
43715     // id of frame..
43716     frameId: false,
43717     
43718     // private properties
43719     validationEvent : false,
43720     deferHeight: true,
43721     initialized : false,
43722     activated : false,
43723     sourceEditMode : false,
43724     onFocus : Roo.emptyFn,
43725     iframePad:3,
43726     hideMode:'offsets',
43727     
43728     clearUp: true,
43729     
43730     // blacklist + whitelisted elements..
43731     black: false,
43732     white: false,
43733      
43734     bodyCls : '',
43735
43736     /**
43737      * Protected method that will not generally be called directly. It
43738      * is called when the editor initializes the iframe with HTML contents. Override this method if you
43739      * want to change the initialization markup of the iframe (e.g. to add stylesheets).
43740      */
43741     getDocMarkup : function(){
43742         // body styles..
43743         var st = '';
43744         
43745         // inherit styels from page...?? 
43746         if (this.stylesheets === false) {
43747             
43748             Roo.get(document.head).select('style').each(function(node) {
43749                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
43750             });
43751             
43752             Roo.get(document.head).select('link').each(function(node) { 
43753                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
43754             });
43755             
43756         } else if (!this.stylesheets.length) {
43757                 // simple..
43758                 st = '<style type="text/css">' +
43759                     'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
43760                    '</style>';
43761         } else {
43762             for (var i in this.stylesheets) { 
43763                 st += '<link rel="stylesheet" href="' + this.stylesheets[i] +'" type="text/css">';
43764             }
43765             
43766         }
43767         
43768         st +=  '<style type="text/css">' +
43769             'IMG { cursor: pointer } ' +
43770         '</style>';
43771
43772         var cls = 'roo-htmleditor-body';
43773         
43774         if(this.bodyCls.length){
43775             cls += ' ' + this.bodyCls;
43776         }
43777         
43778         return '<html><head>' + st  +
43779             //<style type="text/css">' +
43780             //'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
43781             //'</style>' +
43782             ' </head><body contenteditable="true" data-enable-grammerly="true" class="' +  cls + '"></body></html>';
43783     },
43784
43785     // private
43786     onRender : function(ct, position)
43787     {
43788         var _t = this;
43789         //Roo.HtmlEditorCore.superclass.onRender.call(this, ct, position);
43790         this.el = this.owner.inputEl ? this.owner.inputEl() : this.owner.el;
43791         
43792         
43793         this.el.dom.style.border = '0 none';
43794         this.el.dom.setAttribute('tabIndex', -1);
43795         this.el.addClass('x-hidden hide');
43796         
43797         
43798         
43799         if(Roo.isIE){ // fix IE 1px bogus margin
43800             this.el.applyStyles('margin-top:-1px;margin-bottom:-1px;')
43801         }
43802        
43803         
43804         this.frameId = Roo.id();
43805         
43806          
43807         
43808         var iframe = this.owner.wrap.createChild({
43809             tag: 'iframe',
43810             cls: 'form-control', // bootstrap..
43811             id: this.frameId,
43812             name: this.frameId,
43813             frameBorder : 'no',
43814             'src' : Roo.SSL_SECURE_URL ? Roo.SSL_SECURE_URL  :  "javascript:false"
43815         }, this.el
43816         );
43817         
43818         
43819         this.iframe = iframe.dom;
43820
43821          this.assignDocWin();
43822         
43823         this.doc.designMode = 'on';
43824        
43825         this.doc.open();
43826         this.doc.write(this.getDocMarkup());
43827         this.doc.close();
43828
43829         
43830         var task = { // must defer to wait for browser to be ready
43831             run : function(){
43832                 //console.log("run task?" + this.doc.readyState);
43833                 this.assignDocWin();
43834                 if(this.doc.body || this.doc.readyState == 'complete'){
43835                     try {
43836                         this.doc.designMode="on";
43837                     } catch (e) {
43838                         return;
43839                     }
43840                     Roo.TaskMgr.stop(task);
43841                     this.initEditor.defer(10, this);
43842                 }
43843             },
43844             interval : 10,
43845             duration: 10000,
43846             scope: this
43847         };
43848         Roo.TaskMgr.start(task);
43849
43850     },
43851
43852     // private
43853     onResize : function(w, h)
43854     {
43855          Roo.log('resize: ' +w + ',' + h );
43856         //Roo.HtmlEditorCore.superclass.onResize.apply(this, arguments);
43857         if(!this.iframe){
43858             return;
43859         }
43860         if(typeof w == 'number'){
43861             
43862             this.iframe.style.width = w + 'px';
43863         }
43864         if(typeof h == 'number'){
43865             
43866             this.iframe.style.height = h + 'px';
43867             if(this.doc){
43868                 (this.doc.body || this.doc.documentElement).style.height = (h - (this.iframePad*2)) + 'px';
43869             }
43870         }
43871         
43872     },
43873
43874     /**
43875      * Toggles the editor between standard and source edit mode.
43876      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
43877      */
43878     toggleSourceEdit : function(sourceEditMode){
43879         
43880         this.sourceEditMode = sourceEditMode === true;
43881         
43882         if(this.sourceEditMode){
43883  
43884             Roo.get(this.iframe).addClass(['x-hidden','hide']);     //FIXME - what's the BS styles for these
43885             
43886         }else{
43887             Roo.get(this.iframe).removeClass(['x-hidden','hide']);
43888             //this.iframe.className = '';
43889             this.deferFocus();
43890         }
43891         //this.setSize(this.owner.wrap.getSize());
43892         //this.fireEvent('editmodechange', this, this.sourceEditMode);
43893     },
43894
43895     
43896   
43897
43898     /**
43899      * Protected method that will not generally be called directly. If you need/want
43900      * custom HTML cleanup, this is the method you should override.
43901      * @param {String} html The HTML to be cleaned
43902      * return {String} The cleaned HTML
43903      */
43904     cleanHtml : function(html){
43905         html = String(html);
43906         if(html.length > 5){
43907             if(Roo.isSafari){ // strip safari nonsense
43908                 html = html.replace(/\sclass="(?:Apple-style-span|khtml-block-placeholder)"/gi, '');
43909             }
43910         }
43911         if(html == '&nbsp;'){
43912             html = '';
43913         }
43914         return html;
43915     },
43916
43917     /**
43918      * HTML Editor -> Textarea
43919      * Protected method that will not generally be called directly. Syncs the contents
43920      * of the editor iframe with the textarea.
43921      */
43922     syncValue : function(){
43923         if(this.initialized){
43924             var bd = (this.doc.body || this.doc.documentElement);
43925             //this.cleanUpPaste(); -- this is done else where and causes havoc..
43926             var html = bd.innerHTML;
43927             if(Roo.isSafari){
43928                 var bs = bd.getAttribute('style'); // Safari puts text-align styles on the body element!
43929                 var m = bs ? bs.match(/text-align:(.*?);/i) : false;
43930                 if(m && m[1]){
43931                     html = '<div style="'+m[0]+'">' + html + '</div>';
43932                 }
43933             }
43934             html = this.cleanHtml(html);
43935             // fix up the special chars.. normaly like back quotes in word...
43936             // however we do not want to do this with chinese..
43937             html = html.replace(/[\uD800-\uDBFF][\uDC00-\uDFFF]|[\u0080-\uFFFF]/g, function(match) {
43938                 
43939                 var cc = match.charCodeAt();
43940
43941                 // Get the character value, handling surrogate pairs
43942                 if (match.length == 2) {
43943                     // It's a surrogate pair, calculate the Unicode code point
43944                     var high = match.charCodeAt(0) - 0xD800;
43945                     var low  = match.charCodeAt(1) - 0xDC00;
43946                     cc = (high * 0x400) + low + 0x10000;
43947                 }  else if (
43948                     (cc >= 0x4E00 && cc < 0xA000 ) ||
43949                     (cc >= 0x3400 && cc < 0x4E00 ) ||
43950                     (cc >= 0xf900 && cc < 0xfb00 )
43951                 ) {
43952                         return match;
43953                 }  
43954          
43955                 // No, use a numeric entity. Here we brazenly (and possibly mistakenly)
43956                 return "&#" + cc + ";";
43957                 
43958                 
43959             });
43960             
43961             
43962              
43963             if(this.owner.fireEvent('beforesync', this, html) !== false){
43964                 this.el.dom.value = html;
43965                 this.owner.fireEvent('sync', this, html);
43966             }
43967         }
43968     },
43969
43970     /**
43971      * Protected method that will not generally be called directly. Pushes the value of the textarea
43972      * into the iframe editor.
43973      */
43974     pushValue : function(){
43975         if(this.initialized){
43976             var v = this.el.dom.value.trim();
43977             
43978 //            if(v.length < 1){
43979 //                v = '&#160;';
43980 //            }
43981             
43982             if(this.owner.fireEvent('beforepush', this, v) !== false){
43983                 var d = (this.doc.body || this.doc.documentElement);
43984                 d.innerHTML = v;
43985                 this.cleanUpPaste();
43986                 this.el.dom.value = d.innerHTML;
43987                 this.owner.fireEvent('push', this, v);
43988             }
43989         }
43990     },
43991
43992     // private
43993     deferFocus : function(){
43994         this.focus.defer(10, this);
43995     },
43996
43997     // doc'ed in Field
43998     focus : function(){
43999         if(this.win && !this.sourceEditMode){
44000             this.win.focus();
44001         }else{
44002             this.el.focus();
44003         }
44004     },
44005     
44006     assignDocWin: function()
44007     {
44008         var iframe = this.iframe;
44009         
44010          if(Roo.isIE){
44011             this.doc = iframe.contentWindow.document;
44012             this.win = iframe.contentWindow;
44013         } else {
44014 //            if (!Roo.get(this.frameId)) {
44015 //                return;
44016 //            }
44017 //            this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
44018 //            this.win = Roo.get(this.frameId).dom.contentWindow;
44019             
44020             if (!Roo.get(this.frameId) && !iframe.contentDocument) {
44021                 return;
44022             }
44023             
44024             this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
44025             this.win = (iframe.contentWindow || Roo.get(this.frameId).dom.contentWindow);
44026         }
44027     },
44028     
44029     // private
44030     initEditor : function(){
44031         //console.log("INIT EDITOR");
44032         this.assignDocWin();
44033         
44034         
44035         
44036         this.doc.designMode="on";
44037         this.doc.open();
44038         this.doc.write(this.getDocMarkup());
44039         this.doc.close();
44040         
44041         var dbody = (this.doc.body || this.doc.documentElement);
44042         //var ss = this.el.getStyles('font-size', 'font-family', 'background-image', 'background-repeat');
44043         // this copies styles from the containing element into thsi one..
44044         // not sure why we need all of this..
44045         //var ss = this.el.getStyles('font-size', 'background-image', 'background-repeat');
44046         
44047         //var ss = this.el.getStyles( 'background-image', 'background-repeat');
44048         //ss['background-attachment'] = 'fixed'; // w3c
44049         dbody.bgProperties = 'fixed'; // ie
44050         //Roo.DomHelper.applyStyles(dbody, ss);
44051         Roo.EventManager.on(this.doc, {
44052             //'mousedown': this.onEditorEvent,
44053             'mouseup': this.onEditorEvent,
44054             'dblclick': this.onEditorEvent,
44055             'click': this.onEditorEvent,
44056             'keyup': this.onEditorEvent,
44057             buffer:100,
44058             scope: this
44059         });
44060         if(Roo.isGecko){
44061             Roo.EventManager.on(this.doc, 'keypress', this.mozKeyPress, this);
44062         }
44063         if(Roo.isIE || Roo.isSafari || Roo.isOpera){
44064             Roo.EventManager.on(this.doc, 'keydown', this.fixKeys, this);
44065         }
44066         this.initialized = true;
44067
44068         this.owner.fireEvent('initialize', this);
44069         this.pushValue();
44070     },
44071
44072     // private
44073     onDestroy : function(){
44074         
44075         
44076         
44077         if(this.rendered){
44078             
44079             //for (var i =0; i < this.toolbars.length;i++) {
44080             //    // fixme - ask toolbars for heights?
44081             //    this.toolbars[i].onDestroy();
44082            // }
44083             
44084             //this.wrap.dom.innerHTML = '';
44085             //this.wrap.remove();
44086         }
44087     },
44088
44089     // private
44090     onFirstFocus : function(){
44091         
44092         this.assignDocWin();
44093         
44094         
44095         this.activated = true;
44096          
44097     
44098         if(Roo.isGecko){ // prevent silly gecko errors
44099             this.win.focus();
44100             var s = this.win.getSelection();
44101             if(!s.focusNode || s.focusNode.nodeType != 3){
44102                 var r = s.getRangeAt(0);
44103                 r.selectNodeContents((this.doc.body || this.doc.documentElement));
44104                 r.collapse(true);
44105                 this.deferFocus();
44106             }
44107             try{
44108                 this.execCmd('useCSS', true);
44109                 this.execCmd('styleWithCSS', false);
44110             }catch(e){}
44111         }
44112         this.owner.fireEvent('activate', this);
44113     },
44114
44115     // private
44116     adjustFont: function(btn){
44117         var adjust = btn.cmd == 'increasefontsize' ? 1 : -1;
44118         //if(Roo.isSafari){ // safari
44119         //    adjust *= 2;
44120        // }
44121         var v = parseInt(this.doc.queryCommandValue('FontSize')|| 3, 10);
44122         if(Roo.isSafari){ // safari
44123             var sm = { 10 : 1, 13: 2, 16:3, 18:4, 24: 5, 32:6, 48: 7 };
44124             v =  (v < 10) ? 10 : v;
44125             v =  (v > 48) ? 48 : v;
44126             v = typeof(sm[v]) == 'undefined' ? 1 : sm[v];
44127             
44128         }
44129         
44130         
44131         v = Math.max(1, v+adjust);
44132         
44133         this.execCmd('FontSize', v  );
44134     },
44135
44136     onEditorEvent : function(e)
44137     {
44138         this.owner.fireEvent('editorevent', this, e);
44139       //  this.updateToolbar();
44140         this.syncValue(); //we can not sync so often.. sync cleans, so this breaks stuff
44141     },
44142
44143     insertTag : function(tg)
44144     {
44145         // could be a bit smarter... -> wrap the current selected tRoo..
44146         if (tg.toLowerCase() == 'span' ||
44147             tg.toLowerCase() == 'code' ||
44148             tg.toLowerCase() == 'sup' ||
44149             tg.toLowerCase() == 'sub' 
44150             ) {
44151             
44152             range = this.createRange(this.getSelection());
44153             var wrappingNode = this.doc.createElement(tg.toLowerCase());
44154             wrappingNode.appendChild(range.extractContents());
44155             range.insertNode(wrappingNode);
44156
44157             return;
44158             
44159             
44160             
44161         }
44162         this.execCmd("formatblock",   tg);
44163         
44164     },
44165     
44166     insertText : function(txt)
44167     {
44168         
44169         
44170         var range = this.createRange();
44171         range.deleteContents();
44172                //alert(Sender.getAttribute('label'));
44173                
44174         range.insertNode(this.doc.createTextNode(txt));
44175     } ,
44176     
44177      
44178
44179     /**
44180      * Executes a Midas editor command on the editor document and performs necessary focus and
44181      * toolbar updates. <b>This should only be called after the editor is initialized.</b>
44182      * @param {String} cmd The Midas command
44183      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
44184      */
44185     relayCmd : function(cmd, value){
44186         this.win.focus();
44187         this.execCmd(cmd, value);
44188         this.owner.fireEvent('editorevent', this);
44189         //this.updateToolbar();
44190         this.owner.deferFocus();
44191     },
44192
44193     /**
44194      * Executes a Midas editor command directly on the editor document.
44195      * For visual commands, you should use {@link #relayCmd} instead.
44196      * <b>This should only be called after the editor is initialized.</b>
44197      * @param {String} cmd The Midas command
44198      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
44199      */
44200     execCmd : function(cmd, value){
44201         this.doc.execCommand(cmd, false, value === undefined ? null : value);
44202         this.syncValue();
44203     },
44204  
44205  
44206    
44207     /**
44208      * Inserts the passed text at the current cursor position. Note: the editor must be initialized and activated
44209      * to insert tRoo.
44210      * @param {String} text | dom node.. 
44211      */
44212     insertAtCursor : function(text)
44213     {
44214         
44215         if(!this.activated){
44216             return;
44217         }
44218         /*
44219         if(Roo.isIE){
44220             this.win.focus();
44221             var r = this.doc.selection.createRange();
44222             if(r){
44223                 r.collapse(true);
44224                 r.pasteHTML(text);
44225                 this.syncValue();
44226                 this.deferFocus();
44227             
44228             }
44229             return;
44230         }
44231         */
44232         if(Roo.isGecko || Roo.isOpera || Roo.isSafari){
44233             this.win.focus();
44234             
44235             
44236             // from jquery ui (MIT licenced)
44237             var range, node;
44238             var win = this.win;
44239             
44240             if (win.getSelection && win.getSelection().getRangeAt) {
44241                 range = win.getSelection().getRangeAt(0);
44242                 node = typeof(text) == 'string' ? range.createContextualFragment(text) : text;
44243                 range.insertNode(node);
44244             } else if (win.document.selection && win.document.selection.createRange) {
44245                 // no firefox support
44246                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
44247                 win.document.selection.createRange().pasteHTML(txt);
44248             } else {
44249                 // no firefox support
44250                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
44251                 this.execCmd('InsertHTML', txt);
44252             } 
44253             
44254             this.syncValue();
44255             
44256             this.deferFocus();
44257         }
44258     },
44259  // private
44260     mozKeyPress : function(e){
44261         if(e.ctrlKey){
44262             var c = e.getCharCode(), cmd;
44263           
44264             if(c > 0){
44265                 c = String.fromCharCode(c).toLowerCase();
44266                 switch(c){
44267                     case 'b':
44268                         cmd = 'bold';
44269                         break;
44270                     case 'i':
44271                         cmd = 'italic';
44272                         break;
44273                     
44274                     case 'u':
44275                         cmd = 'underline';
44276                         break;
44277                     
44278                     case 'v':
44279                         this.cleanUpPaste.defer(100, this);
44280                         return;
44281                         
44282                 }
44283                 if(cmd){
44284                     this.win.focus();
44285                     this.execCmd(cmd);
44286                     this.deferFocus();
44287                     e.preventDefault();
44288                 }
44289                 
44290             }
44291         }
44292     },
44293
44294     // private
44295     fixKeys : function(){ // load time branching for fastest keydown performance
44296         if(Roo.isIE){
44297             return function(e){
44298                 var k = e.getKey(), r;
44299                 if(k == e.TAB){
44300                     e.stopEvent();
44301                     r = this.doc.selection.createRange();
44302                     if(r){
44303                         r.collapse(true);
44304                         r.pasteHTML('&#160;&#160;&#160;&#160;');
44305                         this.deferFocus();
44306                     }
44307                     return;
44308                 }
44309                 
44310                 if(k == e.ENTER){
44311                     r = this.doc.selection.createRange();
44312                     if(r){
44313                         var target = r.parentElement();
44314                         if(!target || target.tagName.toLowerCase() != 'li'){
44315                             e.stopEvent();
44316                             r.pasteHTML('<br />');
44317                             r.collapse(false);
44318                             r.select();
44319                         }
44320                     }
44321                 }
44322                 if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
44323                     this.cleanUpPaste.defer(100, this);
44324                     return;
44325                 }
44326                 
44327                 
44328             };
44329         }else if(Roo.isOpera){
44330             return function(e){
44331                 var k = e.getKey();
44332                 if(k == e.TAB){
44333                     e.stopEvent();
44334                     this.win.focus();
44335                     this.execCmd('InsertHTML','&#160;&#160;&#160;&#160;');
44336                     this.deferFocus();
44337                 }
44338                 if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
44339                     this.cleanUpPaste.defer(100, this);
44340                     return;
44341                 }
44342                 
44343             };
44344         }else if(Roo.isSafari){
44345             return function(e){
44346                 var k = e.getKey();
44347                 
44348                 if(k == e.TAB){
44349                     e.stopEvent();
44350                     this.execCmd('InsertText','\t');
44351                     this.deferFocus();
44352                     return;
44353                 }
44354                if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
44355                     this.cleanUpPaste.defer(100, this);
44356                     return;
44357                 }
44358                 
44359              };
44360         }
44361     }(),
44362     
44363     getAllAncestors: function()
44364     {
44365         var p = this.getSelectedNode();
44366         var a = [];
44367         if (!p) {
44368             a.push(p); // push blank onto stack..
44369             p = this.getParentElement();
44370         }
44371         
44372         
44373         while (p && (p.nodeType == 1) && (p.tagName.toLowerCase() != 'body')) {
44374             a.push(p);
44375             p = p.parentNode;
44376         }
44377         a.push(this.doc.body);
44378         return a;
44379     },
44380     lastSel : false,
44381     lastSelNode : false,
44382     
44383     
44384     getSelection : function() 
44385     {
44386         this.assignDocWin();
44387         return Roo.isIE ? this.doc.selection : this.win.getSelection();
44388     },
44389     
44390     getSelectedNode: function() 
44391     {
44392         // this may only work on Gecko!!!
44393         
44394         // should we cache this!!!!
44395         
44396         
44397         
44398          
44399         var range = this.createRange(this.getSelection()).cloneRange();
44400         
44401         if (Roo.isIE) {
44402             var parent = range.parentElement();
44403             while (true) {
44404                 var testRange = range.duplicate();
44405                 testRange.moveToElementText(parent);
44406                 if (testRange.inRange(range)) {
44407                     break;
44408                 }
44409                 if ((parent.nodeType != 1) || (parent.tagName.toLowerCase() == 'body')) {
44410                     break;
44411                 }
44412                 parent = parent.parentElement;
44413             }
44414             return parent;
44415         }
44416         
44417         // is ancestor a text element.
44418         var ac =  range.commonAncestorContainer;
44419         if (ac.nodeType == 3) {
44420             ac = ac.parentNode;
44421         }
44422         
44423         var ar = ac.childNodes;
44424          
44425         var nodes = [];
44426         var other_nodes = [];
44427         var has_other_nodes = false;
44428         for (var i=0;i<ar.length;i++) {
44429             if ((ar[i].nodeType == 3) && (!ar[i].data.length)) { // empty text ? 
44430                 continue;
44431             }
44432             // fullly contained node.
44433             
44434             if (this.rangeIntersectsNode(range,ar[i]) && this.rangeCompareNode(range,ar[i]) == 3) {
44435                 nodes.push(ar[i]);
44436                 continue;
44437             }
44438             
44439             // probably selected..
44440             if ((ar[i].nodeType == 1) && this.rangeIntersectsNode(range,ar[i]) && (this.rangeCompareNode(range,ar[i]) > 0)) {
44441                 other_nodes.push(ar[i]);
44442                 continue;
44443             }
44444             // outer..
44445             if (!this.rangeIntersectsNode(range,ar[i])|| (this.rangeCompareNode(range,ar[i]) == 0))  {
44446                 continue;
44447             }
44448             
44449             
44450             has_other_nodes = true;
44451         }
44452         if (!nodes.length && other_nodes.length) {
44453             nodes= other_nodes;
44454         }
44455         if (has_other_nodes || !nodes.length || (nodes.length > 1)) {
44456             return false;
44457         }
44458         
44459         return nodes[0];
44460     },
44461     createRange: function(sel)
44462     {
44463         // this has strange effects when using with 
44464         // top toolbar - not sure if it's a great idea.
44465         //this.editor.contentWindow.focus();
44466         if (typeof sel != "undefined") {
44467             try {
44468                 return sel.getRangeAt ? sel.getRangeAt(0) : sel.createRange();
44469             } catch(e) {
44470                 return this.doc.createRange();
44471             }
44472         } else {
44473             return this.doc.createRange();
44474         }
44475     },
44476     getParentElement: function()
44477     {
44478         
44479         this.assignDocWin();
44480         var sel = Roo.isIE ? this.doc.selection : this.win.getSelection();
44481         
44482         var range = this.createRange(sel);
44483          
44484         try {
44485             var p = range.commonAncestorContainer;
44486             while (p.nodeType == 3) { // text node
44487                 p = p.parentNode;
44488             }
44489             return p;
44490         } catch (e) {
44491             return null;
44492         }
44493     
44494     },
44495     /***
44496      *
44497      * Range intersection.. the hard stuff...
44498      *  '-1' = before
44499      *  '0' = hits..
44500      *  '1' = after.
44501      *         [ -- selected range --- ]
44502      *   [fail]                        [fail]
44503      *
44504      *    basically..
44505      *      if end is before start or  hits it. fail.
44506      *      if start is after end or hits it fail.
44507      *
44508      *   if either hits (but other is outside. - then it's not 
44509      *   
44510      *    
44511      **/
44512     
44513     
44514     // @see http://www.thismuchiknow.co.uk/?p=64.
44515     rangeIntersectsNode : function(range, node)
44516     {
44517         var nodeRange = node.ownerDocument.createRange();
44518         try {
44519             nodeRange.selectNode(node);
44520         } catch (e) {
44521             nodeRange.selectNodeContents(node);
44522         }
44523     
44524         var rangeStartRange = range.cloneRange();
44525         rangeStartRange.collapse(true);
44526     
44527         var rangeEndRange = range.cloneRange();
44528         rangeEndRange.collapse(false);
44529     
44530         var nodeStartRange = nodeRange.cloneRange();
44531         nodeStartRange.collapse(true);
44532     
44533         var nodeEndRange = nodeRange.cloneRange();
44534         nodeEndRange.collapse(false);
44535     
44536         return rangeStartRange.compareBoundaryPoints(
44537                  Range.START_TO_START, nodeEndRange) == -1 &&
44538                rangeEndRange.compareBoundaryPoints(
44539                  Range.START_TO_START, nodeStartRange) == 1;
44540         
44541          
44542     },
44543     rangeCompareNode : function(range, node)
44544     {
44545         var nodeRange = node.ownerDocument.createRange();
44546         try {
44547             nodeRange.selectNode(node);
44548         } catch (e) {
44549             nodeRange.selectNodeContents(node);
44550         }
44551         
44552         
44553         range.collapse(true);
44554     
44555         nodeRange.collapse(true);
44556      
44557         var ss = range.compareBoundaryPoints( Range.START_TO_START, nodeRange);
44558         var ee = range.compareBoundaryPoints(  Range.END_TO_END, nodeRange);
44559          
44560         //Roo.log(node.tagName + ': ss='+ss +', ee='+ee)
44561         
44562         var nodeIsBefore   =  ss == 1;
44563         var nodeIsAfter    = ee == -1;
44564         
44565         if (nodeIsBefore && nodeIsAfter) {
44566             return 0; // outer
44567         }
44568         if (!nodeIsBefore && nodeIsAfter) {
44569             return 1; //right trailed.
44570         }
44571         
44572         if (nodeIsBefore && !nodeIsAfter) {
44573             return 2;  // left trailed.
44574         }
44575         // fully contined.
44576         return 3;
44577     },
44578
44579     // private? - in a new class?
44580     cleanUpPaste :  function()
44581     {
44582         // cleans up the whole document..
44583         Roo.log('cleanuppaste');
44584         
44585         this.cleanUpChildren(this.doc.body);
44586         var clean = this.cleanWordChars(this.doc.body.innerHTML);
44587         if (clean != this.doc.body.innerHTML) {
44588             this.doc.body.innerHTML = clean;
44589         }
44590         
44591     },
44592     
44593     cleanWordChars : function(input) {// change the chars to hex code
44594         var he = Roo.HtmlEditorCore;
44595         
44596         var output = input;
44597         Roo.each(he.swapCodes, function(sw) { 
44598             var swapper = new RegExp("\\u" + sw[0].toString(16), "g"); // hex codes
44599             
44600             output = output.replace(swapper, sw[1]);
44601         });
44602         
44603         return output;
44604     },
44605     
44606     
44607     cleanUpChildren : function (n)
44608     {
44609         if (!n.childNodes.length) {
44610             return;
44611         }
44612         for (var i = n.childNodes.length-1; i > -1 ; i--) {
44613            this.cleanUpChild(n.childNodes[i]);
44614         }
44615     },
44616     
44617     
44618         
44619     
44620     cleanUpChild : function (node)
44621     {
44622         var ed = this;
44623         //console.log(node);
44624         if (node.nodeName == "#text") {
44625             // clean up silly Windows -- stuff?
44626             return; 
44627         }
44628         if (node.nodeName == "#comment") {
44629             node.parentNode.removeChild(node);
44630             // clean up silly Windows -- stuff?
44631             return; 
44632         }
44633         var lcname = node.tagName.toLowerCase();
44634         // we ignore whitelists... ?? = not really the way to go, but we probably have not got a full
44635         // whitelist of tags..
44636         
44637         if (this.black.indexOf(lcname) > -1 && this.clearUp ) {
44638             // remove node.
44639             node.parentNode.removeChild(node);
44640             return;
44641             
44642         }
44643         
44644         var remove_keep_children= Roo.HtmlEditorCore.remove.indexOf(node.tagName.toLowerCase()) > -1;
44645         
44646         // spans with no attributes - just remove them..
44647         if ((!node.attributes || !node.attributes.length) && lcname == 'span') { 
44648             remove_keep_children = true;
44649         }
44650         
44651         // remove <a name=....> as rendering on yahoo mailer is borked with this.
44652         // this will have to be flaged elsewhere - perhaps ablack=name... on the mailer..
44653         
44654         //if (node.tagName.toLowerCase() == 'a' && !node.hasAttribute('href')) {
44655         //    remove_keep_children = true;
44656         //}
44657         
44658         if (remove_keep_children) {
44659             this.cleanUpChildren(node);
44660             // inserts everything just before this node...
44661             while (node.childNodes.length) {
44662                 var cn = node.childNodes[0];
44663                 node.removeChild(cn);
44664                 node.parentNode.insertBefore(cn, node);
44665             }
44666             node.parentNode.removeChild(node);
44667             return;
44668         }
44669         
44670         if (!node.attributes || !node.attributes.length) {
44671             
44672           
44673             
44674             
44675             this.cleanUpChildren(node);
44676             return;
44677         }
44678         
44679         function cleanAttr(n,v)
44680         {
44681             
44682             if (v.match(/^\./) || v.match(/^\//)) {
44683                 return;
44684             }
44685             if (v.match(/^(http|https):\/\//) || v.match(/^mailto:/) || v.match(/^ftp:/)) {
44686                 return;
44687             }
44688             if (v.match(/^#/)) {
44689                 return;
44690             }
44691             if (v.match(/^\{/)) { // allow template editing.
44692                 return;
44693             }
44694 //            Roo.log("(REMOVE TAG)"+ node.tagName +'.' + n + '=' + v);
44695             node.removeAttribute(n);
44696             
44697         }
44698         
44699         var cwhite = this.cwhite;
44700         var cblack = this.cblack;
44701             
44702         function cleanStyle(n,v)
44703         {
44704             if (v.match(/expression/)) { //XSS?? should we even bother..
44705                 node.removeAttribute(n);
44706                 return;
44707             }
44708             
44709             var parts = v.split(/;/);
44710             var clean = [];
44711             
44712             Roo.each(parts, function(p) {
44713                 p = p.replace(/^\s+/g,'').replace(/\s+$/g,'');
44714                 if (!p.length) {
44715                     return true;
44716                 }
44717                 var l = p.split(':').shift().replace(/\s+/g,'');
44718                 l = l.replace(/^\s+/g,'').replace(/\s+$/g,'');
44719                 
44720                 if ( cwhite.length && cblack.indexOf(l) > -1) {
44721 //                    Roo.log('(REMOVE CSS)' + node.tagName +'.' + n + ':'+l + '=' + v);
44722                     //node.removeAttribute(n);
44723                     return true;
44724                 }
44725                 //Roo.log()
44726                 // only allow 'c whitelisted system attributes'
44727                 if ( cwhite.length &&  cwhite.indexOf(l) < 0) {
44728 //                    Roo.log('(REMOVE CSS)' + node.tagName +'.' + n + ':'+l + '=' + v);
44729                     //node.removeAttribute(n);
44730                     return true;
44731                 }
44732                 
44733                 
44734                  
44735                 
44736                 clean.push(p);
44737                 return true;
44738             });
44739             if (clean.length) { 
44740                 node.setAttribute(n, clean.join(';'));
44741             } else {
44742                 node.removeAttribute(n);
44743             }
44744             
44745         }
44746         
44747         
44748         for (var i = node.attributes.length-1; i > -1 ; i--) {
44749             var a = node.attributes[i];
44750             //console.log(a);
44751             
44752             if (a.name.toLowerCase().substr(0,2)=='on')  {
44753                 node.removeAttribute(a.name);
44754                 continue;
44755             }
44756             if (Roo.HtmlEditorCore.ablack.indexOf(a.name.toLowerCase()) > -1) {
44757                 node.removeAttribute(a.name);
44758                 continue;
44759             }
44760             if (Roo.HtmlEditorCore.aclean.indexOf(a.name.toLowerCase()) > -1) {
44761                 cleanAttr(a.name,a.value); // fixme..
44762                 continue;
44763             }
44764             if (a.name == 'style') {
44765                 cleanStyle(a.name,a.value);
44766                 continue;
44767             }
44768             /// clean up MS crap..
44769             // tecnically this should be a list of valid class'es..
44770             
44771             
44772             if (a.name == 'class') {
44773                 if (a.value.match(/^Mso/)) {
44774                     node.removeAttribute('class');
44775                 }
44776                 
44777                 if (a.value.match(/^body$/)) {
44778                     node.removeAttribute('class');
44779                 }
44780                 continue;
44781             }
44782             
44783             // style cleanup!?
44784             // class cleanup?
44785             
44786         }
44787         
44788         
44789         this.cleanUpChildren(node);
44790         
44791         
44792     },
44793     
44794     /**
44795      * Clean up MS wordisms...
44796      */
44797     cleanWord : function(node)
44798     {
44799         if (!node) {
44800             this.cleanWord(this.doc.body);
44801             return;
44802         }
44803         
44804         if(
44805                 node.nodeName == 'SPAN' &&
44806                 !node.hasAttributes() &&
44807                 node.childNodes.length == 1 &&
44808                 node.firstChild.nodeName == "#text"  
44809         ) {
44810             var textNode = node.firstChild;
44811             node.removeChild(textNode);
44812             if (node.getAttribute('lang') != 'zh-CN') {   // do not space pad on chinese characters..
44813                 node.parentNode.insertBefore(node.ownerDocument.createTextNode(" "), node);
44814             }
44815             node.parentNode.insertBefore(textNode, node);
44816             if (node.getAttribute('lang') != 'zh-CN') {   // do not space pad on chinese characters..
44817                 node.parentNode.insertBefore(node.ownerDocument.createTextNode(" ") , node);
44818             }
44819             node.parentNode.removeChild(node);
44820         }
44821         
44822         if (node.nodeName == "#text") {
44823             // clean up silly Windows -- stuff?
44824             return; 
44825         }
44826         if (node.nodeName == "#comment") {
44827             node.parentNode.removeChild(node);
44828             // clean up silly Windows -- stuff?
44829             return; 
44830         }
44831         
44832         if (node.tagName.toLowerCase().match(/^(style|script|applet|embed|noframes|noscript)$/)) {
44833             node.parentNode.removeChild(node);
44834             return;
44835         }
44836         //Roo.log(node.tagName);
44837         // remove - but keep children..
44838         if (node.tagName.toLowerCase().match(/^(meta|link|\\?xml:|st1:|o:|v:|font)/)) {
44839             //Roo.log('-- removed');
44840             while (node.childNodes.length) {
44841                 var cn = node.childNodes[0];
44842                 node.removeChild(cn);
44843                 node.parentNode.insertBefore(cn, node);
44844                 // move node to parent - and clean it..
44845                 this.cleanWord(cn);
44846             }
44847             node.parentNode.removeChild(node);
44848             /// no need to iterate chidlren = it's got none..
44849             //this.iterateChildren(node, this.cleanWord);
44850             return;
44851         }
44852         // clean styles
44853         if (node.className.length) {
44854             
44855             var cn = node.className.split(/\W+/);
44856             var cna = [];
44857             Roo.each(cn, function(cls) {
44858                 if (cls.match(/Mso[a-zA-Z]+/)) {
44859                     return;
44860                 }
44861                 cna.push(cls);
44862             });
44863             node.className = cna.length ? cna.join(' ') : '';
44864             if (!cna.length) {
44865                 node.removeAttribute("class");
44866             }
44867         }
44868         
44869         if (node.hasAttribute("lang")) {
44870             node.removeAttribute("lang");
44871         }
44872         
44873         if (node.hasAttribute("style")) {
44874             
44875             var styles = node.getAttribute("style").split(";");
44876             var nstyle = [];
44877             Roo.each(styles, function(s) {
44878                 if (!s.match(/:/)) {
44879                     return;
44880                 }
44881                 var kv = s.split(":");
44882                 if (kv[0].match(/^(mso-|line|font|background|margin|padding|color)/)) {
44883                     return;
44884                 }
44885                 // what ever is left... we allow.
44886                 nstyle.push(s);
44887             });
44888             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
44889             if (!nstyle.length) {
44890                 node.removeAttribute('style');
44891             }
44892         }
44893         this.iterateChildren(node, this.cleanWord);
44894         
44895         
44896         
44897     },
44898     /**
44899      * iterateChildren of a Node, calling fn each time, using this as the scole..
44900      * @param {DomNode} node node to iterate children of.
44901      * @param {Function} fn method of this class to call on each item.
44902      */
44903     iterateChildren : function(node, fn)
44904     {
44905         if (!node.childNodes.length) {
44906                 return;
44907         }
44908         for (var i = node.childNodes.length-1; i > -1 ; i--) {
44909            fn.call(this, node.childNodes[i])
44910         }
44911     },
44912     
44913     
44914     /**
44915      * cleanTableWidths.
44916      *
44917      * Quite often pasting from word etc.. results in tables with column and widths.
44918      * This does not work well on fluid HTML layouts - like emails. - so this code should hunt an destroy them..
44919      *
44920      */
44921     cleanTableWidths : function(node)
44922     {
44923          
44924          
44925         if (!node) {
44926             this.cleanTableWidths(this.doc.body);
44927             return;
44928         }
44929         
44930         // ignore list...
44931         if (node.nodeName == "#text" || node.nodeName == "#comment") {
44932             return; 
44933         }
44934         Roo.log(node.tagName);
44935         if (!node.tagName.toLowerCase().match(/^(table|td|tr)$/)) {
44936             this.iterateChildren(node, this.cleanTableWidths);
44937             return;
44938         }
44939         if (node.hasAttribute('width')) {
44940             node.removeAttribute('width');
44941         }
44942         
44943          
44944         if (node.hasAttribute("style")) {
44945             // pretty basic...
44946             
44947             var styles = node.getAttribute("style").split(";");
44948             var nstyle = [];
44949             Roo.each(styles, function(s) {
44950                 if (!s.match(/:/)) {
44951                     return;
44952                 }
44953                 var kv = s.split(":");
44954                 if (kv[0].match(/^\s*(width|min-width)\s*$/)) {
44955                     return;
44956                 }
44957                 // what ever is left... we allow.
44958                 nstyle.push(s);
44959             });
44960             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
44961             if (!nstyle.length) {
44962                 node.removeAttribute('style');
44963             }
44964         }
44965         
44966         this.iterateChildren(node, this.cleanTableWidths);
44967         
44968         
44969     },
44970     
44971     
44972     
44973     
44974     domToHTML : function(currentElement, depth, nopadtext) {
44975         
44976         depth = depth || 0;
44977         nopadtext = nopadtext || false;
44978     
44979         if (!currentElement) {
44980             return this.domToHTML(this.doc.body);
44981         }
44982         
44983         //Roo.log(currentElement);
44984         var j;
44985         var allText = false;
44986         var nodeName = currentElement.nodeName;
44987         var tagName = Roo.util.Format.htmlEncode(currentElement.tagName);
44988         
44989         if  (nodeName == '#text') {
44990             
44991             return nopadtext ? currentElement.nodeValue : currentElement.nodeValue.trim();
44992         }
44993         
44994         
44995         var ret = '';
44996         if (nodeName != 'BODY') {
44997              
44998             var i = 0;
44999             // Prints the node tagName, such as <A>, <IMG>, etc
45000             if (tagName) {
45001                 var attr = [];
45002                 for(i = 0; i < currentElement.attributes.length;i++) {
45003                     // quoting?
45004                     var aname = currentElement.attributes.item(i).name;
45005                     if (!currentElement.attributes.item(i).value.length) {
45006                         continue;
45007                     }
45008                     attr.push(aname + '="' + Roo.util.Format.htmlEncode(currentElement.attributes.item(i).value) + '"' );
45009                 }
45010                 
45011                 ret = "<"+currentElement.tagName+ ( attr.length ? (' ' + attr.join(' ') ) : '') + ">";
45012             } 
45013             else {
45014                 
45015                 // eack
45016             }
45017         } else {
45018             tagName = false;
45019         }
45020         if (['IMG', 'BR', 'HR', 'INPUT'].indexOf(tagName) > -1) {
45021             return ret;
45022         }
45023         if (['PRE', 'TEXTAREA', 'TD', 'A', 'SPAN'].indexOf(tagName) > -1) { // or code?
45024             nopadtext = true;
45025         }
45026         
45027         
45028         // Traverse the tree
45029         i = 0;
45030         var currentElementChild = currentElement.childNodes.item(i);
45031         var allText = true;
45032         var innerHTML  = '';
45033         lastnode = '';
45034         while (currentElementChild) {
45035             // Formatting code (indent the tree so it looks nice on the screen)
45036             var nopad = nopadtext;
45037             if (lastnode == 'SPAN') {
45038                 nopad  = true;
45039             }
45040             // text
45041             if  (currentElementChild.nodeName == '#text') {
45042                 var toadd = Roo.util.Format.htmlEncode(currentElementChild.nodeValue);
45043                 toadd = nopadtext ? toadd : toadd.trim();
45044                 if (!nopad && toadd.length > 80) {
45045                     innerHTML  += "\n" + (new Array( depth + 1 )).join( "  "  );
45046                 }
45047                 innerHTML  += toadd;
45048                 
45049                 i++;
45050                 currentElementChild = currentElement.childNodes.item(i);
45051                 lastNode = '';
45052                 continue;
45053             }
45054             allText = false;
45055             
45056             innerHTML  += nopad ? '' : "\n" + (new Array( depth + 1 )).join( "  "  );
45057                 
45058             // Recursively traverse the tree structure of the child node
45059             innerHTML   += this.domToHTML(currentElementChild, depth+1, nopadtext);
45060             lastnode = currentElementChild.nodeName;
45061             i++;
45062             currentElementChild=currentElement.childNodes.item(i);
45063         }
45064         
45065         ret += innerHTML;
45066         
45067         if (!allText) {
45068                 // The remaining code is mostly for formatting the tree
45069             ret+= nopadtext ? '' : "\n" + (new Array( depth  )).join( "  "  );
45070         }
45071         
45072         
45073         if (tagName) {
45074             ret+= "</"+tagName+">";
45075         }
45076         return ret;
45077         
45078     },
45079         
45080     applyBlacklists : function()
45081     {
45082         var w = typeof(this.owner.white) != 'undefined' && this.owner.white ? this.owner.white  : [];
45083         var b = typeof(this.owner.black) != 'undefined' && this.owner.black ? this.owner.black :  [];
45084         
45085         this.white = [];
45086         this.black = [];
45087         Roo.each(Roo.HtmlEditorCore.white, function(tag) {
45088             if (b.indexOf(tag) > -1) {
45089                 return;
45090             }
45091             this.white.push(tag);
45092             
45093         }, this);
45094         
45095         Roo.each(w, function(tag) {
45096             if (b.indexOf(tag) > -1) {
45097                 return;
45098             }
45099             if (this.white.indexOf(tag) > -1) {
45100                 return;
45101             }
45102             this.white.push(tag);
45103             
45104         }, this);
45105         
45106         
45107         Roo.each(Roo.HtmlEditorCore.black, function(tag) {
45108             if (w.indexOf(tag) > -1) {
45109                 return;
45110             }
45111             this.black.push(tag);
45112             
45113         }, this);
45114         
45115         Roo.each(b, function(tag) {
45116             if (w.indexOf(tag) > -1) {
45117                 return;
45118             }
45119             if (this.black.indexOf(tag) > -1) {
45120                 return;
45121             }
45122             this.black.push(tag);
45123             
45124         }, this);
45125         
45126         
45127         w = typeof(this.owner.cwhite) != 'undefined' && this.owner.cwhite ? this.owner.cwhite  : [];
45128         b = typeof(this.owner.cblack) != 'undefined' && this.owner.cblack ? this.owner.cblack :  [];
45129         
45130         this.cwhite = [];
45131         this.cblack = [];
45132         Roo.each(Roo.HtmlEditorCore.cwhite, function(tag) {
45133             if (b.indexOf(tag) > -1) {
45134                 return;
45135             }
45136             this.cwhite.push(tag);
45137             
45138         }, this);
45139         
45140         Roo.each(w, function(tag) {
45141             if (b.indexOf(tag) > -1) {
45142                 return;
45143             }
45144             if (this.cwhite.indexOf(tag) > -1) {
45145                 return;
45146             }
45147             this.cwhite.push(tag);
45148             
45149         }, this);
45150         
45151         
45152         Roo.each(Roo.HtmlEditorCore.cblack, function(tag) {
45153             if (w.indexOf(tag) > -1) {
45154                 return;
45155             }
45156             this.cblack.push(tag);
45157             
45158         }, this);
45159         
45160         Roo.each(b, function(tag) {
45161             if (w.indexOf(tag) > -1) {
45162                 return;
45163             }
45164             if (this.cblack.indexOf(tag) > -1) {
45165                 return;
45166             }
45167             this.cblack.push(tag);
45168             
45169         }, this);
45170     },
45171     
45172     setStylesheets : function(stylesheets)
45173     {
45174         if(typeof(stylesheets) == 'string'){
45175             Roo.get(this.iframe.contentDocument.head).createChild({
45176                 tag : 'link',
45177                 rel : 'stylesheet',
45178                 type : 'text/css',
45179                 href : stylesheets
45180             });
45181             
45182             return;
45183         }
45184         var _this = this;
45185      
45186         Roo.each(stylesheets, function(s) {
45187             if(!s.length){
45188                 return;
45189             }
45190             
45191             Roo.get(_this.iframe.contentDocument.head).createChild({
45192                 tag : 'link',
45193                 rel : 'stylesheet',
45194                 type : 'text/css',
45195                 href : s
45196             });
45197         });
45198
45199         
45200     },
45201     
45202     removeStylesheets : function()
45203     {
45204         var _this = this;
45205         
45206         Roo.each(Roo.get(_this.iframe.contentDocument.head).select('link[rel=stylesheet]', true).elements, function(s){
45207             s.remove();
45208         });
45209     },
45210     
45211     setStyle : function(style)
45212     {
45213         Roo.get(this.iframe.contentDocument.head).createChild({
45214             tag : 'style',
45215             type : 'text/css',
45216             html : style
45217         });
45218
45219         return;
45220     }
45221     
45222     // hide stuff that is not compatible
45223     /**
45224      * @event blur
45225      * @hide
45226      */
45227     /**
45228      * @event change
45229      * @hide
45230      */
45231     /**
45232      * @event focus
45233      * @hide
45234      */
45235     /**
45236      * @event specialkey
45237      * @hide
45238      */
45239     /**
45240      * @cfg {String} fieldClass @hide
45241      */
45242     /**
45243      * @cfg {String} focusClass @hide
45244      */
45245     /**
45246      * @cfg {String} autoCreate @hide
45247      */
45248     /**
45249      * @cfg {String} inputType @hide
45250      */
45251     /**
45252      * @cfg {String} invalidClass @hide
45253      */
45254     /**
45255      * @cfg {String} invalidText @hide
45256      */
45257     /**
45258      * @cfg {String} msgFx @hide
45259      */
45260     /**
45261      * @cfg {String} validateOnBlur @hide
45262      */
45263 });
45264
45265 Roo.HtmlEditorCore.white = [
45266         'area', 'br', 'img', 'input', 'hr', 'wbr',
45267         
45268        'address', 'blockquote', 'center', 'dd',      'dir',       'div', 
45269        'dl',      'dt',         'h1',     'h2',      'h3',        'h4', 
45270        'h5',      'h6',         'hr',     'isindex', 'listing',   'marquee', 
45271        'menu',    'multicol',   'ol',     'p',       'plaintext', 'pre', 
45272        'table',   'ul',         'xmp', 
45273        
45274        'caption', 'col', 'colgroup', 'tbody', 'td', 'tfoot', 'th', 
45275       'thead',   'tr', 
45276      
45277       'dir', 'menu', 'ol', 'ul', 'dl',
45278        
45279       'embed',  'object'
45280 ];
45281
45282
45283 Roo.HtmlEditorCore.black = [
45284     //    'embed',  'object', // enable - backend responsiblity to clean thiese
45285         'applet', // 
45286         'base',   'basefont', 'bgsound', 'blink',  'body', 
45287         'frame',  'frameset', 'head',    'html',   'ilayer', 
45288         'iframe', 'layer',  'link',     'meta',    'object',   
45289         'script', 'style' ,'title',  'xml' // clean later..
45290 ];
45291 Roo.HtmlEditorCore.clean = [
45292     'script', 'style', 'title', 'xml'
45293 ];
45294 Roo.HtmlEditorCore.remove = [
45295     'font'
45296 ];
45297 // attributes..
45298
45299 Roo.HtmlEditorCore.ablack = [
45300     'on'
45301 ];
45302     
45303 Roo.HtmlEditorCore.aclean = [ 
45304     'action', 'background', 'codebase', 'dynsrc', 'href', 'lowsrc' 
45305 ];
45306
45307 // protocols..
45308 Roo.HtmlEditorCore.pwhite= [
45309         'http',  'https',  'mailto'
45310 ];
45311
45312 // white listed style attributes.
45313 Roo.HtmlEditorCore.cwhite= [
45314       //  'text-align', /// default is to allow most things..
45315       
45316          
45317 //        'font-size'//??
45318 ];
45319
45320 // black listed style attributes.
45321 Roo.HtmlEditorCore.cblack= [
45322       //  'font-size' -- this can be set by the project 
45323 ];
45324
45325
45326 Roo.HtmlEditorCore.swapCodes   =[ 
45327     [    8211, "&#8211;" ], 
45328     [    8212, "&#8212;" ], 
45329     [    8216,  "'" ],  
45330     [    8217, "'" ],  
45331     [    8220, '"' ],  
45332     [    8221, '"' ],  
45333     [    8226, "*" ],  
45334     [    8230, "..." ]
45335 ]; 
45336
45337     //<script type="text/javascript">
45338
45339 /*
45340  * Ext JS Library 1.1.1
45341  * Copyright(c) 2006-2007, Ext JS, LLC.
45342  * Licence LGPL
45343  * 
45344  */
45345  
45346  
45347 Roo.form.HtmlEditor = function(config){
45348     
45349     
45350     
45351     Roo.form.HtmlEditor.superclass.constructor.call(this, config);
45352     
45353     if (!this.toolbars) {
45354         this.toolbars = [];
45355     }
45356     this.editorcore = new Roo.HtmlEditorCore(Roo.apply({ owner : this} , config));
45357     
45358     
45359 };
45360
45361 /**
45362  * @class Roo.form.HtmlEditor
45363  * @extends Roo.form.Field
45364  * Provides a lightweight HTML Editor component.
45365  *
45366  * This has been tested on Fireforx / Chrome.. IE may not be so great..
45367  * 
45368  * <br><br><b>Note: The focus/blur and validation marking functionality inherited from Ext.form.Field is NOT
45369  * supported by this editor.</b><br/><br/>
45370  * An Editor is a sensitive component that can't be used in all spots standard fields can be used. Putting an Editor within
45371  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
45372  */
45373 Roo.extend(Roo.form.HtmlEditor, Roo.form.Field, {
45374     /**
45375      * @cfg {Boolean} clearUp
45376      */
45377     clearUp : true,
45378       /**
45379      * @cfg {Array} toolbars Array of toolbars. - defaults to just the Standard one
45380      */
45381     toolbars : false,
45382    
45383      /**
45384      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
45385      *                        Roo.resizable.
45386      */
45387     resizable : false,
45388      /**
45389      * @cfg {Number} height (in pixels)
45390      */   
45391     height: 300,
45392    /**
45393      * @cfg {Number} width (in pixels)
45394      */   
45395     width: 500,
45396     
45397     /**
45398      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
45399      * 
45400      */
45401     stylesheets: false,
45402     
45403     
45404      /**
45405      * @cfg {Array} blacklist of css styles style attributes (blacklist overrides whitelist)
45406      * 
45407      */
45408     cblack: false,
45409     /**
45410      * @cfg {Array} whitelist of css styles style attributes (blacklist overrides whitelist)
45411      * 
45412      */
45413     cwhite: false,
45414     
45415      /**
45416      * @cfg {Array} blacklist of html tags - in addition to standard blacklist.
45417      * 
45418      */
45419     black: false,
45420     /**
45421      * @cfg {Array} whitelist of html tags - in addition to statndard whitelist
45422      * 
45423      */
45424     white: false,
45425     
45426     // id of frame..
45427     frameId: false,
45428     
45429     // private properties
45430     validationEvent : false,
45431     deferHeight: true,
45432     initialized : false,
45433     activated : false,
45434     
45435     onFocus : Roo.emptyFn,
45436     iframePad:3,
45437     hideMode:'offsets',
45438     
45439     actionMode : 'container', // defaults to hiding it...
45440     
45441     defaultAutoCreate : { // modified by initCompnoent..
45442         tag: "textarea",
45443         style:"width:500px;height:300px;",
45444         autocomplete: "new-password"
45445     },
45446
45447     // private
45448     initComponent : function(){
45449         this.addEvents({
45450             /**
45451              * @event initialize
45452              * Fires when the editor is fully initialized (including the iframe)
45453              * @param {HtmlEditor} this
45454              */
45455             initialize: true,
45456             /**
45457              * @event activate
45458              * Fires when the editor is first receives the focus. Any insertion must wait
45459              * until after this event.
45460              * @param {HtmlEditor} this
45461              */
45462             activate: true,
45463              /**
45464              * @event beforesync
45465              * Fires before the textarea is updated with content from the editor iframe. Return false
45466              * to cancel the sync.
45467              * @param {HtmlEditor} this
45468              * @param {String} html
45469              */
45470             beforesync: true,
45471              /**
45472              * @event beforepush
45473              * Fires before the iframe editor is updated with content from the textarea. Return false
45474              * to cancel the push.
45475              * @param {HtmlEditor} this
45476              * @param {String} html
45477              */
45478             beforepush: true,
45479              /**
45480              * @event sync
45481              * Fires when the textarea is updated with content from the editor iframe.
45482              * @param {HtmlEditor} this
45483              * @param {String} html
45484              */
45485             sync: true,
45486              /**
45487              * @event push
45488              * Fires when the iframe editor is updated with content from the textarea.
45489              * @param {HtmlEditor} this
45490              * @param {String} html
45491              */
45492             push: true,
45493              /**
45494              * @event editmodechange
45495              * Fires when the editor switches edit modes
45496              * @param {HtmlEditor} this
45497              * @param {Boolean} sourceEdit True if source edit, false if standard editing.
45498              */
45499             editmodechange: true,
45500             /**
45501              * @event editorevent
45502              * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
45503              * @param {HtmlEditor} this
45504              */
45505             editorevent: true,
45506             /**
45507              * @event firstfocus
45508              * Fires when on first focus - needed by toolbars..
45509              * @param {HtmlEditor} this
45510              */
45511             firstfocus: true,
45512             /**
45513              * @event autosave
45514              * Auto save the htmlEditor value as a file into Events
45515              * @param {HtmlEditor} this
45516              */
45517             autosave: true,
45518             /**
45519              * @event savedpreview
45520              * preview the saved version of htmlEditor
45521              * @param {HtmlEditor} this
45522              */
45523             savedpreview: true,
45524             
45525             /**
45526             * @event stylesheetsclick
45527             * Fires when press the Sytlesheets button
45528             * @param {Roo.HtmlEditorCore} this
45529             */
45530             stylesheetsclick: true
45531         });
45532         this.defaultAutoCreate =  {
45533             tag: "textarea",
45534             style:'width: ' + this.width + 'px;height: ' + this.height + 'px;',
45535             autocomplete: "new-password"
45536         };
45537     },
45538
45539     /**
45540      * Protected method that will not generally be called directly. It
45541      * is called when the editor creates its toolbar. Override this method if you need to
45542      * add custom toolbar buttons.
45543      * @param {HtmlEditor} editor
45544      */
45545     createToolbar : function(editor){
45546         Roo.log("create toolbars");
45547         if (!editor.toolbars || !editor.toolbars.length) {
45548             editor.toolbars = [ new Roo.form.HtmlEditor.ToolbarStandard() ]; // can be empty?
45549         }
45550         
45551         for (var i =0 ; i < editor.toolbars.length;i++) {
45552             editor.toolbars[i] = Roo.factory(
45553                     typeof(editor.toolbars[i]) == 'string' ?
45554                         { xtype: editor.toolbars[i]} : editor.toolbars[i],
45555                 Roo.form.HtmlEditor);
45556             editor.toolbars[i].init(editor);
45557         }
45558          
45559         
45560     },
45561
45562      
45563     // private
45564     onRender : function(ct, position)
45565     {
45566         var _t = this;
45567         Roo.form.HtmlEditor.superclass.onRender.call(this, ct, position);
45568         
45569         this.wrap = this.el.wrap({
45570             cls:'x-html-editor-wrap', cn:{cls:'x-html-editor-tb'}
45571         });
45572         
45573         this.editorcore.onRender(ct, position);
45574          
45575         if (this.resizable) {
45576             this.resizeEl = new Roo.Resizable(this.wrap, {
45577                 pinned : true,
45578                 wrap: true,
45579                 dynamic : true,
45580                 minHeight : this.height,
45581                 height: this.height,
45582                 handles : this.resizable,
45583                 width: this.width,
45584                 listeners : {
45585                     resize : function(r, w, h) {
45586                         _t.onResize(w,h); // -something
45587                     }
45588                 }
45589             });
45590             
45591         }
45592         this.createToolbar(this);
45593        
45594         
45595         if(!this.width){
45596             this.setSize(this.wrap.getSize());
45597         }
45598         if (this.resizeEl) {
45599             this.resizeEl.resizeTo.defer(100, this.resizeEl,[ this.width,this.height ] );
45600             // should trigger onReize..
45601         }
45602         
45603         this.keyNav = new Roo.KeyNav(this.el, {
45604             
45605             "tab" : function(e){
45606                 e.preventDefault();
45607                 
45608                 var value = this.getValue();
45609                 
45610                 var start = this.el.dom.selectionStart;
45611                 var end = this.el.dom.selectionEnd;
45612                 
45613                 if(!e.shiftKey){
45614                     
45615                     this.setValue(value.substring(0, start) + "\t" + value.substring(end));
45616                     this.el.dom.setSelectionRange(end + 1, end + 1);
45617                     return;
45618                 }
45619                 
45620                 var f = value.substring(0, start).split("\t");
45621                 
45622                 if(f.pop().length != 0){
45623                     return;
45624                 }
45625                 
45626                 this.setValue(f.join("\t") + value.substring(end));
45627                 this.el.dom.setSelectionRange(start - 1, start - 1);
45628                 
45629             },
45630             
45631             "home" : function(e){
45632                 e.preventDefault();
45633                 
45634                 var curr = this.el.dom.selectionStart;
45635                 var lines = this.getValue().split("\n");
45636                 
45637                 if(!lines.length){
45638                     return;
45639                 }
45640                 
45641                 if(e.ctrlKey){
45642                     this.el.dom.setSelectionRange(0, 0);
45643                     return;
45644                 }
45645                 
45646                 var pos = 0;
45647                 
45648                 for (var i = 0; i < lines.length;i++) {
45649                     pos += lines[i].length;
45650                     
45651                     if(i != 0){
45652                         pos += 1;
45653                     }
45654                     
45655                     if(pos < curr){
45656                         continue;
45657                     }
45658                     
45659                     pos -= lines[i].length;
45660                     
45661                     break;
45662                 }
45663                 
45664                 if(!e.shiftKey){
45665                     this.el.dom.setSelectionRange(pos, pos);
45666                     return;
45667                 }
45668                 
45669                 this.el.dom.selectionStart = pos;
45670                 this.el.dom.selectionEnd = curr;
45671             },
45672             
45673             "end" : function(e){
45674                 e.preventDefault();
45675                 
45676                 var curr = this.el.dom.selectionStart;
45677                 var lines = this.getValue().split("\n");
45678                 
45679                 if(!lines.length){
45680                     return;
45681                 }
45682                 
45683                 if(e.ctrlKey){
45684                     this.el.dom.setSelectionRange(this.getValue().length, this.getValue().length);
45685                     return;
45686                 }
45687                 
45688                 var pos = 0;
45689                 
45690                 for (var i = 0; i < lines.length;i++) {
45691                     
45692                     pos += lines[i].length;
45693                     
45694                     if(i != 0){
45695                         pos += 1;
45696                     }
45697                     
45698                     if(pos < curr){
45699                         continue;
45700                     }
45701                     
45702                     break;
45703                 }
45704                 
45705                 if(!e.shiftKey){
45706                     this.el.dom.setSelectionRange(pos, pos);
45707                     return;
45708                 }
45709                 
45710                 this.el.dom.selectionStart = curr;
45711                 this.el.dom.selectionEnd = pos;
45712             },
45713
45714             scope : this,
45715
45716             doRelay : function(foo, bar, hname){
45717                 return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
45718             },
45719
45720             forceKeyDown: true
45721         });
45722         
45723 //        if(this.autosave && this.w){
45724 //            this.autoSaveFn = setInterval(this.autosave, 1000);
45725 //        }
45726     },
45727
45728     // private
45729     onResize : function(w, h)
45730     {
45731         Roo.form.HtmlEditor.superclass.onResize.apply(this, arguments);
45732         var ew = false;
45733         var eh = false;
45734         
45735         if(this.el ){
45736             if(typeof w == 'number'){
45737                 var aw = w - this.wrap.getFrameWidth('lr');
45738                 this.el.setWidth(this.adjustWidth('textarea', aw));
45739                 ew = aw;
45740             }
45741             if(typeof h == 'number'){
45742                 var tbh = 0;
45743                 for (var i =0; i < this.toolbars.length;i++) {
45744                     // fixme - ask toolbars for heights?
45745                     tbh += this.toolbars[i].tb.el.getHeight();
45746                     if (this.toolbars[i].footer) {
45747                         tbh += this.toolbars[i].footer.el.getHeight();
45748                     }
45749                 }
45750                 
45751                 
45752                 
45753                 
45754                 var ah = h - this.wrap.getFrameWidth('tb') - tbh;// this.tb.el.getHeight();
45755                 ah -= 5; // knock a few pixes off for look..
45756 //                Roo.log(ah);
45757                 this.el.setHeight(this.adjustWidth('textarea', ah));
45758                 var eh = ah;
45759             }
45760         }
45761         Roo.log('onResize:' + [w,h,ew,eh].join(',') );
45762         this.editorcore.onResize(ew,eh);
45763         
45764     },
45765
45766     /**
45767      * Toggles the editor between standard and source edit mode.
45768      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
45769      */
45770     toggleSourceEdit : function(sourceEditMode)
45771     {
45772         this.editorcore.toggleSourceEdit(sourceEditMode);
45773         
45774         if(this.editorcore.sourceEditMode){
45775             Roo.log('editor - showing textarea');
45776             
45777 //            Roo.log('in');
45778 //            Roo.log(this.syncValue());
45779             this.editorcore.syncValue();
45780             this.el.removeClass('x-hidden');
45781             this.el.dom.removeAttribute('tabIndex');
45782             this.el.focus();
45783             
45784             for (var i = 0; i < this.toolbars.length; i++) {
45785                 if(this.toolbars[i] instanceof Roo.form.HtmlEditor.ToolbarContext){
45786                     this.toolbars[i].tb.hide();
45787                     this.toolbars[i].footer.hide();
45788                 }
45789             }
45790             
45791         }else{
45792             Roo.log('editor - hiding textarea');
45793 //            Roo.log('out')
45794 //            Roo.log(this.pushValue()); 
45795             this.editorcore.pushValue();
45796             
45797             this.el.addClass('x-hidden');
45798             this.el.dom.setAttribute('tabIndex', -1);
45799             
45800             for (var i = 0; i < this.toolbars.length; i++) {
45801                 if(this.toolbars[i] instanceof Roo.form.HtmlEditor.ToolbarContext){
45802                     this.toolbars[i].tb.show();
45803                     this.toolbars[i].footer.show();
45804                 }
45805             }
45806             
45807             //this.deferFocus();
45808         }
45809         
45810         this.setSize(this.wrap.getSize());
45811         this.onResize(this.wrap.getSize().width, this.wrap.getSize().height);
45812         
45813         this.fireEvent('editmodechange', this, this.editorcore.sourceEditMode);
45814     },
45815  
45816     // private (for BoxComponent)
45817     adjustSize : Roo.BoxComponent.prototype.adjustSize,
45818
45819     // private (for BoxComponent)
45820     getResizeEl : function(){
45821         return this.wrap;
45822     },
45823
45824     // private (for BoxComponent)
45825     getPositionEl : function(){
45826         return this.wrap;
45827     },
45828
45829     // private
45830     initEvents : function(){
45831         this.originalValue = this.getValue();
45832     },
45833
45834     /**
45835      * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
45836      * @method
45837      */
45838     markInvalid : Roo.emptyFn,
45839     /**
45840      * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
45841      * @method
45842      */
45843     clearInvalid : Roo.emptyFn,
45844
45845     setValue : function(v){
45846         Roo.form.HtmlEditor.superclass.setValue.call(this, v);
45847         this.editorcore.pushValue();
45848     },
45849
45850      
45851     // private
45852     deferFocus : function(){
45853         this.focus.defer(10, this);
45854     },
45855
45856     // doc'ed in Field
45857     focus : function(){
45858         this.editorcore.focus();
45859         
45860     },
45861       
45862
45863     // private
45864     onDestroy : function(){
45865         
45866         
45867         
45868         if(this.rendered){
45869             
45870             for (var i =0; i < this.toolbars.length;i++) {
45871                 // fixme - ask toolbars for heights?
45872                 this.toolbars[i].onDestroy();
45873             }
45874             
45875             this.wrap.dom.innerHTML = '';
45876             this.wrap.remove();
45877         }
45878     },
45879
45880     // private
45881     onFirstFocus : function(){
45882         //Roo.log("onFirstFocus");
45883         this.editorcore.onFirstFocus();
45884          for (var i =0; i < this.toolbars.length;i++) {
45885             this.toolbars[i].onFirstFocus();
45886         }
45887         
45888     },
45889     
45890     // private
45891     syncValue : function()
45892     {
45893         this.editorcore.syncValue();
45894     },
45895     
45896     pushValue : function()
45897     {
45898         this.editorcore.pushValue();
45899     },
45900     
45901     setStylesheets : function(stylesheets)
45902     {
45903         this.editorcore.setStylesheets(stylesheets);
45904     },
45905     
45906     removeStylesheets : function()
45907     {
45908         this.editorcore.removeStylesheets();
45909     }
45910      
45911     
45912     // hide stuff that is not compatible
45913     /**
45914      * @event blur
45915      * @hide
45916      */
45917     /**
45918      * @event change
45919      * @hide
45920      */
45921     /**
45922      * @event focus
45923      * @hide
45924      */
45925     /**
45926      * @event specialkey
45927      * @hide
45928      */
45929     /**
45930      * @cfg {String} fieldClass @hide
45931      */
45932     /**
45933      * @cfg {String} focusClass @hide
45934      */
45935     /**
45936      * @cfg {String} autoCreate @hide
45937      */
45938     /**
45939      * @cfg {String} inputType @hide
45940      */
45941     /**
45942      * @cfg {String} invalidClass @hide
45943      */
45944     /**
45945      * @cfg {String} invalidText @hide
45946      */
45947     /**
45948      * @cfg {String} msgFx @hide
45949      */
45950     /**
45951      * @cfg {String} validateOnBlur @hide
45952      */
45953 });
45954  
45955     // <script type="text/javascript">
45956 /*
45957  * Based on
45958  * Ext JS Library 1.1.1
45959  * Copyright(c) 2006-2007, Ext JS, LLC.
45960  *  
45961  
45962  */
45963
45964 /**
45965  * @class Roo.form.HtmlEditorToolbar1
45966  * Basic Toolbar
45967  * 
45968  * Usage:
45969  *
45970  new Roo.form.HtmlEditor({
45971     ....
45972     toolbars : [
45973         new Roo.form.HtmlEditorToolbar1({
45974             disable : { fonts: 1 , format: 1, ..., ... , ...],
45975             btns : [ .... ]
45976         })
45977     }
45978      
45979  * 
45980  * @cfg {Object} disable List of elements to disable..
45981  * @cfg {Array} btns List of additional buttons.
45982  * 
45983  * 
45984  * NEEDS Extra CSS? 
45985  * .x-html-editor-tb .x-edit-none .x-btn-text { background: none; }
45986  */
45987  
45988 Roo.form.HtmlEditor.ToolbarStandard = function(config)
45989 {
45990     
45991     Roo.apply(this, config);
45992     
45993     // default disabled, based on 'good practice'..
45994     this.disable = this.disable || {};
45995     Roo.applyIf(this.disable, {
45996         fontSize : true,
45997         colors : true,
45998         specialElements : true
45999     });
46000     
46001     
46002     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
46003     // dont call parent... till later.
46004 }
46005
46006 Roo.apply(Roo.form.HtmlEditor.ToolbarStandard.prototype,  {
46007     
46008     tb: false,
46009     
46010     rendered: false,
46011     
46012     editor : false,
46013     editorcore : false,
46014     /**
46015      * @cfg {Object} disable  List of toolbar elements to disable
46016          
46017      */
46018     disable : false,
46019     
46020     
46021      /**
46022      * @cfg {String} createLinkText The default text for the create link prompt
46023      */
46024     createLinkText : 'Please enter the URL for the link:',
46025     /**
46026      * @cfg {String} defaultLinkValue The default value for the create link prompt (defaults to http:/ /)
46027      */
46028     defaultLinkValue : 'http:/'+'/',
46029    
46030     
46031       /**
46032      * @cfg {Array} fontFamilies An array of available font families
46033      */
46034     fontFamilies : [
46035         'Arial',
46036         'Courier New',
46037         'Tahoma',
46038         'Times New Roman',
46039         'Verdana'
46040     ],
46041     
46042     specialChars : [
46043            "&#169;",
46044           "&#174;",     
46045           "&#8482;",    
46046           "&#163;" ,    
46047          // "&#8212;",    
46048           "&#8230;",    
46049           "&#247;" ,    
46050         //  "&#225;" ,     ?? a acute?
46051            "&#8364;"    , //Euro
46052        //   "&#8220;"    ,
46053         //  "&#8221;"    ,
46054         //  "&#8226;"    ,
46055           "&#176;"  //   , // degrees
46056
46057          // "&#233;"     , // e ecute
46058          // "&#250;"     , // u ecute?
46059     ],
46060     
46061     specialElements : [
46062         {
46063             text: "Insert Table",
46064             xtype: 'MenuItem',
46065             xns : Roo.Menu,
46066             ihtml :  '<table><tr><td>Cell</td></tr></table>' 
46067                 
46068         },
46069         {    
46070             text: "Insert Image",
46071             xtype: 'MenuItem',
46072             xns : Roo.Menu,
46073             ihtml : '<img src="about:blank"/>'
46074             
46075         }
46076         
46077          
46078     ],
46079     
46080     
46081     inputElements : [ 
46082             "form", "input:text", "input:hidden", "input:checkbox", "input:radio", "input:password", 
46083             "input:submit", "input:button", "select", "textarea", "label" ],
46084     formats : [
46085         ["p"] ,  
46086         ["h1"],["h2"],["h3"],["h4"],["h5"],["h6"], 
46087         ["pre"],[ "code"], 
46088         ["abbr"],[ "acronym"],[ "address"],[ "cite"],[ "samp"],[ "var"],
46089         ['div'],['span'],
46090         ['sup'],['sub']
46091     ],
46092     
46093     cleanStyles : [
46094         "font-size"
46095     ],
46096      /**
46097      * @cfg {String} defaultFont default font to use.
46098      */
46099     defaultFont: 'tahoma',
46100    
46101     fontSelect : false,
46102     
46103     
46104     formatCombo : false,
46105     
46106     init : function(editor)
46107     {
46108         this.editor = editor;
46109         this.editorcore = editor.editorcore ? editor.editorcore : editor;
46110         var editorcore = this.editorcore;
46111         
46112         var _t = this;
46113         
46114         var fid = editorcore.frameId;
46115         var etb = this;
46116         function btn(id, toggle, handler){
46117             var xid = fid + '-'+ id ;
46118             return {
46119                 id : xid,
46120                 cmd : id,
46121                 cls : 'x-btn-icon x-edit-'+id,
46122                 enableToggle:toggle !== false,
46123                 scope: _t, // was editor...
46124                 handler:handler||_t.relayBtnCmd,
46125                 clickEvent:'mousedown',
46126                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
46127                 tabIndex:-1
46128             };
46129         }
46130         
46131         
46132         
46133         var tb = new Roo.Toolbar(editor.wrap.dom.firstChild);
46134         this.tb = tb;
46135          // stop form submits
46136         tb.el.on('click', function(e){
46137             e.preventDefault(); // what does this do?
46138         });
46139
46140         if(!this.disable.font) { // && !Roo.isSafari){
46141             /* why no safari for fonts 
46142             editor.fontSelect = tb.el.createChild({
46143                 tag:'select',
46144                 tabIndex: -1,
46145                 cls:'x-font-select',
46146                 html: this.createFontOptions()
46147             });
46148             
46149             editor.fontSelect.on('change', function(){
46150                 var font = editor.fontSelect.dom.value;
46151                 editor.relayCmd('fontname', font);
46152                 editor.deferFocus();
46153             }, editor);
46154             
46155             tb.add(
46156                 editor.fontSelect.dom,
46157                 '-'
46158             );
46159             */
46160             
46161         };
46162         if(!this.disable.formats){
46163             this.formatCombo = new Roo.form.ComboBox({
46164                 store: new Roo.data.SimpleStore({
46165                     id : 'tag',
46166                     fields: ['tag'],
46167                     data : this.formats // from states.js
46168                 }),
46169                 blockFocus : true,
46170                 name : '',
46171                 //autoCreate : {tag: "div",  size: "20"},
46172                 displayField:'tag',
46173                 typeAhead: false,
46174                 mode: 'local',
46175                 editable : false,
46176                 triggerAction: 'all',
46177                 emptyText:'Add tag',
46178                 selectOnFocus:true,
46179                 width:135,
46180                 listeners : {
46181                     'select': function(c, r, i) {
46182                         editorcore.insertTag(r.get('tag'));
46183                         editor.focus();
46184                     }
46185                 }
46186
46187             });
46188             tb.addField(this.formatCombo);
46189             
46190         }
46191         
46192         if(!this.disable.format){
46193             tb.add(
46194                 btn('bold'),
46195                 btn('italic'),
46196                 btn('underline'),
46197                 btn('strikethrough')
46198             );
46199         };
46200         if(!this.disable.fontSize){
46201             tb.add(
46202                 '-',
46203                 
46204                 
46205                 btn('increasefontsize', false, editorcore.adjustFont),
46206                 btn('decreasefontsize', false, editorcore.adjustFont)
46207             );
46208         };
46209         
46210         
46211         if(!this.disable.colors){
46212             tb.add(
46213                 '-', {
46214                     id:editorcore.frameId +'-forecolor',
46215                     cls:'x-btn-icon x-edit-forecolor',
46216                     clickEvent:'mousedown',
46217                     tooltip: this.buttonTips['forecolor'] || undefined,
46218                     tabIndex:-1,
46219                     menu : new Roo.menu.ColorMenu({
46220                         allowReselect: true,
46221                         focus: Roo.emptyFn,
46222                         value:'000000',
46223                         plain:true,
46224                         selectHandler: function(cp, color){
46225                             editorcore.execCmd('forecolor', Roo.isSafari || Roo.isIE ? '#'+color : color);
46226                             editor.deferFocus();
46227                         },
46228                         scope: editorcore,
46229                         clickEvent:'mousedown'
46230                     })
46231                 }, {
46232                     id:editorcore.frameId +'backcolor',
46233                     cls:'x-btn-icon x-edit-backcolor',
46234                     clickEvent:'mousedown',
46235                     tooltip: this.buttonTips['backcolor'] || undefined,
46236                     tabIndex:-1,
46237                     menu : new Roo.menu.ColorMenu({
46238                         focus: Roo.emptyFn,
46239                         value:'FFFFFF',
46240                         plain:true,
46241                         allowReselect: true,
46242                         selectHandler: function(cp, color){
46243                             if(Roo.isGecko){
46244                                 editorcore.execCmd('useCSS', false);
46245                                 editorcore.execCmd('hilitecolor', color);
46246                                 editorcore.execCmd('useCSS', true);
46247                                 editor.deferFocus();
46248                             }else{
46249                                 editorcore.execCmd(Roo.isOpera ? 'hilitecolor' : 'backcolor', 
46250                                     Roo.isSafari || Roo.isIE ? '#'+color : color);
46251                                 editor.deferFocus();
46252                             }
46253                         },
46254                         scope:editorcore,
46255                         clickEvent:'mousedown'
46256                     })
46257                 }
46258             );
46259         };
46260         // now add all the items...
46261         
46262
46263         if(!this.disable.alignments){
46264             tb.add(
46265                 '-',
46266                 btn('justifyleft'),
46267                 btn('justifycenter'),
46268                 btn('justifyright')
46269             );
46270         };
46271
46272         //if(!Roo.isSafari){
46273             if(!this.disable.links){
46274                 tb.add(
46275                     '-',
46276                     btn('createlink', false, this.createLink)    /// MOVE TO HERE?!!?!?!?!
46277                 );
46278             };
46279
46280             if(!this.disable.lists){
46281                 tb.add(
46282                     '-',
46283                     btn('insertorderedlist'),
46284                     btn('insertunorderedlist')
46285                 );
46286             }
46287             if(!this.disable.sourceEdit){
46288                 tb.add(
46289                     '-',
46290                     btn('sourceedit', true, function(btn){
46291                         this.toggleSourceEdit(btn.pressed);
46292                     })
46293                 );
46294             }
46295         //}
46296         
46297         var smenu = { };
46298         // special menu.. - needs to be tidied up..
46299         if (!this.disable.special) {
46300             smenu = {
46301                 text: "&#169;",
46302                 cls: 'x-edit-none',
46303                 
46304                 menu : {
46305                     items : []
46306                 }
46307             };
46308             for (var i =0; i < this.specialChars.length; i++) {
46309                 smenu.menu.items.push({
46310                     
46311                     html: this.specialChars[i],
46312                     handler: function(a,b) {
46313                         editorcore.insertAtCursor(String.fromCharCode(a.html.replace('&#','').replace(';', '')));
46314                         //editor.insertAtCursor(a.html);
46315                         
46316                     },
46317                     tabIndex:-1
46318                 });
46319             }
46320             
46321             
46322             tb.add(smenu);
46323             
46324             
46325         }
46326         
46327         var cmenu = { };
46328         if (!this.disable.cleanStyles) {
46329             cmenu = {
46330                 cls: 'x-btn-icon x-btn-clear',
46331                 
46332                 menu : {
46333                     items : []
46334                 }
46335             };
46336             for (var i =0; i < this.cleanStyles.length; i++) {
46337                 cmenu.menu.items.push({
46338                     actiontype : this.cleanStyles[i],
46339                     html: 'Remove ' + this.cleanStyles[i],
46340                     handler: function(a,b) {
46341 //                        Roo.log(a);
46342 //                        Roo.log(b);
46343                         var c = Roo.get(editorcore.doc.body);
46344                         c.select('[style]').each(function(s) {
46345                             s.dom.style.removeProperty(a.actiontype);
46346                         });
46347                         editorcore.syncValue();
46348                     },
46349                     tabIndex:-1
46350                 });
46351             }
46352              cmenu.menu.items.push({
46353                 actiontype : 'tablewidths',
46354                 html: 'Remove Table Widths',
46355                 handler: function(a,b) {
46356                     editorcore.cleanTableWidths();
46357                     editorcore.syncValue();
46358                 },
46359                 tabIndex:-1
46360             });
46361             cmenu.menu.items.push({
46362                 actiontype : 'word',
46363                 html: 'Remove MS Word Formating',
46364                 handler: function(a,b) {
46365                     editorcore.cleanWord();
46366                     editorcore.syncValue();
46367                 },
46368                 tabIndex:-1
46369             });
46370             
46371             cmenu.menu.items.push({
46372                 actiontype : 'all',
46373                 html: 'Remove All Styles',
46374                 handler: function(a,b) {
46375                     
46376                     var c = Roo.get(editorcore.doc.body);
46377                     c.select('[style]').each(function(s) {
46378                         s.dom.removeAttribute('style');
46379                     });
46380                     editorcore.syncValue();
46381                 },
46382                 tabIndex:-1
46383             });
46384             
46385             cmenu.menu.items.push({
46386                 actiontype : 'all',
46387                 html: 'Remove All CSS Classes',
46388                 handler: function(a,b) {
46389                     
46390                     var c = Roo.get(editorcore.doc.body);
46391                     c.select('[class]').each(function(s) {
46392                         s.dom.removeAttribute('class');
46393                     });
46394                     editorcore.cleanWord();
46395                     editorcore.syncValue();
46396                 },
46397                 tabIndex:-1
46398             });
46399             
46400              cmenu.menu.items.push({
46401                 actiontype : 'tidy',
46402                 html: 'Tidy HTML Source',
46403                 handler: function(a,b) {
46404                     editorcore.doc.body.innerHTML = editorcore.domToHTML();
46405                     editorcore.syncValue();
46406                 },
46407                 tabIndex:-1
46408             });
46409             
46410             
46411             tb.add(cmenu);
46412         }
46413          
46414         if (!this.disable.specialElements) {
46415             var semenu = {
46416                 text: "Other;",
46417                 cls: 'x-edit-none',
46418                 menu : {
46419                     items : []
46420                 }
46421             };
46422             for (var i =0; i < this.specialElements.length; i++) {
46423                 semenu.menu.items.push(
46424                     Roo.apply({ 
46425                         handler: function(a,b) {
46426                             editor.insertAtCursor(this.ihtml);
46427                         }
46428                     }, this.specialElements[i])
46429                 );
46430                     
46431             }
46432             
46433             tb.add(semenu);
46434             
46435             
46436         }
46437          
46438         
46439         if (this.btns) {
46440             for(var i =0; i< this.btns.length;i++) {
46441                 var b = Roo.factory(this.btns[i],Roo.form);
46442                 b.cls =  'x-edit-none';
46443                 
46444                 if(typeof(this.btns[i].cls) != 'undefined' && this.btns[i].cls.indexOf('x-init-enable') !== -1){
46445                     b.cls += ' x-init-enable';
46446                 }
46447                 
46448                 b.scope = editorcore;
46449                 tb.add(b);
46450             }
46451         
46452         }
46453         
46454         
46455         
46456         // disable everything...
46457         
46458         this.tb.items.each(function(item){
46459             
46460            if(
46461                 item.id != editorcore.frameId+ '-sourceedit' && 
46462                 (typeof(item.cls) != 'undefined' && item.cls.indexOf('x-init-enable') === -1)
46463             ){
46464                 
46465                 item.disable();
46466             }
46467         });
46468         this.rendered = true;
46469         
46470         // the all the btns;
46471         editor.on('editorevent', this.updateToolbar, this);
46472         // other toolbars need to implement this..
46473         //editor.on('editmodechange', this.updateToolbar, this);
46474     },
46475     
46476     
46477     relayBtnCmd : function(btn) {
46478         this.editorcore.relayCmd(btn.cmd);
46479     },
46480     // private used internally
46481     createLink : function(){
46482         Roo.log("create link?");
46483         var url = prompt(this.createLinkText, this.defaultLinkValue);
46484         if(url && url != 'http:/'+'/'){
46485             this.editorcore.relayCmd('createlink', url);
46486         }
46487     },
46488
46489     
46490     /**
46491      * Protected method that will not generally be called directly. It triggers
46492      * a toolbar update by reading the markup state of the current selection in the editor.
46493      */
46494     updateToolbar: function(){
46495
46496         if(!this.editorcore.activated){
46497             this.editor.onFirstFocus();
46498             return;
46499         }
46500
46501         var btns = this.tb.items.map, 
46502             doc = this.editorcore.doc,
46503             frameId = this.editorcore.frameId;
46504
46505         if(!this.disable.font && !Roo.isSafari){
46506             /*
46507             var name = (doc.queryCommandValue('FontName')||this.editor.defaultFont).toLowerCase();
46508             if(name != this.fontSelect.dom.value){
46509                 this.fontSelect.dom.value = name;
46510             }
46511             */
46512         }
46513         if(!this.disable.format){
46514             btns[frameId + '-bold'].toggle(doc.queryCommandState('bold'));
46515             btns[frameId + '-italic'].toggle(doc.queryCommandState('italic'));
46516             btns[frameId + '-underline'].toggle(doc.queryCommandState('underline'));
46517             btns[frameId + '-strikethrough'].toggle(doc.queryCommandState('strikethrough'));
46518         }
46519         if(!this.disable.alignments){
46520             btns[frameId + '-justifyleft'].toggle(doc.queryCommandState('justifyleft'));
46521             btns[frameId + '-justifycenter'].toggle(doc.queryCommandState('justifycenter'));
46522             btns[frameId + '-justifyright'].toggle(doc.queryCommandState('justifyright'));
46523         }
46524         if(!Roo.isSafari && !this.disable.lists){
46525             btns[frameId + '-insertorderedlist'].toggle(doc.queryCommandState('insertorderedlist'));
46526             btns[frameId + '-insertunorderedlist'].toggle(doc.queryCommandState('insertunorderedlist'));
46527         }
46528         
46529         var ans = this.editorcore.getAllAncestors();
46530         if (this.formatCombo) {
46531             
46532             
46533             var store = this.formatCombo.store;
46534             this.formatCombo.setValue("");
46535             for (var i =0; i < ans.length;i++) {
46536                 if (ans[i] && store.query('tag',ans[i].tagName.toLowerCase(), false).length) {
46537                     // select it..
46538                     this.formatCombo.setValue(ans[i].tagName.toLowerCase());
46539                     break;
46540                 }
46541             }
46542         }
46543         
46544         
46545         
46546         // hides menus... - so this cant be on a menu...
46547         Roo.menu.MenuMgr.hideAll();
46548
46549         //this.editorsyncValue();
46550     },
46551    
46552     
46553     createFontOptions : function(){
46554         var buf = [], fs = this.fontFamilies, ff, lc;
46555         
46556         
46557         
46558         for(var i = 0, len = fs.length; i< len; i++){
46559             ff = fs[i];
46560             lc = ff.toLowerCase();
46561             buf.push(
46562                 '<option value="',lc,'" style="font-family:',ff,';"',
46563                     (this.defaultFont == lc ? ' selected="true">' : '>'),
46564                     ff,
46565                 '</option>'
46566             );
46567         }
46568         return buf.join('');
46569     },
46570     
46571     toggleSourceEdit : function(sourceEditMode){
46572         
46573         Roo.log("toolbar toogle");
46574         if(sourceEditMode === undefined){
46575             sourceEditMode = !this.sourceEditMode;
46576         }
46577         this.sourceEditMode = sourceEditMode === true;
46578         var btn = this.tb.items.get(this.editorcore.frameId +'-sourceedit');
46579         // just toggle the button?
46580         if(btn.pressed !== this.sourceEditMode){
46581             btn.toggle(this.sourceEditMode);
46582             return;
46583         }
46584         
46585         if(sourceEditMode){
46586             Roo.log("disabling buttons");
46587             this.tb.items.each(function(item){
46588                 if(item.cmd != 'sourceedit' && (typeof(item.cls) != 'undefined' && item.cls.indexOf('x-init-enable') === -1)){
46589                     item.disable();
46590                 }
46591             });
46592           
46593         }else{
46594             Roo.log("enabling buttons");
46595             if(this.editorcore.initialized){
46596                 this.tb.items.each(function(item){
46597                     item.enable();
46598                 });
46599             }
46600             
46601         }
46602         Roo.log("calling toggole on editor");
46603         // tell the editor that it's been pressed..
46604         this.editor.toggleSourceEdit(sourceEditMode);
46605        
46606     },
46607      /**
46608      * Object collection of toolbar tooltips for the buttons in the editor. The key
46609      * is the command id associated with that button and the value is a valid QuickTips object.
46610      * For example:
46611 <pre><code>
46612 {
46613     bold : {
46614         title: 'Bold (Ctrl+B)',
46615         text: 'Make the selected text bold.',
46616         cls: 'x-html-editor-tip'
46617     },
46618     italic : {
46619         title: 'Italic (Ctrl+I)',
46620         text: 'Make the selected text italic.',
46621         cls: 'x-html-editor-tip'
46622     },
46623     ...
46624 </code></pre>
46625     * @type Object
46626      */
46627     buttonTips : {
46628         bold : {
46629             title: 'Bold (Ctrl+B)',
46630             text: 'Make the selected text bold.',
46631             cls: 'x-html-editor-tip'
46632         },
46633         italic : {
46634             title: 'Italic (Ctrl+I)',
46635             text: 'Make the selected text italic.',
46636             cls: 'x-html-editor-tip'
46637         },
46638         underline : {
46639             title: 'Underline (Ctrl+U)',
46640             text: 'Underline the selected text.',
46641             cls: 'x-html-editor-tip'
46642         },
46643         strikethrough : {
46644             title: 'Strikethrough',
46645             text: 'Strikethrough the selected text.',
46646             cls: 'x-html-editor-tip'
46647         },
46648         increasefontsize : {
46649             title: 'Grow Text',
46650             text: 'Increase the font size.',
46651             cls: 'x-html-editor-tip'
46652         },
46653         decreasefontsize : {
46654             title: 'Shrink Text',
46655             text: 'Decrease the font size.',
46656             cls: 'x-html-editor-tip'
46657         },
46658         backcolor : {
46659             title: 'Text Highlight Color',
46660             text: 'Change the background color of the selected text.',
46661             cls: 'x-html-editor-tip'
46662         },
46663         forecolor : {
46664             title: 'Font Color',
46665             text: 'Change the color of the selected text.',
46666             cls: 'x-html-editor-tip'
46667         },
46668         justifyleft : {
46669             title: 'Align Text Left',
46670             text: 'Align text to the left.',
46671             cls: 'x-html-editor-tip'
46672         },
46673         justifycenter : {
46674             title: 'Center Text',
46675             text: 'Center text in the editor.',
46676             cls: 'x-html-editor-tip'
46677         },
46678         justifyright : {
46679             title: 'Align Text Right',
46680             text: 'Align text to the right.',
46681             cls: 'x-html-editor-tip'
46682         },
46683         insertunorderedlist : {
46684             title: 'Bullet List',
46685             text: 'Start a bulleted list.',
46686             cls: 'x-html-editor-tip'
46687         },
46688         insertorderedlist : {
46689             title: 'Numbered List',
46690             text: 'Start a numbered list.',
46691             cls: 'x-html-editor-tip'
46692         },
46693         createlink : {
46694             title: 'Hyperlink',
46695             text: 'Make the selected text a hyperlink.',
46696             cls: 'x-html-editor-tip'
46697         },
46698         sourceedit : {
46699             title: 'Source Edit',
46700             text: 'Switch to source editing mode.',
46701             cls: 'x-html-editor-tip'
46702         }
46703     },
46704     // private
46705     onDestroy : function(){
46706         if(this.rendered){
46707             
46708             this.tb.items.each(function(item){
46709                 if(item.menu){
46710                     item.menu.removeAll();
46711                     if(item.menu.el){
46712                         item.menu.el.destroy();
46713                     }
46714                 }
46715                 item.destroy();
46716             });
46717              
46718         }
46719     },
46720     onFirstFocus: function() {
46721         this.tb.items.each(function(item){
46722            item.enable();
46723         });
46724     }
46725 });
46726
46727
46728
46729
46730 // <script type="text/javascript">
46731 /*
46732  * Based on
46733  * Ext JS Library 1.1.1
46734  * Copyright(c) 2006-2007, Ext JS, LLC.
46735  *  
46736  
46737  */
46738
46739  
46740 /**
46741  * @class Roo.form.HtmlEditor.ToolbarContext
46742  * Context Toolbar
46743  * 
46744  * Usage:
46745  *
46746  new Roo.form.HtmlEditor({
46747     ....
46748     toolbars : [
46749         { xtype: 'ToolbarStandard', styles : {} }
46750         { xtype: 'ToolbarContext', disable : {} }
46751     ]
46752 })
46753
46754      
46755  * 
46756  * @config : {Object} disable List of elements to disable.. (not done yet.)
46757  * @config : {Object} styles  Map of styles available.
46758  * 
46759  */
46760
46761 Roo.form.HtmlEditor.ToolbarContext = function(config)
46762 {
46763     
46764     Roo.apply(this, config);
46765     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
46766     // dont call parent... till later.
46767     this.styles = this.styles || {};
46768 }
46769
46770  
46771
46772 Roo.form.HtmlEditor.ToolbarContext.types = {
46773     'IMG' : {
46774         width : {
46775             title: "Width",
46776             width: 40
46777         },
46778         height:  {
46779             title: "Height",
46780             width: 40
46781         },
46782         align: {
46783             title: "Align",
46784             opts : [ [""],[ "left"],[ "right"],[ "center"],[ "top"]],
46785             width : 80
46786             
46787         },
46788         border: {
46789             title: "Border",
46790             width: 40
46791         },
46792         alt: {
46793             title: "Alt",
46794             width: 120
46795         },
46796         src : {
46797             title: "Src",
46798             width: 220
46799         }
46800         
46801     },
46802     'A' : {
46803         name : {
46804             title: "Name",
46805             width: 50
46806         },
46807         target:  {
46808             title: "Target",
46809             width: 120
46810         },
46811         href:  {
46812             title: "Href",
46813             width: 220
46814         } // border?
46815         
46816     },
46817     'TABLE' : {
46818         rows : {
46819             title: "Rows",
46820             width: 20
46821         },
46822         cols : {
46823             title: "Cols",
46824             width: 20
46825         },
46826         width : {
46827             title: "Width",
46828             width: 40
46829         },
46830         height : {
46831             title: "Height",
46832             width: 40
46833         },
46834         border : {
46835             title: "Border",
46836             width: 20
46837         }
46838     },
46839     'TD' : {
46840         width : {
46841             title: "Width",
46842             width: 40
46843         },
46844         height : {
46845             title: "Height",
46846             width: 40
46847         },   
46848         align: {
46849             title: "Align",
46850             opts : [[""],[ "left"],[ "center"],[ "right"],[ "justify"],[ "char"]],
46851             width: 80
46852         },
46853         valign: {
46854             title: "Valign",
46855             opts : [[""],[ "top"],[ "middle"],[ "bottom"],[ "baseline"]],
46856             width: 80
46857         },
46858         colspan: {
46859             title: "Colspan",
46860             width: 20
46861             
46862         },
46863          'font-family'  : {
46864             title : "Font",
46865             style : 'fontFamily',
46866             displayField: 'display',
46867             optname : 'font-family',
46868             width: 140
46869         }
46870     },
46871     'INPUT' : {
46872         name : {
46873             title: "name",
46874             width: 120
46875         },
46876         value : {
46877             title: "Value",
46878             width: 120
46879         },
46880         width : {
46881             title: "Width",
46882             width: 40
46883         }
46884     },
46885     'LABEL' : {
46886         'for' : {
46887             title: "For",
46888             width: 120
46889         }
46890     },
46891     'TEXTAREA' : {
46892           name : {
46893             title: "name",
46894             width: 120
46895         },
46896         rows : {
46897             title: "Rows",
46898             width: 20
46899         },
46900         cols : {
46901             title: "Cols",
46902             width: 20
46903         }
46904     },
46905     'SELECT' : {
46906         name : {
46907             title: "name",
46908             width: 120
46909         },
46910         selectoptions : {
46911             title: "Options",
46912             width: 200
46913         }
46914     },
46915     
46916     // should we really allow this??
46917     // should this just be 
46918     'BODY' : {
46919         title : {
46920             title: "Title",
46921             width: 200,
46922             disabled : true
46923         }
46924     },
46925     'SPAN' : {
46926         'font-family'  : {
46927             title : "Font",
46928             style : 'fontFamily',
46929             displayField: 'display',
46930             optname : 'font-family',
46931             width: 140
46932         }
46933     },
46934     'DIV' : {
46935         'font-family'  : {
46936             title : "Font",
46937             style : 'fontFamily',
46938             displayField: 'display',
46939             optname : 'font-family',
46940             width: 140
46941         }
46942     },
46943      'P' : {
46944         'font-family'  : {
46945             title : "Font",
46946             style : 'fontFamily',
46947             displayField: 'display',
46948             optname : 'font-family',
46949             width: 140
46950         }
46951     },
46952     
46953     '*' : {
46954         // empty..
46955     }
46956
46957 };
46958
46959 // this should be configurable.. - you can either set it up using stores, or modify options somehwere..
46960 Roo.form.HtmlEditor.ToolbarContext.stores = false;
46961
46962 Roo.form.HtmlEditor.ToolbarContext.options = {
46963         'font-family'  : [ 
46964                 [ 'Helvetica,Arial,sans-serif', 'Helvetica'],
46965                 [ 'Courier New', 'Courier New'],
46966                 [ 'Tahoma', 'Tahoma'],
46967                 [ 'Times New Roman,serif', 'Times'],
46968                 [ 'Verdana','Verdana' ]
46969         ]
46970 };
46971
46972 // fixme - these need to be configurable..
46973  
46974
46975 //Roo.form.HtmlEditor.ToolbarContext.types
46976
46977
46978 Roo.apply(Roo.form.HtmlEditor.ToolbarContext.prototype,  {
46979     
46980     tb: false,
46981     
46982     rendered: false,
46983     
46984     editor : false,
46985     editorcore : false,
46986     /**
46987      * @cfg {Object} disable  List of toolbar elements to disable
46988          
46989      */
46990     disable : false,
46991     /**
46992      * @cfg {Object} styles List of styles 
46993      *    eg. { '*' : [ 'headline' ] , 'TD' : [ 'underline', 'double-underline' ] } 
46994      *
46995      * These must be defined in the page, so they get rendered correctly..
46996      * .headline { }
46997      * TD.underline { }
46998      * 
46999      */
47000     styles : false,
47001     
47002     options: false,
47003     
47004     toolbars : false,
47005     
47006     init : function(editor)
47007     {
47008         this.editor = editor;
47009         this.editorcore = editor.editorcore ? editor.editorcore : editor;
47010         var editorcore = this.editorcore;
47011         
47012         var fid = editorcore.frameId;
47013         var etb = this;
47014         function btn(id, toggle, handler){
47015             var xid = fid + '-'+ id ;
47016             return {
47017                 id : xid,
47018                 cmd : id,
47019                 cls : 'x-btn-icon x-edit-'+id,
47020                 enableToggle:toggle !== false,
47021                 scope: editorcore, // was editor...
47022                 handler:handler||editorcore.relayBtnCmd,
47023                 clickEvent:'mousedown',
47024                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
47025                 tabIndex:-1
47026             };
47027         }
47028         // create a new element.
47029         var wdiv = editor.wrap.createChild({
47030                 tag: 'div'
47031             }, editor.wrap.dom.firstChild.nextSibling, true);
47032         
47033         // can we do this more than once??
47034         
47035          // stop form submits
47036       
47037  
47038         // disable everything...
47039         var ty= Roo.form.HtmlEditor.ToolbarContext.types;
47040         this.toolbars = {};
47041            
47042         for (var i in  ty) {
47043           
47044             this.toolbars[i] = this.buildToolbar(ty[i],i);
47045         }
47046         this.tb = this.toolbars.BODY;
47047         this.tb.el.show();
47048         this.buildFooter();
47049         this.footer.show();
47050         editor.on('hide', function( ) { this.footer.hide() }, this);
47051         editor.on('show', function( ) { this.footer.show() }, this);
47052         
47053          
47054         this.rendered = true;
47055         
47056         // the all the btns;
47057         editor.on('editorevent', this.updateToolbar, this);
47058         // other toolbars need to implement this..
47059         //editor.on('editmodechange', this.updateToolbar, this);
47060     },
47061     
47062     
47063     
47064     /**
47065      * Protected method that will not generally be called directly. It triggers
47066      * a toolbar update by reading the markup state of the current selection in the editor.
47067      *
47068      * Note you can force an update by calling on('editorevent', scope, false)
47069      */
47070     updateToolbar: function(editor,ev,sel){
47071
47072         //Roo.log(ev);
47073         // capture mouse up - this is handy for selecting images..
47074         // perhaps should go somewhere else...
47075         if(!this.editorcore.activated){
47076              this.editor.onFirstFocus();
47077             return;
47078         }
47079         
47080         
47081         
47082         // http://developer.yahoo.com/yui/docs/simple-editor.js.html
47083         // selectNode - might want to handle IE?
47084         if (ev &&
47085             (ev.type == 'mouseup' || ev.type == 'click' ) &&
47086             ev.target && ev.target.tagName == 'IMG') {
47087             // they have click on an image...
47088             // let's see if we can change the selection...
47089             sel = ev.target;
47090          
47091               var nodeRange = sel.ownerDocument.createRange();
47092             try {
47093                 nodeRange.selectNode(sel);
47094             } catch (e) {
47095                 nodeRange.selectNodeContents(sel);
47096             }
47097             //nodeRange.collapse(true);
47098             var s = this.editorcore.win.getSelection();
47099             s.removeAllRanges();
47100             s.addRange(nodeRange);
47101         }  
47102         
47103       
47104         var updateFooter = sel ? false : true;
47105         
47106         
47107         var ans = this.editorcore.getAllAncestors();
47108         
47109         // pick
47110         var ty= Roo.form.HtmlEditor.ToolbarContext.types;
47111         
47112         if (!sel) { 
47113             sel = ans.length ? (ans[0] ?  ans[0]  : ans[1]) : this.editorcore.doc.body;
47114             sel = sel ? sel : this.editorcore.doc.body;
47115             sel = sel.tagName.length ? sel : this.editorcore.doc.body;
47116             
47117         }
47118         // pick a menu that exists..
47119         var tn = sel.tagName.toUpperCase();
47120         //sel = typeof(ty[tn]) != 'undefined' ? sel : this.editor.doc.body;
47121         
47122         tn = sel.tagName.toUpperCase();
47123         
47124         var lastSel = this.tb.selectedNode;
47125         
47126         this.tb.selectedNode = sel;
47127         
47128         // if current menu does not match..
47129         
47130         if ((this.tb.name != tn) || (lastSel != this.tb.selectedNode) || ev === false) {
47131                 
47132             this.tb.el.hide();
47133             ///console.log("show: " + tn);
47134             this.tb =  typeof(ty[tn]) != 'undefined' ? this.toolbars[tn] : this.toolbars['*'];
47135             this.tb.el.show();
47136             // update name
47137             this.tb.items.first().el.innerHTML = tn + ':&nbsp;';
47138             
47139             
47140             // update attributes
47141             if (this.tb.fields) {
47142                 this.tb.fields.each(function(e) {
47143                     if (e.stylename) {
47144                         e.setValue(sel.style[e.stylename]);
47145                         return;
47146                     } 
47147                    e.setValue(sel.getAttribute(e.attrname));
47148                 });
47149             }
47150             
47151             var hasStyles = false;
47152             for(var i in this.styles) {
47153                 hasStyles = true;
47154                 break;
47155             }
47156             
47157             // update styles
47158             if (hasStyles) { 
47159                 var st = this.tb.fields.item(0);
47160                 
47161                 st.store.removeAll();
47162                
47163                 
47164                 var cn = sel.className.split(/\s+/);
47165                 
47166                 var avs = [];
47167                 if (this.styles['*']) {
47168                     
47169                     Roo.each(this.styles['*'], function(v) {
47170                         avs.push( [ v , cn.indexOf(v) > -1 ? 1 : 0 ] );         
47171                     });
47172                 }
47173                 if (this.styles[tn]) { 
47174                     Roo.each(this.styles[tn], function(v) {
47175                         avs.push( [ v , cn.indexOf(v) > -1 ? 1 : 0 ] );         
47176                     });
47177                 }
47178                 
47179                 st.store.loadData(avs);
47180                 st.collapse();
47181                 st.setValue(cn);
47182             }
47183             // flag our selected Node.
47184             this.tb.selectedNode = sel;
47185            
47186            
47187             Roo.menu.MenuMgr.hideAll();
47188
47189         }
47190         
47191         if (!updateFooter) {
47192             //this.footDisp.dom.innerHTML = ''; 
47193             return;
47194         }
47195         // update the footer
47196         //
47197         var html = '';
47198         
47199         this.footerEls = ans.reverse();
47200         Roo.each(this.footerEls, function(a,i) {
47201             if (!a) { return; }
47202             html += html.length ? ' &gt; '  :  '';
47203             
47204             html += '<span class="x-ed-loc-' + i + '">' + a.tagName + '</span>';
47205             
47206         });
47207        
47208         // 
47209         var sz = this.footDisp.up('td').getSize();
47210         this.footDisp.dom.style.width = (sz.width -10) + 'px';
47211         this.footDisp.dom.style.marginLeft = '5px';
47212         
47213         this.footDisp.dom.style.overflow = 'hidden';
47214         
47215         this.footDisp.dom.innerHTML = html;
47216             
47217         //this.editorsyncValue();
47218     },
47219      
47220     
47221    
47222        
47223     // private
47224     onDestroy : function(){
47225         if(this.rendered){
47226             
47227             this.tb.items.each(function(item){
47228                 if(item.menu){
47229                     item.menu.removeAll();
47230                     if(item.menu.el){
47231                         item.menu.el.destroy();
47232                     }
47233                 }
47234                 item.destroy();
47235             });
47236              
47237         }
47238     },
47239     onFirstFocus: function() {
47240         // need to do this for all the toolbars..
47241         this.tb.items.each(function(item){
47242            item.enable();
47243         });
47244     },
47245     buildToolbar: function(tlist, nm)
47246     {
47247         var editor = this.editor;
47248         var editorcore = this.editorcore;
47249          // create a new element.
47250         var wdiv = editor.wrap.createChild({
47251                 tag: 'div'
47252             }, editor.wrap.dom.firstChild.nextSibling, true);
47253         
47254        
47255         var tb = new Roo.Toolbar(wdiv);
47256         // add the name..
47257         
47258         tb.add(nm+ ":&nbsp;");
47259         
47260         var styles = [];
47261         for(var i in this.styles) {
47262             styles.push(i);
47263         }
47264         
47265         // styles...
47266         if (styles && styles.length) {
47267             
47268             // this needs a multi-select checkbox...
47269             tb.addField( new Roo.form.ComboBox({
47270                 store: new Roo.data.SimpleStore({
47271                     id : 'val',
47272                     fields: ['val', 'selected'],
47273                     data : [] 
47274                 }),
47275                 name : '-roo-edit-className',
47276                 attrname : 'className',
47277                 displayField: 'val',
47278                 typeAhead: false,
47279                 mode: 'local',
47280                 editable : false,
47281                 triggerAction: 'all',
47282                 emptyText:'Select Style',
47283                 selectOnFocus:true,
47284                 width: 130,
47285                 listeners : {
47286                     'select': function(c, r, i) {
47287                         // initial support only for on class per el..
47288                         tb.selectedNode.className =  r ? r.get('val') : '';
47289                         editorcore.syncValue();
47290                     }
47291                 }
47292     
47293             }));
47294         }
47295         
47296         var tbc = Roo.form.HtmlEditor.ToolbarContext;
47297         var tbops = tbc.options;
47298         
47299         for (var i in tlist) {
47300             
47301             var item = tlist[i];
47302             tb.add(item.title + ":&nbsp;");
47303             
47304             
47305             //optname == used so you can configure the options available..
47306             var opts = item.opts ? item.opts : false;
47307             if (item.optname) {
47308                 opts = tbops[item.optname];
47309            
47310             }
47311             
47312             if (opts) {
47313                 // opts == pulldown..
47314                 tb.addField( new Roo.form.ComboBox({
47315                     store:   typeof(tbc.stores[i]) != 'undefined' ?  Roo.factory(tbc.stores[i],Roo.data) : new Roo.data.SimpleStore({
47316                         id : 'val',
47317                         fields: ['val', 'display'],
47318                         data : opts  
47319                     }),
47320                     name : '-roo-edit-' + i,
47321                     attrname : i,
47322                     stylename : item.style ? item.style : false,
47323                     displayField: item.displayField ? item.displayField : 'val',
47324                     valueField :  'val',
47325                     typeAhead: false,
47326                     mode: typeof(tbc.stores[i]) != 'undefined'  ? 'remote' : 'local',
47327                     editable : false,
47328                     triggerAction: 'all',
47329                     emptyText:'Select',
47330                     selectOnFocus:true,
47331                     width: item.width ? item.width  : 130,
47332                     listeners : {
47333                         'select': function(c, r, i) {
47334                             if (c.stylename) {
47335                                 tb.selectedNode.style[c.stylename] =  r.get('val');
47336                                 return;
47337                             }
47338                             tb.selectedNode.setAttribute(c.attrname, r.get('val'));
47339                         }
47340                     }
47341
47342                 }));
47343                 continue;
47344                     
47345                  
47346                 
47347                 tb.addField( new Roo.form.TextField({
47348                     name: i,
47349                     width: 100,
47350                     //allowBlank:false,
47351                     value: ''
47352                 }));
47353                 continue;
47354             }
47355             tb.addField( new Roo.form.TextField({
47356                 name: '-roo-edit-' + i,
47357                 attrname : i,
47358                 
47359                 width: item.width,
47360                 //allowBlank:true,
47361                 value: '',
47362                 listeners: {
47363                     'change' : function(f, nv, ov) {
47364                         tb.selectedNode.setAttribute(f.attrname, nv);
47365                         editorcore.syncValue();
47366                     }
47367                 }
47368             }));
47369              
47370         }
47371         
47372         var _this = this;
47373         
47374         if(nm == 'BODY'){
47375             tb.addSeparator();
47376         
47377             tb.addButton( {
47378                 text: 'Stylesheets',
47379
47380                 listeners : {
47381                     click : function ()
47382                     {
47383                         _this.editor.fireEvent('stylesheetsclick', _this.editor);
47384                     }
47385                 }
47386             });
47387         }
47388         
47389         tb.addFill();
47390         tb.addButton( {
47391             text: 'Remove Tag',
47392     
47393             listeners : {
47394                 click : function ()
47395                 {
47396                     // remove
47397                     // undo does not work.
47398                      
47399                     var sn = tb.selectedNode;
47400                     
47401                     var pn = sn.parentNode;
47402                     
47403                     var stn =  sn.childNodes[0];
47404                     var en = sn.childNodes[sn.childNodes.length - 1 ];
47405                     while (sn.childNodes.length) {
47406                         var node = sn.childNodes[0];
47407                         sn.removeChild(node);
47408                         //Roo.log(node);
47409                         pn.insertBefore(node, sn);
47410                         
47411                     }
47412                     pn.removeChild(sn);
47413                     var range = editorcore.createRange();
47414         
47415                     range.setStart(stn,0);
47416                     range.setEnd(en,0); //????
47417                     //range.selectNode(sel);
47418                     
47419                     
47420                     var selection = editorcore.getSelection();
47421                     selection.removeAllRanges();
47422                     selection.addRange(range);
47423                     
47424                     
47425                     
47426                     //_this.updateToolbar(null, null, pn);
47427                     _this.updateToolbar(null, null, null);
47428                     _this.footDisp.dom.innerHTML = ''; 
47429                 }
47430             }
47431             
47432                     
47433                 
47434             
47435         });
47436         
47437         
47438         tb.el.on('click', function(e){
47439             e.preventDefault(); // what does this do?
47440         });
47441         tb.el.setVisibilityMode( Roo.Element.DISPLAY);
47442         tb.el.hide();
47443         tb.name = nm;
47444         // dont need to disable them... as they will get hidden
47445         return tb;
47446          
47447         
47448     },
47449     buildFooter : function()
47450     {
47451         
47452         var fel = this.editor.wrap.createChild();
47453         this.footer = new Roo.Toolbar(fel);
47454         // toolbar has scrolly on left / right?
47455         var footDisp= new Roo.Toolbar.Fill();
47456         var _t = this;
47457         this.footer.add(
47458             {
47459                 text : '&lt;',
47460                 xtype: 'Button',
47461                 handler : function() {
47462                     _t.footDisp.scrollTo('left',0,true)
47463                 }
47464             }
47465         );
47466         this.footer.add( footDisp );
47467         this.footer.add( 
47468             {
47469                 text : '&gt;',
47470                 xtype: 'Button',
47471                 handler : function() {
47472                     // no animation..
47473                     _t.footDisp.select('span').last().scrollIntoView(_t.footDisp,true);
47474                 }
47475             }
47476         );
47477         var fel = Roo.get(footDisp.el);
47478         fel.addClass('x-editor-context');
47479         this.footDispWrap = fel; 
47480         this.footDispWrap.overflow  = 'hidden';
47481         
47482         this.footDisp = fel.createChild();
47483         this.footDispWrap.on('click', this.onContextClick, this)
47484         
47485         
47486     },
47487     onContextClick : function (ev,dom)
47488     {
47489         ev.preventDefault();
47490         var  cn = dom.className;
47491         //Roo.log(cn);
47492         if (!cn.match(/x-ed-loc-/)) {
47493             return;
47494         }
47495         var n = cn.split('-').pop();
47496         var ans = this.footerEls;
47497         var sel = ans[n];
47498         
47499          // pick
47500         var range = this.editorcore.createRange();
47501         
47502         range.selectNodeContents(sel);
47503         //range.selectNode(sel);
47504         
47505         
47506         var selection = this.editorcore.getSelection();
47507         selection.removeAllRanges();
47508         selection.addRange(range);
47509         
47510         
47511         
47512         this.updateToolbar(null, null, sel);
47513         
47514         
47515     }
47516     
47517     
47518     
47519     
47520     
47521 });
47522
47523
47524
47525
47526
47527 /*
47528  * Based on:
47529  * Ext JS Library 1.1.1
47530  * Copyright(c) 2006-2007, Ext JS, LLC.
47531  *
47532  * Originally Released Under LGPL - original licence link has changed is not relivant.
47533  *
47534  * Fork - LGPL
47535  * <script type="text/javascript">
47536  */
47537  
47538 /**
47539  * @class Roo.form.BasicForm
47540  * @extends Roo.util.Observable
47541  * Supplies the functionality to do "actions" on forms and initialize Roo.form.Field types on existing markup.
47542  * @constructor
47543  * @param {String/HTMLElement/Roo.Element} el The form element or its id
47544  * @param {Object} config Configuration options
47545  */
47546 Roo.form.BasicForm = function(el, config){
47547     this.allItems = [];
47548     this.childForms = [];
47549     Roo.apply(this, config);
47550     /*
47551      * The Roo.form.Field items in this form.
47552      * @type MixedCollection
47553      */
47554      
47555      
47556     this.items = new Roo.util.MixedCollection(false, function(o){
47557         return o.id || (o.id = Roo.id());
47558     });
47559     this.addEvents({
47560         /**
47561          * @event beforeaction
47562          * Fires before any action is performed. Return false to cancel the action.
47563          * @param {Form} this
47564          * @param {Action} action The action to be performed
47565          */
47566         beforeaction: true,
47567         /**
47568          * @event actionfailed
47569          * Fires when an action fails.
47570          * @param {Form} this
47571          * @param {Action} action The action that failed
47572          */
47573         actionfailed : true,
47574         /**
47575          * @event actioncomplete
47576          * Fires when an action is completed.
47577          * @param {Form} this
47578          * @param {Action} action The action that completed
47579          */
47580         actioncomplete : true
47581     });
47582     if(el){
47583         this.initEl(el);
47584     }
47585     Roo.form.BasicForm.superclass.constructor.call(this);
47586     
47587     Roo.form.BasicForm.popover.apply();
47588 };
47589
47590 Roo.extend(Roo.form.BasicForm, Roo.util.Observable, {
47591     /**
47592      * @cfg {String} method
47593      * The request method to use (GET or POST) for form actions if one isn't supplied in the action options.
47594      */
47595     /**
47596      * @cfg {DataReader} reader
47597      * An Roo.data.DataReader (e.g. {@link Roo.data.XmlReader}) to be used to read data when executing "load" actions.
47598      * This is optional as there is built-in support for processing JSON.
47599      */
47600     /**
47601      * @cfg {DataReader} errorReader
47602      * An Roo.data.DataReader (e.g. {@link Roo.data.XmlReader}) to be used to read data when reading validation errors on "submit" actions.
47603      * This is completely optional as there is built-in support for processing JSON.
47604      */
47605     /**
47606      * @cfg {String} url
47607      * The URL to use for form actions if one isn't supplied in the action options.
47608      */
47609     /**
47610      * @cfg {Boolean} fileUpload
47611      * Set to true if this form is a file upload.
47612      */
47613      
47614     /**
47615      * @cfg {Object} baseParams
47616      * Parameters to pass with all requests. e.g. baseParams: {id: '123', foo: 'bar'}.
47617      */
47618      /**
47619      
47620     /**
47621      * @cfg {Number} timeout Timeout for form actions in seconds (default is 30 seconds).
47622      */
47623     timeout: 30,
47624
47625     // private
47626     activeAction : null,
47627
47628     /**
47629      * @cfg {Boolean} trackResetOnLoad If set to true, form.reset() resets to the last loaded
47630      * or setValues() data instead of when the form was first created.
47631      */
47632     trackResetOnLoad : false,
47633     
47634     
47635     /**
47636      * childForms - used for multi-tab forms
47637      * @type {Array}
47638      */
47639     childForms : false,
47640     
47641     /**
47642      * allItems - full list of fields.
47643      * @type {Array}
47644      */
47645     allItems : false,
47646     
47647     /**
47648      * By default wait messages are displayed with Roo.MessageBox.wait. You can target a specific
47649      * element by passing it or its id or mask the form itself by passing in true.
47650      * @type Mixed
47651      */
47652     waitMsgTarget : false,
47653     
47654     /**
47655      * @type Boolean
47656      */
47657     disableMask : false,
47658     
47659     /**
47660      * @cfg {Boolean} errorMask (true|false) default false
47661      */
47662     errorMask : false,
47663     
47664     /**
47665      * @cfg {Number} maskOffset Default 100
47666      */
47667     maskOffset : 100,
47668
47669     // private
47670     initEl : function(el){
47671         this.el = Roo.get(el);
47672         this.id = this.el.id || Roo.id();
47673         this.el.on('submit', this.onSubmit, this);
47674         this.el.addClass('x-form');
47675     },
47676
47677     // private
47678     onSubmit : function(e){
47679         e.stopEvent();
47680     },
47681
47682     /**
47683      * Returns true if client-side validation on the form is successful.
47684      * @return Boolean
47685      */
47686     isValid : function(){
47687         var valid = true;
47688         var target = false;
47689         this.items.each(function(f){
47690             if(f.validate()){
47691                 return;
47692             }
47693             
47694             valid = false;
47695                 
47696             if(!target && f.el.isVisible(true)){
47697                 target = f;
47698             }
47699         });
47700         
47701         if(this.errorMask && !valid){
47702             Roo.form.BasicForm.popover.mask(this, target);
47703         }
47704         
47705         return valid;
47706     },
47707     /**
47708      * Returns array of invalid form fields.
47709      * @return Array
47710      */
47711     
47712     invalidFields : function()
47713     {
47714         var ret = [];
47715         this.items.each(function(f){
47716             if(f.validate()){
47717                 return;
47718             }
47719             ret.push(f);
47720             
47721         });
47722         
47723         return ret;
47724     },
47725     
47726     
47727     /**
47728      * DEPRICATED Returns true if any fields in this form have changed since their original load. 
47729      * @return Boolean
47730      */
47731     isDirty : function(){
47732         var dirty = false;
47733         this.items.each(function(f){
47734            if(f.isDirty()){
47735                dirty = true;
47736                return false;
47737            }
47738         });
47739         return dirty;
47740     },
47741     
47742     /**
47743      * Returns true if any fields in this form have changed since their original load. (New version)
47744      * @return Boolean
47745      */
47746     
47747     hasChanged : function()
47748     {
47749         var dirty = false;
47750         this.items.each(function(f){
47751            if(f.hasChanged()){
47752                dirty = true;
47753                return false;
47754            }
47755         });
47756         return dirty;
47757         
47758     },
47759     /**
47760      * Resets all hasChanged to 'false' -
47761      * The old 'isDirty' used 'original value..' however this breaks reset() and a few other things.
47762      * So hasChanged storage is only to be used for this purpose
47763      * @return Boolean
47764      */
47765     resetHasChanged : function()
47766     {
47767         this.items.each(function(f){
47768            f.resetHasChanged();
47769         });
47770         
47771     },
47772     
47773     
47774     /**
47775      * Performs a predefined action (submit or load) or custom actions you define on this form.
47776      * @param {String} actionName The name of the action type
47777      * @param {Object} options (optional) The options to pass to the action.  All of the config options listed
47778      * below are supported by both the submit and load actions unless otherwise noted (custom actions could also
47779      * accept other config options):
47780      * <pre>
47781 Property          Type             Description
47782 ----------------  ---------------  ----------------------------------------------------------------------------------
47783 url               String           The url for the action (defaults to the form's url)
47784 method            String           The form method to use (defaults to the form's method, or POST if not defined)
47785 params            String/Object    The params to pass (defaults to the form's baseParams, or none if not defined)
47786 clientValidation  Boolean          Applies to submit only.  Pass true to call form.isValid() prior to posting to
47787                                    validate the form on the client (defaults to false)
47788      * </pre>
47789      * @return {BasicForm} this
47790      */
47791     doAction : function(action, options){
47792         if(typeof action == 'string'){
47793             action = new Roo.form.Action.ACTION_TYPES[action](this, options);
47794         }
47795         if(this.fireEvent('beforeaction', this, action) !== false){
47796             this.beforeAction(action);
47797             action.run.defer(100, action);
47798         }
47799         return this;
47800     },
47801
47802     /**
47803      * Shortcut to do a submit action.
47804      * @param {Object} options The options to pass to the action (see {@link #doAction} for details)
47805      * @return {BasicForm} this
47806      */
47807     submit : function(options){
47808         this.doAction('submit', options);
47809         return this;
47810     },
47811
47812     /**
47813      * Shortcut to do a load action.
47814      * @param {Object} options The options to pass to the action (see {@link #doAction} for details)
47815      * @return {BasicForm} this
47816      */
47817     load : function(options){
47818         this.doAction('load', options);
47819         return this;
47820     },
47821
47822     /**
47823      * Persists the values in this form into the passed Roo.data.Record object in a beginEdit/endEdit block.
47824      * @param {Record} record The record to edit
47825      * @return {BasicForm} this
47826      */
47827     updateRecord : function(record){
47828         record.beginEdit();
47829         var fs = record.fields;
47830         fs.each(function(f){
47831             var field = this.findField(f.name);
47832             if(field){
47833                 record.set(f.name, field.getValue());
47834             }
47835         }, this);
47836         record.endEdit();
47837         return this;
47838     },
47839
47840     /**
47841      * Loads an Roo.data.Record into this form.
47842      * @param {Record} record The record to load
47843      * @return {BasicForm} this
47844      */
47845     loadRecord : function(record){
47846         this.setValues(record.data);
47847         return this;
47848     },
47849
47850     // private
47851     beforeAction : function(action){
47852         var o = action.options;
47853         
47854         if(!this.disableMask) {
47855             if(this.waitMsgTarget === true){
47856                 this.el.mask(o.waitMsg || "Sending", 'x-mask-loading');
47857             }else if(this.waitMsgTarget){
47858                 this.waitMsgTarget = Roo.get(this.waitMsgTarget);
47859                 this.waitMsgTarget.mask(o.waitMsg || "Sending", 'x-mask-loading');
47860             }else {
47861                 Roo.MessageBox.wait(o.waitMsg || "Sending", o.waitTitle || this.waitTitle || 'Please Wait...');
47862             }
47863         }
47864         
47865          
47866     },
47867
47868     // private
47869     afterAction : function(action, success){
47870         this.activeAction = null;
47871         var o = action.options;
47872         
47873         if(!this.disableMask) {
47874             if(this.waitMsgTarget === true){
47875                 this.el.unmask();
47876             }else if(this.waitMsgTarget){
47877                 this.waitMsgTarget.unmask();
47878             }else{
47879                 Roo.MessageBox.updateProgress(1);
47880                 Roo.MessageBox.hide();
47881             }
47882         }
47883         
47884         if(success){
47885             if(o.reset){
47886                 this.reset();
47887             }
47888             Roo.callback(o.success, o.scope, [this, action]);
47889             this.fireEvent('actioncomplete', this, action);
47890             
47891         }else{
47892             
47893             // failure condition..
47894             // we have a scenario where updates need confirming.
47895             // eg. if a locking scenario exists..
47896             // we look for { errors : { needs_confirm : true }} in the response.
47897             if (
47898                 (typeof(action.result) != 'undefined')  &&
47899                 (typeof(action.result.errors) != 'undefined')  &&
47900                 (typeof(action.result.errors.needs_confirm) != 'undefined')
47901            ){
47902                 var _t = this;
47903                 Roo.MessageBox.confirm(
47904                     "Change requires confirmation",
47905                     action.result.errorMsg,
47906                     function(r) {
47907                         if (r != 'yes') {
47908                             return;
47909                         }
47910                         _t.doAction('submit', { params :  { _submit_confirmed : 1 } }  );
47911                     }
47912                     
47913                 );
47914                 
47915                 
47916                 
47917                 return;
47918             }
47919             
47920             Roo.callback(o.failure, o.scope, [this, action]);
47921             // show an error message if no failed handler is set..
47922             if (!this.hasListener('actionfailed')) {
47923                 Roo.MessageBox.alert("Error",
47924                     (typeof(action.result) != 'undefined' && typeof(action.result.errorMsg) != 'undefined') ?
47925                         action.result.errorMsg :
47926                         "Saving Failed, please check your entries or try again"
47927                 );
47928             }
47929             
47930             this.fireEvent('actionfailed', this, action);
47931         }
47932         
47933     },
47934
47935     /**
47936      * Find a Roo.form.Field in this form by id, dataIndex, name or hiddenName
47937      * @param {String} id The value to search for
47938      * @return Field
47939      */
47940     findField : function(id){
47941         var field = this.items.get(id);
47942         if(!field){
47943             this.items.each(function(f){
47944                 if(f.isFormField && (f.dataIndex == id || f.id == id || f.getName() == id)){
47945                     field = f;
47946                     return false;
47947                 }
47948             });
47949         }
47950         return field || null;
47951     },
47952
47953     /**
47954      * Add a secondary form to this one, 
47955      * Used to provide tabbed forms. One form is primary, with hidden values 
47956      * which mirror the elements from the other forms.
47957      * 
47958      * @param {Roo.form.Form} form to add.
47959      * 
47960      */
47961     addForm : function(form)
47962     {
47963        
47964         if (this.childForms.indexOf(form) > -1) {
47965             // already added..
47966             return;
47967         }
47968         this.childForms.push(form);
47969         var n = '';
47970         Roo.each(form.allItems, function (fe) {
47971             
47972             n = typeof(fe.getName) == 'undefined' ? fe.name : fe.getName();
47973             if (this.findField(n)) { // already added..
47974                 return;
47975             }
47976             var add = new Roo.form.Hidden({
47977                 name : n
47978             });
47979             add.render(this.el);
47980             
47981             this.add( add );
47982         }, this);
47983         
47984     },
47985     /**
47986      * Mark fields in this form invalid in bulk.
47987      * @param {Array/Object} errors Either an array in the form [{id:'fieldId', msg:'The message'},...] or an object hash of {id: msg, id2: msg2}
47988      * @return {BasicForm} this
47989      */
47990     markInvalid : function(errors){
47991         if(errors instanceof Array){
47992             for(var i = 0, len = errors.length; i < len; i++){
47993                 var fieldError = errors[i];
47994                 var f = this.findField(fieldError.id);
47995                 if(f){
47996                     f.markInvalid(fieldError.msg);
47997                 }
47998             }
47999         }else{
48000             var field, id;
48001             for(id in errors){
48002                 if(typeof errors[id] != 'function' && (field = this.findField(id))){
48003                     field.markInvalid(errors[id]);
48004                 }
48005             }
48006         }
48007         Roo.each(this.childForms || [], function (f) {
48008             f.markInvalid(errors);
48009         });
48010         
48011         return this;
48012     },
48013
48014     /**
48015      * Set values for fields in this form in bulk.
48016      * @param {Array/Object} values Either an array in the form [{id:'fieldId', value:'foo'},...] or an object hash of {id: value, id2: value2}
48017      * @return {BasicForm} this
48018      */
48019     setValues : function(values){
48020         if(values instanceof Array){ // array of objects
48021             for(var i = 0, len = values.length; i < len; i++){
48022                 var v = values[i];
48023                 var f = this.findField(v.id);
48024                 if(f){
48025                     f.setValue(v.value);
48026                     if(this.trackResetOnLoad){
48027                         f.originalValue = f.getValue();
48028                     }
48029                 }
48030             }
48031         }else{ // object hash
48032             var field, id;
48033             for(id in values){
48034                 if(typeof values[id] != 'function' && (field = this.findField(id))){
48035                     
48036                     if (field.setFromData && 
48037                         field.valueField && 
48038                         field.displayField &&
48039                         // combos' with local stores can 
48040                         // be queried via setValue()
48041                         // to set their value..
48042                         (field.store && !field.store.isLocal)
48043                         ) {
48044                         // it's a combo
48045                         var sd = { };
48046                         sd[field.valueField] = typeof(values[field.hiddenName]) == 'undefined' ? '' : values[field.hiddenName];
48047                         sd[field.displayField] = typeof(values[field.name]) == 'undefined' ? '' : values[field.name];
48048                         field.setFromData(sd);
48049                         
48050                     } else {
48051                         field.setValue(values[id]);
48052                     }
48053                     
48054                     
48055                     if(this.trackResetOnLoad){
48056                         field.originalValue = field.getValue();
48057                     }
48058                 }
48059             }
48060         }
48061         this.resetHasChanged();
48062         
48063         
48064         Roo.each(this.childForms || [], function (f) {
48065             f.setValues(values);
48066             f.resetHasChanged();
48067         });
48068                 
48069         return this;
48070     },
48071  
48072     /**
48073      * Returns the fields in this form as an object with key/value pairs. If multiple fields exist with the same name
48074      * they are returned as an array.
48075      * @param {Boolean} asString
48076      * @return {Object}
48077      */
48078     getValues : function(asString){
48079         if (this.childForms) {
48080             // copy values from the child forms
48081             Roo.each(this.childForms, function (f) {
48082                 this.setValues(f.getValues());
48083             }, this);
48084         }
48085         
48086         // use formdata
48087         if (typeof(FormData) != 'undefined' && asString !== true) {
48088             // this relies on a 'recent' version of chrome apparently...
48089             try {
48090                 var fd = (new FormData(this.el.dom)).entries();
48091                 var ret = {};
48092                 var ent = fd.next();
48093                 while (!ent.done) {
48094                     ret[ent.value[0]] = ent.value[1]; // not sure how this will handle duplicates..
48095                     ent = fd.next();
48096                 };
48097                 return ret;
48098             } catch(e) {
48099                 
48100             }
48101             
48102         }
48103         
48104         
48105         var fs = Roo.lib.Ajax.serializeForm(this.el.dom);
48106         if(asString === true){
48107             return fs;
48108         }
48109         return Roo.urlDecode(fs);
48110     },
48111     
48112     /**
48113      * Returns the fields in this form as an object with key/value pairs. 
48114      * This differs from getValues as it calls getValue on each child item, rather than using dom data.
48115      * @return {Object}
48116      */
48117     getFieldValues : function(with_hidden)
48118     {
48119         if (this.childForms) {
48120             // copy values from the child forms
48121             // should this call getFieldValues - probably not as we do not currently copy
48122             // hidden fields when we generate..
48123             Roo.each(this.childForms, function (f) {
48124                 this.setValues(f.getValues());
48125             }, this);
48126         }
48127         
48128         var ret = {};
48129         this.items.each(function(f){
48130             if (!f.getName()) {
48131                 return;
48132             }
48133             var v = f.getValue();
48134             if (f.inputType =='radio') {
48135                 if (typeof(ret[f.getName()]) == 'undefined') {
48136                     ret[f.getName()] = ''; // empty..
48137                 }
48138                 
48139                 if (!f.el.dom.checked) {
48140                     return;
48141                     
48142                 }
48143                 v = f.el.dom.value;
48144                 
48145             }
48146             
48147             // not sure if this supported any more..
48148             if ((typeof(v) == 'object') && f.getRawValue) {
48149                 v = f.getRawValue() ; // dates..
48150             }
48151             // combo boxes where name != hiddenName...
48152             if (f.name != f.getName()) {
48153                 ret[f.name] = f.getRawValue();
48154             }
48155             ret[f.getName()] = v;
48156         });
48157         
48158         return ret;
48159     },
48160
48161     /**
48162      * Clears all invalid messages in this form.
48163      * @return {BasicForm} this
48164      */
48165     clearInvalid : function(){
48166         this.items.each(function(f){
48167            f.clearInvalid();
48168         });
48169         
48170         Roo.each(this.childForms || [], function (f) {
48171             f.clearInvalid();
48172         });
48173         
48174         
48175         return this;
48176     },
48177
48178     /**
48179      * Resets this form.
48180      * @return {BasicForm} this
48181      */
48182     reset : function(){
48183         this.items.each(function(f){
48184             f.reset();
48185         });
48186         
48187         Roo.each(this.childForms || [], function (f) {
48188             f.reset();
48189         });
48190         this.resetHasChanged();
48191         
48192         return this;
48193     },
48194
48195     /**
48196      * Add Roo.form components to this form.
48197      * @param {Field} field1
48198      * @param {Field} field2 (optional)
48199      * @param {Field} etc (optional)
48200      * @return {BasicForm} this
48201      */
48202     add : function(){
48203         this.items.addAll(Array.prototype.slice.call(arguments, 0));
48204         return this;
48205     },
48206
48207
48208     /**
48209      * Removes a field from the items collection (does NOT remove its markup).
48210      * @param {Field} field
48211      * @return {BasicForm} this
48212      */
48213     remove : function(field){
48214         this.items.remove(field);
48215         return this;
48216     },
48217
48218     /**
48219      * Looks at the fields in this form, checks them for an id attribute,
48220      * and calls applyTo on the existing dom element with that id.
48221      * @return {BasicForm} this
48222      */
48223     render : function(){
48224         this.items.each(function(f){
48225             if(f.isFormField && !f.rendered && document.getElementById(f.id)){ // if the element exists
48226                 f.applyTo(f.id);
48227             }
48228         });
48229         return this;
48230     },
48231
48232     /**
48233      * Calls {@link Ext#apply} for all fields in this form with the passed object.
48234      * @param {Object} values
48235      * @return {BasicForm} this
48236      */
48237     applyToFields : function(o){
48238         this.items.each(function(f){
48239            Roo.apply(f, o);
48240         });
48241         return this;
48242     },
48243
48244     /**
48245      * Calls {@link Ext#applyIf} for all field in this form with the passed object.
48246      * @param {Object} values
48247      * @return {BasicForm} this
48248      */
48249     applyIfToFields : function(o){
48250         this.items.each(function(f){
48251            Roo.applyIf(f, o);
48252         });
48253         return this;
48254     }
48255 });
48256
48257 // back compat
48258 Roo.BasicForm = Roo.form.BasicForm;
48259
48260 Roo.apply(Roo.form.BasicForm, {
48261     
48262     popover : {
48263         
48264         padding : 5,
48265         
48266         isApplied : false,
48267         
48268         isMasked : false,
48269         
48270         form : false,
48271         
48272         target : false,
48273         
48274         intervalID : false,
48275         
48276         maskEl : false,
48277         
48278         apply : function()
48279         {
48280             if(this.isApplied){
48281                 return;
48282             }
48283             
48284             this.maskEl = {
48285                 top : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-top-mask" }, true),
48286                 left : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-left-mask" }, true),
48287                 bottom : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-bottom-mask" }, true),
48288                 right : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-right-mask" }, true)
48289             };
48290             
48291             this.maskEl.top.enableDisplayMode("block");
48292             this.maskEl.left.enableDisplayMode("block");
48293             this.maskEl.bottom.enableDisplayMode("block");
48294             this.maskEl.right.enableDisplayMode("block");
48295             
48296             Roo.get(document.body).on('click', function(){
48297                 this.unmask();
48298             }, this);
48299             
48300             Roo.get(document.body).on('touchstart', function(){
48301                 this.unmask();
48302             }, this);
48303             
48304             this.isApplied = true
48305         },
48306         
48307         mask : function(form, target)
48308         {
48309             this.form = form;
48310             
48311             this.target = target;
48312             
48313             if(!this.form.errorMask || !target.el){
48314                 return;
48315             }
48316             
48317             var scrollable = this.target.el.findScrollableParent() || this.target.el.findParent('div.x-layout-active-content', 100, true) || Roo.get(document.body);
48318             
48319             var ot = this.target.el.calcOffsetsTo(scrollable);
48320             
48321             var scrollTo = ot[1] - this.form.maskOffset;
48322             
48323             scrollTo = Math.min(scrollTo, scrollable.dom.scrollHeight);
48324             
48325             scrollable.scrollTo('top', scrollTo);
48326             
48327             var el = this.target.wrap || this.target.el;
48328             
48329             var box = el.getBox();
48330             
48331             this.maskEl.top.setStyle('position', 'absolute');
48332             this.maskEl.top.setStyle('z-index', 10000);
48333             this.maskEl.top.setSize(Roo.lib.Dom.getDocumentWidth(), box.y - this.padding);
48334             this.maskEl.top.setLeft(0);
48335             this.maskEl.top.setTop(0);
48336             this.maskEl.top.show();
48337             
48338             this.maskEl.left.setStyle('position', 'absolute');
48339             this.maskEl.left.setStyle('z-index', 10000);
48340             this.maskEl.left.setSize(box.x - this.padding, box.height + this.padding * 2);
48341             this.maskEl.left.setLeft(0);
48342             this.maskEl.left.setTop(box.y - this.padding);
48343             this.maskEl.left.show();
48344
48345             this.maskEl.bottom.setStyle('position', 'absolute');
48346             this.maskEl.bottom.setStyle('z-index', 10000);
48347             this.maskEl.bottom.setSize(Roo.lib.Dom.getDocumentWidth(), Roo.lib.Dom.getDocumentHeight() - box.bottom - this.padding);
48348             this.maskEl.bottom.setLeft(0);
48349             this.maskEl.bottom.setTop(box.bottom + this.padding);
48350             this.maskEl.bottom.show();
48351
48352             this.maskEl.right.setStyle('position', 'absolute');
48353             this.maskEl.right.setStyle('z-index', 10000);
48354             this.maskEl.right.setSize(Roo.lib.Dom.getDocumentWidth() - box.right - this.padding, box.height + this.padding * 2);
48355             this.maskEl.right.setLeft(box.right + this.padding);
48356             this.maskEl.right.setTop(box.y - this.padding);
48357             this.maskEl.right.show();
48358
48359             this.intervalID = window.setInterval(function() {
48360                 Roo.form.BasicForm.popover.unmask();
48361             }, 10000);
48362
48363             window.onwheel = function(){ return false;};
48364             
48365             (function(){ this.isMasked = true; }).defer(500, this);
48366             
48367         },
48368         
48369         unmask : function()
48370         {
48371             if(!this.isApplied || !this.isMasked || !this.form || !this.target || !this.form.errorMask){
48372                 return;
48373             }
48374             
48375             this.maskEl.top.setStyle('position', 'absolute');
48376             this.maskEl.top.setSize(0, 0).setXY([0, 0]);
48377             this.maskEl.top.hide();
48378
48379             this.maskEl.left.setStyle('position', 'absolute');
48380             this.maskEl.left.setSize(0, 0).setXY([0, 0]);
48381             this.maskEl.left.hide();
48382
48383             this.maskEl.bottom.setStyle('position', 'absolute');
48384             this.maskEl.bottom.setSize(0, 0).setXY([0, 0]);
48385             this.maskEl.bottom.hide();
48386
48387             this.maskEl.right.setStyle('position', 'absolute');
48388             this.maskEl.right.setSize(0, 0).setXY([0, 0]);
48389             this.maskEl.right.hide();
48390             
48391             window.onwheel = function(){ return true;};
48392             
48393             if(this.intervalID){
48394                 window.clearInterval(this.intervalID);
48395                 this.intervalID = false;
48396             }
48397             
48398             this.isMasked = false;
48399             
48400         }
48401         
48402     }
48403     
48404 });/*
48405  * Based on:
48406  * Ext JS Library 1.1.1
48407  * Copyright(c) 2006-2007, Ext JS, LLC.
48408  *
48409  * Originally Released Under LGPL - original licence link has changed is not relivant.
48410  *
48411  * Fork - LGPL
48412  * <script type="text/javascript">
48413  */
48414
48415 /**
48416  * @class Roo.form.Form
48417  * @extends Roo.form.BasicForm
48418  * Adds the ability to dynamically render forms with JavaScript to {@link Roo.form.BasicForm}.
48419  * @constructor
48420  * @param {Object} config Configuration options
48421  */
48422 Roo.form.Form = function(config){
48423     var xitems =  [];
48424     if (config.items) {
48425         xitems = config.items;
48426         delete config.items;
48427     }
48428    
48429     
48430     Roo.form.Form.superclass.constructor.call(this, null, config);
48431     this.url = this.url || this.action;
48432     if(!this.root){
48433         this.root = new Roo.form.Layout(Roo.applyIf({
48434             id: Roo.id()
48435         }, config));
48436     }
48437     this.active = this.root;
48438     /**
48439      * Array of all the buttons that have been added to this form via {@link addButton}
48440      * @type Array
48441      */
48442     this.buttons = [];
48443     this.allItems = [];
48444     this.addEvents({
48445         /**
48446          * @event clientvalidation
48447          * If the monitorValid config option is true, this event fires repetitively to notify of valid state
48448          * @param {Form} this
48449          * @param {Boolean} valid true if the form has passed client-side validation
48450          */
48451         clientvalidation: true,
48452         /**
48453          * @event rendered
48454          * Fires when the form is rendered
48455          * @param {Roo.form.Form} form
48456          */
48457         rendered : true
48458     });
48459     
48460     if (this.progressUrl) {
48461             // push a hidden field onto the list of fields..
48462             this.addxtype( {
48463                     xns: Roo.form, 
48464                     xtype : 'Hidden', 
48465                     name : 'UPLOAD_IDENTIFIER' 
48466             });
48467         }
48468         
48469     
48470     Roo.each(xitems, this.addxtype, this);
48471     
48472 };
48473
48474 Roo.extend(Roo.form.Form, Roo.form.BasicForm, {
48475     /**
48476      * @cfg {Number} labelWidth The width of labels. This property cascades to child containers.
48477      */
48478     /**
48479      * @cfg {String} itemCls A css class to apply to the x-form-item of fields. This property cascades to child containers.
48480      */
48481     /**
48482      * @cfg {String} buttonAlign Valid values are "left," "center" and "right" (defaults to "center")
48483      */
48484     buttonAlign:'center',
48485
48486     /**
48487      * @cfg {Number} minButtonWidth Minimum width of all buttons in pixels (defaults to 75)
48488      */
48489     minButtonWidth:75,
48490
48491     /**
48492      * @cfg {String} labelAlign Valid values are "left," "top" and "right" (defaults to "left").
48493      * This property cascades to child containers if not set.
48494      */
48495     labelAlign:'left',
48496
48497     /**
48498      * @cfg {Boolean} monitorValid If true the form monitors its valid state <b>client-side</b> and
48499      * fires a looping event with that state. This is required to bind buttons to the valid
48500      * state using the config value formBind:true on the button.
48501      */
48502     monitorValid : false,
48503
48504     /**
48505      * @cfg {Number} monitorPoll The milliseconds to poll valid state, ignored if monitorValid is not true (defaults to 200)
48506      */
48507     monitorPoll : 200,
48508     
48509     /**
48510      * @cfg {String} progressUrl - Url to return progress data 
48511      */
48512     
48513     progressUrl : false,
48514     /**
48515      * @cfg {boolean|FormData} formData - true to use new 'FormData' post, or set to a new FormData({dom form}) Object, if
48516      * sending a formdata with extra parameters - eg uploaded elements.
48517      */
48518     
48519     formData : false,
48520     
48521     /**
48522      * Opens a new {@link Roo.form.Column} container in the layout stack. If fields are passed after the config, the
48523      * fields are added and the column is closed. If no fields are passed the column remains open
48524      * until end() is called.
48525      * @param {Object} config The config to pass to the column
48526      * @param {Field} field1 (optional)
48527      * @param {Field} field2 (optional)
48528      * @param {Field} etc (optional)
48529      * @return Column The column container object
48530      */
48531     column : function(c){
48532         var col = new Roo.form.Column(c);
48533         this.start(col);
48534         if(arguments.length > 1){ // duplicate code required because of Opera
48535             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
48536             this.end();
48537         }
48538         return col;
48539     },
48540
48541     /**
48542      * Opens a new {@link Roo.form.FieldSet} container in the layout stack. If fields are passed after the config, the
48543      * fields are added and the fieldset is closed. If no fields are passed the fieldset remains open
48544      * until end() is called.
48545      * @param {Object} config The config to pass to the fieldset
48546      * @param {Field} field1 (optional)
48547      * @param {Field} field2 (optional)
48548      * @param {Field} etc (optional)
48549      * @return FieldSet The fieldset container object
48550      */
48551     fieldset : function(c){
48552         var fs = new Roo.form.FieldSet(c);
48553         this.start(fs);
48554         if(arguments.length > 1){ // duplicate code required because of Opera
48555             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
48556             this.end();
48557         }
48558         return fs;
48559     },
48560
48561     /**
48562      * Opens a new {@link Roo.form.Layout} container in the layout stack. If fields are passed after the config, the
48563      * fields are added and the container is closed. If no fields are passed the container remains open
48564      * until end() is called.
48565      * @param {Object} config The config to pass to the Layout
48566      * @param {Field} field1 (optional)
48567      * @param {Field} field2 (optional)
48568      * @param {Field} etc (optional)
48569      * @return Layout The container object
48570      */
48571     container : function(c){
48572         var l = new Roo.form.Layout(c);
48573         this.start(l);
48574         if(arguments.length > 1){ // duplicate code required because of Opera
48575             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
48576             this.end();
48577         }
48578         return l;
48579     },
48580
48581     /**
48582      * Opens the passed container in the layout stack. The container can be any {@link Roo.form.Layout} or subclass.
48583      * @param {Object} container A Roo.form.Layout or subclass of Layout
48584      * @return {Form} this
48585      */
48586     start : function(c){
48587         // cascade label info
48588         Roo.applyIf(c, {'labelAlign': this.active.labelAlign, 'labelWidth': this.active.labelWidth, 'itemCls': this.active.itemCls});
48589         this.active.stack.push(c);
48590         c.ownerCt = this.active;
48591         this.active = c;
48592         return this;
48593     },
48594
48595     /**
48596      * Closes the current open container
48597      * @return {Form} this
48598      */
48599     end : function(){
48600         if(this.active == this.root){
48601             return this;
48602         }
48603         this.active = this.active.ownerCt;
48604         return this;
48605     },
48606
48607     /**
48608      * Add Roo.form components to the current open container (e.g. column, fieldset, etc.).  Fields added via this method
48609      * can also be passed with an additional property of fieldLabel, which if supplied, will provide the text to display
48610      * as the label of the field.
48611      * @param {Field} field1
48612      * @param {Field} field2 (optional)
48613      * @param {Field} etc. (optional)
48614      * @return {Form} this
48615      */
48616     add : function(){
48617         this.active.stack.push.apply(this.active.stack, arguments);
48618         this.allItems.push.apply(this.allItems,arguments);
48619         var r = [];
48620         for(var i = 0, a = arguments, len = a.length; i < len; i++) {
48621             if(a[i].isFormField){
48622                 r.push(a[i]);
48623             }
48624         }
48625         if(r.length > 0){
48626             Roo.form.Form.superclass.add.apply(this, r);
48627         }
48628         return this;
48629     },
48630     
48631
48632     
48633     
48634     
48635      /**
48636      * Find any element that has been added to a form, using it's ID or name
48637      * This can include framesets, columns etc. along with regular fields..
48638      * @param {String} id - id or name to find.
48639      
48640      * @return {Element} e - or false if nothing found.
48641      */
48642     findbyId : function(id)
48643     {
48644         var ret = false;
48645         if (!id) {
48646             return ret;
48647         }
48648         Roo.each(this.allItems, function(f){
48649             if (f.id == id || f.name == id ){
48650                 ret = f;
48651                 return false;
48652             }
48653         });
48654         return ret;
48655     },
48656
48657     
48658     
48659     /**
48660      * Render this form into the passed container. This should only be called once!
48661      * @param {String/HTMLElement/Element} container The element this component should be rendered into
48662      * @return {Form} this
48663      */
48664     render : function(ct)
48665     {
48666         
48667         
48668         
48669         ct = Roo.get(ct);
48670         var o = this.autoCreate || {
48671             tag: 'form',
48672             method : this.method || 'POST',
48673             id : this.id || Roo.id()
48674         };
48675         this.initEl(ct.createChild(o));
48676
48677         this.root.render(this.el);
48678         
48679        
48680              
48681         this.items.each(function(f){
48682             f.render('x-form-el-'+f.id);
48683         });
48684
48685         if(this.buttons.length > 0){
48686             // tables are required to maintain order and for correct IE layout
48687             var tb = this.el.createChild({cls:'x-form-btns-ct', cn: {
48688                 cls:"x-form-btns x-form-btns-"+this.buttonAlign,
48689                 html:'<table cellspacing="0"><tbody><tr></tr></tbody></table><div class="x-clear"></div>'
48690             }}, null, true);
48691             var tr = tb.getElementsByTagName('tr')[0];
48692             for(var i = 0, len = this.buttons.length; i < len; i++) {
48693                 var b = this.buttons[i];
48694                 var td = document.createElement('td');
48695                 td.className = 'x-form-btn-td';
48696                 b.render(tr.appendChild(td));
48697             }
48698         }
48699         if(this.monitorValid){ // initialize after render
48700             this.startMonitoring();
48701         }
48702         this.fireEvent('rendered', this);
48703         return this;
48704     },
48705
48706     /**
48707      * Adds a button to the footer of the form - this <b>must</b> be called before the form is rendered.
48708      * @param {String/Object} config A string becomes the button text, an object can either be a Button config
48709      * object or a valid Roo.DomHelper element config
48710      * @param {Function} handler The function called when the button is clicked
48711      * @param {Object} scope (optional) The scope of the handler function
48712      * @return {Roo.Button}
48713      */
48714     addButton : function(config, handler, scope){
48715         var bc = {
48716             handler: handler,
48717             scope: scope,
48718             minWidth: this.minButtonWidth,
48719             hideParent:true
48720         };
48721         if(typeof config == "string"){
48722             bc.text = config;
48723         }else{
48724             Roo.apply(bc, config);
48725         }
48726         var btn = new Roo.Button(null, bc);
48727         this.buttons.push(btn);
48728         return btn;
48729     },
48730
48731      /**
48732      * Adds a series of form elements (using the xtype property as the factory method.
48733      * Valid xtypes are:  TextField, TextArea .... Button, Layout, FieldSet, Column, (and 'end' to close a block)
48734      * @param {Object} config 
48735      */
48736     
48737     addxtype : function()
48738     {
48739         var ar = Array.prototype.slice.call(arguments, 0);
48740         var ret = false;
48741         for(var i = 0; i < ar.length; i++) {
48742             if (!ar[i]) {
48743                 continue; // skip -- if this happends something invalid got sent, we 
48744                 // should ignore it, as basically that interface element will not show up
48745                 // and that should be pretty obvious!!
48746             }
48747             
48748             if (Roo.form[ar[i].xtype]) {
48749                 ar[i].form = this;
48750                 var fe = Roo.factory(ar[i], Roo.form);
48751                 if (!ret) {
48752                     ret = fe;
48753                 }
48754                 fe.form = this;
48755                 if (fe.store) {
48756                     fe.store.form = this;
48757                 }
48758                 if (fe.isLayout) {  
48759                          
48760                     this.start(fe);
48761                     this.allItems.push(fe);
48762                     if (fe.items && fe.addxtype) {
48763                         fe.addxtype.apply(fe, fe.items);
48764                         delete fe.items;
48765                     }
48766                      this.end();
48767                     continue;
48768                 }
48769                 
48770                 
48771                  
48772                 this.add(fe);
48773               //  console.log('adding ' + ar[i].xtype);
48774             }
48775             if (ar[i].xtype == 'Button') {  
48776                 //console.log('adding button');
48777                 //console.log(ar[i]);
48778                 this.addButton(ar[i]);
48779                 this.allItems.push(fe);
48780                 continue;
48781             }
48782             
48783             if (ar[i].xtype == 'end') { // so we can add fieldsets... / layout etc.
48784                 alert('end is not supported on xtype any more, use items');
48785             //    this.end();
48786             //    //console.log('adding end');
48787             }
48788             
48789         }
48790         return ret;
48791     },
48792     
48793     /**
48794      * Starts monitoring of the valid state of this form. Usually this is done by passing the config
48795      * option "monitorValid"
48796      */
48797     startMonitoring : function(){
48798         if(!this.bound){
48799             this.bound = true;
48800             Roo.TaskMgr.start({
48801                 run : this.bindHandler,
48802                 interval : this.monitorPoll || 200,
48803                 scope: this
48804             });
48805         }
48806     },
48807
48808     /**
48809      * Stops monitoring of the valid state of this form
48810      */
48811     stopMonitoring : function(){
48812         this.bound = false;
48813     },
48814
48815     // private
48816     bindHandler : function(){
48817         if(!this.bound){
48818             return false; // stops binding
48819         }
48820         var valid = true;
48821         this.items.each(function(f){
48822             if(!f.isValid(true)){
48823                 valid = false;
48824                 return false;
48825             }
48826         });
48827         for(var i = 0, len = this.buttons.length; i < len; i++){
48828             var btn = this.buttons[i];
48829             if(btn.formBind === true && btn.disabled === valid){
48830                 btn.setDisabled(!valid);
48831             }
48832         }
48833         this.fireEvent('clientvalidation', this, valid);
48834     }
48835     
48836     
48837     
48838     
48839     
48840     
48841     
48842     
48843 });
48844
48845
48846 // back compat
48847 Roo.Form = Roo.form.Form;
48848 /*
48849  * Based on:
48850  * Ext JS Library 1.1.1
48851  * Copyright(c) 2006-2007, Ext JS, LLC.
48852  *
48853  * Originally Released Under LGPL - original licence link has changed is not relivant.
48854  *
48855  * Fork - LGPL
48856  * <script type="text/javascript">
48857  */
48858
48859 // as we use this in bootstrap.
48860 Roo.namespace('Roo.form');
48861  /**
48862  * @class Roo.form.Action
48863  * Internal Class used to handle form actions
48864  * @constructor
48865  * @param {Roo.form.BasicForm} el The form element or its id
48866  * @param {Object} config Configuration options
48867  */
48868
48869  
48870  
48871 // define the action interface
48872 Roo.form.Action = function(form, options){
48873     this.form = form;
48874     this.options = options || {};
48875 };
48876 /**
48877  * Client Validation Failed
48878  * @const 
48879  */
48880 Roo.form.Action.CLIENT_INVALID = 'client';
48881 /**
48882  * Server Validation Failed
48883  * @const 
48884  */
48885 Roo.form.Action.SERVER_INVALID = 'server';
48886  /**
48887  * Connect to Server Failed
48888  * @const 
48889  */
48890 Roo.form.Action.CONNECT_FAILURE = 'connect';
48891 /**
48892  * Reading Data from Server Failed
48893  * @const 
48894  */
48895 Roo.form.Action.LOAD_FAILURE = 'load';
48896
48897 Roo.form.Action.prototype = {
48898     type : 'default',
48899     failureType : undefined,
48900     response : undefined,
48901     result : undefined,
48902
48903     // interface method
48904     run : function(options){
48905
48906     },
48907
48908     // interface method
48909     success : function(response){
48910
48911     },
48912
48913     // interface method
48914     handleResponse : function(response){
48915
48916     },
48917
48918     // default connection failure
48919     failure : function(response){
48920         
48921         this.response = response;
48922         this.failureType = Roo.form.Action.CONNECT_FAILURE;
48923         this.form.afterAction(this, false);
48924     },
48925
48926     processResponse : function(response){
48927         this.response = response;
48928         if(!response.responseText){
48929             return true;
48930         }
48931         this.result = this.handleResponse(response);
48932         return this.result;
48933     },
48934
48935     // utility functions used internally
48936     getUrl : function(appendParams){
48937         var url = this.options.url || this.form.url || this.form.el.dom.action;
48938         if(appendParams){
48939             var p = this.getParams();
48940             if(p){
48941                 url += (url.indexOf('?') != -1 ? '&' : '?') + p;
48942             }
48943         }
48944         return url;
48945     },
48946
48947     getMethod : function(){
48948         return (this.options.method || this.form.method || this.form.el.dom.method || 'POST').toUpperCase();
48949     },
48950
48951     getParams : function(){
48952         var bp = this.form.baseParams;
48953         var p = this.options.params;
48954         if(p){
48955             if(typeof p == "object"){
48956                 p = Roo.urlEncode(Roo.applyIf(p, bp));
48957             }else if(typeof p == 'string' && bp){
48958                 p += '&' + Roo.urlEncode(bp);
48959             }
48960         }else if(bp){
48961             p = Roo.urlEncode(bp);
48962         }
48963         return p;
48964     },
48965
48966     createCallback : function(){
48967         return {
48968             success: this.success,
48969             failure: this.failure,
48970             scope: this,
48971             timeout: (this.form.timeout*1000),
48972             upload: this.form.fileUpload ? this.success : undefined
48973         };
48974     }
48975 };
48976
48977 Roo.form.Action.Submit = function(form, options){
48978     Roo.form.Action.Submit.superclass.constructor.call(this, form, options);
48979 };
48980
48981 Roo.extend(Roo.form.Action.Submit, Roo.form.Action, {
48982     type : 'submit',
48983
48984     haveProgress : false,
48985     uploadComplete : false,
48986     
48987     // uploadProgress indicator.
48988     uploadProgress : function()
48989     {
48990         if (!this.form.progressUrl) {
48991             return;
48992         }
48993         
48994         if (!this.haveProgress) {
48995             Roo.MessageBox.progress("Uploading", "Uploading");
48996         }
48997         if (this.uploadComplete) {
48998            Roo.MessageBox.hide();
48999            return;
49000         }
49001         
49002         this.haveProgress = true;
49003    
49004         var uid = this.form.findField('UPLOAD_IDENTIFIER').getValue();
49005         
49006         var c = new Roo.data.Connection();
49007         c.request({
49008             url : this.form.progressUrl,
49009             params: {
49010                 id : uid
49011             },
49012             method: 'GET',
49013             success : function(req){
49014                //console.log(data);
49015                 var rdata = false;
49016                 var edata;
49017                 try  {
49018                    rdata = Roo.decode(req.responseText)
49019                 } catch (e) {
49020                     Roo.log("Invalid data from server..");
49021                     Roo.log(edata);
49022                     return;
49023                 }
49024                 if (!rdata || !rdata.success) {
49025                     Roo.log(rdata);
49026                     Roo.MessageBox.alert(Roo.encode(rdata));
49027                     return;
49028                 }
49029                 var data = rdata.data;
49030                 
49031                 if (this.uploadComplete) {
49032                    Roo.MessageBox.hide();
49033                    return;
49034                 }
49035                    
49036                 if (data){
49037                     Roo.MessageBox.updateProgress(data.bytes_uploaded/data.bytes_total,
49038                        Math.floor((data.bytes_total - data.bytes_uploaded)/1000) + 'k remaining'
49039                     );
49040                 }
49041                 this.uploadProgress.defer(2000,this);
49042             },
49043        
49044             failure: function(data) {
49045                 Roo.log('progress url failed ');
49046                 Roo.log(data);
49047             },
49048             scope : this
49049         });
49050            
49051     },
49052     
49053     
49054     run : function()
49055     {
49056         // run get Values on the form, so it syncs any secondary forms.
49057         this.form.getValues();
49058         
49059         var o = this.options;
49060         var method = this.getMethod();
49061         var isPost = method == 'POST';
49062         if(o.clientValidation === false || this.form.isValid()){
49063             
49064             if (this.form.progressUrl) {
49065                 this.form.findField('UPLOAD_IDENTIFIER').setValue(
49066                     (new Date() * 1) + '' + Math.random());
49067                     
49068             } 
49069             
49070             
49071             Roo.Ajax.request(Roo.apply(this.createCallback(), {
49072                 form:this.form.el.dom,
49073                 url:this.getUrl(!isPost),
49074                 method: method,
49075                 params:isPost ? this.getParams() : null,
49076                 isUpload: this.form.fileUpload,
49077                 formData : this.form.formData
49078             }));
49079             
49080             this.uploadProgress();
49081
49082         }else if (o.clientValidation !== false){ // client validation failed
49083             this.failureType = Roo.form.Action.CLIENT_INVALID;
49084             this.form.afterAction(this, false);
49085         }
49086     },
49087
49088     success : function(response)
49089     {
49090         this.uploadComplete= true;
49091         if (this.haveProgress) {
49092             Roo.MessageBox.hide();
49093         }
49094         
49095         
49096         var result = this.processResponse(response);
49097         if(result === true || result.success){
49098             this.form.afterAction(this, true);
49099             return;
49100         }
49101         if(result.errors){
49102             this.form.markInvalid(result.errors);
49103             this.failureType = Roo.form.Action.SERVER_INVALID;
49104         }
49105         this.form.afterAction(this, false);
49106     },
49107     failure : function(response)
49108     {
49109         this.uploadComplete= true;
49110         if (this.haveProgress) {
49111             Roo.MessageBox.hide();
49112         }
49113         
49114         this.response = response;
49115         this.failureType = Roo.form.Action.CONNECT_FAILURE;
49116         this.form.afterAction(this, false);
49117     },
49118     
49119     handleResponse : function(response){
49120         if(this.form.errorReader){
49121             var rs = this.form.errorReader.read(response);
49122             var errors = [];
49123             if(rs.records){
49124                 for(var i = 0, len = rs.records.length; i < len; i++) {
49125                     var r = rs.records[i];
49126                     errors[i] = r.data;
49127                 }
49128             }
49129             if(errors.length < 1){
49130                 errors = null;
49131             }
49132             return {
49133                 success : rs.success,
49134                 errors : errors
49135             };
49136         }
49137         var ret = false;
49138         try {
49139             ret = Roo.decode(response.responseText);
49140         } catch (e) {
49141             ret = {
49142                 success: false,
49143                 errorMsg: "Failed to read server message: " + (response ? response.responseText : ' - no message'),
49144                 errors : []
49145             };
49146         }
49147         return ret;
49148         
49149     }
49150 });
49151
49152
49153 Roo.form.Action.Load = function(form, options){
49154     Roo.form.Action.Load.superclass.constructor.call(this, form, options);
49155     this.reader = this.form.reader;
49156 };
49157
49158 Roo.extend(Roo.form.Action.Load, Roo.form.Action, {
49159     type : 'load',
49160
49161     run : function(){
49162         
49163         Roo.Ajax.request(Roo.apply(
49164                 this.createCallback(), {
49165                     method:this.getMethod(),
49166                     url:this.getUrl(false),
49167                     params:this.getParams()
49168         }));
49169     },
49170
49171     success : function(response){
49172         
49173         var result = this.processResponse(response);
49174         if(result === true || !result.success || !result.data){
49175             this.failureType = Roo.form.Action.LOAD_FAILURE;
49176             this.form.afterAction(this, false);
49177             return;
49178         }
49179         this.form.clearInvalid();
49180         this.form.setValues(result.data);
49181         this.form.afterAction(this, true);
49182     },
49183
49184     handleResponse : function(response){
49185         if(this.form.reader){
49186             var rs = this.form.reader.read(response);
49187             var data = rs.records && rs.records[0] ? rs.records[0].data : null;
49188             return {
49189                 success : rs.success,
49190                 data : data
49191             };
49192         }
49193         return Roo.decode(response.responseText);
49194     }
49195 });
49196
49197 Roo.form.Action.ACTION_TYPES = {
49198     'load' : Roo.form.Action.Load,
49199     'submit' : Roo.form.Action.Submit
49200 };/*
49201  * Based on:
49202  * Ext JS Library 1.1.1
49203  * Copyright(c) 2006-2007, Ext JS, LLC.
49204  *
49205  * Originally Released Under LGPL - original licence link has changed is not relivant.
49206  *
49207  * Fork - LGPL
49208  * <script type="text/javascript">
49209  */
49210  
49211 /**
49212  * @class Roo.form.Layout
49213  * @extends Roo.Component
49214  * Creates a container for layout and rendering of fields in an {@link Roo.form.Form}.
49215  * @constructor
49216  * @param {Object} config Configuration options
49217  */
49218 Roo.form.Layout = function(config){
49219     var xitems = [];
49220     if (config.items) {
49221         xitems = config.items;
49222         delete config.items;
49223     }
49224     Roo.form.Layout.superclass.constructor.call(this, config);
49225     this.stack = [];
49226     Roo.each(xitems, this.addxtype, this);
49227      
49228 };
49229
49230 Roo.extend(Roo.form.Layout, Roo.Component, {
49231     /**
49232      * @cfg {String/Object} autoCreate
49233      * A DomHelper element spec used to autocreate the layout (defaults to {tag: 'div', cls: 'x-form-ct'})
49234      */
49235     /**
49236      * @cfg {String/Object/Function} style
49237      * A style specification string, e.g. "width:100px", or object in the form {width:"100px"}, or
49238      * a function which returns such a specification.
49239      */
49240     /**
49241      * @cfg {String} labelAlign
49242      * Valid values are "left," "top" and "right" (defaults to "left")
49243      */
49244     /**
49245      * @cfg {Number} labelWidth
49246      * Fixed width in pixels of all field labels (defaults to undefined)
49247      */
49248     /**
49249      * @cfg {Boolean} clear
49250      * True to add a clearing element at the end of this layout, equivalent to CSS clear: both (defaults to true)
49251      */
49252     clear : true,
49253     /**
49254      * @cfg {String} labelSeparator
49255      * The separator to use after field labels (defaults to ':')
49256      */
49257     labelSeparator : ':',
49258     /**
49259      * @cfg {Boolean} hideLabels
49260      * True to suppress the display of field labels in this layout (defaults to false)
49261      */
49262     hideLabels : false,
49263
49264     // private
49265     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct'},
49266     
49267     isLayout : true,
49268     
49269     // private
49270     onRender : function(ct, position){
49271         if(this.el){ // from markup
49272             this.el = Roo.get(this.el);
49273         }else {  // generate
49274             var cfg = this.getAutoCreate();
49275             this.el = ct.createChild(cfg, position);
49276         }
49277         if(this.style){
49278             this.el.applyStyles(this.style);
49279         }
49280         if(this.labelAlign){
49281             this.el.addClass('x-form-label-'+this.labelAlign);
49282         }
49283         if(this.hideLabels){
49284             this.labelStyle = "display:none";
49285             this.elementStyle = "padding-left:0;";
49286         }else{
49287             if(typeof this.labelWidth == 'number'){
49288                 this.labelStyle = "width:"+this.labelWidth+"px;";
49289                 this.elementStyle = "padding-left:"+((this.labelWidth+(typeof this.labelPad == 'number' ? this.labelPad : 5))+'px')+";";
49290             }
49291             if(this.labelAlign == 'top'){
49292                 this.labelStyle = "width:auto;";
49293                 this.elementStyle = "padding-left:0;";
49294             }
49295         }
49296         var stack = this.stack;
49297         var slen = stack.length;
49298         if(slen > 0){
49299             if(!this.fieldTpl){
49300                 var t = new Roo.Template(
49301                     '<div class="x-form-item {5}">',
49302                         '<label for="{0}" style="{2}">{1}{4}</label>',
49303                         '<div class="x-form-element" id="x-form-el-{0}" style="{3}">',
49304                         '</div>',
49305                     '</div><div class="x-form-clear-left"></div>'
49306                 );
49307                 t.disableFormats = true;
49308                 t.compile();
49309                 Roo.form.Layout.prototype.fieldTpl = t;
49310             }
49311             for(var i = 0; i < slen; i++) {
49312                 if(stack[i].isFormField){
49313                     this.renderField(stack[i]);
49314                 }else{
49315                     this.renderComponent(stack[i]);
49316                 }
49317             }
49318         }
49319         if(this.clear){
49320             this.el.createChild({cls:'x-form-clear'});
49321         }
49322     },
49323
49324     // private
49325     renderField : function(f){
49326         f.fieldEl = Roo.get(this.fieldTpl.append(this.el, [
49327                f.id, //0
49328                f.fieldLabel, //1
49329                f.labelStyle||this.labelStyle||'', //2
49330                this.elementStyle||'', //3
49331                typeof f.labelSeparator == 'undefined' ? this.labelSeparator : f.labelSeparator, //4
49332                f.itemCls||this.itemCls||''  //5
49333        ], true).getPrevSibling());
49334     },
49335
49336     // private
49337     renderComponent : function(c){
49338         c.render(c.isLayout ? this.el : this.el.createChild());    
49339     },
49340     /**
49341      * Adds a object form elements (using the xtype property as the factory method.)
49342      * Valid xtypes are:  TextField, TextArea .... Button, Layout, FieldSet, Column
49343      * @param {Object} config 
49344      */
49345     addxtype : function(o)
49346     {
49347         // create the lement.
49348         o.form = this.form;
49349         var fe = Roo.factory(o, Roo.form);
49350         this.form.allItems.push(fe);
49351         this.stack.push(fe);
49352         
49353         if (fe.isFormField) {
49354             this.form.items.add(fe);
49355         }
49356          
49357         return fe;
49358     }
49359 });
49360
49361 /**
49362  * @class Roo.form.Column
49363  * @extends Roo.form.Layout
49364  * Creates a column container for layout and rendering of fields in an {@link Roo.form.Form}.
49365  * @constructor
49366  * @param {Object} config Configuration options
49367  */
49368 Roo.form.Column = function(config){
49369     Roo.form.Column.superclass.constructor.call(this, config);
49370 };
49371
49372 Roo.extend(Roo.form.Column, Roo.form.Layout, {
49373     /**
49374      * @cfg {Number/String} width
49375      * The fixed width of the column in pixels or CSS value (defaults to "auto")
49376      */
49377     /**
49378      * @cfg {String/Object} autoCreate
49379      * A DomHelper element spec used to autocreate the column (defaults to {tag: 'div', cls: 'x-form-ct x-form-column'})
49380      */
49381
49382     // private
49383     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct x-form-column'},
49384
49385     // private
49386     onRender : function(ct, position){
49387         Roo.form.Column.superclass.onRender.call(this, ct, position);
49388         if(this.width){
49389             this.el.setWidth(this.width);
49390         }
49391     }
49392 });
49393
49394
49395 /**
49396  * @class Roo.form.Row
49397  * @extends Roo.form.Layout
49398  * Creates a row container for layout and rendering of fields in an {@link Roo.form.Form}.
49399  * @constructor
49400  * @param {Object} config Configuration options
49401  */
49402
49403  
49404 Roo.form.Row = function(config){
49405     Roo.form.Row.superclass.constructor.call(this, config);
49406 };
49407  
49408 Roo.extend(Roo.form.Row, Roo.form.Layout, {
49409       /**
49410      * @cfg {Number/String} width
49411      * The fixed width of the column in pixels or CSS value (defaults to "auto")
49412      */
49413     /**
49414      * @cfg {Number/String} height
49415      * The fixed height of the column in pixels or CSS value (defaults to "auto")
49416      */
49417     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct x-form-row'},
49418     
49419     padWidth : 20,
49420     // private
49421     onRender : function(ct, position){
49422         //console.log('row render');
49423         if(!this.rowTpl){
49424             var t = new Roo.Template(
49425                 '<div class="x-form-item {5}" style="float:left;width:{6}px">',
49426                     '<label for="{0}" style="{2}">{1}{4}</label>',
49427                     '<div class="x-form-element" id="x-form-el-{0}" style="{3}">',
49428                     '</div>',
49429                 '</div>'
49430             );
49431             t.disableFormats = true;
49432             t.compile();
49433             Roo.form.Layout.prototype.rowTpl = t;
49434         }
49435         this.fieldTpl = this.rowTpl;
49436         
49437         //console.log('lw' + this.labelWidth +', la:' + this.labelAlign);
49438         var labelWidth = 100;
49439         
49440         if ((this.labelAlign != 'top')) {
49441             if (typeof this.labelWidth == 'number') {
49442                 labelWidth = this.labelWidth
49443             }
49444             this.padWidth =  20 + labelWidth;
49445             
49446         }
49447         
49448         Roo.form.Column.superclass.onRender.call(this, ct, position);
49449         if(this.width){
49450             this.el.setWidth(this.width);
49451         }
49452         if(this.height){
49453             this.el.setHeight(this.height);
49454         }
49455     },
49456     
49457     // private
49458     renderField : function(f){
49459         f.fieldEl = this.fieldTpl.append(this.el, [
49460                f.id, f.fieldLabel,
49461                f.labelStyle||this.labelStyle||'',
49462                this.elementStyle||'',
49463                typeof f.labelSeparator == 'undefined' ? this.labelSeparator : f.labelSeparator,
49464                f.itemCls||this.itemCls||'',
49465                f.width ? f.width + this.padWidth : 160 + this.padWidth
49466        ],true);
49467     }
49468 });
49469  
49470
49471 /**
49472  * @class Roo.form.FieldSet
49473  * @extends Roo.form.Layout
49474  * Creates a fieldset container for layout and rendering of fields in an {@link Roo.form.Form}.
49475  * @constructor
49476  * @param {Object} config Configuration options
49477  */
49478 Roo.form.FieldSet = function(config){
49479     Roo.form.FieldSet.superclass.constructor.call(this, config);
49480 };
49481
49482 Roo.extend(Roo.form.FieldSet, Roo.form.Layout, {
49483     /**
49484      * @cfg {String} legend
49485      * The text to display as the legend for the FieldSet (defaults to '')
49486      */
49487     /**
49488      * @cfg {String/Object} autoCreate
49489      * A DomHelper element spec used to autocreate the fieldset (defaults to {tag: 'fieldset', cn: {tag:'legend'}})
49490      */
49491
49492     // private
49493     defaultAutoCreate : {tag: 'fieldset', cn: {tag:'legend'}},
49494
49495     // private
49496     onRender : function(ct, position){
49497         Roo.form.FieldSet.superclass.onRender.call(this, ct, position);
49498         if(this.legend){
49499             this.setLegend(this.legend);
49500         }
49501     },
49502
49503     // private
49504     setLegend : function(text){
49505         if(this.rendered){
49506             this.el.child('legend').update(text);
49507         }
49508     }
49509 });/*
49510  * Based on:
49511  * Ext JS Library 1.1.1
49512  * Copyright(c) 2006-2007, Ext JS, LLC.
49513  *
49514  * Originally Released Under LGPL - original licence link has changed is not relivant.
49515  *
49516  * Fork - LGPL
49517  * <script type="text/javascript">
49518  */
49519 /**
49520  * @class Roo.form.VTypes
49521  * Overridable validation definitions. The validations provided are basic and intended to be easily customizable and extended.
49522  * @singleton
49523  */
49524 Roo.form.VTypes = function(){
49525     // closure these in so they are only created once.
49526     var alpha = /^[a-zA-Z_]+$/;
49527     var alphanum = /^[a-zA-Z0-9_]+$/;
49528     var email = /^([\w]+)(.[\w]+)*@([\w-]+\.){1,5}([A-Za-z]){2,24}$/;
49529     var url = /(((https?)|(ftp)):\/\/([\-\w]+\.)+\w{2,3}(\/[%\-\w]+(\.\w{2,})?)*(([\w\-\.\?\\\/+@&#;`~=%!]*)(\.\w{2,})?)*\/?)/i;
49530
49531     // All these messages and functions are configurable
49532     return {
49533         /**
49534          * The function used to validate email addresses
49535          * @param {String} value The email address
49536          */
49537         'email' : function(v){
49538             return email.test(v);
49539         },
49540         /**
49541          * The error text to display when the email validation function returns false
49542          * @type String
49543          */
49544         'emailText' : 'This field should be an e-mail address in the format "user@domain.com"',
49545         /**
49546          * The keystroke filter mask to be applied on email input
49547          * @type RegExp
49548          */
49549         'emailMask' : /[a-z0-9_\.\-@]/i,
49550
49551         /**
49552          * The function used to validate URLs
49553          * @param {String} value The URL
49554          */
49555         'url' : function(v){
49556             return url.test(v);
49557         },
49558         /**
49559          * The error text to display when the url validation function returns false
49560          * @type String
49561          */
49562         'urlText' : 'This field should be a URL in the format "http:/'+'/www.domain.com"',
49563         
49564         /**
49565          * The function used to validate alpha values
49566          * @param {String} value The value
49567          */
49568         'alpha' : function(v){
49569             return alpha.test(v);
49570         },
49571         /**
49572          * The error text to display when the alpha validation function returns false
49573          * @type String
49574          */
49575         'alphaText' : 'This field should only contain letters and _',
49576         /**
49577          * The keystroke filter mask to be applied on alpha input
49578          * @type RegExp
49579          */
49580         'alphaMask' : /[a-z_]/i,
49581
49582         /**
49583          * The function used to validate alphanumeric values
49584          * @param {String} value The value
49585          */
49586         'alphanum' : function(v){
49587             return alphanum.test(v);
49588         },
49589         /**
49590          * The error text to display when the alphanumeric validation function returns false
49591          * @type String
49592          */
49593         'alphanumText' : 'This field should only contain letters, numbers and _',
49594         /**
49595          * The keystroke filter mask to be applied on alphanumeric input
49596          * @type RegExp
49597          */
49598         'alphanumMask' : /[a-z0-9_]/i
49599     };
49600 }();//<script type="text/javascript">
49601
49602 /**
49603  * @class Roo.form.FCKeditor
49604  * @extends Roo.form.TextArea
49605  * Wrapper around the FCKEditor http://www.fckeditor.net
49606  * @constructor
49607  * Creates a new FCKeditor
49608  * @param {Object} config Configuration options
49609  */
49610 Roo.form.FCKeditor = function(config){
49611     Roo.form.FCKeditor.superclass.constructor.call(this, config);
49612     this.addEvents({
49613          /**
49614          * @event editorinit
49615          * Fired when the editor is initialized - you can add extra handlers here..
49616          * @param {FCKeditor} this
49617          * @param {Object} the FCK object.
49618          */
49619         editorinit : true
49620     });
49621     
49622     
49623 };
49624 Roo.form.FCKeditor.editors = { };
49625 Roo.extend(Roo.form.FCKeditor, Roo.form.TextArea,
49626 {
49627     //defaultAutoCreate : {
49628     //    tag : "textarea",style   : "width:100px;height:60px;" ,autocomplete    : "off"
49629     //},
49630     // private
49631     /**
49632      * @cfg {Object} fck options - see fck manual for details.
49633      */
49634     fckconfig : false,
49635     
49636     /**
49637      * @cfg {Object} fck toolbar set (Basic or Default)
49638      */
49639     toolbarSet : 'Basic',
49640     /**
49641      * @cfg {Object} fck BasePath
49642      */ 
49643     basePath : '/fckeditor/',
49644     
49645     
49646     frame : false,
49647     
49648     value : '',
49649     
49650    
49651     onRender : function(ct, position)
49652     {
49653         if(!this.el){
49654             this.defaultAutoCreate = {
49655                 tag: "textarea",
49656                 style:"width:300px;height:60px;",
49657                 autocomplete: "new-password"
49658             };
49659         }
49660         Roo.form.FCKeditor.superclass.onRender.call(this, ct, position);
49661         /*
49662         if(this.grow){
49663             this.textSizeEl = Roo.DomHelper.append(document.body, {tag: "pre", cls: "x-form-grow-sizer"});
49664             if(this.preventScrollbars){
49665                 this.el.setStyle("overflow", "hidden");
49666             }
49667             this.el.setHeight(this.growMin);
49668         }
49669         */
49670         //console.log('onrender' + this.getId() );
49671         Roo.form.FCKeditor.editors[this.getId()] = this;
49672          
49673
49674         this.replaceTextarea() ;
49675         
49676     },
49677     
49678     getEditor : function() {
49679         return this.fckEditor;
49680     },
49681     /**
49682      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
49683      * @param {Mixed} value The value to set
49684      */
49685     
49686     
49687     setValue : function(value)
49688     {
49689         //console.log('setValue: ' + value);
49690         
49691         if(typeof(value) == 'undefined') { // not sure why this is happending...
49692             return;
49693         }
49694         Roo.form.FCKeditor.superclass.setValue.apply(this,[value]);
49695         
49696         //if(!this.el || !this.getEditor()) {
49697         //    this.value = value;
49698             //this.setValue.defer(100,this,[value]);    
49699         //    return;
49700         //} 
49701         
49702         if(!this.getEditor()) {
49703             return;
49704         }
49705         
49706         this.getEditor().SetData(value);
49707         
49708         //
49709
49710     },
49711
49712     /**
49713      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
49714      * @return {Mixed} value The field value
49715      */
49716     getValue : function()
49717     {
49718         
49719         if (this.frame && this.frame.dom.style.display == 'none') {
49720             return Roo.form.FCKeditor.superclass.getValue.call(this);
49721         }
49722         
49723         if(!this.el || !this.getEditor()) {
49724            
49725            // this.getValue.defer(100,this); 
49726             return this.value;
49727         }
49728        
49729         
49730         var value=this.getEditor().GetData();
49731         Roo.form.FCKeditor.superclass.setValue.apply(this,[value]);
49732         return Roo.form.FCKeditor.superclass.getValue.call(this);
49733         
49734
49735     },
49736
49737     /**
49738      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
49739      * @return {Mixed} value The field value
49740      */
49741     getRawValue : function()
49742     {
49743         if (this.frame && this.frame.dom.style.display == 'none') {
49744             return Roo.form.FCKeditor.superclass.getRawValue.call(this);
49745         }
49746         
49747         if(!this.el || !this.getEditor()) {
49748             //this.getRawValue.defer(100,this); 
49749             return this.value;
49750             return;
49751         }
49752         
49753         
49754         
49755         var value=this.getEditor().GetData();
49756         Roo.form.FCKeditor.superclass.setRawValue.apply(this,[value]);
49757         return Roo.form.FCKeditor.superclass.getRawValue.call(this);
49758          
49759     },
49760     
49761     setSize : function(w,h) {
49762         
49763         
49764         
49765         //if (this.frame && this.frame.dom.style.display == 'none') {
49766         //    Roo.form.FCKeditor.superclass.setSize.apply(this, [w, h]);
49767         //    return;
49768         //}
49769         //if(!this.el || !this.getEditor()) {
49770         //    this.setSize.defer(100,this, [w,h]); 
49771         //    return;
49772         //}
49773         
49774         
49775         
49776         Roo.form.FCKeditor.superclass.setSize.apply(this, [w, h]);
49777         
49778         this.frame.dom.setAttribute('width', w);
49779         this.frame.dom.setAttribute('height', h);
49780         this.frame.setSize(w,h);
49781         
49782     },
49783     
49784     toggleSourceEdit : function(value) {
49785         
49786       
49787          
49788         this.el.dom.style.display = value ? '' : 'none';
49789         this.frame.dom.style.display = value ?  'none' : '';
49790         
49791     },
49792     
49793     
49794     focus: function(tag)
49795     {
49796         if (this.frame.dom.style.display == 'none') {
49797             return Roo.form.FCKeditor.superclass.focus.call(this);
49798         }
49799         if(!this.el || !this.getEditor()) {
49800             this.focus.defer(100,this, [tag]); 
49801             return;
49802         }
49803         
49804         
49805         
49806         
49807         var tgs = this.getEditor().EditorDocument.getElementsByTagName(tag);
49808         this.getEditor().Focus();
49809         if (tgs.length) {
49810             if (!this.getEditor().Selection.GetSelection()) {
49811                 this.focus.defer(100,this, [tag]); 
49812                 return;
49813             }
49814             
49815             
49816             var r = this.getEditor().EditorDocument.createRange();
49817             r.setStart(tgs[0],0);
49818             r.setEnd(tgs[0],0);
49819             this.getEditor().Selection.GetSelection().removeAllRanges();
49820             this.getEditor().Selection.GetSelection().addRange(r);
49821             this.getEditor().Focus();
49822         }
49823         
49824     },
49825     
49826     
49827     
49828     replaceTextarea : function()
49829     {
49830         if ( document.getElementById( this.getId() + '___Frame' ) ) {
49831             return ;
49832         }
49833         //if ( !this.checkBrowser || this._isCompatibleBrowser() )
49834         //{
49835             // We must check the elements firstly using the Id and then the name.
49836         var oTextarea = document.getElementById( this.getId() );
49837         
49838         var colElementsByName = document.getElementsByName( this.getId() ) ;
49839          
49840         oTextarea.style.display = 'none' ;
49841
49842         if ( oTextarea.tabIndex ) {            
49843             this.TabIndex = oTextarea.tabIndex ;
49844         }
49845         
49846         this._insertHtmlBefore( this._getConfigHtml(), oTextarea ) ;
49847         this._insertHtmlBefore( this._getIFrameHtml(), oTextarea ) ;
49848         this.frame = Roo.get(this.getId() + '___Frame')
49849     },
49850     
49851     _getConfigHtml : function()
49852     {
49853         var sConfig = '' ;
49854
49855         for ( var o in this.fckconfig ) {
49856             sConfig += sConfig.length > 0  ? '&amp;' : '';
49857             sConfig += encodeURIComponent( o ) + '=' + encodeURIComponent( this.fckconfig[o] ) ;
49858         }
49859
49860         return '<input type="hidden" id="' + this.getId() + '___Config" value="' + sConfig + '" style="display:none" />' ;
49861     },
49862     
49863     
49864     _getIFrameHtml : function()
49865     {
49866         var sFile = 'fckeditor.html' ;
49867         /* no idea what this is about..
49868         try
49869         {
49870             if ( (/fcksource=true/i).test( window.top.location.search ) )
49871                 sFile = 'fckeditor.original.html' ;
49872         }
49873         catch (e) { 
49874         */
49875
49876         var sLink = this.basePath + 'editor/' + sFile + '?InstanceName=' + encodeURIComponent( this.getId() ) ;
49877         sLink += this.toolbarSet ? ( '&amp;Toolbar=' + this.toolbarSet)  : '';
49878         
49879         
49880         var html = '<iframe id="' + this.getId() +
49881             '___Frame" src="' + sLink +
49882             '" width="' + this.width +
49883             '" height="' + this.height + '"' +
49884             (this.tabIndex ?  ' tabindex="' + this.tabIndex + '"' :'' ) +
49885             ' frameborder="0" scrolling="no"></iframe>' ;
49886
49887         return html ;
49888     },
49889     
49890     _insertHtmlBefore : function( html, element )
49891     {
49892         if ( element.insertAdjacentHTML )       {
49893             // IE
49894             element.insertAdjacentHTML( 'beforeBegin', html ) ;
49895         } else { // Gecko
49896             var oRange = document.createRange() ;
49897             oRange.setStartBefore( element ) ;
49898             var oFragment = oRange.createContextualFragment( html );
49899             element.parentNode.insertBefore( oFragment, element ) ;
49900         }
49901     }
49902     
49903     
49904   
49905     
49906     
49907     
49908     
49909
49910 });
49911
49912 //Roo.reg('fckeditor', Roo.form.FCKeditor);
49913
49914 function FCKeditor_OnComplete(editorInstance){
49915     var f = Roo.form.FCKeditor.editors[editorInstance.Name];
49916     f.fckEditor = editorInstance;
49917     //console.log("loaded");
49918     f.fireEvent('editorinit', f, editorInstance);
49919
49920   
49921
49922  
49923
49924
49925
49926
49927
49928
49929
49930
49931
49932
49933
49934
49935
49936
49937
49938 //<script type="text/javascript">
49939 /**
49940  * @class Roo.form.GridField
49941  * @extends Roo.form.Field
49942  * Embed a grid (or editable grid into a form)
49943  * STATUS ALPHA
49944  * 
49945  * This embeds a grid in a form, the value of the field should be the json encoded array of rows
49946  * it needs 
49947  * xgrid.store = Roo.data.Store
49948  * xgrid.store.proxy = Roo.data.MemoryProxy (data = [] )
49949  * xgrid.store.reader = Roo.data.JsonReader 
49950  * 
49951  * 
49952  * @constructor
49953  * Creates a new GridField
49954  * @param {Object} config Configuration options
49955  */
49956 Roo.form.GridField = function(config){
49957     Roo.form.GridField.superclass.constructor.call(this, config);
49958      
49959 };
49960
49961 Roo.extend(Roo.form.GridField, Roo.form.Field,  {
49962     /**
49963      * @cfg {Number} width  - used to restrict width of grid..
49964      */
49965     width : 100,
49966     /**
49967      * @cfg {Number} height - used to restrict height of grid..
49968      */
49969     height : 50,
49970      /**
49971      * @cfg {Object} xgrid (xtype'd description of grid) { xtype : 'Grid', dataSource: .... }
49972          * 
49973          *}
49974      */
49975     xgrid : false, 
49976     /**
49977      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
49978      * {tag: "input", type: "checkbox", autocomplete: "off"})
49979      */
49980    // defaultAutoCreate : { tag: 'div' },
49981     defaultAutoCreate : { tag: 'input', type: 'hidden', autocomplete: 'new-password'},
49982     /**
49983      * @cfg {String} addTitle Text to include for adding a title.
49984      */
49985     addTitle : false,
49986     //
49987     onResize : function(){
49988         Roo.form.Field.superclass.onResize.apply(this, arguments);
49989     },
49990
49991     initEvents : function(){
49992         // Roo.form.Checkbox.superclass.initEvents.call(this);
49993         // has no events...
49994        
49995     },
49996
49997
49998     getResizeEl : function(){
49999         return this.wrap;
50000     },
50001
50002     getPositionEl : function(){
50003         return this.wrap;
50004     },
50005
50006     // private
50007     onRender : function(ct, position){
50008         
50009         this.style = this.style || 'overflow: hidden; border:1px solid #c3daf9;';
50010         var style = this.style;
50011         delete this.style;
50012         
50013         Roo.form.GridField.superclass.onRender.call(this, ct, position);
50014         this.wrap = this.el.wrap({cls: ''}); // not sure why ive done thsi...
50015         this.viewEl = this.wrap.createChild({ tag: 'div' });
50016         if (style) {
50017             this.viewEl.applyStyles(style);
50018         }
50019         if (this.width) {
50020             this.viewEl.setWidth(this.width);
50021         }
50022         if (this.height) {
50023             this.viewEl.setHeight(this.height);
50024         }
50025         //if(this.inputValue !== undefined){
50026         //this.setValue(this.value);
50027         
50028         
50029         this.grid = new Roo.grid[this.xgrid.xtype](this.viewEl, this.xgrid);
50030         
50031         
50032         this.grid.render();
50033         this.grid.getDataSource().on('remove', this.refreshValue, this);
50034         this.grid.getDataSource().on('update', this.refreshValue, this);
50035         this.grid.on('afteredit', this.refreshValue, this);
50036  
50037     },
50038      
50039     
50040     /**
50041      * Sets the value of the item. 
50042      * @param {String} either an object  or a string..
50043      */
50044     setValue : function(v){
50045         //this.value = v;
50046         v = v || []; // empty set..
50047         // this does not seem smart - it really only affects memoryproxy grids..
50048         if (this.grid && this.grid.getDataSource() && typeof(v) != 'undefined') {
50049             var ds = this.grid.getDataSource();
50050             // assumes a json reader..
50051             var data = {}
50052             data[ds.reader.meta.root ] =  typeof(v) == 'string' ? Roo.decode(v) : v;
50053             ds.loadData( data);
50054         }
50055         // clear selection so it does not get stale.
50056         if (this.grid.sm) { 
50057             this.grid.sm.clearSelections();
50058         }
50059         
50060         Roo.form.GridField.superclass.setValue.call(this, v);
50061         this.refreshValue();
50062         // should load data in the grid really....
50063     },
50064     
50065     // private
50066     refreshValue: function() {
50067          var val = [];
50068         this.grid.getDataSource().each(function(r) {
50069             val.push(r.data);
50070         });
50071         this.el.dom.value = Roo.encode(val);
50072     }
50073     
50074      
50075     
50076     
50077 });/*
50078  * Based on:
50079  * Ext JS Library 1.1.1
50080  * Copyright(c) 2006-2007, Ext JS, LLC.
50081  *
50082  * Originally Released Under LGPL - original licence link has changed is not relivant.
50083  *
50084  * Fork - LGPL
50085  * <script type="text/javascript">
50086  */
50087 /**
50088  * @class Roo.form.DisplayField
50089  * @extends Roo.form.Field
50090  * A generic Field to display non-editable data.
50091  * @cfg {Boolean} closable (true|false) default false
50092  * @constructor
50093  * Creates a new Display Field item.
50094  * @param {Object} config Configuration options
50095  */
50096 Roo.form.DisplayField = function(config){
50097     Roo.form.DisplayField.superclass.constructor.call(this, config);
50098     
50099     this.addEvents({
50100         /**
50101          * @event close
50102          * Fires after the click the close btn
50103              * @param {Roo.form.DisplayField} this
50104              */
50105         close : true
50106     });
50107 };
50108
50109 Roo.extend(Roo.form.DisplayField, Roo.form.TextField,  {
50110     inputType:      'hidden',
50111     allowBlank:     true,
50112     readOnly:         true,
50113     
50114  
50115     /**
50116      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
50117      */
50118     focusClass : undefined,
50119     /**
50120      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
50121      */
50122     fieldClass: 'x-form-field',
50123     
50124      /**
50125      * @cfg {Function} valueRenderer The renderer for the field (so you can reformat output). should return raw HTML
50126      */
50127     valueRenderer: undefined,
50128     
50129     width: 100,
50130     /**
50131      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
50132      * {tag: "input", type: "checkbox", autocomplete: "off"})
50133      */
50134      
50135  //   defaultAutoCreate : { tag: 'input', type: 'hidden', autocomplete: 'off'},
50136  
50137     closable : false,
50138     
50139     onResize : function(){
50140         Roo.form.DisplayField.superclass.onResize.apply(this, arguments);
50141         
50142     },
50143
50144     initEvents : function(){
50145         // Roo.form.Checkbox.superclass.initEvents.call(this);
50146         // has no events...
50147         
50148         if(this.closable){
50149             this.closeEl.on('click', this.onClose, this);
50150         }
50151        
50152     },
50153
50154
50155     getResizeEl : function(){
50156         return this.wrap;
50157     },
50158
50159     getPositionEl : function(){
50160         return this.wrap;
50161     },
50162
50163     // private
50164     onRender : function(ct, position){
50165         
50166         Roo.form.DisplayField.superclass.onRender.call(this, ct, position);
50167         //if(this.inputValue !== undefined){
50168         this.wrap = this.el.wrap();
50169         
50170         this.viewEl = this.wrap.createChild({ tag: 'div', cls: 'x-form-displayfield'});
50171         
50172         if(this.closable){
50173             this.closeEl = this.wrap.createChild({ tag: 'div', cls: 'x-dlg-close'});
50174         }
50175         
50176         if (this.bodyStyle) {
50177             this.viewEl.applyStyles(this.bodyStyle);
50178         }
50179         //this.viewEl.setStyle('padding', '2px');
50180         
50181         this.setValue(this.value);
50182         
50183     },
50184 /*
50185     // private
50186     initValue : Roo.emptyFn,
50187
50188   */
50189
50190         // private
50191     onClick : function(){
50192         
50193     },
50194
50195     /**
50196      * Sets the checked state of the checkbox.
50197      * @param {Boolean/String} checked True, 'true', '1', or 'on' to check the checkbox, any other value will uncheck it.
50198      */
50199     setValue : function(v){
50200         this.value = v;
50201         var html = this.valueRenderer ?  this.valueRenderer(v) : String.format('{0}', v);
50202         // this might be called before we have a dom element..
50203         if (!this.viewEl) {
50204             return;
50205         }
50206         this.viewEl.dom.innerHTML = html;
50207         Roo.form.DisplayField.superclass.setValue.call(this, v);
50208
50209     },
50210     
50211     onClose : function(e)
50212     {
50213         e.preventDefault();
50214         
50215         this.fireEvent('close', this);
50216     }
50217 });/*
50218  * 
50219  * Licence- LGPL
50220  * 
50221  */
50222
50223 /**
50224  * @class Roo.form.DayPicker
50225  * @extends Roo.form.Field
50226  * A Day picker show [M] [T] [W] ....
50227  * @constructor
50228  * Creates a new Day Picker
50229  * @param {Object} config Configuration options
50230  */
50231 Roo.form.DayPicker= function(config){
50232     Roo.form.DayPicker.superclass.constructor.call(this, config);
50233      
50234 };
50235
50236 Roo.extend(Roo.form.DayPicker, Roo.form.Field,  {
50237     /**
50238      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
50239      */
50240     focusClass : undefined,
50241     /**
50242      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
50243      */
50244     fieldClass: "x-form-field",
50245    
50246     /**
50247      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
50248      * {tag: "input", type: "checkbox", autocomplete: "off"})
50249      */
50250     defaultAutoCreate : { tag: "input", type: 'hidden', autocomplete: "new-password"},
50251     
50252    
50253     actionMode : 'viewEl', 
50254     //
50255     // private
50256  
50257     inputType : 'hidden',
50258     
50259      
50260     inputElement: false, // real input element?
50261     basedOn: false, // ????
50262     
50263     isFormField: true, // not sure where this is needed!!!!
50264
50265     onResize : function(){
50266         Roo.form.Checkbox.superclass.onResize.apply(this, arguments);
50267         if(!this.boxLabel){
50268             this.el.alignTo(this.wrap, 'c-c');
50269         }
50270     },
50271
50272     initEvents : function(){
50273         Roo.form.Checkbox.superclass.initEvents.call(this);
50274         this.el.on("click", this.onClick,  this);
50275         this.el.on("change", this.onClick,  this);
50276     },
50277
50278
50279     getResizeEl : function(){
50280         return this.wrap;
50281     },
50282
50283     getPositionEl : function(){
50284         return this.wrap;
50285     },
50286
50287     
50288     // private
50289     onRender : function(ct, position){
50290         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
50291        
50292         this.wrap = this.el.wrap({cls: 'x-form-daypick-item '});
50293         
50294         var r1 = '<table><tr>';
50295         var r2 = '<tr class="x-form-daypick-icons">';
50296         for (var i=0; i < 7; i++) {
50297             r1+= '<td><div>' + Date.dayNames[i].substring(0,3) + '</div></td>';
50298             r2+= '<td><img class="x-menu-item-icon" src="' + Roo.BLANK_IMAGE_URL  +'"></td>';
50299         }
50300         
50301         var viewEl = this.wrap.createChild( r1 + '</tr>' + r2 + '</tr></table>');
50302         viewEl.select('img').on('click', this.onClick, this);
50303         this.viewEl = viewEl;   
50304         
50305         
50306         // this will not work on Chrome!!!
50307         this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
50308         this.el.on('propertychange', this.setFromHidden,  this);  //ie
50309         
50310         
50311           
50312
50313     },
50314
50315     // private
50316     initValue : Roo.emptyFn,
50317
50318     /**
50319      * Returns the checked state of the checkbox.
50320      * @return {Boolean} True if checked, else false
50321      */
50322     getValue : function(){
50323         return this.el.dom.value;
50324         
50325     },
50326
50327         // private
50328     onClick : function(e){ 
50329         //this.setChecked(!this.checked);
50330         Roo.get(e.target).toggleClass('x-menu-item-checked');
50331         this.refreshValue();
50332         //if(this.el.dom.checked != this.checked){
50333         //    this.setValue(this.el.dom.checked);
50334        // }
50335     },
50336     
50337     // private
50338     refreshValue : function()
50339     {
50340         var val = '';
50341         this.viewEl.select('img',true).each(function(e,i,n)  {
50342             val += e.is(".x-menu-item-checked") ? String(n) : '';
50343         });
50344         this.setValue(val, true);
50345     },
50346
50347     /**
50348      * Sets the checked state of the checkbox.
50349      * On is always based on a string comparison between inputValue and the param.
50350      * @param {Boolean/String} value - the value to set 
50351      * @param {Boolean/String} suppressEvent - whether to suppress the checkchange event.
50352      */
50353     setValue : function(v,suppressEvent){
50354         if (!this.el.dom) {
50355             return;
50356         }
50357         var old = this.el.dom.value ;
50358         this.el.dom.value = v;
50359         if (suppressEvent) {
50360             return ;
50361         }
50362          
50363         // update display..
50364         this.viewEl.select('img',true).each(function(e,i,n)  {
50365             
50366             var on = e.is(".x-menu-item-checked");
50367             var newv = v.indexOf(String(n)) > -1;
50368             if (on != newv) {
50369                 e.toggleClass('x-menu-item-checked');
50370             }
50371             
50372         });
50373         
50374         
50375         this.fireEvent('change', this, v, old);
50376         
50377         
50378     },
50379    
50380     // handle setting of hidden value by some other method!!?!?
50381     setFromHidden: function()
50382     {
50383         if(!this.el){
50384             return;
50385         }
50386         //console.log("SET FROM HIDDEN");
50387         //alert('setFrom hidden');
50388         this.setValue(this.el.dom.value);
50389     },
50390     
50391     onDestroy : function()
50392     {
50393         if(this.viewEl){
50394             Roo.get(this.viewEl).remove();
50395         }
50396          
50397         Roo.form.DayPicker.superclass.onDestroy.call(this);
50398     }
50399
50400 });/*
50401  * RooJS Library 1.1.1
50402  * Copyright(c) 2008-2011  Alan Knowles
50403  *
50404  * License - LGPL
50405  */
50406  
50407
50408 /**
50409  * @class Roo.form.ComboCheck
50410  * @extends Roo.form.ComboBox
50411  * A combobox for multiple select items.
50412  *
50413  * FIXME - could do with a reset button..
50414  * 
50415  * @constructor
50416  * Create a new ComboCheck
50417  * @param {Object} config Configuration options
50418  */
50419 Roo.form.ComboCheck = function(config){
50420     Roo.form.ComboCheck.superclass.constructor.call(this, config);
50421     // should verify some data...
50422     // like
50423     // hiddenName = required..
50424     // displayField = required
50425     // valudField == required
50426     var req= [ 'hiddenName', 'displayField', 'valueField' ];
50427     var _t = this;
50428     Roo.each(req, function(e) {
50429         if ((typeof(_t[e]) == 'undefined' ) || !_t[e].length) {
50430             throw "Roo.form.ComboCheck : missing value for: " + e;
50431         }
50432     });
50433     
50434     
50435 };
50436
50437 Roo.extend(Roo.form.ComboCheck, Roo.form.ComboBox, {
50438      
50439      
50440     editable : false,
50441      
50442     selectedClass: 'x-menu-item-checked', 
50443     
50444     // private
50445     onRender : function(ct, position){
50446         var _t = this;
50447         
50448         
50449         
50450         if(!this.tpl){
50451             var cls = 'x-combo-list';
50452
50453             
50454             this.tpl =  new Roo.Template({
50455                 html :  '<div class="'+cls+'-item x-menu-check-item">' +
50456                    '<img class="x-menu-item-icon" style="margin: 0px;" src="' + Roo.BLANK_IMAGE_URL + '">' + 
50457                    '<span>{' + this.displayField + '}</span>' +
50458                     '</div>' 
50459                 
50460             });
50461         }
50462  
50463         
50464         Roo.form.ComboCheck.superclass.onRender.call(this, ct, position);
50465         this.view.singleSelect = false;
50466         this.view.multiSelect = true;
50467         this.view.toggleSelect = true;
50468         this.pageTb.add(new Roo.Toolbar.Fill(), {
50469             
50470             text: 'Done',
50471             handler: function()
50472             {
50473                 _t.collapse();
50474             }
50475         });
50476     },
50477     
50478     onViewOver : function(e, t){
50479         // do nothing...
50480         return;
50481         
50482     },
50483     
50484     onViewClick : function(doFocus,index){
50485         return;
50486         
50487     },
50488     select: function () {
50489         //Roo.log("SELECT CALLED");
50490     },
50491      
50492     selectByValue : function(xv, scrollIntoView){
50493         var ar = this.getValueArray();
50494         var sels = [];
50495         
50496         Roo.each(ar, function(v) {
50497             if(v === undefined || v === null){
50498                 return;
50499             }
50500             var r = this.findRecord(this.valueField, v);
50501             if(r){
50502                 sels.push(this.store.indexOf(r))
50503                 
50504             }
50505         },this);
50506         this.view.select(sels);
50507         return false;
50508     },
50509     
50510     
50511     
50512     onSelect : function(record, index){
50513        // Roo.log("onselect Called");
50514        // this is only called by the clear button now..
50515         this.view.clearSelections();
50516         this.setValue('[]');
50517         if (this.value != this.valueBefore) {
50518             this.fireEvent('change', this, this.value, this.valueBefore);
50519             this.valueBefore = this.value;
50520         }
50521     },
50522     getValueArray : function()
50523     {
50524         var ar = [] ;
50525         
50526         try {
50527             //Roo.log(this.value);
50528             if (typeof(this.value) == 'undefined') {
50529                 return [];
50530             }
50531             var ar = Roo.decode(this.value);
50532             return  ar instanceof Array ? ar : []; //?? valid?
50533             
50534         } catch(e) {
50535             Roo.log(e + "\nRoo.form.ComboCheck:getValueArray  invalid data:" + this.getValue());
50536             return [];
50537         }
50538          
50539     },
50540     expand : function ()
50541     {
50542         
50543         Roo.form.ComboCheck.superclass.expand.call(this);
50544         this.valueBefore = typeof(this.value) == 'undefined' ? '' : this.value;
50545         //this.valueBefore = typeof(this.valueBefore) == 'undefined' ? '' : this.valueBefore;
50546         
50547
50548     },
50549     
50550     collapse : function(){
50551         Roo.form.ComboCheck.superclass.collapse.call(this);
50552         var sl = this.view.getSelectedIndexes();
50553         var st = this.store;
50554         var nv = [];
50555         var tv = [];
50556         var r;
50557         Roo.each(sl, function(i) {
50558             r = st.getAt(i);
50559             nv.push(r.get(this.valueField));
50560         },this);
50561         this.setValue(Roo.encode(nv));
50562         if (this.value != this.valueBefore) {
50563
50564             this.fireEvent('change', this, this.value, this.valueBefore);
50565             this.valueBefore = this.value;
50566         }
50567         
50568     },
50569     
50570     setValue : function(v){
50571         // Roo.log(v);
50572         this.value = v;
50573         
50574         var vals = this.getValueArray();
50575         var tv = [];
50576         Roo.each(vals, function(k) {
50577             var r = this.findRecord(this.valueField, k);
50578             if(r){
50579                 tv.push(r.data[this.displayField]);
50580             }else if(this.valueNotFoundText !== undefined){
50581                 tv.push( this.valueNotFoundText );
50582             }
50583         },this);
50584        // Roo.log(tv);
50585         
50586         Roo.form.ComboBox.superclass.setValue.call(this, tv.join(', '));
50587         this.hiddenField.value = v;
50588         this.value = v;
50589     }
50590     
50591 });/*
50592  * Based on:
50593  * Ext JS Library 1.1.1
50594  * Copyright(c) 2006-2007, Ext JS, LLC.
50595  *
50596  * Originally Released Under LGPL - original licence link has changed is not relivant.
50597  *
50598  * Fork - LGPL
50599  * <script type="text/javascript">
50600  */
50601  
50602 /**
50603  * @class Roo.form.Signature
50604  * @extends Roo.form.Field
50605  * Signature field.  
50606  * @constructor
50607  * 
50608  * @param {Object} config Configuration options
50609  */
50610
50611 Roo.form.Signature = function(config){
50612     Roo.form.Signature.superclass.constructor.call(this, config);
50613     
50614     this.addEvents({// not in used??
50615          /**
50616          * @event confirm
50617          * Fires when the 'confirm' icon is pressed (add a listener to enable add button)
50618              * @param {Roo.form.Signature} combo This combo box
50619              */
50620         'confirm' : true,
50621         /**
50622          * @event reset
50623          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
50624              * @param {Roo.form.ComboBox} combo This combo box
50625              * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
50626              */
50627         'reset' : true
50628     });
50629 };
50630
50631 Roo.extend(Roo.form.Signature, Roo.form.Field,  {
50632     /**
50633      * @cfg {Object} labels Label to use when rendering a form.
50634      * defaults to 
50635      * labels : { 
50636      *      clear : "Clear",
50637      *      confirm : "Confirm"
50638      *  }
50639      */
50640     labels : { 
50641         clear : "Clear",
50642         confirm : "Confirm"
50643     },
50644     /**
50645      * @cfg {Number} width The signature panel width (defaults to 300)
50646      */
50647     width: 300,
50648     /**
50649      * @cfg {Number} height The signature panel height (defaults to 100)
50650      */
50651     height : 100,
50652     /**
50653      * @cfg {Boolean} allowBlank False to validate that the value length > 0 (defaults to false)
50654      */
50655     allowBlank : false,
50656     
50657     //private
50658     // {Object} signPanel The signature SVG panel element (defaults to {})
50659     signPanel : {},
50660     // {Boolean} isMouseDown False to validate that the mouse down event (defaults to false)
50661     isMouseDown : false,
50662     // {Boolean} isConfirmed validate the signature is confirmed or not for submitting form (defaults to false)
50663     isConfirmed : false,
50664     // {String} signatureTmp SVG mapping string (defaults to empty string)
50665     signatureTmp : '',
50666     
50667     
50668     defaultAutoCreate : { // modified by initCompnoent..
50669         tag: "input",
50670         type:"hidden"
50671     },
50672
50673     // private
50674     onRender : function(ct, position){
50675         
50676         Roo.form.Signature.superclass.onRender.call(this, ct, position);
50677         
50678         this.wrap = this.el.wrap({
50679             cls:'x-form-signature-wrap', style : 'width: ' + this.width + 'px', cn:{cls:'x-form-signature'}
50680         });
50681         
50682         this.createToolbar(this);
50683         this.signPanel = this.wrap.createChild({
50684                 tag: 'div',
50685                 style: 'width: ' + this.width + 'px; height: ' + this.height + 'px; border: 0;'
50686             }, this.el
50687         );
50688             
50689         this.svgID = Roo.id();
50690         this.svgEl = this.signPanel.createChild({
50691               xmlns : 'http://www.w3.org/2000/svg',
50692               tag : 'svg',
50693               id : this.svgID + "-svg",
50694               width: this.width,
50695               height: this.height,
50696               viewBox: '0 0 '+this.width+' '+this.height,
50697               cn : [
50698                 {
50699                     tag: "rect",
50700                     id: this.svgID + "-svg-r",
50701                     width: this.width,
50702                     height: this.height,
50703                     fill: "#ffa"
50704                 },
50705                 {
50706                     tag: "line",
50707                     id: this.svgID + "-svg-l",
50708                     x1: "0", // start
50709                     y1: (this.height*0.8), // start set the line in 80% of height
50710                     x2: this.width, // end
50711                     y2: (this.height*0.8), // end set the line in 80% of height
50712                     'stroke': "#666",
50713                     'stroke-width': "1",
50714                     'stroke-dasharray': "3",
50715                     'shape-rendering': "crispEdges",
50716                     'pointer-events': "none"
50717                 },
50718                 {
50719                     tag: "path",
50720                     id: this.svgID + "-svg-p",
50721                     'stroke': "navy",
50722                     'stroke-width': "3",
50723                     'fill': "none",
50724                     'pointer-events': 'none'
50725                 }
50726               ]
50727         });
50728         this.createSVG();
50729         this.svgBox = this.svgEl.dom.getScreenCTM();
50730     },
50731     createSVG : function(){ 
50732         var svg = this.signPanel;
50733         var r = svg.select('#'+ this.svgID + '-svg-r', true).first().dom;
50734         var t = this;
50735
50736         r.addEventListener('mousedown', function(e) { return t.down(e); }, false);
50737         r.addEventListener('mousemove', function(e) { return t.move(e); }, false);
50738         r.addEventListener('mouseup', function(e) { return t.up(e); }, false);
50739         r.addEventListener('mouseout', function(e) { return t.up(e); }, false);
50740         r.addEventListener('touchstart', function(e) { return t.down(e); }, false);
50741         r.addEventListener('touchmove', function(e) { return t.move(e); }, false);
50742         r.addEventListener('touchend', function(e) { return t.up(e); }, false);
50743         
50744     },
50745     isTouchEvent : function(e){
50746         return e.type.match(/^touch/);
50747     },
50748     getCoords : function (e) {
50749         var pt    = this.svgEl.dom.createSVGPoint();
50750         pt.x = e.clientX; 
50751         pt.y = e.clientY;
50752         if (this.isTouchEvent(e)) {
50753             pt.x =  e.targetTouches[0].clientX;
50754             pt.y = e.targetTouches[0].clientY;
50755         }
50756         var a = this.svgEl.dom.getScreenCTM();
50757         var b = a.inverse();
50758         var mx = pt.matrixTransform(b);
50759         return mx.x + ',' + mx.y;
50760     },
50761     //mouse event headler 
50762     down : function (e) {
50763         this.signatureTmp += 'M' + this.getCoords(e) + ' ';
50764         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr('d', this.signatureTmp);
50765         
50766         this.isMouseDown = true;
50767         
50768         e.preventDefault();
50769     },
50770     move : function (e) {
50771         if (this.isMouseDown) {
50772             this.signatureTmp += 'L' + this.getCoords(e) + ' ';
50773             this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', this.signatureTmp);
50774         }
50775         
50776         e.preventDefault();
50777     },
50778     up : function (e) {
50779         this.isMouseDown = false;
50780         var sp = this.signatureTmp.split(' ');
50781         
50782         if(sp.length > 1){
50783             if(!sp[sp.length-2].match(/^L/)){
50784                 sp.pop();
50785                 sp.pop();
50786                 sp.push("");
50787                 this.signatureTmp = sp.join(" ");
50788             }
50789         }
50790         if(this.getValue() != this.signatureTmp){
50791             this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
50792             this.isConfirmed = false;
50793         }
50794         e.preventDefault();
50795     },
50796     
50797     /**
50798      * Protected method that will not generally be called directly. It
50799      * is called when the editor creates its toolbar. Override this method if you need to
50800      * add custom toolbar buttons.
50801      * @param {HtmlEditor} editor
50802      */
50803     createToolbar : function(editor){
50804          function btn(id, toggle, handler){
50805             var xid = fid + '-'+ id ;
50806             return {
50807                 id : xid,
50808                 cmd : id,
50809                 cls : 'x-btn-icon x-edit-'+id,
50810                 enableToggle:toggle !== false,
50811                 scope: editor, // was editor...
50812                 handler:handler||editor.relayBtnCmd,
50813                 clickEvent:'mousedown',
50814                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
50815                 tabIndex:-1
50816             };
50817         }
50818         
50819         
50820         var tb = new Roo.Toolbar(editor.wrap.dom.firstChild);
50821         this.tb = tb;
50822         this.tb.add(
50823            {
50824                 cls : ' x-signature-btn x-signature-'+id,
50825                 scope: editor, // was editor...
50826                 handler: this.reset,
50827                 clickEvent:'mousedown',
50828                 text: this.labels.clear
50829             },
50830             {
50831                  xtype : 'Fill',
50832                  xns: Roo.Toolbar
50833             }, 
50834             {
50835                 cls : '  x-signature-btn x-signature-'+id,
50836                 scope: editor, // was editor...
50837                 handler: this.confirmHandler,
50838                 clickEvent:'mousedown',
50839                 text: this.labels.confirm
50840             }
50841         );
50842     
50843     },
50844     //public
50845     /**
50846      * when user is clicked confirm then show this image.....
50847      * 
50848      * @return {String} Image Data URI
50849      */
50850     getImageDataURI : function(){
50851         var svg = this.svgEl.dom.parentNode.innerHTML;
50852         var src = 'data:image/svg+xml;base64,'+window.btoa(svg);
50853         return src; 
50854     },
50855     /**
50856      * 
50857      * @return {Boolean} this.isConfirmed
50858      */
50859     getConfirmed : function(){
50860         return this.isConfirmed;
50861     },
50862     /**
50863      * 
50864      * @return {Number} this.width
50865      */
50866     getWidth : function(){
50867         return this.width;
50868     },
50869     /**
50870      * 
50871      * @return {Number} this.height
50872      */
50873     getHeight : function(){
50874         return this.height;
50875     },
50876     // private
50877     getSignature : function(){
50878         return this.signatureTmp;
50879     },
50880     // private
50881     reset : function(){
50882         this.signatureTmp = '';
50883         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
50884         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', '');
50885         this.isConfirmed = false;
50886         Roo.form.Signature.superclass.reset.call(this);
50887     },
50888     setSignature : function(s){
50889         this.signatureTmp = s;
50890         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
50891         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', s);
50892         this.setValue(s);
50893         this.isConfirmed = false;
50894         Roo.form.Signature.superclass.reset.call(this);
50895     }, 
50896     test : function(){
50897 //        Roo.log(this.signPanel.dom.contentWindow.up())
50898     },
50899     //private
50900     setConfirmed : function(){
50901         
50902         
50903         
50904 //        Roo.log(Roo.get(this.signPanel.dom.contentWindow.r).attr('fill', '#cfc'));
50905     },
50906     // private
50907     confirmHandler : function(){
50908         if(!this.getSignature()){
50909             return;
50910         }
50911         
50912         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#cfc');
50913         this.setValue(this.getSignature());
50914         this.isConfirmed = true;
50915         
50916         this.fireEvent('confirm', this);
50917     },
50918     // private
50919     // Subclasses should provide the validation implementation by overriding this
50920     validateValue : function(value){
50921         if(this.allowBlank){
50922             return true;
50923         }
50924         
50925         if(this.isConfirmed){
50926             return true;
50927         }
50928         return false;
50929     }
50930 });/*
50931  * Based on:
50932  * Ext JS Library 1.1.1
50933  * Copyright(c) 2006-2007, Ext JS, LLC.
50934  *
50935  * Originally Released Under LGPL - original licence link has changed is not relivant.
50936  *
50937  * Fork - LGPL
50938  * <script type="text/javascript">
50939  */
50940  
50941
50942 /**
50943  * @class Roo.form.ComboBox
50944  * @extends Roo.form.TriggerField
50945  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
50946  * @constructor
50947  * Create a new ComboBox.
50948  * @param {Object} config Configuration options
50949  */
50950 Roo.form.Select = function(config){
50951     Roo.form.Select.superclass.constructor.call(this, config);
50952      
50953 };
50954
50955 Roo.extend(Roo.form.Select , Roo.form.ComboBox, {
50956     /**
50957      * @cfg {String/HTMLElement/Element} transform The id, DOM node or element of an existing select to convert to a ComboBox
50958      */
50959     /**
50960      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
50961      * rendering into an Roo.Editor, defaults to false)
50962      */
50963     /**
50964      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
50965      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
50966      */
50967     /**
50968      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
50969      */
50970     /**
50971      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
50972      * the dropdown list (defaults to undefined, with no header element)
50973      */
50974
50975      /**
50976      * @cfg {String/Roo.Template} tpl The template to use to render the output
50977      */
50978      
50979     // private
50980     defaultAutoCreate : {tag: "select"  },
50981     /**
50982      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
50983      */
50984     listWidth: undefined,
50985     /**
50986      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
50987      * mode = 'remote' or 'text' if mode = 'local')
50988      */
50989     displayField: undefined,
50990     /**
50991      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
50992      * mode = 'remote' or 'value' if mode = 'local'). 
50993      * Note: use of a valueField requires the user make a selection
50994      * in order for a value to be mapped.
50995      */
50996     valueField: undefined,
50997     
50998     
50999     /**
51000      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
51001      * field's data value (defaults to the underlying DOM element's name)
51002      */
51003     hiddenName: undefined,
51004     /**
51005      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
51006      */
51007     listClass: '',
51008     /**
51009      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
51010      */
51011     selectedClass: 'x-combo-selected',
51012     /**
51013      * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
51014      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-arrow-trigger'
51015      * which displays a downward arrow icon).
51016      */
51017     triggerClass : 'x-form-arrow-trigger',
51018     /**
51019      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
51020      */
51021     shadow:'sides',
51022     /**
51023      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
51024      * anchor positions (defaults to 'tl-bl')
51025      */
51026     listAlign: 'tl-bl?',
51027     /**
51028      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
51029      */
51030     maxHeight: 300,
51031     /**
51032      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
51033      * query specified by the allQuery config option (defaults to 'query')
51034      */
51035     triggerAction: 'query',
51036     /**
51037      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
51038      * (defaults to 4, does not apply if editable = false)
51039      */
51040     minChars : 4,
51041     /**
51042      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
51043      * delay (typeAheadDelay) if it matches a known value (defaults to false)
51044      */
51045     typeAhead: false,
51046     /**
51047      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
51048      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
51049      */
51050     queryDelay: 500,
51051     /**
51052      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
51053      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
51054      */
51055     pageSize: 0,
51056     /**
51057      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
51058      * when editable = true (defaults to false)
51059      */
51060     selectOnFocus:false,
51061     /**
51062      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
51063      */
51064     queryParam: 'query',
51065     /**
51066      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
51067      * when mode = 'remote' (defaults to 'Loading...')
51068      */
51069     loadingText: 'Loading...',
51070     /**
51071      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
51072      */
51073     resizable: false,
51074     /**
51075      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
51076      */
51077     handleHeight : 8,
51078     /**
51079      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
51080      * traditional select (defaults to true)
51081      */
51082     editable: true,
51083     /**
51084      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
51085      */
51086     allQuery: '',
51087     /**
51088      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
51089      */
51090     mode: 'remote',
51091     /**
51092      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
51093      * listWidth has a higher value)
51094      */
51095     minListWidth : 70,
51096     /**
51097      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
51098      * allow the user to set arbitrary text into the field (defaults to false)
51099      */
51100     forceSelection:false,
51101     /**
51102      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
51103      * if typeAhead = true (defaults to 250)
51104      */
51105     typeAheadDelay : 250,
51106     /**
51107      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
51108      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
51109      */
51110     valueNotFoundText : undefined,
51111     
51112     /**
51113      * @cfg {String} defaultValue The value displayed after loading the store.
51114      */
51115     defaultValue: '',
51116     
51117     /**
51118      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
51119      */
51120     blockFocus : false,
51121     
51122     /**
51123      * @cfg {Boolean} disableClear Disable showing of clear button.
51124      */
51125     disableClear : false,
51126     /**
51127      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
51128      */
51129     alwaysQuery : false,
51130     
51131     //private
51132     addicon : false,
51133     editicon: false,
51134     
51135     // element that contains real text value.. (when hidden is used..)
51136      
51137     // private
51138     onRender : function(ct, position){
51139         Roo.form.Field.prototype.onRender.call(this, ct, position);
51140         
51141         if(this.store){
51142             this.store.on('beforeload', this.onBeforeLoad, this);
51143             this.store.on('load', this.onLoad, this);
51144             this.store.on('loadexception', this.onLoadException, this);
51145             this.store.load({});
51146         }
51147         
51148         
51149         
51150     },
51151
51152     // private
51153     initEvents : function(){
51154         //Roo.form.ComboBox.superclass.initEvents.call(this);
51155  
51156     },
51157
51158     onDestroy : function(){
51159        
51160         if(this.store){
51161             this.store.un('beforeload', this.onBeforeLoad, this);
51162             this.store.un('load', this.onLoad, this);
51163             this.store.un('loadexception', this.onLoadException, this);
51164         }
51165         //Roo.form.ComboBox.superclass.onDestroy.call(this);
51166     },
51167
51168     // private
51169     fireKey : function(e){
51170         if(e.isNavKeyPress() && !this.list.isVisible()){
51171             this.fireEvent("specialkey", this, e);
51172         }
51173     },
51174
51175     // private
51176     onResize: function(w, h){
51177         
51178         return; 
51179     
51180         
51181     },
51182
51183     /**
51184      * Allow or prevent the user from directly editing the field text.  If false is passed,
51185      * the user will only be able to select from the items defined in the dropdown list.  This method
51186      * is the runtime equivalent of setting the 'editable' config option at config time.
51187      * @param {Boolean} value True to allow the user to directly edit the field text
51188      */
51189     setEditable : function(value){
51190          
51191     },
51192
51193     // private
51194     onBeforeLoad : function(){
51195         
51196         Roo.log("Select before load");
51197         return;
51198     
51199         this.innerList.update(this.loadingText ?
51200                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
51201         //this.restrictHeight();
51202         this.selectedIndex = -1;
51203     },
51204
51205     // private
51206     onLoad : function(){
51207
51208     
51209         var dom = this.el.dom;
51210         dom.innerHTML = '';
51211          var od = dom.ownerDocument;
51212          
51213         if (this.emptyText) {
51214             var op = od.createElement('option');
51215             op.setAttribute('value', '');
51216             op.innerHTML = String.format('{0}', this.emptyText);
51217             dom.appendChild(op);
51218         }
51219         if(this.store.getCount() > 0){
51220            
51221             var vf = this.valueField;
51222             var df = this.displayField;
51223             this.store.data.each(function(r) {
51224                 // which colmsn to use... testing - cdoe / title..
51225                 var op = od.createElement('option');
51226                 op.setAttribute('value', r.data[vf]);
51227                 op.innerHTML = String.format('{0}', r.data[df]);
51228                 dom.appendChild(op);
51229             });
51230             if (typeof(this.defaultValue != 'undefined')) {
51231                 this.setValue(this.defaultValue);
51232             }
51233             
51234              
51235         }else{
51236             //this.onEmptyResults();
51237         }
51238         //this.el.focus();
51239     },
51240     // private
51241     onLoadException : function()
51242     {
51243         dom.innerHTML = '';
51244             
51245         Roo.log("Select on load exception");
51246         return;
51247     
51248         this.collapse();
51249         Roo.log(this.store.reader.jsonData);
51250         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
51251             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
51252         }
51253         
51254         
51255     },
51256     // private
51257     onTypeAhead : function(){
51258          
51259     },
51260
51261     // private
51262     onSelect : function(record, index){
51263         Roo.log('on select?');
51264         return;
51265         if(this.fireEvent('beforeselect', this, record, index) !== false){
51266             this.setFromData(index > -1 ? record.data : false);
51267             this.collapse();
51268             this.fireEvent('select', this, record, index);
51269         }
51270     },
51271
51272     /**
51273      * Returns the currently selected field value or empty string if no value is set.
51274      * @return {String} value The selected value
51275      */
51276     getValue : function(){
51277         var dom = this.el.dom;
51278         this.value = dom.options[dom.selectedIndex].value;
51279         return this.value;
51280         
51281     },
51282
51283     /**
51284      * Clears any text/value currently set in the field
51285      */
51286     clearValue : function(){
51287         this.value = '';
51288         this.el.dom.selectedIndex = this.emptyText ? 0 : -1;
51289         
51290     },
51291
51292     /**
51293      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
51294      * will be displayed in the field.  If the value does not match the data value of an existing item,
51295      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
51296      * Otherwise the field will be blank (although the value will still be set).
51297      * @param {String} value The value to match
51298      */
51299     setValue : function(v){
51300         var d = this.el.dom;
51301         for (var i =0; i < d.options.length;i++) {
51302             if (v == d.options[i].value) {
51303                 d.selectedIndex = i;
51304                 this.value = v;
51305                 return;
51306             }
51307         }
51308         this.clearValue();
51309     },
51310     /**
51311      * @property {Object} the last set data for the element
51312      */
51313     
51314     lastData : false,
51315     /**
51316      * Sets the value of the field based on a object which is related to the record format for the store.
51317      * @param {Object} value the value to set as. or false on reset?
51318      */
51319     setFromData : function(o){
51320         Roo.log('setfrom data?');
51321          
51322         
51323         
51324     },
51325     // private
51326     reset : function(){
51327         this.clearValue();
51328     },
51329     // private
51330     findRecord : function(prop, value){
51331         
51332         return false;
51333     
51334         var record;
51335         if(this.store.getCount() > 0){
51336             this.store.each(function(r){
51337                 if(r.data[prop] == value){
51338                     record = r;
51339                     return false;
51340                 }
51341                 return true;
51342             });
51343         }
51344         return record;
51345     },
51346     
51347     getName: function()
51348     {
51349         // returns hidden if it's set..
51350         if (!this.rendered) {return ''};
51351         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
51352         
51353     },
51354      
51355
51356     
51357
51358     // private
51359     onEmptyResults : function(){
51360         Roo.log('empty results');
51361         //this.collapse();
51362     },
51363
51364     /**
51365      * Returns true if the dropdown list is expanded, else false.
51366      */
51367     isExpanded : function(){
51368         return false;
51369     },
51370
51371     /**
51372      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
51373      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
51374      * @param {String} value The data value of the item to select
51375      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
51376      * selected item if it is not currently in view (defaults to true)
51377      * @return {Boolean} True if the value matched an item in the list, else false
51378      */
51379     selectByValue : function(v, scrollIntoView){
51380         Roo.log('select By Value');
51381         return false;
51382     
51383         if(v !== undefined && v !== null){
51384             var r = this.findRecord(this.valueField || this.displayField, v);
51385             if(r){
51386                 this.select(this.store.indexOf(r), scrollIntoView);
51387                 return true;
51388             }
51389         }
51390         return false;
51391     },
51392
51393     /**
51394      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
51395      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
51396      * @param {Number} index The zero-based index of the list item to select
51397      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
51398      * selected item if it is not currently in view (defaults to true)
51399      */
51400     select : function(index, scrollIntoView){
51401         Roo.log('select ');
51402         return  ;
51403         
51404         this.selectedIndex = index;
51405         this.view.select(index);
51406         if(scrollIntoView !== false){
51407             var el = this.view.getNode(index);
51408             if(el){
51409                 this.innerList.scrollChildIntoView(el, false);
51410             }
51411         }
51412     },
51413
51414       
51415
51416     // private
51417     validateBlur : function(){
51418         
51419         return;
51420         
51421     },
51422
51423     // private
51424     initQuery : function(){
51425         this.doQuery(this.getRawValue());
51426     },
51427
51428     // private
51429     doForce : function(){
51430         if(this.el.dom.value.length > 0){
51431             this.el.dom.value =
51432                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
51433              
51434         }
51435     },
51436
51437     /**
51438      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
51439      * query allowing the query action to be canceled if needed.
51440      * @param {String} query The SQL query to execute
51441      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
51442      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
51443      * saved in the current store (defaults to false)
51444      */
51445     doQuery : function(q, forceAll){
51446         
51447         Roo.log('doQuery?');
51448         if(q === undefined || q === null){
51449             q = '';
51450         }
51451         var qe = {
51452             query: q,
51453             forceAll: forceAll,
51454             combo: this,
51455             cancel:false
51456         };
51457         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
51458             return false;
51459         }
51460         q = qe.query;
51461         forceAll = qe.forceAll;
51462         if(forceAll === true || (q.length >= this.minChars)){
51463             if(this.lastQuery != q || this.alwaysQuery){
51464                 this.lastQuery = q;
51465                 if(this.mode == 'local'){
51466                     this.selectedIndex = -1;
51467                     if(forceAll){
51468                         this.store.clearFilter();
51469                     }else{
51470                         this.store.filter(this.displayField, q);
51471                     }
51472                     this.onLoad();
51473                 }else{
51474                     this.store.baseParams[this.queryParam] = q;
51475                     this.store.load({
51476                         params: this.getParams(q)
51477                     });
51478                     this.expand();
51479                 }
51480             }else{
51481                 this.selectedIndex = -1;
51482                 this.onLoad();   
51483             }
51484         }
51485     },
51486
51487     // private
51488     getParams : function(q){
51489         var p = {};
51490         //p[this.queryParam] = q;
51491         if(this.pageSize){
51492             p.start = 0;
51493             p.limit = this.pageSize;
51494         }
51495         return p;
51496     },
51497
51498     /**
51499      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
51500      */
51501     collapse : function(){
51502         
51503     },
51504
51505     // private
51506     collapseIf : function(e){
51507         
51508     },
51509
51510     /**
51511      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
51512      */
51513     expand : function(){
51514         
51515     } ,
51516
51517     // private
51518      
51519
51520     /** 
51521     * @cfg {Boolean} grow 
51522     * @hide 
51523     */
51524     /** 
51525     * @cfg {Number} growMin 
51526     * @hide 
51527     */
51528     /** 
51529     * @cfg {Number} growMax 
51530     * @hide 
51531     */
51532     /**
51533      * @hide
51534      * @method autoSize
51535      */
51536     
51537     setWidth : function()
51538     {
51539         
51540     },
51541     getResizeEl : function(){
51542         return this.el;
51543     }
51544 });//<script type="text/javasscript">
51545  
51546
51547 /**
51548  * @class Roo.DDView
51549  * A DnD enabled version of Roo.View.
51550  * @param {Element/String} container The Element in which to create the View.
51551  * @param {String} tpl The template string used to create the markup for each element of the View
51552  * @param {Object} config The configuration properties. These include all the config options of
51553  * {@link Roo.View} plus some specific to this class.<br>
51554  * <p>
51555  * Drag/drop is implemented by adding {@link Roo.data.Record}s to the target DDView. If copying is
51556  * not being performed, the original {@link Roo.data.Record} is removed from the source DDView.<br>
51557  * <p>
51558  * The following extra CSS rules are needed to provide insertion point highlighting:<pre><code>
51559 .x-view-drag-insert-above {
51560         border-top:1px dotted #3366cc;
51561 }
51562 .x-view-drag-insert-below {
51563         border-bottom:1px dotted #3366cc;
51564 }
51565 </code></pre>
51566  * 
51567  */
51568  
51569 Roo.DDView = function(container, tpl, config) {
51570     Roo.DDView.superclass.constructor.apply(this, arguments);
51571     this.getEl().setStyle("outline", "0px none");
51572     this.getEl().unselectable();
51573     if (this.dragGroup) {
51574         this.setDraggable(this.dragGroup.split(","));
51575     }
51576     if (this.dropGroup) {
51577         this.setDroppable(this.dropGroup.split(","));
51578     }
51579     if (this.deletable) {
51580         this.setDeletable();
51581     }
51582     this.isDirtyFlag = false;
51583         this.addEvents({
51584                 "drop" : true
51585         });
51586 };
51587
51588 Roo.extend(Roo.DDView, Roo.View, {
51589 /**     @cfg {String/Array} dragGroup The ddgroup name(s) for the View's DragZone. */
51590 /**     @cfg {String/Array} dropGroup The ddgroup name(s) for the View's DropZone. */
51591 /**     @cfg {Boolean} copy Causes drag operations to copy nodes rather than move. */
51592 /**     @cfg {Boolean} allowCopy Causes ctrl/drag operations to copy nodes rather than move. */
51593
51594         isFormField: true,
51595
51596         reset: Roo.emptyFn,
51597         
51598         clearInvalid: Roo.form.Field.prototype.clearInvalid,
51599
51600         validate: function() {
51601                 return true;
51602         },
51603         
51604         destroy: function() {
51605                 this.purgeListeners();
51606                 this.getEl.removeAllListeners();
51607                 this.getEl().remove();
51608                 if (this.dragZone) {
51609                         if (this.dragZone.destroy) {
51610                                 this.dragZone.destroy();
51611                         }
51612                 }
51613                 if (this.dropZone) {
51614                         if (this.dropZone.destroy) {
51615                                 this.dropZone.destroy();
51616                         }
51617                 }
51618         },
51619
51620 /**     Allows this class to be an Roo.form.Field so it can be found using {@link Roo.form.BasicForm#findField}. */
51621         getName: function() {
51622                 return this.name;
51623         },
51624
51625 /**     Loads the View from a JSON string representing the Records to put into the Store. */
51626         setValue: function(v) {
51627                 if (!this.store) {
51628                         throw "DDView.setValue(). DDView must be constructed with a valid Store";
51629                 }
51630                 var data = {};
51631                 data[this.store.reader.meta.root] = v ? [].concat(v) : [];
51632                 this.store.proxy = new Roo.data.MemoryProxy(data);
51633                 this.store.load();
51634         },
51635
51636 /**     @return {String} a parenthesised list of the ids of the Records in the View. */
51637         getValue: function() {
51638                 var result = '(';
51639                 this.store.each(function(rec) {
51640                         result += rec.id + ',';
51641                 });
51642                 return result.substr(0, result.length - 1) + ')';
51643         },
51644         
51645         getIds: function() {
51646                 var i = 0, result = new Array(this.store.getCount());
51647                 this.store.each(function(rec) {
51648                         result[i++] = rec.id;
51649                 });
51650                 return result;
51651         },
51652         
51653         isDirty: function() {
51654                 return this.isDirtyFlag;
51655         },
51656
51657 /**
51658  *      Part of the Roo.dd.DropZone interface. If no target node is found, the
51659  *      whole Element becomes the target, and this causes the drop gesture to append.
51660  */
51661     getTargetFromEvent : function(e) {
51662                 var target = e.getTarget();
51663                 while ((target !== null) && (target.parentNode != this.el.dom)) {
51664                 target = target.parentNode;
51665                 }
51666                 if (!target) {
51667                         target = this.el.dom.lastChild || this.el.dom;
51668                 }
51669                 return target;
51670     },
51671
51672 /**
51673  *      Create the drag data which consists of an object which has the property "ddel" as
51674  *      the drag proxy element. 
51675  */
51676     getDragData : function(e) {
51677         var target = this.findItemFromChild(e.getTarget());
51678                 if(target) {
51679                         this.handleSelection(e);
51680                         var selNodes = this.getSelectedNodes();
51681             var dragData = {
51682                 source: this,
51683                 copy: this.copy || (this.allowCopy && e.ctrlKey),
51684                 nodes: selNodes,
51685                 records: []
51686                         };
51687                         var selectedIndices = this.getSelectedIndexes();
51688                         for (var i = 0; i < selectedIndices.length; i++) {
51689                                 dragData.records.push(this.store.getAt(selectedIndices[i]));
51690                         }
51691                         if (selNodes.length == 1) {
51692                                 dragData.ddel = target.cloneNode(true); // the div element
51693                         } else {
51694                                 var div = document.createElement('div'); // create the multi element drag "ghost"
51695                                 div.className = 'multi-proxy';
51696                                 for (var i = 0, len = selNodes.length; i < len; i++) {
51697                                         div.appendChild(selNodes[i].cloneNode(true));
51698                                 }
51699                                 dragData.ddel = div;
51700                         }
51701             //console.log(dragData)
51702             //console.log(dragData.ddel.innerHTML)
51703                         return dragData;
51704                 }
51705         //console.log('nodragData')
51706                 return false;
51707     },
51708     
51709 /**     Specify to which ddGroup items in this DDView may be dragged. */
51710     setDraggable: function(ddGroup) {
51711         if (ddGroup instanceof Array) {
51712                 Roo.each(ddGroup, this.setDraggable, this);
51713                 return;
51714         }
51715         if (this.dragZone) {
51716                 this.dragZone.addToGroup(ddGroup);
51717         } else {
51718                         this.dragZone = new Roo.dd.DragZone(this.getEl(), {
51719                                 containerScroll: true,
51720                                 ddGroup: ddGroup 
51721
51722                         });
51723 //                      Draggability implies selection. DragZone's mousedown selects the element.
51724                         if (!this.multiSelect) { this.singleSelect = true; }
51725
51726 //                      Wire the DragZone's handlers up to methods in *this*
51727                         this.dragZone.getDragData = this.getDragData.createDelegate(this);
51728                 }
51729     },
51730
51731 /**     Specify from which ddGroup this DDView accepts drops. */
51732     setDroppable: function(ddGroup) {
51733         if (ddGroup instanceof Array) {
51734                 Roo.each(ddGroup, this.setDroppable, this);
51735                 return;
51736         }
51737         if (this.dropZone) {
51738                 this.dropZone.addToGroup(ddGroup);
51739         } else {
51740                         this.dropZone = new Roo.dd.DropZone(this.getEl(), {
51741                                 containerScroll: true,
51742                                 ddGroup: ddGroup
51743                         });
51744
51745 //                      Wire the DropZone's handlers up to methods in *this*
51746                         this.dropZone.getTargetFromEvent = this.getTargetFromEvent.createDelegate(this);
51747                         this.dropZone.onNodeEnter = this.onNodeEnter.createDelegate(this);
51748                         this.dropZone.onNodeOver = this.onNodeOver.createDelegate(this);
51749                         this.dropZone.onNodeOut = this.onNodeOut.createDelegate(this);
51750                         this.dropZone.onNodeDrop = this.onNodeDrop.createDelegate(this);
51751                 }
51752     },
51753
51754 /**     Decide whether to drop above or below a View node. */
51755     getDropPoint : function(e, n, dd){
51756         if (n == this.el.dom) { return "above"; }
51757                 var t = Roo.lib.Dom.getY(n), b = t + n.offsetHeight;
51758                 var c = t + (b - t) / 2;
51759                 var y = Roo.lib.Event.getPageY(e);
51760                 if(y <= c) {
51761                         return "above";
51762                 }else{
51763                         return "below";
51764                 }
51765     },
51766
51767     onNodeEnter : function(n, dd, e, data){
51768                 return false;
51769     },
51770     
51771     onNodeOver : function(n, dd, e, data){
51772                 var pt = this.getDropPoint(e, n, dd);
51773                 // set the insert point style on the target node
51774                 var dragElClass = this.dropNotAllowed;
51775                 if (pt) {
51776                         var targetElClass;
51777                         if (pt == "above"){
51778                                 dragElClass = n.previousSibling ? "x-tree-drop-ok-between" : "x-tree-drop-ok-above";
51779                                 targetElClass = "x-view-drag-insert-above";
51780                         } else {
51781                                 dragElClass = n.nextSibling ? "x-tree-drop-ok-between" : "x-tree-drop-ok-below";
51782                                 targetElClass = "x-view-drag-insert-below";
51783                         }
51784                         if (this.lastInsertClass != targetElClass){
51785                                 Roo.fly(n).replaceClass(this.lastInsertClass, targetElClass);
51786                                 this.lastInsertClass = targetElClass;
51787                         }
51788                 }
51789                 return dragElClass;
51790         },
51791
51792     onNodeOut : function(n, dd, e, data){
51793                 this.removeDropIndicators(n);
51794     },
51795
51796     onNodeDrop : function(n, dd, e, data){
51797         if (this.fireEvent("drop", this, n, dd, e, data) === false) {
51798                 return false;
51799         }
51800         var pt = this.getDropPoint(e, n, dd);
51801                 var insertAt = (n == this.el.dom) ? this.nodes.length : n.nodeIndex;
51802                 if (pt == "below") { insertAt++; }
51803                 for (var i = 0; i < data.records.length; i++) {
51804                         var r = data.records[i];
51805                         var dup = this.store.getById(r.id);
51806                         if (dup && (dd != this.dragZone)) {
51807                                 Roo.fly(this.getNode(this.store.indexOf(dup))).frame("red", 1);
51808                         } else {
51809                                 if (data.copy) {
51810                                         this.store.insert(insertAt++, r.copy());
51811                                 } else {
51812                                         data.source.isDirtyFlag = true;
51813                                         r.store.remove(r);
51814                                         this.store.insert(insertAt++, r);
51815                                 }
51816                                 this.isDirtyFlag = true;
51817                         }
51818                 }
51819                 this.dragZone.cachedTarget = null;
51820                 return true;
51821     },
51822
51823     removeDropIndicators : function(n){
51824                 if(n){
51825                         Roo.fly(n).removeClass([
51826                                 "x-view-drag-insert-above",
51827                                 "x-view-drag-insert-below"]);
51828                         this.lastInsertClass = "_noclass";
51829                 }
51830     },
51831
51832 /**
51833  *      Utility method. Add a delete option to the DDView's context menu.
51834  *      @param {String} imageUrl The URL of the "delete" icon image.
51835  */
51836         setDeletable: function(imageUrl) {
51837                 if (!this.singleSelect && !this.multiSelect) {
51838                         this.singleSelect = true;
51839                 }
51840                 var c = this.getContextMenu();
51841                 this.contextMenu.on("itemclick", function(item) {
51842                         switch (item.id) {
51843                                 case "delete":
51844                                         this.remove(this.getSelectedIndexes());
51845                                         break;
51846                         }
51847                 }, this);
51848                 this.contextMenu.add({
51849                         icon: imageUrl,
51850                         id: "delete",
51851                         text: 'Delete'
51852                 });
51853         },
51854         
51855 /**     Return the context menu for this DDView. */
51856         getContextMenu: function() {
51857                 if (!this.contextMenu) {
51858 //                      Create the View's context menu
51859                         this.contextMenu = new Roo.menu.Menu({
51860                                 id: this.id + "-contextmenu"
51861                         });
51862                         this.el.on("contextmenu", this.showContextMenu, this);
51863                 }
51864                 return this.contextMenu;
51865         },
51866         
51867         disableContextMenu: function() {
51868                 if (this.contextMenu) {
51869                         this.el.un("contextmenu", this.showContextMenu, this);
51870                 }
51871         },
51872
51873         showContextMenu: function(e, item) {
51874         item = this.findItemFromChild(e.getTarget());
51875                 if (item) {
51876                         e.stopEvent();
51877                         this.select(this.getNode(item), this.multiSelect && e.ctrlKey, true);
51878                         this.contextMenu.showAt(e.getXY());
51879             }
51880     },
51881
51882 /**
51883  *      Remove {@link Roo.data.Record}s at the specified indices.
51884  *      @param {Array/Number} selectedIndices The index (or Array of indices) of Records to remove.
51885  */
51886     remove: function(selectedIndices) {
51887                 selectedIndices = [].concat(selectedIndices);
51888                 for (var i = 0; i < selectedIndices.length; i++) {
51889                         var rec = this.store.getAt(selectedIndices[i]);
51890                         this.store.remove(rec);
51891                 }
51892     },
51893
51894 /**
51895  *      Double click fires the event, but also, if this is draggable, and there is only one other
51896  *      related DropZone, it transfers the selected node.
51897  */
51898     onDblClick : function(e){
51899         var item = this.findItemFromChild(e.getTarget());
51900         if(item){
51901             if (this.fireEvent("dblclick", this, this.indexOf(item), item, e) === false) {
51902                 return false;
51903             }
51904             if (this.dragGroup) {
51905                     var targets = Roo.dd.DragDropMgr.getRelated(this.dragZone, true);
51906                     while (targets.indexOf(this.dropZone) > -1) {
51907                             targets.remove(this.dropZone);
51908                                 }
51909                     if (targets.length == 1) {
51910                                         this.dragZone.cachedTarget = null;
51911                         var el = Roo.get(targets[0].getEl());
51912                         var box = el.getBox(true);
51913                         targets[0].onNodeDrop(el.dom, {
51914                                 target: el.dom,
51915                                 xy: [box.x, box.y + box.height - 1]
51916                         }, null, this.getDragData(e));
51917                     }
51918                 }
51919         }
51920     },
51921     
51922     handleSelection: function(e) {
51923                 this.dragZone.cachedTarget = null;
51924         var item = this.findItemFromChild(e.getTarget());
51925         if (!item) {
51926                 this.clearSelections(true);
51927                 return;
51928         }
51929                 if (item && (this.multiSelect || this.singleSelect)){
51930                         if(this.multiSelect && e.shiftKey && (!e.ctrlKey) && this.lastSelection){
51931                                 this.select(this.getNodes(this.indexOf(this.lastSelection), item.nodeIndex), false);
51932                         }else if (this.isSelected(this.getNode(item)) && e.ctrlKey){
51933                                 this.unselect(item);
51934                         } else {
51935                                 this.select(item, this.multiSelect && e.ctrlKey);
51936                                 this.lastSelection = item;
51937                         }
51938                 }
51939     },
51940
51941     onItemClick : function(item, index, e){
51942                 if(this.fireEvent("beforeclick", this, index, item, e) === false){
51943                         return false;
51944                 }
51945                 return true;
51946     },
51947
51948     unselect : function(nodeInfo, suppressEvent){
51949                 var node = this.getNode(nodeInfo);
51950                 if(node && this.isSelected(node)){
51951                         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
51952                                 Roo.fly(node).removeClass(this.selectedClass);
51953                                 this.selections.remove(node);
51954                                 if(!suppressEvent){
51955                                         this.fireEvent("selectionchange", this, this.selections);
51956                                 }
51957                         }
51958                 }
51959     }
51960 });
51961 /*
51962  * Based on:
51963  * Ext JS Library 1.1.1
51964  * Copyright(c) 2006-2007, Ext JS, LLC.
51965  *
51966  * Originally Released Under LGPL - original licence link has changed is not relivant.
51967  *
51968  * Fork - LGPL
51969  * <script type="text/javascript">
51970  */
51971  
51972 /**
51973  * @class Roo.LayoutManager
51974  * @extends Roo.util.Observable
51975  * Base class for layout managers.
51976  */
51977 Roo.LayoutManager = function(container, config){
51978     Roo.LayoutManager.superclass.constructor.call(this);
51979     this.el = Roo.get(container);
51980     // ie scrollbar fix
51981     if(this.el.dom == document.body && Roo.isIE && !config.allowScroll){
51982         document.body.scroll = "no";
51983     }else if(this.el.dom != document.body && this.el.getStyle('position') == 'static'){
51984         this.el.position('relative');
51985     }
51986     this.id = this.el.id;
51987     this.el.addClass("x-layout-container");
51988     /** false to disable window resize monitoring @type Boolean */
51989     this.monitorWindowResize = true;
51990     this.regions = {};
51991     this.addEvents({
51992         /**
51993          * @event layout
51994          * Fires when a layout is performed. 
51995          * @param {Roo.LayoutManager} this
51996          */
51997         "layout" : true,
51998         /**
51999          * @event regionresized
52000          * Fires when the user resizes a region. 
52001          * @param {Roo.LayoutRegion} region The resized region
52002          * @param {Number} newSize The new size (width for east/west, height for north/south)
52003          */
52004         "regionresized" : true,
52005         /**
52006          * @event regioncollapsed
52007          * Fires when a region is collapsed. 
52008          * @param {Roo.LayoutRegion} region The collapsed region
52009          */
52010         "regioncollapsed" : true,
52011         /**
52012          * @event regionexpanded
52013          * Fires when a region is expanded.  
52014          * @param {Roo.LayoutRegion} region The expanded region
52015          */
52016         "regionexpanded" : true
52017     });
52018     this.updating = false;
52019     Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
52020 };
52021
52022 Roo.extend(Roo.LayoutManager, Roo.util.Observable, {
52023     /**
52024      * Returns true if this layout is currently being updated
52025      * @return {Boolean}
52026      */
52027     isUpdating : function(){
52028         return this.updating; 
52029     },
52030     
52031     /**
52032      * Suspend the LayoutManager from doing auto-layouts while
52033      * making multiple add or remove calls
52034      */
52035     beginUpdate : function(){
52036         this.updating = true;    
52037     },
52038     
52039     /**
52040      * Restore auto-layouts and optionally disable the manager from performing a layout
52041      * @param {Boolean} noLayout true to disable a layout update 
52042      */
52043     endUpdate : function(noLayout){
52044         this.updating = false;
52045         if(!noLayout){
52046             this.layout();
52047         }    
52048     },
52049     
52050     layout: function(){
52051         
52052     },
52053     
52054     onRegionResized : function(region, newSize){
52055         this.fireEvent("regionresized", region, newSize);
52056         this.layout();
52057     },
52058     
52059     onRegionCollapsed : function(region){
52060         this.fireEvent("regioncollapsed", region);
52061     },
52062     
52063     onRegionExpanded : function(region){
52064         this.fireEvent("regionexpanded", region);
52065     },
52066         
52067     /**
52068      * Returns the size of the current view. This method normalizes document.body and element embedded layouts and
52069      * performs box-model adjustments.
52070      * @return {Object} The size as an object {width: (the width), height: (the height)}
52071      */
52072     getViewSize : function(){
52073         var size;
52074         if(this.el.dom != document.body){
52075             size = this.el.getSize();
52076         }else{
52077             size = {width: Roo.lib.Dom.getViewWidth(), height: Roo.lib.Dom.getViewHeight()};
52078         }
52079         size.width -= this.el.getBorderWidth("lr")-this.el.getPadding("lr");
52080         size.height -= this.el.getBorderWidth("tb")-this.el.getPadding("tb");
52081         return size;
52082     },
52083     
52084     /**
52085      * Returns the Element this layout is bound to.
52086      * @return {Roo.Element}
52087      */
52088     getEl : function(){
52089         return this.el;
52090     },
52091     
52092     /**
52093      * Returns the specified region.
52094      * @param {String} target The region key ('center', 'north', 'south', 'east' or 'west')
52095      * @return {Roo.LayoutRegion}
52096      */
52097     getRegion : function(target){
52098         return this.regions[target.toLowerCase()];
52099     },
52100     
52101     onWindowResize : function(){
52102         if(this.monitorWindowResize){
52103             this.layout();
52104         }
52105     }
52106 });/*
52107  * Based on:
52108  * Ext JS Library 1.1.1
52109  * Copyright(c) 2006-2007, Ext JS, LLC.
52110  *
52111  * Originally Released Under LGPL - original licence link has changed is not relivant.
52112  *
52113  * Fork - LGPL
52114  * <script type="text/javascript">
52115  */
52116 /**
52117  * @class Roo.BorderLayout
52118  * @extends Roo.LayoutManager
52119  * This class represents a common layout manager used in desktop applications. For screenshots and more details,
52120  * please see: <br><br>
52121  * <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>
52122  * <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>
52123  * Example:
52124  <pre><code>
52125  var layout = new Roo.BorderLayout(document.body, {
52126     north: {
52127         initialSize: 25,
52128         titlebar: false
52129     },
52130     west: {
52131         split:true,
52132         initialSize: 200,
52133         minSize: 175,
52134         maxSize: 400,
52135         titlebar: true,
52136         collapsible: true
52137     },
52138     east: {
52139         split:true,
52140         initialSize: 202,
52141         minSize: 175,
52142         maxSize: 400,
52143         titlebar: true,
52144         collapsible: true
52145     },
52146     south: {
52147         split:true,
52148         initialSize: 100,
52149         minSize: 100,
52150         maxSize: 200,
52151         titlebar: true,
52152         collapsible: true
52153     },
52154     center: {
52155         titlebar: true,
52156         autoScroll:true,
52157         resizeTabs: true,
52158         minTabWidth: 50,
52159         preferredTabWidth: 150
52160     }
52161 });
52162
52163 // shorthand
52164 var CP = Roo.ContentPanel;
52165
52166 layout.beginUpdate();
52167 layout.add("north", new CP("north", "North"));
52168 layout.add("south", new CP("south", {title: "South", closable: true}));
52169 layout.add("west", new CP("west", {title: "West"}));
52170 layout.add("east", new CP("autoTabs", {title: "Auto Tabs", closable: true}));
52171 layout.add("center", new CP("center1", {title: "Close Me", closable: true}));
52172 layout.add("center", new CP("center2", {title: "Center Panel", closable: false}));
52173 layout.getRegion("center").showPanel("center1");
52174 layout.endUpdate();
52175 </code></pre>
52176
52177 <b>The container the layout is rendered into can be either the body element or any other element.
52178 If it is not the body element, the container needs to either be an absolute positioned element,
52179 or you will need to add "position:relative" to the css of the container.  You will also need to specify
52180 the container size if it is not the body element.</b>
52181
52182 * @constructor
52183 * Create a new BorderLayout
52184 * @param {String/HTMLElement/Element} container The container this layout is bound to
52185 * @param {Object} config Configuration options
52186  */
52187 Roo.BorderLayout = function(container, config){
52188     config = config || {};
52189     Roo.BorderLayout.superclass.constructor.call(this, container, config);
52190     this.factory = config.factory || Roo.BorderLayout.RegionFactory;
52191     for(var i = 0, len = this.factory.validRegions.length; i < len; i++) {
52192         var target = this.factory.validRegions[i];
52193         if(config[target]){
52194             this.addRegion(target, config[target]);
52195         }
52196     }
52197 };
52198
52199 Roo.extend(Roo.BorderLayout, Roo.LayoutManager, {
52200     /**
52201      * Creates and adds a new region if it doesn't already exist.
52202      * @param {String} target The target region key (north, south, east, west or center).
52203      * @param {Object} config The regions config object
52204      * @return {BorderLayoutRegion} The new region
52205      */
52206     addRegion : function(target, config){
52207         if(!this.regions[target]){
52208             var r = this.factory.create(target, this, config);
52209             this.bindRegion(target, r);
52210         }
52211         return this.regions[target];
52212     },
52213
52214     // private (kinda)
52215     bindRegion : function(name, r){
52216         this.regions[name] = r;
52217         r.on("visibilitychange", this.layout, this);
52218         r.on("paneladded", this.layout, this);
52219         r.on("panelremoved", this.layout, this);
52220         r.on("invalidated", this.layout, this);
52221         r.on("resized", this.onRegionResized, this);
52222         r.on("collapsed", this.onRegionCollapsed, this);
52223         r.on("expanded", this.onRegionExpanded, this);
52224     },
52225
52226     /**
52227      * Performs a layout update.
52228      */
52229     layout : function(){
52230         if(this.updating) {
52231             return;
52232         }
52233         var size = this.getViewSize();
52234         var w = size.width;
52235         var h = size.height;
52236         var centerW = w;
52237         var centerH = h;
52238         var centerY = 0;
52239         var centerX = 0;
52240         //var x = 0, y = 0;
52241
52242         var rs = this.regions;
52243         var north = rs["north"];
52244         var south = rs["south"]; 
52245         var west = rs["west"];
52246         var east = rs["east"];
52247         var center = rs["center"];
52248         //if(this.hideOnLayout){ // not supported anymore
52249             //c.el.setStyle("display", "none");
52250         //}
52251         if(north && north.isVisible()){
52252             var b = north.getBox();
52253             var m = north.getMargins();
52254             b.width = w - (m.left+m.right);
52255             b.x = m.left;
52256             b.y = m.top;
52257             centerY = b.height + b.y + m.bottom;
52258             centerH -= centerY;
52259             north.updateBox(this.safeBox(b));
52260         }
52261         if(south && south.isVisible()){
52262             var b = south.getBox();
52263             var m = south.getMargins();
52264             b.width = w - (m.left+m.right);
52265             b.x = m.left;
52266             var totalHeight = (b.height + m.top + m.bottom);
52267             b.y = h - totalHeight + m.top;
52268             centerH -= totalHeight;
52269             south.updateBox(this.safeBox(b));
52270         }
52271         if(west && west.isVisible()){
52272             var b = west.getBox();
52273             var m = west.getMargins();
52274             b.height = centerH - (m.top+m.bottom);
52275             b.x = m.left;
52276             b.y = centerY + m.top;
52277             var totalWidth = (b.width + m.left + m.right);
52278             centerX += totalWidth;
52279             centerW -= totalWidth;
52280             west.updateBox(this.safeBox(b));
52281         }
52282         if(east && east.isVisible()){
52283             var b = east.getBox();
52284             var m = east.getMargins();
52285             b.height = centerH - (m.top+m.bottom);
52286             var totalWidth = (b.width + m.left + m.right);
52287             b.x = w - totalWidth + m.left;
52288             b.y = centerY + m.top;
52289             centerW -= totalWidth;
52290             east.updateBox(this.safeBox(b));
52291         }
52292         if(center){
52293             var m = center.getMargins();
52294             var centerBox = {
52295                 x: centerX + m.left,
52296                 y: centerY + m.top,
52297                 width: centerW - (m.left+m.right),
52298                 height: centerH - (m.top+m.bottom)
52299             };
52300             //if(this.hideOnLayout){
52301                 //center.el.setStyle("display", "block");
52302             //}
52303             center.updateBox(this.safeBox(centerBox));
52304         }
52305         this.el.repaint();
52306         this.fireEvent("layout", this);
52307     },
52308
52309     // private
52310     safeBox : function(box){
52311         box.width = Math.max(0, box.width);
52312         box.height = Math.max(0, box.height);
52313         return box;
52314     },
52315
52316     /**
52317      * Adds a ContentPanel (or subclass) to this layout.
52318      * @param {String} target The target region key (north, south, east, west or center).
52319      * @param {Roo.ContentPanel} panel The panel to add
52320      * @return {Roo.ContentPanel} The added panel
52321      */
52322     add : function(target, panel){
52323          
52324         target = target.toLowerCase();
52325         return this.regions[target].add(panel);
52326     },
52327
52328     /**
52329      * Remove a ContentPanel (or subclass) to this layout.
52330      * @param {String} target The target region key (north, south, east, west or center).
52331      * @param {Number/String/Roo.ContentPanel} panel The index, id or panel to remove
52332      * @return {Roo.ContentPanel} The removed panel
52333      */
52334     remove : function(target, panel){
52335         target = target.toLowerCase();
52336         return this.regions[target].remove(panel);
52337     },
52338
52339     /**
52340      * Searches all regions for a panel with the specified id
52341      * @param {String} panelId
52342      * @return {Roo.ContentPanel} The panel or null if it wasn't found
52343      */
52344     findPanel : function(panelId){
52345         var rs = this.regions;
52346         for(var target in rs){
52347             if(typeof rs[target] != "function"){
52348                 var p = rs[target].getPanel(panelId);
52349                 if(p){
52350                     return p;
52351                 }
52352             }
52353         }
52354         return null;
52355     },
52356
52357     /**
52358      * Searches all regions for a panel with the specified id and activates (shows) it.
52359      * @param {String/ContentPanel} panelId The panels id or the panel itself
52360      * @return {Roo.ContentPanel} The shown panel or null
52361      */
52362     showPanel : function(panelId) {
52363       var rs = this.regions;
52364       for(var target in rs){
52365          var r = rs[target];
52366          if(typeof r != "function"){
52367             if(r.hasPanel(panelId)){
52368                return r.showPanel(panelId);
52369             }
52370          }
52371       }
52372       return null;
52373    },
52374
52375    /**
52376      * Restores this layout's state using Roo.state.Manager or the state provided by the passed provider.
52377      * @param {Roo.state.Provider} provider (optional) An alternate state provider
52378      */
52379     restoreState : function(provider){
52380         if(!provider){
52381             provider = Roo.state.Manager;
52382         }
52383         var sm = new Roo.LayoutStateManager();
52384         sm.init(this, provider);
52385     },
52386
52387     /**
52388      * Adds a batch of multiple ContentPanels dynamically by passing a special regions config object.  This config
52389      * object should contain properties for each region to add ContentPanels to, and each property's value should be
52390      * a valid ContentPanel config object.  Example:
52391      * <pre><code>
52392 // Create the main layout
52393 var layout = new Roo.BorderLayout('main-ct', {
52394     west: {
52395         split:true,
52396         minSize: 175,
52397         titlebar: true
52398     },
52399     center: {
52400         title:'Components'
52401     }
52402 }, 'main-ct');
52403
52404 // Create and add multiple ContentPanels at once via configs
52405 layout.batchAdd({
52406    west: {
52407        id: 'source-files',
52408        autoCreate:true,
52409        title:'Ext Source Files',
52410        autoScroll:true,
52411        fitToFrame:true
52412    },
52413    center : {
52414        el: cview,
52415        autoScroll:true,
52416        fitToFrame:true,
52417        toolbar: tb,
52418        resizeEl:'cbody'
52419    }
52420 });
52421 </code></pre>
52422      * @param {Object} regions An object containing ContentPanel configs by region name
52423      */
52424     batchAdd : function(regions){
52425         this.beginUpdate();
52426         for(var rname in regions){
52427             var lr = this.regions[rname];
52428             if(lr){
52429                 this.addTypedPanels(lr, regions[rname]);
52430             }
52431         }
52432         this.endUpdate();
52433     },
52434
52435     // private
52436     addTypedPanels : function(lr, ps){
52437         if(typeof ps == 'string'){
52438             lr.add(new Roo.ContentPanel(ps));
52439         }
52440         else if(ps instanceof Array){
52441             for(var i =0, len = ps.length; i < len; i++){
52442                 this.addTypedPanels(lr, ps[i]);
52443             }
52444         }
52445         else if(!ps.events){ // raw config?
52446             var el = ps.el;
52447             delete ps.el; // prevent conflict
52448             lr.add(new Roo.ContentPanel(el || Roo.id(), ps));
52449         }
52450         else {  // panel object assumed!
52451             lr.add(ps);
52452         }
52453     },
52454     /**
52455      * Adds a xtype elements to the layout.
52456      * <pre><code>
52457
52458 layout.addxtype({
52459        xtype : 'ContentPanel',
52460        region: 'west',
52461        items: [ .... ]
52462    }
52463 );
52464
52465 layout.addxtype({
52466         xtype : 'NestedLayoutPanel',
52467         region: 'west',
52468         layout: {
52469            center: { },
52470            west: { }   
52471         },
52472         items : [ ... list of content panels or nested layout panels.. ]
52473    }
52474 );
52475 </code></pre>
52476      * @param {Object} cfg Xtype definition of item to add.
52477      */
52478     addxtype : function(cfg)
52479     {
52480         // basically accepts a pannel...
52481         // can accept a layout region..!?!?
52482         //Roo.log('Roo.BorderLayout add ' + cfg.xtype)
52483         
52484         if (!cfg.xtype.match(/Panel$/)) {
52485             return false;
52486         }
52487         var ret = false;
52488         
52489         if (typeof(cfg.region) == 'undefined') {
52490             Roo.log("Failed to add Panel, region was not set");
52491             Roo.log(cfg);
52492             return false;
52493         }
52494         var region = cfg.region;
52495         delete cfg.region;
52496         
52497           
52498         var xitems = [];
52499         if (cfg.items) {
52500             xitems = cfg.items;
52501             delete cfg.items;
52502         }
52503         var nb = false;
52504         
52505         switch(cfg.xtype) 
52506         {
52507             case 'ContentPanel':  // ContentPanel (el, cfg)
52508             case 'ScrollPanel':  // ContentPanel (el, cfg)
52509             case 'ViewPanel': 
52510                 if(cfg.autoCreate) {
52511                     ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
52512                 } else {
52513                     var el = this.el.createChild();
52514                     ret = new Roo[cfg.xtype](el, cfg); // new panel!!!!!
52515                 }
52516                 
52517                 this.add(region, ret);
52518                 break;
52519             
52520             
52521             case 'TreePanel': // our new panel!
52522                 cfg.el = this.el.createChild();
52523                 ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
52524                 this.add(region, ret);
52525                 break;
52526             
52527             case 'NestedLayoutPanel': 
52528                 // create a new Layout (which is  a Border Layout...
52529                 var el = this.el.createChild();
52530                 var clayout = cfg.layout;
52531                 delete cfg.layout;
52532                 clayout.items   = clayout.items  || [];
52533                 // replace this exitems with the clayout ones..
52534                 xitems = clayout.items;
52535                  
52536                 
52537                 if (region == 'center' && this.active && this.getRegion('center').panels.length < 1) {
52538                     cfg.background = false;
52539                 }
52540                 var layout = new Roo.BorderLayout(el, clayout);
52541                 
52542                 ret = new Roo[cfg.xtype](layout, cfg); // new panel!!!!!
52543                 //console.log('adding nested layout panel '  + cfg.toSource());
52544                 this.add(region, ret);
52545                 nb = {}; /// find first...
52546                 break;
52547                 
52548             case 'GridPanel': 
52549             
52550                 // needs grid and region
52551                 
52552                 //var el = this.getRegion(region).el.createChild();
52553                 var el = this.el.createChild();
52554                 // create the grid first...
52555                 
52556                 var grid = new Roo.grid[cfg.grid.xtype](el, cfg.grid);
52557                 delete cfg.grid;
52558                 if (region == 'center' && this.active ) {
52559                     cfg.background = false;
52560                 }
52561                 ret = new Roo[cfg.xtype](grid, cfg); // new panel!!!!!
52562                 
52563                 this.add(region, ret);
52564                 if (cfg.background) {
52565                     ret.on('activate', function(gp) {
52566                         if (!gp.grid.rendered) {
52567                             gp.grid.render();
52568                         }
52569                     });
52570                 } else {
52571                     grid.render();
52572                 }
52573                 break;
52574            
52575            
52576            
52577                 
52578                 
52579                 
52580             default:
52581                 if (typeof(Roo[cfg.xtype]) != 'undefined') {
52582                     
52583                     ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
52584                     this.add(region, ret);
52585                 } else {
52586                 
52587                     alert("Can not add '" + cfg.xtype + "' to BorderLayout");
52588                     return null;
52589                 }
52590                 
52591              // GridPanel (grid, cfg)
52592             
52593         }
52594         this.beginUpdate();
52595         // add children..
52596         var region = '';
52597         var abn = {};
52598         Roo.each(xitems, function(i)  {
52599             region = nb && i.region ? i.region : false;
52600             
52601             var add = ret.addxtype(i);
52602            
52603             if (region) {
52604                 nb[region] = nb[region] == undefined ? 0 : nb[region]+1;
52605                 if (!i.background) {
52606                     abn[region] = nb[region] ;
52607                 }
52608             }
52609             
52610         });
52611         this.endUpdate();
52612
52613         // make the last non-background panel active..
52614         //if (nb) { Roo.log(abn); }
52615         if (nb) {
52616             
52617             for(var r in abn) {
52618                 region = this.getRegion(r);
52619                 if (region) {
52620                     // tried using nb[r], but it does not work..
52621                      
52622                     region.showPanel(abn[r]);
52623                    
52624                 }
52625             }
52626         }
52627         return ret;
52628         
52629     }
52630 });
52631
52632 /**
52633  * Shortcut for creating a new BorderLayout object and adding one or more ContentPanels to it in a single step, handling
52634  * the beginUpdate and endUpdate calls internally.  The key to this method is the <b>panels</b> property that can be
52635  * provided with each region config, which allows you to add ContentPanel configs in addition to the region configs
52636  * during creation.  The following code is equivalent to the constructor-based example at the beginning of this class:
52637  * <pre><code>
52638 // shorthand
52639 var CP = Roo.ContentPanel;
52640
52641 var layout = Roo.BorderLayout.create({
52642     north: {
52643         initialSize: 25,
52644         titlebar: false,
52645         panels: [new CP("north", "North")]
52646     },
52647     west: {
52648         split:true,
52649         initialSize: 200,
52650         minSize: 175,
52651         maxSize: 400,
52652         titlebar: true,
52653         collapsible: true,
52654         panels: [new CP("west", {title: "West"})]
52655     },
52656     east: {
52657         split:true,
52658         initialSize: 202,
52659         minSize: 175,
52660         maxSize: 400,
52661         titlebar: true,
52662         collapsible: true,
52663         panels: [new CP("autoTabs", {title: "Auto Tabs", closable: true})]
52664     },
52665     south: {
52666         split:true,
52667         initialSize: 100,
52668         minSize: 100,
52669         maxSize: 200,
52670         titlebar: true,
52671         collapsible: true,
52672         panels: [new CP("south", {title: "South", closable: true})]
52673     },
52674     center: {
52675         titlebar: true,
52676         autoScroll:true,
52677         resizeTabs: true,
52678         minTabWidth: 50,
52679         preferredTabWidth: 150,
52680         panels: [
52681             new CP("center1", {title: "Close Me", closable: true}),
52682             new CP("center2", {title: "Center Panel", closable: false})
52683         ]
52684     }
52685 }, document.body);
52686
52687 layout.getRegion("center").showPanel("center1");
52688 </code></pre>
52689  * @param config
52690  * @param targetEl
52691  */
52692 Roo.BorderLayout.create = function(config, targetEl){
52693     var layout = new Roo.BorderLayout(targetEl || document.body, config);
52694     layout.beginUpdate();
52695     var regions = Roo.BorderLayout.RegionFactory.validRegions;
52696     for(var j = 0, jlen = regions.length; j < jlen; j++){
52697         var lr = regions[j];
52698         if(layout.regions[lr] && config[lr].panels){
52699             var r = layout.regions[lr];
52700             var ps = config[lr].panels;
52701             layout.addTypedPanels(r, ps);
52702         }
52703     }
52704     layout.endUpdate();
52705     return layout;
52706 };
52707
52708 // private
52709 Roo.BorderLayout.RegionFactory = {
52710     // private
52711     validRegions : ["north","south","east","west","center"],
52712
52713     // private
52714     create : function(target, mgr, config){
52715         target = target.toLowerCase();
52716         if(config.lightweight || config.basic){
52717             return new Roo.BasicLayoutRegion(mgr, config, target);
52718         }
52719         switch(target){
52720             case "north":
52721                 return new Roo.NorthLayoutRegion(mgr, config);
52722             case "south":
52723                 return new Roo.SouthLayoutRegion(mgr, config);
52724             case "east":
52725                 return new Roo.EastLayoutRegion(mgr, config);
52726             case "west":
52727                 return new Roo.WestLayoutRegion(mgr, config);
52728             case "center":
52729                 return new Roo.CenterLayoutRegion(mgr, config);
52730         }
52731         throw 'Layout region "'+target+'" not supported.';
52732     }
52733 };/*
52734  * Based on:
52735  * Ext JS Library 1.1.1
52736  * Copyright(c) 2006-2007, Ext JS, LLC.
52737  *
52738  * Originally Released Under LGPL - original licence link has changed is not relivant.
52739  *
52740  * Fork - LGPL
52741  * <script type="text/javascript">
52742  */
52743  
52744 /**
52745  * @class Roo.BasicLayoutRegion
52746  * @extends Roo.util.Observable
52747  * This class represents a lightweight region in a layout manager. This region does not move dom nodes
52748  * and does not have a titlebar, tabs or any other features. All it does is size and position 
52749  * panels. To create a BasicLayoutRegion, add lightweight:true or basic:true to your regions config.
52750  */
52751 Roo.BasicLayoutRegion = function(mgr, config, pos, skipConfig){
52752     this.mgr = mgr;
52753     this.position  = pos;
52754     this.events = {
52755         /**
52756          * @scope Roo.BasicLayoutRegion
52757          */
52758         
52759         /**
52760          * @event beforeremove
52761          * Fires before a panel is removed (or closed). To cancel the removal set "e.cancel = true" on the event argument.
52762          * @param {Roo.LayoutRegion} this
52763          * @param {Roo.ContentPanel} panel The panel
52764          * @param {Object} e The cancel event object
52765          */
52766         "beforeremove" : true,
52767         /**
52768          * @event invalidated
52769          * Fires when the layout for this region is changed.
52770          * @param {Roo.LayoutRegion} this
52771          */
52772         "invalidated" : true,
52773         /**
52774          * @event visibilitychange
52775          * Fires when this region is shown or hidden 
52776          * @param {Roo.LayoutRegion} this
52777          * @param {Boolean} visibility true or false
52778          */
52779         "visibilitychange" : true,
52780         /**
52781          * @event paneladded
52782          * Fires when a panel is added. 
52783          * @param {Roo.LayoutRegion} this
52784          * @param {Roo.ContentPanel} panel The panel
52785          */
52786         "paneladded" : true,
52787         /**
52788          * @event panelremoved
52789          * Fires when a panel is removed. 
52790          * @param {Roo.LayoutRegion} this
52791          * @param {Roo.ContentPanel} panel The panel
52792          */
52793         "panelremoved" : true,
52794         /**
52795          * @event beforecollapse
52796          * Fires when this region before collapse.
52797          * @param {Roo.LayoutRegion} this
52798          */
52799         "beforecollapse" : true,
52800         /**
52801          * @event collapsed
52802          * Fires when this region is collapsed.
52803          * @param {Roo.LayoutRegion} this
52804          */
52805         "collapsed" : true,
52806         /**
52807          * @event expanded
52808          * Fires when this region is expanded.
52809          * @param {Roo.LayoutRegion} this
52810          */
52811         "expanded" : true,
52812         /**
52813          * @event slideshow
52814          * Fires when this region is slid into view.
52815          * @param {Roo.LayoutRegion} this
52816          */
52817         "slideshow" : true,
52818         /**
52819          * @event slidehide
52820          * Fires when this region slides out of view. 
52821          * @param {Roo.LayoutRegion} this
52822          */
52823         "slidehide" : true,
52824         /**
52825          * @event panelactivated
52826          * Fires when a panel is activated. 
52827          * @param {Roo.LayoutRegion} this
52828          * @param {Roo.ContentPanel} panel The activated panel
52829          */
52830         "panelactivated" : true,
52831         /**
52832          * @event resized
52833          * Fires when the user resizes this region. 
52834          * @param {Roo.LayoutRegion} this
52835          * @param {Number} newSize The new size (width for east/west, height for north/south)
52836          */
52837         "resized" : true
52838     };
52839     /** A collection of panels in this region. @type Roo.util.MixedCollection */
52840     this.panels = new Roo.util.MixedCollection();
52841     this.panels.getKey = this.getPanelId.createDelegate(this);
52842     this.box = null;
52843     this.activePanel = null;
52844     // ensure listeners are added...
52845     
52846     if (config.listeners || config.events) {
52847         Roo.BasicLayoutRegion.superclass.constructor.call(this, {
52848             listeners : config.listeners || {},
52849             events : config.events || {}
52850         });
52851     }
52852     
52853     if(skipConfig !== true){
52854         this.applyConfig(config);
52855     }
52856 };
52857
52858 Roo.extend(Roo.BasicLayoutRegion, Roo.util.Observable, {
52859     getPanelId : function(p){
52860         return p.getId();
52861     },
52862     
52863     applyConfig : function(config){
52864         this.margins = config.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
52865         this.config = config;
52866         
52867     },
52868     
52869     /**
52870      * Resizes the region to the specified size. For vertical regions (west, east) this adjusts 
52871      * the width, for horizontal (north, south) the height.
52872      * @param {Number} newSize The new width or height
52873      */
52874     resizeTo : function(newSize){
52875         var el = this.el ? this.el :
52876                  (this.activePanel ? this.activePanel.getEl() : null);
52877         if(el){
52878             switch(this.position){
52879                 case "east":
52880                 case "west":
52881                     el.setWidth(newSize);
52882                     this.fireEvent("resized", this, newSize);
52883                 break;
52884                 case "north":
52885                 case "south":
52886                     el.setHeight(newSize);
52887                     this.fireEvent("resized", this, newSize);
52888                 break;                
52889             }
52890         }
52891     },
52892     
52893     getBox : function(){
52894         return this.activePanel ? this.activePanel.getEl().getBox(false, true) : null;
52895     },
52896     
52897     getMargins : function(){
52898         return this.margins;
52899     },
52900     
52901     updateBox : function(box){
52902         this.box = box;
52903         var el = this.activePanel.getEl();
52904         el.dom.style.left = box.x + "px";
52905         el.dom.style.top = box.y + "px";
52906         this.activePanel.setSize(box.width, box.height);
52907     },
52908     
52909     /**
52910      * Returns the container element for this region.
52911      * @return {Roo.Element}
52912      */
52913     getEl : function(){
52914         return this.activePanel;
52915     },
52916     
52917     /**
52918      * Returns true if this region is currently visible.
52919      * @return {Boolean}
52920      */
52921     isVisible : function(){
52922         return this.activePanel ? true : false;
52923     },
52924     
52925     setActivePanel : function(panel){
52926         panel = this.getPanel(panel);
52927         if(this.activePanel && this.activePanel != panel){
52928             this.activePanel.setActiveState(false);
52929             this.activePanel.getEl().setLeftTop(-10000,-10000);
52930         }
52931         this.activePanel = panel;
52932         panel.setActiveState(true);
52933         if(this.box){
52934             panel.setSize(this.box.width, this.box.height);
52935         }
52936         this.fireEvent("panelactivated", this, panel);
52937         this.fireEvent("invalidated");
52938     },
52939     
52940     /**
52941      * Show the specified panel.
52942      * @param {Number/String/ContentPanel} panelId The panels index, id or the panel itself
52943      * @return {Roo.ContentPanel} The shown panel or null
52944      */
52945     showPanel : function(panel){
52946         if(panel = this.getPanel(panel)){
52947             this.setActivePanel(panel);
52948         }
52949         return panel;
52950     },
52951     
52952     /**
52953      * Get the active panel for this region.
52954      * @return {Roo.ContentPanel} The active panel or null
52955      */
52956     getActivePanel : function(){
52957         return this.activePanel;
52958     },
52959     
52960     /**
52961      * Add the passed ContentPanel(s)
52962      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
52963      * @return {Roo.ContentPanel} The panel added (if only one was added)
52964      */
52965     add : function(panel){
52966         if(arguments.length > 1){
52967             for(var i = 0, len = arguments.length; i < len; i++) {
52968                 this.add(arguments[i]);
52969             }
52970             return null;
52971         }
52972         if(this.hasPanel(panel)){
52973             this.showPanel(panel);
52974             return panel;
52975         }
52976         var el = panel.getEl();
52977         if(el.dom.parentNode != this.mgr.el.dom){
52978             this.mgr.el.dom.appendChild(el.dom);
52979         }
52980         if(panel.setRegion){
52981             panel.setRegion(this);
52982         }
52983         this.panels.add(panel);
52984         el.setStyle("position", "absolute");
52985         if(!panel.background){
52986             this.setActivePanel(panel);
52987             if(this.config.initialSize && this.panels.getCount()==1){
52988                 this.resizeTo(this.config.initialSize);
52989             }
52990         }
52991         this.fireEvent("paneladded", this, panel);
52992         return panel;
52993     },
52994     
52995     /**
52996      * Returns true if the panel is in this region.
52997      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
52998      * @return {Boolean}
52999      */
53000     hasPanel : function(panel){
53001         if(typeof panel == "object"){ // must be panel obj
53002             panel = panel.getId();
53003         }
53004         return this.getPanel(panel) ? true : false;
53005     },
53006     
53007     /**
53008      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
53009      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
53010      * @param {Boolean} preservePanel Overrides the config preservePanel option
53011      * @return {Roo.ContentPanel} The panel that was removed
53012      */
53013     remove : function(panel, preservePanel){
53014         panel = this.getPanel(panel);
53015         if(!panel){
53016             return null;
53017         }
53018         var e = {};
53019         this.fireEvent("beforeremove", this, panel, e);
53020         if(e.cancel === true){
53021             return null;
53022         }
53023         var panelId = panel.getId();
53024         this.panels.removeKey(panelId);
53025         return panel;
53026     },
53027     
53028     /**
53029      * Returns the panel specified or null if it's not in this region.
53030      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
53031      * @return {Roo.ContentPanel}
53032      */
53033     getPanel : function(id){
53034         if(typeof id == "object"){ // must be panel obj
53035             return id;
53036         }
53037         return this.panels.get(id);
53038     },
53039     
53040     /**
53041      * Returns this regions position (north/south/east/west/center).
53042      * @return {String} 
53043      */
53044     getPosition: function(){
53045         return this.position;    
53046     }
53047 });/*
53048  * Based on:
53049  * Ext JS Library 1.1.1
53050  * Copyright(c) 2006-2007, Ext JS, LLC.
53051  *
53052  * Originally Released Under LGPL - original licence link has changed is not relivant.
53053  *
53054  * Fork - LGPL
53055  * <script type="text/javascript">
53056  */
53057  
53058 /**
53059  * @class Roo.LayoutRegion
53060  * @extends Roo.BasicLayoutRegion
53061  * This class represents a region in a layout manager.
53062  * @cfg {Boolean}   collapsible     False to disable collapsing (defaults to true)
53063  * @cfg {Boolean}   collapsed       True to set the initial display to collapsed (defaults to false)
53064  * @cfg {Boolean}   floatable       False to disable floating (defaults to true)
53065  * @cfg {Object}    margins         Margins for the element (defaults to {top: 0, left: 0, right:0, bottom: 0})
53066  * @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})
53067  * @cfg {String}    tabPosition     (top|bottom) "top" or "bottom" (defaults to "bottom")
53068  * @cfg {String}    collapsedTitle  Optional string message to display in the collapsed block of a north or south region
53069  * @cfg {Boolean}   alwaysShowTabs  True to always display tabs even when there is only 1 panel (defaults to false)
53070  * @cfg {Boolean}   autoScroll      True to enable overflow scrolling (defaults to false)
53071  * @cfg {Boolean}   titlebar        True to display a title bar (defaults to true)
53072  * @cfg {String}    title           The title for the region (overrides panel titles)
53073  * @cfg {Boolean}   animate         True to animate expand/collapse (defaults to false)
53074  * @cfg {Boolean}   autoHide        False to disable auto hiding when the mouse leaves the "floated" region (defaults to true)
53075  * @cfg {Boolean}   preservePanels  True to preserve removed panels so they can be readded later (defaults to false)
53076  * @cfg {Boolean}   closeOnTab      True to place the close icon on the tabs instead of the region titlebar (defaults to false)
53077  * @cfg {Boolean}   hideTabs        True to hide the tab strip (defaults to false)
53078  * @cfg {Boolean}   resizeTabs      True to enable automatic tab resizing. This will resize the tabs so they are all the same size and fit within
53079  *                      the space available, similar to FireFox 1.5 tabs (defaults to false)
53080  * @cfg {Number}    minTabWidth     The minimum tab width (defaults to 40)
53081  * @cfg {Number}    preferredTabWidth The preferred tab width (defaults to 150)
53082  * @cfg {Boolean}   showPin         True to show a pin button
53083  * @cfg {Boolean}   hidden          True to start the region hidden (defaults to false)
53084  * @cfg {Boolean}   hideWhenEmpty   True to hide the region when it has no panels
53085  * @cfg {Boolean}   disableTabTips  True to disable tab tooltips
53086  * @cfg {Number}    width           For East/West panels
53087  * @cfg {Number}    height          For North/South panels
53088  * @cfg {Boolean}   split           To show the splitter
53089  * @cfg {Boolean}   toolbar         xtype configuration for a toolbar - shows on right of tabbar
53090  */
53091 Roo.LayoutRegion = function(mgr, config, pos){
53092     Roo.LayoutRegion.superclass.constructor.call(this, mgr, config, pos, true);
53093     var dh = Roo.DomHelper;
53094     /** This region's container element 
53095     * @type Roo.Element */
53096     this.el = dh.append(mgr.el.dom, {tag: "div", cls: "x-layout-panel x-layout-panel-" + this.position}, true);
53097     /** This region's title element 
53098     * @type Roo.Element */
53099
53100     this.titleEl = dh.append(this.el.dom, {tag: "div", unselectable: "on", cls: "x-unselectable x-layout-panel-hd x-layout-title-"+this.position, children:[
53101         {tag: "span", cls: "x-unselectable x-layout-panel-hd-text", unselectable: "on", html: "&#160;"},
53102         {tag: "div", cls: "x-unselectable x-layout-panel-hd-tools", unselectable: "on"}
53103     ]}, true);
53104     this.titleEl.enableDisplayMode();
53105     /** This region's title text element 
53106     * @type HTMLElement */
53107     this.titleTextEl = this.titleEl.dom.firstChild;
53108     this.tools = Roo.get(this.titleEl.dom.childNodes[1], true);
53109     this.closeBtn = this.createTool(this.tools.dom, "x-layout-close");
53110     this.closeBtn.enableDisplayMode();
53111     this.closeBtn.on("click", this.closeClicked, this);
53112     this.closeBtn.hide();
53113
53114     this.createBody(config);
53115     this.visible = true;
53116     this.collapsed = false;
53117
53118     if(config.hideWhenEmpty){
53119         this.hide();
53120         this.on("paneladded", this.validateVisibility, this);
53121         this.on("panelremoved", this.validateVisibility, this);
53122     }
53123     this.applyConfig(config);
53124 };
53125
53126 Roo.extend(Roo.LayoutRegion, Roo.BasicLayoutRegion, {
53127
53128     createBody : function(){
53129         /** This region's body element 
53130         * @type Roo.Element */
53131         this.bodyEl = this.el.createChild({tag: "div", cls: "x-layout-panel-body"});
53132     },
53133
53134     applyConfig : function(c){
53135         if(c.collapsible && this.position != "center" && !this.collapsedEl){
53136             var dh = Roo.DomHelper;
53137             if(c.titlebar !== false){
53138                 this.collapseBtn = this.createTool(this.tools.dom, "x-layout-collapse-"+this.position);
53139                 this.collapseBtn.on("click", this.collapse, this);
53140                 this.collapseBtn.enableDisplayMode();
53141
53142                 if(c.showPin === true || this.showPin){
53143                     this.stickBtn = this.createTool(this.tools.dom, "x-layout-stick");
53144                     this.stickBtn.enableDisplayMode();
53145                     this.stickBtn.on("click", this.expand, this);
53146                     this.stickBtn.hide();
53147                 }
53148             }
53149             /** This region's collapsed element
53150             * @type Roo.Element */
53151             this.collapsedEl = dh.append(this.mgr.el.dom, {cls: "x-layout-collapsed x-layout-collapsed-"+this.position, children:[
53152                 {cls: "x-layout-collapsed-tools", children:[{cls: "x-layout-ctools-inner"}]}
53153             ]}, true);
53154             if(c.floatable !== false){
53155                this.collapsedEl.addClassOnOver("x-layout-collapsed-over");
53156                this.collapsedEl.on("click", this.collapseClick, this);
53157             }
53158
53159             if(c.collapsedTitle && (this.position == "north" || this.position== "south")) {
53160                 this.collapsedTitleTextEl = dh.append(this.collapsedEl.dom, {tag: "div", cls: "x-unselectable x-layout-panel-hd-text",
53161                    id: "message", unselectable: "on", style:{"float":"left"}});
53162                this.collapsedTitleTextEl.innerHTML = c.collapsedTitle;
53163              }
53164             this.expandBtn = this.createTool(this.collapsedEl.dom.firstChild.firstChild, "x-layout-expand-"+this.position);
53165             this.expandBtn.on("click", this.expand, this);
53166         }
53167         if(this.collapseBtn){
53168             this.collapseBtn.setVisible(c.collapsible == true);
53169         }
53170         this.cmargins = c.cmargins || this.cmargins ||
53171                          (this.position == "west" || this.position == "east" ?
53172                              {top: 0, left: 2, right:2, bottom: 0} :
53173                              {top: 2, left: 0, right:0, bottom: 2});
53174         this.margins = c.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
53175         this.bottomTabs = c.tabPosition != "top";
53176         this.autoScroll = c.autoScroll || false;
53177         if(this.autoScroll){
53178             this.bodyEl.setStyle("overflow", "auto");
53179         }else{
53180             this.bodyEl.setStyle("overflow", "hidden");
53181         }
53182         //if(c.titlebar !== false){
53183             if((!c.titlebar && !c.title) || c.titlebar === false){
53184                 this.titleEl.hide();
53185             }else{
53186                 this.titleEl.show();
53187                 if(c.title){
53188                     this.titleTextEl.innerHTML = c.title;
53189                 }
53190             }
53191         //}
53192         this.duration = c.duration || .30;
53193         this.slideDuration = c.slideDuration || .45;
53194         this.config = c;
53195         if(c.collapsed){
53196             this.collapse(true);
53197         }
53198         if(c.hidden){
53199             this.hide();
53200         }
53201     },
53202     /**
53203      * Returns true if this region is currently visible.
53204      * @return {Boolean}
53205      */
53206     isVisible : function(){
53207         return this.visible;
53208     },
53209
53210     /**
53211      * Updates the title for collapsed north/south regions (used with {@link #collapsedTitle} config option)
53212      * @param {String} title (optional) The title text (accepts HTML markup, defaults to the numeric character reference for a non-breaking space, "&amp;#160;")
53213      */
53214     setCollapsedTitle : function(title){
53215         title = title || "&#160;";
53216         if(this.collapsedTitleTextEl){
53217             this.collapsedTitleTextEl.innerHTML = title;
53218         }
53219     },
53220
53221     getBox : function(){
53222         var b;
53223         if(!this.collapsed){
53224             b = this.el.getBox(false, true);
53225         }else{
53226             b = this.collapsedEl.getBox(false, true);
53227         }
53228         return b;
53229     },
53230
53231     getMargins : function(){
53232         return this.collapsed ? this.cmargins : this.margins;
53233     },
53234
53235     highlight : function(){
53236         this.el.addClass("x-layout-panel-dragover");
53237     },
53238
53239     unhighlight : function(){
53240         this.el.removeClass("x-layout-panel-dragover");
53241     },
53242
53243     updateBox : function(box){
53244         this.box = box;
53245         if(!this.collapsed){
53246             this.el.dom.style.left = box.x + "px";
53247             this.el.dom.style.top = box.y + "px";
53248             this.updateBody(box.width, box.height);
53249         }else{
53250             this.collapsedEl.dom.style.left = box.x + "px";
53251             this.collapsedEl.dom.style.top = box.y + "px";
53252             this.collapsedEl.setSize(box.width, box.height);
53253         }
53254         if(this.tabs){
53255             this.tabs.autoSizeTabs();
53256         }
53257     },
53258
53259     updateBody : function(w, h){
53260         if(w !== null){
53261             this.el.setWidth(w);
53262             w -= this.el.getBorderWidth("rl");
53263             if(this.config.adjustments){
53264                 w += this.config.adjustments[0];
53265             }
53266         }
53267         if(h !== null){
53268             this.el.setHeight(h);
53269             h = this.titleEl && this.titleEl.isDisplayed() ? h - (this.titleEl.getHeight()||0) : h;
53270             h -= this.el.getBorderWidth("tb");
53271             if(this.config.adjustments){
53272                 h += this.config.adjustments[1];
53273             }
53274             this.bodyEl.setHeight(h);
53275             if(this.tabs){
53276                 h = this.tabs.syncHeight(h);
53277             }
53278         }
53279         if(this.panelSize){
53280             w = w !== null ? w : this.panelSize.width;
53281             h = h !== null ? h : this.panelSize.height;
53282         }
53283         if(this.activePanel){
53284             var el = this.activePanel.getEl();
53285             w = w !== null ? w : el.getWidth();
53286             h = h !== null ? h : el.getHeight();
53287             this.panelSize = {width: w, height: h};
53288             this.activePanel.setSize(w, h);
53289         }
53290         if(Roo.isIE && this.tabs){
53291             this.tabs.el.repaint();
53292         }
53293     },
53294
53295     /**
53296      * Returns the container element for this region.
53297      * @return {Roo.Element}
53298      */
53299     getEl : function(){
53300         return this.el;
53301     },
53302
53303     /**
53304      * Hides this region.
53305      */
53306     hide : function(){
53307         if(!this.collapsed){
53308             this.el.dom.style.left = "-2000px";
53309             this.el.hide();
53310         }else{
53311             this.collapsedEl.dom.style.left = "-2000px";
53312             this.collapsedEl.hide();
53313         }
53314         this.visible = false;
53315         this.fireEvent("visibilitychange", this, false);
53316     },
53317
53318     /**
53319      * Shows this region if it was previously hidden.
53320      */
53321     show : function(){
53322         if(!this.collapsed){
53323             this.el.show();
53324         }else{
53325             this.collapsedEl.show();
53326         }
53327         this.visible = true;
53328         this.fireEvent("visibilitychange", this, true);
53329     },
53330
53331     closeClicked : function(){
53332         if(this.activePanel){
53333             this.remove(this.activePanel);
53334         }
53335     },
53336
53337     collapseClick : function(e){
53338         if(this.isSlid){
53339            e.stopPropagation();
53340            this.slideIn();
53341         }else{
53342            e.stopPropagation();
53343            this.slideOut();
53344         }
53345     },
53346
53347     /**
53348      * Collapses this region.
53349      * @param {Boolean} skipAnim (optional) true to collapse the element without animation (if animate is true)
53350      */
53351     collapse : function(skipAnim, skipCheck){
53352         if(this.collapsed) {
53353             return;
53354         }
53355         
53356         if(skipCheck || this.fireEvent("beforecollapse", this) != false){
53357             
53358             this.collapsed = true;
53359             if(this.split){
53360                 this.split.el.hide();
53361             }
53362             if(this.config.animate && skipAnim !== true){
53363                 this.fireEvent("invalidated", this);
53364                 this.animateCollapse();
53365             }else{
53366                 this.el.setLocation(-20000,-20000);
53367                 this.el.hide();
53368                 this.collapsedEl.show();
53369                 this.fireEvent("collapsed", this);
53370                 this.fireEvent("invalidated", this);
53371             }
53372         }
53373         
53374     },
53375
53376     animateCollapse : function(){
53377         // overridden
53378     },
53379
53380     /**
53381      * Expands this region if it was previously collapsed.
53382      * @param {Roo.EventObject} e The event that triggered the expand (or null if calling manually)
53383      * @param {Boolean} skipAnim (optional) true to expand the element without animation (if animate is true)
53384      */
53385     expand : function(e, skipAnim){
53386         if(e) {
53387             e.stopPropagation();
53388         }
53389         if(!this.collapsed || this.el.hasActiveFx()) {
53390             return;
53391         }
53392         if(this.isSlid){
53393             this.afterSlideIn();
53394             skipAnim = true;
53395         }
53396         this.collapsed = false;
53397         if(this.config.animate && skipAnim !== true){
53398             this.animateExpand();
53399         }else{
53400             this.el.show();
53401             if(this.split){
53402                 this.split.el.show();
53403             }
53404             this.collapsedEl.setLocation(-2000,-2000);
53405             this.collapsedEl.hide();
53406             this.fireEvent("invalidated", this);
53407             this.fireEvent("expanded", this);
53408         }
53409     },
53410
53411     animateExpand : function(){
53412         // overridden
53413     },
53414
53415     initTabs : function()
53416     {
53417         this.bodyEl.setStyle("overflow", "hidden");
53418         var ts = new Roo.TabPanel(
53419                 this.bodyEl.dom,
53420                 {
53421                     tabPosition: this.bottomTabs ? 'bottom' : 'top',
53422                     disableTooltips: this.config.disableTabTips,
53423                     toolbar : this.config.toolbar
53424                 }
53425         );
53426         if(this.config.hideTabs){
53427             ts.stripWrap.setDisplayed(false);
53428         }
53429         this.tabs = ts;
53430         ts.resizeTabs = this.config.resizeTabs === true;
53431         ts.minTabWidth = this.config.minTabWidth || 40;
53432         ts.maxTabWidth = this.config.maxTabWidth || 250;
53433         ts.preferredTabWidth = this.config.preferredTabWidth || 150;
53434         ts.monitorResize = false;
53435         ts.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
53436         ts.bodyEl.addClass('x-layout-tabs-body');
53437         this.panels.each(this.initPanelAsTab, this);
53438     },
53439
53440     initPanelAsTab : function(panel){
53441         var ti = this.tabs.addTab(panel.getEl().id, panel.getTitle(), null,
53442                     this.config.closeOnTab && panel.isClosable());
53443         if(panel.tabTip !== undefined){
53444             ti.setTooltip(panel.tabTip);
53445         }
53446         ti.on("activate", function(){
53447               this.setActivePanel(panel);
53448         }, this);
53449         if(this.config.closeOnTab){
53450             ti.on("beforeclose", function(t, e){
53451                 e.cancel = true;
53452                 this.remove(panel);
53453             }, this);
53454         }
53455         return ti;
53456     },
53457
53458     updatePanelTitle : function(panel, title){
53459         if(this.activePanel == panel){
53460             this.updateTitle(title);
53461         }
53462         if(this.tabs){
53463             var ti = this.tabs.getTab(panel.getEl().id);
53464             ti.setText(title);
53465             if(panel.tabTip !== undefined){
53466                 ti.setTooltip(panel.tabTip);
53467             }
53468         }
53469     },
53470
53471     updateTitle : function(title){
53472         if(this.titleTextEl && !this.config.title){
53473             this.titleTextEl.innerHTML = (typeof title != "undefined" && title.length > 0 ? title : "&#160;");
53474         }
53475     },
53476
53477     setActivePanel : function(panel){
53478         panel = this.getPanel(panel);
53479         if(this.activePanel && this.activePanel != panel){
53480             this.activePanel.setActiveState(false);
53481         }
53482         this.activePanel = panel;
53483         panel.setActiveState(true);
53484         if(this.panelSize){
53485             panel.setSize(this.panelSize.width, this.panelSize.height);
53486         }
53487         if(this.closeBtn){
53488             this.closeBtn.setVisible(!this.config.closeOnTab && !this.isSlid && panel.isClosable());
53489         }
53490         this.updateTitle(panel.getTitle());
53491         if(this.tabs){
53492             this.fireEvent("invalidated", this);
53493         }
53494         this.fireEvent("panelactivated", this, panel);
53495     },
53496
53497     /**
53498      * Shows the specified panel.
53499      * @param {Number/String/ContentPanel} panelId The panel's index, id or the panel itself
53500      * @return {Roo.ContentPanel} The shown panel, or null if a panel could not be found from panelId
53501      */
53502     showPanel : function(panel)
53503     {
53504         panel = this.getPanel(panel);
53505         if(panel){
53506             if(this.tabs){
53507                 var tab = this.tabs.getTab(panel.getEl().id);
53508                 if(tab.isHidden()){
53509                     this.tabs.unhideTab(tab.id);
53510                 }
53511                 tab.activate();
53512             }else{
53513                 this.setActivePanel(panel);
53514             }
53515         }
53516         return panel;
53517     },
53518
53519     /**
53520      * Get the active panel for this region.
53521      * @return {Roo.ContentPanel} The active panel or null
53522      */
53523     getActivePanel : function(){
53524         return this.activePanel;
53525     },
53526
53527     validateVisibility : function(){
53528         if(this.panels.getCount() < 1){
53529             this.updateTitle("&#160;");
53530             this.closeBtn.hide();
53531             this.hide();
53532         }else{
53533             if(!this.isVisible()){
53534                 this.show();
53535             }
53536         }
53537     },
53538
53539     /**
53540      * Adds the passed ContentPanel(s) to this region.
53541      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
53542      * @return {Roo.ContentPanel} The panel added (if only one was added; null otherwise)
53543      */
53544     add : function(panel){
53545         if(arguments.length > 1){
53546             for(var i = 0, len = arguments.length; i < len; i++) {
53547                 this.add(arguments[i]);
53548             }
53549             return null;
53550         }
53551         if(this.hasPanel(panel)){
53552             this.showPanel(panel);
53553             return panel;
53554         }
53555         panel.setRegion(this);
53556         this.panels.add(panel);
53557         if(this.panels.getCount() == 1 && !this.config.alwaysShowTabs){
53558             this.bodyEl.dom.appendChild(panel.getEl().dom);
53559             if(panel.background !== true){
53560                 this.setActivePanel(panel);
53561             }
53562             this.fireEvent("paneladded", this, panel);
53563             return panel;
53564         }
53565         if(!this.tabs){
53566             this.initTabs();
53567         }else{
53568             this.initPanelAsTab(panel);
53569         }
53570         if(panel.background !== true){
53571             this.tabs.activate(panel.getEl().id);
53572         }
53573         this.fireEvent("paneladded", this, panel);
53574         return panel;
53575     },
53576
53577     /**
53578      * Hides the tab for the specified panel.
53579      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
53580      */
53581     hidePanel : function(panel){
53582         if(this.tabs && (panel = this.getPanel(panel))){
53583             this.tabs.hideTab(panel.getEl().id);
53584         }
53585     },
53586
53587     /**
53588      * Unhides the tab for a previously hidden panel.
53589      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
53590      */
53591     unhidePanel : function(panel){
53592         if(this.tabs && (panel = this.getPanel(panel))){
53593             this.tabs.unhideTab(panel.getEl().id);
53594         }
53595     },
53596
53597     clearPanels : function(){
53598         while(this.panels.getCount() > 0){
53599              this.remove(this.panels.first());
53600         }
53601     },
53602
53603     /**
53604      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
53605      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
53606      * @param {Boolean} preservePanel Overrides the config preservePanel option
53607      * @return {Roo.ContentPanel} The panel that was removed
53608      */
53609     remove : function(panel, preservePanel){
53610         panel = this.getPanel(panel);
53611         if(!panel){
53612             return null;
53613         }
53614         var e = {};
53615         this.fireEvent("beforeremove", this, panel, e);
53616         if(e.cancel === true){
53617             return null;
53618         }
53619         preservePanel = (typeof preservePanel != "undefined" ? preservePanel : (this.config.preservePanels === true || panel.preserve === true));
53620         var panelId = panel.getId();
53621         this.panels.removeKey(panelId);
53622         if(preservePanel){
53623             document.body.appendChild(panel.getEl().dom);
53624         }
53625         if(this.tabs){
53626             this.tabs.removeTab(panel.getEl().id);
53627         }else if (!preservePanel){
53628             this.bodyEl.dom.removeChild(panel.getEl().dom);
53629         }
53630         if(this.panels.getCount() == 1 && this.tabs && !this.config.alwaysShowTabs){
53631             var p = this.panels.first();
53632             var tempEl = document.createElement("div"); // temp holder to keep IE from deleting the node
53633             tempEl.appendChild(p.getEl().dom);
53634             this.bodyEl.update("");
53635             this.bodyEl.dom.appendChild(p.getEl().dom);
53636             tempEl = null;
53637             this.updateTitle(p.getTitle());
53638             this.tabs = null;
53639             this.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
53640             this.setActivePanel(p);
53641         }
53642         panel.setRegion(null);
53643         if(this.activePanel == panel){
53644             this.activePanel = null;
53645         }
53646         if(this.config.autoDestroy !== false && preservePanel !== true){
53647             try{panel.destroy();}catch(e){}
53648         }
53649         this.fireEvent("panelremoved", this, panel);
53650         return panel;
53651     },
53652
53653     /**
53654      * Returns the TabPanel component used by this region
53655      * @return {Roo.TabPanel}
53656      */
53657     getTabs : function(){
53658         return this.tabs;
53659     },
53660
53661     createTool : function(parentEl, className){
53662         var btn = Roo.DomHelper.append(parentEl, {tag: "div", cls: "x-layout-tools-button",
53663             children: [{tag: "div", cls: "x-layout-tools-button-inner " + className, html: "&#160;"}]}, true);
53664         btn.addClassOnOver("x-layout-tools-button-over");
53665         return btn;
53666     }
53667 });/*
53668  * Based on:
53669  * Ext JS Library 1.1.1
53670  * Copyright(c) 2006-2007, Ext JS, LLC.
53671  *
53672  * Originally Released Under LGPL - original licence link has changed is not relivant.
53673  *
53674  * Fork - LGPL
53675  * <script type="text/javascript">
53676  */
53677  
53678
53679
53680 /**
53681  * @class Roo.SplitLayoutRegion
53682  * @extends Roo.LayoutRegion
53683  * Adds a splitbar and other (private) useful functionality to a {@link Roo.LayoutRegion}.
53684  */
53685 Roo.SplitLayoutRegion = function(mgr, config, pos, cursor){
53686     this.cursor = cursor;
53687     Roo.SplitLayoutRegion.superclass.constructor.call(this, mgr, config, pos);
53688 };
53689
53690 Roo.extend(Roo.SplitLayoutRegion, Roo.LayoutRegion, {
53691     splitTip : "Drag to resize.",
53692     collapsibleSplitTip : "Drag to resize. Double click to hide.",
53693     useSplitTips : false,
53694
53695     applyConfig : function(config){
53696         Roo.SplitLayoutRegion.superclass.applyConfig.call(this, config);
53697         if(config.split){
53698             if(!this.split){
53699                 var splitEl = Roo.DomHelper.append(this.mgr.el.dom, 
53700                         {tag: "div", id: this.el.id + "-split", cls: "x-layout-split x-layout-split-"+this.position, html: "&#160;"});
53701                 /** The SplitBar for this region 
53702                 * @type Roo.SplitBar */
53703                 this.split = new Roo.SplitBar(splitEl, this.el, this.orientation);
53704                 this.split.on("moved", this.onSplitMove, this);
53705                 this.split.useShim = config.useShim === true;
53706                 this.split.getMaximumSize = this[this.position == 'north' || this.position == 'south' ? 'getVMaxSize' : 'getHMaxSize'].createDelegate(this);
53707                 if(this.useSplitTips){
53708                     this.split.el.dom.title = config.collapsible ? this.collapsibleSplitTip : this.splitTip;
53709                 }
53710                 if(config.collapsible){
53711                     this.split.el.on("dblclick", this.collapse,  this);
53712                 }
53713             }
53714             if(typeof config.minSize != "undefined"){
53715                 this.split.minSize = config.minSize;
53716             }
53717             if(typeof config.maxSize != "undefined"){
53718                 this.split.maxSize = config.maxSize;
53719             }
53720             if(config.hideWhenEmpty || config.hidden || config.collapsed){
53721                 this.hideSplitter();
53722             }
53723         }
53724     },
53725
53726     getHMaxSize : function(){
53727          var cmax = this.config.maxSize || 10000;
53728          var center = this.mgr.getRegion("center");
53729          return Math.min(cmax, (this.el.getWidth()+center.getEl().getWidth())-center.getMinWidth());
53730     },
53731
53732     getVMaxSize : function(){
53733          var cmax = this.config.maxSize || 10000;
53734          var center = this.mgr.getRegion("center");
53735          return Math.min(cmax, (this.el.getHeight()+center.getEl().getHeight())-center.getMinHeight());
53736     },
53737
53738     onSplitMove : function(split, newSize){
53739         this.fireEvent("resized", this, newSize);
53740     },
53741     
53742     /** 
53743      * Returns the {@link Roo.SplitBar} for this region.
53744      * @return {Roo.SplitBar}
53745      */
53746     getSplitBar : function(){
53747         return this.split;
53748     },
53749     
53750     hide : function(){
53751         this.hideSplitter();
53752         Roo.SplitLayoutRegion.superclass.hide.call(this);
53753     },
53754
53755     hideSplitter : function(){
53756         if(this.split){
53757             this.split.el.setLocation(-2000,-2000);
53758             this.split.el.hide();
53759         }
53760     },
53761
53762     show : function(){
53763         if(this.split){
53764             this.split.el.show();
53765         }
53766         Roo.SplitLayoutRegion.superclass.show.call(this);
53767     },
53768     
53769     beforeSlide: function(){
53770         if(Roo.isGecko){// firefox overflow auto bug workaround
53771             this.bodyEl.clip();
53772             if(this.tabs) {
53773                 this.tabs.bodyEl.clip();
53774             }
53775             if(this.activePanel){
53776                 this.activePanel.getEl().clip();
53777                 
53778                 if(this.activePanel.beforeSlide){
53779                     this.activePanel.beforeSlide();
53780                 }
53781             }
53782         }
53783     },
53784     
53785     afterSlide : function(){
53786         if(Roo.isGecko){// firefox overflow auto bug workaround
53787             this.bodyEl.unclip();
53788             if(this.tabs) {
53789                 this.tabs.bodyEl.unclip();
53790             }
53791             if(this.activePanel){
53792                 this.activePanel.getEl().unclip();
53793                 if(this.activePanel.afterSlide){
53794                     this.activePanel.afterSlide();
53795                 }
53796             }
53797         }
53798     },
53799
53800     initAutoHide : function(){
53801         if(this.autoHide !== false){
53802             if(!this.autoHideHd){
53803                 var st = new Roo.util.DelayedTask(this.slideIn, this);
53804                 this.autoHideHd = {
53805                     "mouseout": function(e){
53806                         if(!e.within(this.el, true)){
53807                             st.delay(500);
53808                         }
53809                     },
53810                     "mouseover" : function(e){
53811                         st.cancel();
53812                     },
53813                     scope : this
53814                 };
53815             }
53816             this.el.on(this.autoHideHd);
53817         }
53818     },
53819
53820     clearAutoHide : function(){
53821         if(this.autoHide !== false){
53822             this.el.un("mouseout", this.autoHideHd.mouseout);
53823             this.el.un("mouseover", this.autoHideHd.mouseover);
53824         }
53825     },
53826
53827     clearMonitor : function(){
53828         Roo.get(document).un("click", this.slideInIf, this);
53829     },
53830
53831     // these names are backwards but not changed for compat
53832     slideOut : function(){
53833         if(this.isSlid || this.el.hasActiveFx()){
53834             return;
53835         }
53836         this.isSlid = true;
53837         if(this.collapseBtn){
53838             this.collapseBtn.hide();
53839         }
53840         this.closeBtnState = this.closeBtn.getStyle('display');
53841         this.closeBtn.hide();
53842         if(this.stickBtn){
53843             this.stickBtn.show();
53844         }
53845         this.el.show();
53846         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor());
53847         this.beforeSlide();
53848         this.el.setStyle("z-index", 10001);
53849         this.el.slideIn(this.getSlideAnchor(), {
53850             callback: function(){
53851                 this.afterSlide();
53852                 this.initAutoHide();
53853                 Roo.get(document).on("click", this.slideInIf, this);
53854                 this.fireEvent("slideshow", this);
53855             },
53856             scope: this,
53857             block: true
53858         });
53859     },
53860
53861     afterSlideIn : function(){
53862         this.clearAutoHide();
53863         this.isSlid = false;
53864         this.clearMonitor();
53865         this.el.setStyle("z-index", "");
53866         if(this.collapseBtn){
53867             this.collapseBtn.show();
53868         }
53869         this.closeBtn.setStyle('display', this.closeBtnState);
53870         if(this.stickBtn){
53871             this.stickBtn.hide();
53872         }
53873         this.fireEvent("slidehide", this);
53874     },
53875
53876     slideIn : function(cb){
53877         if(!this.isSlid || this.el.hasActiveFx()){
53878             Roo.callback(cb);
53879             return;
53880         }
53881         this.isSlid = false;
53882         this.beforeSlide();
53883         this.el.slideOut(this.getSlideAnchor(), {
53884             callback: function(){
53885                 this.el.setLeftTop(-10000, -10000);
53886                 this.afterSlide();
53887                 this.afterSlideIn();
53888                 Roo.callback(cb);
53889             },
53890             scope: this,
53891             block: true
53892         });
53893     },
53894     
53895     slideInIf : function(e){
53896         if(!e.within(this.el)){
53897             this.slideIn();
53898         }
53899     },
53900
53901     animateCollapse : function(){
53902         this.beforeSlide();
53903         this.el.setStyle("z-index", 20000);
53904         var anchor = this.getSlideAnchor();
53905         this.el.slideOut(anchor, {
53906             callback : function(){
53907                 this.el.setStyle("z-index", "");
53908                 this.collapsedEl.slideIn(anchor, {duration:.3});
53909                 this.afterSlide();
53910                 this.el.setLocation(-10000,-10000);
53911                 this.el.hide();
53912                 this.fireEvent("collapsed", this);
53913             },
53914             scope: this,
53915             block: true
53916         });
53917     },
53918
53919     animateExpand : function(){
53920         this.beforeSlide();
53921         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor(), this.getExpandAdj());
53922         this.el.setStyle("z-index", 20000);
53923         this.collapsedEl.hide({
53924             duration:.1
53925         });
53926         this.el.slideIn(this.getSlideAnchor(), {
53927             callback : function(){
53928                 this.el.setStyle("z-index", "");
53929                 this.afterSlide();
53930                 if(this.split){
53931                     this.split.el.show();
53932                 }
53933                 this.fireEvent("invalidated", this);
53934                 this.fireEvent("expanded", this);
53935             },
53936             scope: this,
53937             block: true
53938         });
53939     },
53940
53941     anchors : {
53942         "west" : "left",
53943         "east" : "right",
53944         "north" : "top",
53945         "south" : "bottom"
53946     },
53947
53948     sanchors : {
53949         "west" : "l",
53950         "east" : "r",
53951         "north" : "t",
53952         "south" : "b"
53953     },
53954
53955     canchors : {
53956         "west" : "tl-tr",
53957         "east" : "tr-tl",
53958         "north" : "tl-bl",
53959         "south" : "bl-tl"
53960     },
53961
53962     getAnchor : function(){
53963         return this.anchors[this.position];
53964     },
53965
53966     getCollapseAnchor : function(){
53967         return this.canchors[this.position];
53968     },
53969
53970     getSlideAnchor : function(){
53971         return this.sanchors[this.position];
53972     },
53973
53974     getAlignAdj : function(){
53975         var cm = this.cmargins;
53976         switch(this.position){
53977             case "west":
53978                 return [0, 0];
53979             break;
53980             case "east":
53981                 return [0, 0];
53982             break;
53983             case "north":
53984                 return [0, 0];
53985             break;
53986             case "south":
53987                 return [0, 0];
53988             break;
53989         }
53990     },
53991
53992     getExpandAdj : function(){
53993         var c = this.collapsedEl, cm = this.cmargins;
53994         switch(this.position){
53995             case "west":
53996                 return [-(cm.right+c.getWidth()+cm.left), 0];
53997             break;
53998             case "east":
53999                 return [cm.right+c.getWidth()+cm.left, 0];
54000             break;
54001             case "north":
54002                 return [0, -(cm.top+cm.bottom+c.getHeight())];
54003             break;
54004             case "south":
54005                 return [0, cm.top+cm.bottom+c.getHeight()];
54006             break;
54007         }
54008     }
54009 });/*
54010  * Based on:
54011  * Ext JS Library 1.1.1
54012  * Copyright(c) 2006-2007, Ext JS, LLC.
54013  *
54014  * Originally Released Under LGPL - original licence link has changed is not relivant.
54015  *
54016  * Fork - LGPL
54017  * <script type="text/javascript">
54018  */
54019 /*
54020  * These classes are private internal classes
54021  */
54022 Roo.CenterLayoutRegion = function(mgr, config){
54023     Roo.LayoutRegion.call(this, mgr, config, "center");
54024     this.visible = true;
54025     this.minWidth = config.minWidth || 20;
54026     this.minHeight = config.minHeight || 20;
54027 };
54028
54029 Roo.extend(Roo.CenterLayoutRegion, Roo.LayoutRegion, {
54030     hide : function(){
54031         // center panel can't be hidden
54032     },
54033     
54034     show : function(){
54035         // center panel can't be hidden
54036     },
54037     
54038     getMinWidth: function(){
54039         return this.minWidth;
54040     },
54041     
54042     getMinHeight: function(){
54043         return this.minHeight;
54044     }
54045 });
54046
54047
54048 Roo.NorthLayoutRegion = function(mgr, config){
54049     Roo.LayoutRegion.call(this, mgr, config, "north", "n-resize");
54050     if(this.split){
54051         this.split.placement = Roo.SplitBar.TOP;
54052         this.split.orientation = Roo.SplitBar.VERTICAL;
54053         this.split.el.addClass("x-layout-split-v");
54054     }
54055     var size = config.initialSize || config.height;
54056     if(typeof size != "undefined"){
54057         this.el.setHeight(size);
54058     }
54059 };
54060 Roo.extend(Roo.NorthLayoutRegion, Roo.SplitLayoutRegion, {
54061     orientation: Roo.SplitBar.VERTICAL,
54062     getBox : function(){
54063         if(this.collapsed){
54064             return this.collapsedEl.getBox();
54065         }
54066         var box = this.el.getBox();
54067         if(this.split){
54068             box.height += this.split.el.getHeight();
54069         }
54070         return box;
54071     },
54072     
54073     updateBox : function(box){
54074         if(this.split && !this.collapsed){
54075             box.height -= this.split.el.getHeight();
54076             this.split.el.setLeft(box.x);
54077             this.split.el.setTop(box.y+box.height);
54078             this.split.el.setWidth(box.width);
54079         }
54080         if(this.collapsed){
54081             this.updateBody(box.width, null);
54082         }
54083         Roo.LayoutRegion.prototype.updateBox.call(this, box);
54084     }
54085 });
54086
54087 Roo.SouthLayoutRegion = function(mgr, config){
54088     Roo.SplitLayoutRegion.call(this, mgr, config, "south", "s-resize");
54089     if(this.split){
54090         this.split.placement = Roo.SplitBar.BOTTOM;
54091         this.split.orientation = Roo.SplitBar.VERTICAL;
54092         this.split.el.addClass("x-layout-split-v");
54093     }
54094     var size = config.initialSize || config.height;
54095     if(typeof size != "undefined"){
54096         this.el.setHeight(size);
54097     }
54098 };
54099 Roo.extend(Roo.SouthLayoutRegion, Roo.SplitLayoutRegion, {
54100     orientation: Roo.SplitBar.VERTICAL,
54101     getBox : function(){
54102         if(this.collapsed){
54103             return this.collapsedEl.getBox();
54104         }
54105         var box = this.el.getBox();
54106         if(this.split){
54107             var sh = this.split.el.getHeight();
54108             box.height += sh;
54109             box.y -= sh;
54110         }
54111         return box;
54112     },
54113     
54114     updateBox : function(box){
54115         if(this.split && !this.collapsed){
54116             var sh = this.split.el.getHeight();
54117             box.height -= sh;
54118             box.y += sh;
54119             this.split.el.setLeft(box.x);
54120             this.split.el.setTop(box.y-sh);
54121             this.split.el.setWidth(box.width);
54122         }
54123         if(this.collapsed){
54124             this.updateBody(box.width, null);
54125         }
54126         Roo.LayoutRegion.prototype.updateBox.call(this, box);
54127     }
54128 });
54129
54130 Roo.EastLayoutRegion = function(mgr, config){
54131     Roo.SplitLayoutRegion.call(this, mgr, config, "east", "e-resize");
54132     if(this.split){
54133         this.split.placement = Roo.SplitBar.RIGHT;
54134         this.split.orientation = Roo.SplitBar.HORIZONTAL;
54135         this.split.el.addClass("x-layout-split-h");
54136     }
54137     var size = config.initialSize || config.width;
54138     if(typeof size != "undefined"){
54139         this.el.setWidth(size);
54140     }
54141 };
54142 Roo.extend(Roo.EastLayoutRegion, Roo.SplitLayoutRegion, {
54143     orientation: Roo.SplitBar.HORIZONTAL,
54144     getBox : function(){
54145         if(this.collapsed){
54146             return this.collapsedEl.getBox();
54147         }
54148         var box = this.el.getBox();
54149         if(this.split){
54150             var sw = this.split.el.getWidth();
54151             box.width += sw;
54152             box.x -= sw;
54153         }
54154         return box;
54155     },
54156
54157     updateBox : function(box){
54158         if(this.split && !this.collapsed){
54159             var sw = this.split.el.getWidth();
54160             box.width -= sw;
54161             this.split.el.setLeft(box.x);
54162             this.split.el.setTop(box.y);
54163             this.split.el.setHeight(box.height);
54164             box.x += sw;
54165         }
54166         if(this.collapsed){
54167             this.updateBody(null, box.height);
54168         }
54169         Roo.LayoutRegion.prototype.updateBox.call(this, box);
54170     }
54171 });
54172
54173 Roo.WestLayoutRegion = function(mgr, config){
54174     Roo.SplitLayoutRegion.call(this, mgr, config, "west", "w-resize");
54175     if(this.split){
54176         this.split.placement = Roo.SplitBar.LEFT;
54177         this.split.orientation = Roo.SplitBar.HORIZONTAL;
54178         this.split.el.addClass("x-layout-split-h");
54179     }
54180     var size = config.initialSize || config.width;
54181     if(typeof size != "undefined"){
54182         this.el.setWidth(size);
54183     }
54184 };
54185 Roo.extend(Roo.WestLayoutRegion, Roo.SplitLayoutRegion, {
54186     orientation: Roo.SplitBar.HORIZONTAL,
54187     getBox : function(){
54188         if(this.collapsed){
54189             return this.collapsedEl.getBox();
54190         }
54191         var box = this.el.getBox();
54192         if(this.split){
54193             box.width += this.split.el.getWidth();
54194         }
54195         return box;
54196     },
54197     
54198     updateBox : function(box){
54199         if(this.split && !this.collapsed){
54200             var sw = this.split.el.getWidth();
54201             box.width -= sw;
54202             this.split.el.setLeft(box.x+box.width);
54203             this.split.el.setTop(box.y);
54204             this.split.el.setHeight(box.height);
54205         }
54206         if(this.collapsed){
54207             this.updateBody(null, box.height);
54208         }
54209         Roo.LayoutRegion.prototype.updateBox.call(this, box);
54210     }
54211 });
54212 /*
54213  * Based on:
54214  * Ext JS Library 1.1.1
54215  * Copyright(c) 2006-2007, Ext JS, LLC.
54216  *
54217  * Originally Released Under LGPL - original licence link has changed is not relivant.
54218  *
54219  * Fork - LGPL
54220  * <script type="text/javascript">
54221  */
54222  
54223  
54224 /*
54225  * Private internal class for reading and applying state
54226  */
54227 Roo.LayoutStateManager = function(layout){
54228      // default empty state
54229      this.state = {
54230         north: {},
54231         south: {},
54232         east: {},
54233         west: {}       
54234     };
54235 };
54236
54237 Roo.LayoutStateManager.prototype = {
54238     init : function(layout, provider){
54239         this.provider = provider;
54240         var state = provider.get(layout.id+"-layout-state");
54241         if(state){
54242             var wasUpdating = layout.isUpdating();
54243             if(!wasUpdating){
54244                 layout.beginUpdate();
54245             }
54246             for(var key in state){
54247                 if(typeof state[key] != "function"){
54248                     var rstate = state[key];
54249                     var r = layout.getRegion(key);
54250                     if(r && rstate){
54251                         if(rstate.size){
54252                             r.resizeTo(rstate.size);
54253                         }
54254                         if(rstate.collapsed == true){
54255                             r.collapse(true);
54256                         }else{
54257                             r.expand(null, true);
54258                         }
54259                     }
54260                 }
54261             }
54262             if(!wasUpdating){
54263                 layout.endUpdate();
54264             }
54265             this.state = state; 
54266         }
54267         this.layout = layout;
54268         layout.on("regionresized", this.onRegionResized, this);
54269         layout.on("regioncollapsed", this.onRegionCollapsed, this);
54270         layout.on("regionexpanded", this.onRegionExpanded, this);
54271     },
54272     
54273     storeState : function(){
54274         this.provider.set(this.layout.id+"-layout-state", this.state);
54275     },
54276     
54277     onRegionResized : function(region, newSize){
54278         this.state[region.getPosition()].size = newSize;
54279         this.storeState();
54280     },
54281     
54282     onRegionCollapsed : function(region){
54283         this.state[region.getPosition()].collapsed = true;
54284         this.storeState();
54285     },
54286     
54287     onRegionExpanded : function(region){
54288         this.state[region.getPosition()].collapsed = false;
54289         this.storeState();
54290     }
54291 };/*
54292  * Based on:
54293  * Ext JS Library 1.1.1
54294  * Copyright(c) 2006-2007, Ext JS, LLC.
54295  *
54296  * Originally Released Under LGPL - original licence link has changed is not relivant.
54297  *
54298  * Fork - LGPL
54299  * <script type="text/javascript">
54300  */
54301 /**
54302  * @class Roo.ContentPanel
54303  * @extends Roo.util.Observable
54304  * A basic ContentPanel element.
54305  * @cfg {Boolean}   fitToFrame    True for this panel to adjust its size to fit when the region resizes  (defaults to false)
54306  * @cfg {Boolean}   fitContainer   When using {@link #fitToFrame} and {@link #resizeEl}, you can also fit the parent container  (defaults to false)
54307  * @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
54308  * @cfg {Boolean}   closable      True if the panel can be closed/removed
54309  * @cfg {Boolean}   background    True if the panel should not be activated when it is added (defaults to false)
54310  * @cfg {String/HTMLElement/Element} resizeEl An element to resize if {@link #fitToFrame} is true (instead of this panel's element)
54311  * @cfg {Toolbar}   toolbar       A toolbar for this panel
54312  * @cfg {Boolean} autoScroll    True to scroll overflow in this panel (use with {@link #fitToFrame})
54313  * @cfg {String} title          The title for this panel
54314  * @cfg {Array} adjustments     Values to <b>add</b> to the width/height when doing a {@link #fitToFrame} (default is [0, 0])
54315  * @cfg {String} url            Calls {@link #setUrl} with this value
54316  * @cfg {String} region         (center|north|south|east|west) which region to put this panel on (when used with xtype constructors)
54317  * @cfg {String/Object} params  When used with {@link #url}, calls {@link #setUrl} with this value
54318  * @cfg {Boolean} loadOnce      When used with {@link #url}, calls {@link #setUrl} with this value
54319  * @cfg {String}    content        Raw content to fill content panel with (uses setContent on construction.)
54320  * @cfg {String}    style  Extra style to add to the content panel 
54321
54322  * @constructor
54323  * Create a new ContentPanel.
54324  * @param {String/HTMLElement/Roo.Element} el The container element for this panel
54325  * @param {String/Object} config A string to set only the title or a config object
54326  * @param {String} content (optional) Set the HTML content for this panel
54327  * @param {String} region (optional) Used by xtype constructors to add to regions. (values center,east,west,south,north)
54328  */
54329 Roo.ContentPanel = function(el, config, content){
54330     
54331      
54332     /*
54333     if(el.autoCreate || el.xtype){ // xtype is available if this is called from factory
54334         config = el;
54335         el = Roo.id();
54336     }
54337     if (config && config.parentLayout) { 
54338         el = config.parentLayout.el.createChild(); 
54339     }
54340     */
54341     if(el.autoCreate){ // xtype is available if this is called from factory
54342         config = el;
54343         el = Roo.id();
54344     }
54345     this.el = Roo.get(el);
54346     if(!this.el && config && config.autoCreate){
54347         if(typeof config.autoCreate == "object"){
54348             if(!config.autoCreate.id){
54349                 config.autoCreate.id = config.id||el;
54350             }
54351             this.el = Roo.DomHelper.append(document.body,
54352                         config.autoCreate, true);
54353         }else{
54354             this.el = Roo.DomHelper.append(document.body,
54355                         {tag: "div", cls: "x-layout-inactive-content", id: config.id||el}, true);
54356         }
54357     }
54358     
54359     
54360     this.closable = false;
54361     this.loaded = false;
54362     this.active = false;
54363     if(typeof config == "string"){
54364         this.title = config;
54365     }else{
54366         Roo.apply(this, config);
54367     }
54368     
54369     if (this.toolbar && !this.toolbar.el && this.toolbar.xtype) {
54370         this.wrapEl = this.el.wrap();
54371         this.toolbar.container = this.el.insertSibling(false, 'before');
54372         this.toolbar = new Roo.Toolbar(this.toolbar);
54373     }
54374     
54375     // xtype created footer. - not sure if will work as we normally have to render first..
54376     if (this.footer && !this.footer.el && this.footer.xtype) {
54377         if (!this.wrapEl) {
54378             this.wrapEl = this.el.wrap();
54379         }
54380     
54381         this.footer.container = this.wrapEl.createChild();
54382          
54383         this.footer = Roo.factory(this.footer, Roo);
54384         
54385     }
54386     
54387     if(this.resizeEl){
54388         this.resizeEl = Roo.get(this.resizeEl, true);
54389     }else{
54390         this.resizeEl = this.el;
54391     }
54392     // handle view.xtype
54393     
54394  
54395     
54396     
54397     this.addEvents({
54398         /**
54399          * @event activate
54400          * Fires when this panel is activated. 
54401          * @param {Roo.ContentPanel} this
54402          */
54403         "activate" : true,
54404         /**
54405          * @event deactivate
54406          * Fires when this panel is activated. 
54407          * @param {Roo.ContentPanel} this
54408          */
54409         "deactivate" : true,
54410
54411         /**
54412          * @event resize
54413          * Fires when this panel is resized if fitToFrame is true.
54414          * @param {Roo.ContentPanel} this
54415          * @param {Number} width The width after any component adjustments
54416          * @param {Number} height The height after any component adjustments
54417          */
54418         "resize" : true,
54419         
54420          /**
54421          * @event render
54422          * Fires when this tab is created
54423          * @param {Roo.ContentPanel} this
54424          */
54425         "render" : true
54426          
54427         
54428     });
54429     
54430
54431     
54432     
54433     if(this.autoScroll){
54434         this.resizeEl.setStyle("overflow", "auto");
54435     } else {
54436         // fix randome scrolling
54437         this.el.on('scroll', function() {
54438             Roo.log('fix random scolling');
54439             this.scrollTo('top',0); 
54440         });
54441     }
54442     content = content || this.content;
54443     if(content){
54444         this.setContent(content);
54445     }
54446     if(config && config.url){
54447         this.setUrl(this.url, this.params, this.loadOnce);
54448     }
54449     
54450     
54451     
54452     Roo.ContentPanel.superclass.constructor.call(this);
54453     
54454     if (this.view && typeof(this.view.xtype) != 'undefined') {
54455         this.view.el = this.el.appendChild(document.createElement("div"));
54456         this.view = Roo.factory(this.view); 
54457         this.view.render  &&  this.view.render(false, '');  
54458     }
54459     
54460     
54461     this.fireEvent('render', this);
54462 };
54463
54464 Roo.extend(Roo.ContentPanel, Roo.util.Observable, {
54465     tabTip:'',
54466     setRegion : function(region){
54467         this.region = region;
54468         if(region){
54469            this.el.replaceClass("x-layout-inactive-content", "x-layout-active-content");
54470         }else{
54471            this.el.replaceClass("x-layout-active-content", "x-layout-inactive-content");
54472         } 
54473     },
54474     
54475     /**
54476      * Returns the toolbar for this Panel if one was configured. 
54477      * @return {Roo.Toolbar} 
54478      */
54479     getToolbar : function(){
54480         return this.toolbar;
54481     },
54482     
54483     setActiveState : function(active){
54484         this.active = active;
54485         if(!active){
54486             this.fireEvent("deactivate", this);
54487         }else{
54488             this.fireEvent("activate", this);
54489         }
54490     },
54491     /**
54492      * Updates this panel's element
54493      * @param {String} content The new content
54494      * @param {Boolean} loadScripts (optional) true to look for and process scripts
54495     */
54496     setContent : function(content, loadScripts){
54497         this.el.update(content, loadScripts);
54498     },
54499
54500     ignoreResize : function(w, h){
54501         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
54502             return true;
54503         }else{
54504             this.lastSize = {width: w, height: h};
54505             return false;
54506         }
54507     },
54508     /**
54509      * Get the {@link Roo.UpdateManager} for this panel. Enables you to perform Ajax updates.
54510      * @return {Roo.UpdateManager} The UpdateManager
54511      */
54512     getUpdateManager : function(){
54513         return this.el.getUpdateManager();
54514     },
54515      /**
54516      * Loads this content panel immediately with content from XHR. Note: to delay loading until the panel is activated, use {@link #setUrl}.
54517      * @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:
54518 <pre><code>
54519 panel.load({
54520     url: "your-url.php",
54521     params: {param1: "foo", param2: "bar"}, // or a URL encoded string
54522     callback: yourFunction,
54523     scope: yourObject, //(optional scope)
54524     discardUrl: false,
54525     nocache: false,
54526     text: "Loading...",
54527     timeout: 30,
54528     scripts: false
54529 });
54530 </code></pre>
54531      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
54532      * 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.
54533      * @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}
54534      * @param {Function} callback (optional) Callback when transaction is complete -- called with signature (oElement, bSuccess, oResponse)
54535      * @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.
54536      * @return {Roo.ContentPanel} this
54537      */
54538     load : function(){
54539         var um = this.el.getUpdateManager();
54540         um.update.apply(um, arguments);
54541         return this;
54542     },
54543
54544
54545     /**
54546      * 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.
54547      * @param {String/Function} url The URL to load the content from or a function to call to get the URL
54548      * @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)
54549      * @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)
54550      * @return {Roo.UpdateManager} The UpdateManager
54551      */
54552     setUrl : function(url, params, loadOnce){
54553         if(this.refreshDelegate){
54554             this.removeListener("activate", this.refreshDelegate);
54555         }
54556         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
54557         this.on("activate", this.refreshDelegate);
54558         return this.el.getUpdateManager();
54559     },
54560     
54561     _handleRefresh : function(url, params, loadOnce){
54562         if(!loadOnce || !this.loaded){
54563             var updater = this.el.getUpdateManager();
54564             updater.update(url, params, this._setLoaded.createDelegate(this));
54565         }
54566     },
54567     
54568     _setLoaded : function(){
54569         this.loaded = true;
54570     }, 
54571     
54572     /**
54573      * Returns this panel's id
54574      * @return {String} 
54575      */
54576     getId : function(){
54577         return this.el.id;
54578     },
54579     
54580     /** 
54581      * Returns this panel's element - used by regiosn to add.
54582      * @return {Roo.Element} 
54583      */
54584     getEl : function(){
54585         return this.wrapEl || this.el;
54586     },
54587     
54588     adjustForComponents : function(width, height)
54589     {
54590         //Roo.log('adjustForComponents ');
54591         if(this.resizeEl != this.el){
54592             width -= this.el.getFrameWidth('lr');
54593             height -= this.el.getFrameWidth('tb');
54594         }
54595         if(this.toolbar){
54596             var te = this.toolbar.getEl();
54597             height -= te.getHeight();
54598             te.setWidth(width);
54599         }
54600         if(this.footer){
54601             var te = this.footer.getEl();
54602             //Roo.log("footer:" + te.getHeight());
54603             
54604             height -= te.getHeight();
54605             te.setWidth(width);
54606         }
54607         
54608         
54609         if(this.adjustments){
54610             width += this.adjustments[0];
54611             height += this.adjustments[1];
54612         }
54613         return {"width": width, "height": height};
54614     },
54615     
54616     setSize : function(width, height){
54617         if(this.fitToFrame && !this.ignoreResize(width, height)){
54618             if(this.fitContainer && this.resizeEl != this.el){
54619                 this.el.setSize(width, height);
54620             }
54621             var size = this.adjustForComponents(width, height);
54622             this.resizeEl.setSize(this.autoWidth ? "auto" : size.width, this.autoHeight ? "auto" : size.height);
54623             this.fireEvent('resize', this, size.width, size.height);
54624         }
54625     },
54626     
54627     /**
54628      * Returns this panel's title
54629      * @return {String} 
54630      */
54631     getTitle : function(){
54632         return this.title;
54633     },
54634     
54635     /**
54636      * Set this panel's title
54637      * @param {String} title
54638      */
54639     setTitle : function(title){
54640         this.title = title;
54641         if(this.region){
54642             this.region.updatePanelTitle(this, title);
54643         }
54644     },
54645     
54646     /**
54647      * Returns true is this panel was configured to be closable
54648      * @return {Boolean} 
54649      */
54650     isClosable : function(){
54651         return this.closable;
54652     },
54653     
54654     beforeSlide : function(){
54655         this.el.clip();
54656         this.resizeEl.clip();
54657     },
54658     
54659     afterSlide : function(){
54660         this.el.unclip();
54661         this.resizeEl.unclip();
54662     },
54663     
54664     /**
54665      *   Force a content refresh from the URL specified in the {@link #setUrl} method.
54666      *   Will fail silently if the {@link #setUrl} method has not been called.
54667      *   This does not activate the panel, just updates its content.
54668      */
54669     refresh : function(){
54670         if(this.refreshDelegate){
54671            this.loaded = false;
54672            this.refreshDelegate();
54673         }
54674     },
54675     
54676     /**
54677      * Destroys this panel
54678      */
54679     destroy : function(){
54680         this.el.removeAllListeners();
54681         var tempEl = document.createElement("span");
54682         tempEl.appendChild(this.el.dom);
54683         tempEl.innerHTML = "";
54684         this.el.remove();
54685         this.el = null;
54686     },
54687     
54688     /**
54689      * form - if the content panel contains a form - this is a reference to it.
54690      * @type {Roo.form.Form}
54691      */
54692     form : false,
54693     /**
54694      * view - if the content panel contains a view (Roo.DatePicker / Roo.View / Roo.JsonView)
54695      *    This contains a reference to it.
54696      * @type {Roo.View}
54697      */
54698     view : false,
54699     
54700       /**
54701      * Adds a xtype elements to the panel - currently only supports Forms, View, JsonView.
54702      * <pre><code>
54703
54704 layout.addxtype({
54705        xtype : 'Form',
54706        items: [ .... ]
54707    }
54708 );
54709
54710 </code></pre>
54711      * @param {Object} cfg Xtype definition of item to add.
54712      */
54713     
54714     addxtype : function(cfg) {
54715         // add form..
54716         if (cfg.xtype.match(/^Form$/)) {
54717             
54718             var el;
54719             //if (this.footer) {
54720             //    el = this.footer.container.insertSibling(false, 'before');
54721             //} else {
54722                 el = this.el.createChild();
54723             //}
54724
54725             this.form = new  Roo.form.Form(cfg);
54726             
54727             
54728             if ( this.form.allItems.length) {
54729                 this.form.render(el.dom);
54730             }
54731             return this.form;
54732         }
54733         // should only have one of theses..
54734         if ([ 'View', 'JsonView', 'DatePicker'].indexOf(cfg.xtype) > -1) {
54735             // views.. should not be just added - used named prop 'view''
54736             
54737             cfg.el = this.el.appendChild(document.createElement("div"));
54738             // factory?
54739             
54740             var ret = new Roo.factory(cfg);
54741              
54742              ret.render && ret.render(false, ''); // render blank..
54743             this.view = ret;
54744             return ret;
54745         }
54746         return false;
54747     }
54748 });
54749
54750 /**
54751  * @class Roo.GridPanel
54752  * @extends Roo.ContentPanel
54753  * @constructor
54754  * Create a new GridPanel.
54755  * @param {Roo.grid.Grid} grid The grid for this panel
54756  * @param {String/Object} config A string to set only the panel's title, or a config object
54757  */
54758 Roo.GridPanel = function(grid, config){
54759     
54760   
54761     this.wrapper = Roo.DomHelper.append(document.body, // wrapper for IE7 strict & safari scroll issue
54762         {tag: "div", cls: "x-layout-grid-wrapper x-layout-inactive-content"}, true);
54763         
54764     this.wrapper.dom.appendChild(grid.getGridEl().dom);
54765     
54766     Roo.GridPanel.superclass.constructor.call(this, this.wrapper, config);
54767     
54768     if(this.toolbar){
54769         this.toolbar.el.insertBefore(this.wrapper.dom.firstChild);
54770     }
54771     // xtype created footer. - not sure if will work as we normally have to render first..
54772     if (this.footer && !this.footer.el && this.footer.xtype) {
54773         
54774         this.footer.container = this.grid.getView().getFooterPanel(true);
54775         this.footer.dataSource = this.grid.dataSource;
54776         this.footer = Roo.factory(this.footer, Roo);
54777         
54778     }
54779     
54780     grid.monitorWindowResize = false; // turn off autosizing
54781     grid.autoHeight = false;
54782     grid.autoWidth = false;
54783     this.grid = grid;
54784     this.grid.getGridEl().replaceClass("x-layout-inactive-content", "x-layout-component-panel");
54785 };
54786
54787 Roo.extend(Roo.GridPanel, Roo.ContentPanel, {
54788     getId : function(){
54789         return this.grid.id;
54790     },
54791     
54792     /**
54793      * Returns the grid for this panel
54794      * @return {Roo.grid.Grid} 
54795      */
54796     getGrid : function(){
54797         return this.grid;    
54798     },
54799     
54800     setSize : function(width, height){
54801         if(!this.ignoreResize(width, height)){
54802             var grid = this.grid;
54803             var size = this.adjustForComponents(width, height);
54804             grid.getGridEl().setSize(size.width, size.height);
54805             grid.autoSize();
54806         }
54807     },
54808     
54809     beforeSlide : function(){
54810         this.grid.getView().scroller.clip();
54811     },
54812     
54813     afterSlide : function(){
54814         this.grid.getView().scroller.unclip();
54815     },
54816     
54817     destroy : function(){
54818         this.grid.destroy();
54819         delete this.grid;
54820         Roo.GridPanel.superclass.destroy.call(this); 
54821     }
54822 });
54823
54824
54825 /**
54826  * @class Roo.NestedLayoutPanel
54827  * @extends Roo.ContentPanel
54828  * @constructor
54829  * Create a new NestedLayoutPanel.
54830  * 
54831  * 
54832  * @param {Roo.BorderLayout} layout The layout for this panel
54833  * @param {String/Object} config A string to set only the title or a config object
54834  */
54835 Roo.NestedLayoutPanel = function(layout, config)
54836 {
54837     // construct with only one argument..
54838     /* FIXME - implement nicer consturctors
54839     if (layout.layout) {
54840         config = layout;
54841         layout = config.layout;
54842         delete config.layout;
54843     }
54844     if (layout.xtype && !layout.getEl) {
54845         // then layout needs constructing..
54846         layout = Roo.factory(layout, Roo);
54847     }
54848     */
54849     
54850     
54851     Roo.NestedLayoutPanel.superclass.constructor.call(this, layout.getEl(), config);
54852     
54853     layout.monitorWindowResize = false; // turn off autosizing
54854     this.layout = layout;
54855     this.layout.getEl().addClass("x-layout-nested-layout");
54856     
54857     
54858     
54859     
54860 };
54861
54862 Roo.extend(Roo.NestedLayoutPanel, Roo.ContentPanel, {
54863
54864     setSize : function(width, height){
54865         if(!this.ignoreResize(width, height)){
54866             var size = this.adjustForComponents(width, height);
54867             var el = this.layout.getEl();
54868             el.setSize(size.width, size.height);
54869             var touch = el.dom.offsetWidth;
54870             this.layout.layout();
54871             // ie requires a double layout on the first pass
54872             if(Roo.isIE && !this.initialized){
54873                 this.initialized = true;
54874                 this.layout.layout();
54875             }
54876         }
54877     },
54878     
54879     // activate all subpanels if not currently active..
54880     
54881     setActiveState : function(active){
54882         this.active = active;
54883         if(!active){
54884             this.fireEvent("deactivate", this);
54885             return;
54886         }
54887         
54888         this.fireEvent("activate", this);
54889         // not sure if this should happen before or after..
54890         if (!this.layout) {
54891             return; // should not happen..
54892         }
54893         var reg = false;
54894         for (var r in this.layout.regions) {
54895             reg = this.layout.getRegion(r);
54896             if (reg.getActivePanel()) {
54897                 //reg.showPanel(reg.getActivePanel()); // force it to activate.. 
54898                 reg.setActivePanel(reg.getActivePanel());
54899                 continue;
54900             }
54901             if (!reg.panels.length) {
54902                 continue;
54903             }
54904             reg.showPanel(reg.getPanel(0));
54905         }
54906         
54907         
54908         
54909         
54910     },
54911     
54912     /**
54913      * Returns the nested BorderLayout for this panel
54914      * @return {Roo.BorderLayout} 
54915      */
54916     getLayout : function(){
54917         return this.layout;
54918     },
54919     
54920      /**
54921      * Adds a xtype elements to the layout of the nested panel
54922      * <pre><code>
54923
54924 panel.addxtype({
54925        xtype : 'ContentPanel',
54926        region: 'west',
54927        items: [ .... ]
54928    }
54929 );
54930
54931 panel.addxtype({
54932         xtype : 'NestedLayoutPanel',
54933         region: 'west',
54934         layout: {
54935            center: { },
54936            west: { }   
54937         },
54938         items : [ ... list of content panels or nested layout panels.. ]
54939    }
54940 );
54941 </code></pre>
54942      * @param {Object} cfg Xtype definition of item to add.
54943      */
54944     addxtype : function(cfg) {
54945         return this.layout.addxtype(cfg);
54946     
54947     }
54948 });
54949
54950 Roo.ScrollPanel = function(el, config, content){
54951     config = config || {};
54952     config.fitToFrame = true;
54953     Roo.ScrollPanel.superclass.constructor.call(this, el, config, content);
54954     
54955     this.el.dom.style.overflow = "hidden";
54956     var wrap = this.el.wrap({cls: "x-scroller x-layout-inactive-content"});
54957     this.el.removeClass("x-layout-inactive-content");
54958     this.el.on("mousewheel", this.onWheel, this);
54959
54960     var up = wrap.createChild({cls: "x-scroller-up", html: "&#160;"}, this.el.dom);
54961     var down = wrap.createChild({cls: "x-scroller-down", html: "&#160;"});
54962     up.unselectable(); down.unselectable();
54963     up.on("click", this.scrollUp, this);
54964     down.on("click", this.scrollDown, this);
54965     up.addClassOnOver("x-scroller-btn-over");
54966     down.addClassOnOver("x-scroller-btn-over");
54967     up.addClassOnClick("x-scroller-btn-click");
54968     down.addClassOnClick("x-scroller-btn-click");
54969     this.adjustments = [0, -(up.getHeight() + down.getHeight())];
54970
54971     this.resizeEl = this.el;
54972     this.el = wrap; this.up = up; this.down = down;
54973 };
54974
54975 Roo.extend(Roo.ScrollPanel, Roo.ContentPanel, {
54976     increment : 100,
54977     wheelIncrement : 5,
54978     scrollUp : function(){
54979         this.resizeEl.scroll("up", this.increment, {callback: this.afterScroll, scope: this});
54980     },
54981
54982     scrollDown : function(){
54983         this.resizeEl.scroll("down", this.increment, {callback: this.afterScroll, scope: this});
54984     },
54985
54986     afterScroll : function(){
54987         var el = this.resizeEl;
54988         var t = el.dom.scrollTop, h = el.dom.scrollHeight, ch = el.dom.clientHeight;
54989         this.up[t == 0 ? "addClass" : "removeClass"]("x-scroller-btn-disabled");
54990         this.down[h - t <= ch ? "addClass" : "removeClass"]("x-scroller-btn-disabled");
54991     },
54992
54993     setSize : function(){
54994         Roo.ScrollPanel.superclass.setSize.apply(this, arguments);
54995         this.afterScroll();
54996     },
54997
54998     onWheel : function(e){
54999         var d = e.getWheelDelta();
55000         this.resizeEl.dom.scrollTop -= (d*this.wheelIncrement);
55001         this.afterScroll();
55002         e.stopEvent();
55003     },
55004
55005     setContent : function(content, loadScripts){
55006         this.resizeEl.update(content, loadScripts);
55007     }
55008
55009 });
55010
55011
55012
55013
55014
55015
55016
55017
55018
55019 /**
55020  * @class Roo.TreePanel
55021  * @extends Roo.ContentPanel
55022  * @constructor
55023  * Create a new TreePanel. - defaults to fit/scoll contents.
55024  * @param {String/Object} config A string to set only the panel's title, or a config object
55025  * @cfg {Roo.tree.TreePanel} tree The tree TreePanel, with config etc.
55026  */
55027 Roo.TreePanel = function(config){
55028     var el = config.el;
55029     var tree = config.tree;
55030     delete config.tree; 
55031     delete config.el; // hopefull!
55032     
55033     // wrapper for IE7 strict & safari scroll issue
55034     
55035     var treeEl = el.createChild();
55036     config.resizeEl = treeEl;
55037     
55038     
55039     
55040     Roo.TreePanel.superclass.constructor.call(this, el, config);
55041  
55042  
55043     this.tree = new Roo.tree.TreePanel(treeEl , tree);
55044     //console.log(tree);
55045     this.on('activate', function()
55046     {
55047         if (this.tree.rendered) {
55048             return;
55049         }
55050         //console.log('render tree');
55051         this.tree.render();
55052     });
55053     // this should not be needed.. - it's actually the 'el' that resizes?
55054     // actuall it breaks the containerScroll - dragging nodes auto scroll at top
55055     
55056     //this.on('resize',  function (cp, w, h) {
55057     //        this.tree.innerCt.setWidth(w);
55058     //        this.tree.innerCt.setHeight(h);
55059     //        //this.tree.innerCt.setStyle('overflow-y', 'auto');
55060     //});
55061
55062         
55063     
55064 };
55065
55066 Roo.extend(Roo.TreePanel, Roo.ContentPanel, {   
55067     fitToFrame : true,
55068     autoScroll : true
55069 });
55070
55071
55072
55073
55074
55075
55076
55077
55078
55079
55080
55081 /*
55082  * Based on:
55083  * Ext JS Library 1.1.1
55084  * Copyright(c) 2006-2007, Ext JS, LLC.
55085  *
55086  * Originally Released Under LGPL - original licence link has changed is not relivant.
55087  *
55088  * Fork - LGPL
55089  * <script type="text/javascript">
55090  */
55091  
55092
55093 /**
55094  * @class Roo.ReaderLayout
55095  * @extends Roo.BorderLayout
55096  * This is a pre-built layout that represents a classic, 5-pane application.  It consists of a header, a primary
55097  * center region containing two nested regions (a top one for a list view and one for item preview below),
55098  * and regions on either side that can be used for navigation, application commands, informational displays, etc.
55099  * The setup and configuration work exactly the same as it does for a {@link Roo.BorderLayout} - this class simply
55100  * expedites the setup of the overall layout and regions for this common application style.
55101  * Example:
55102  <pre><code>
55103 var reader = new Roo.ReaderLayout();
55104 var CP = Roo.ContentPanel;  // shortcut for adding
55105
55106 reader.beginUpdate();
55107 reader.add("north", new CP("north", "North"));
55108 reader.add("west", new CP("west", {title: "West"}));
55109 reader.add("east", new CP("east", {title: "East"}));
55110
55111 reader.regions.listView.add(new CP("listView", "List"));
55112 reader.regions.preview.add(new CP("preview", "Preview"));
55113 reader.endUpdate();
55114 </code></pre>
55115 * @constructor
55116 * Create a new ReaderLayout
55117 * @param {Object} config Configuration options
55118 * @param {String/HTMLElement/Element} container (optional) The container this layout is bound to (defaults to
55119 * document.body if omitted)
55120 */
55121 Roo.ReaderLayout = function(config, renderTo){
55122     var c = config || {size:{}};
55123     Roo.ReaderLayout.superclass.constructor.call(this, renderTo || document.body, {
55124         north: c.north !== false ? Roo.apply({
55125             split:false,
55126             initialSize: 32,
55127             titlebar: false
55128         }, c.north) : false,
55129         west: c.west !== false ? Roo.apply({
55130             split:true,
55131             initialSize: 200,
55132             minSize: 175,
55133             maxSize: 400,
55134             titlebar: true,
55135             collapsible: true,
55136             animate: true,
55137             margins:{left:5,right:0,bottom:5,top:5},
55138             cmargins:{left:5,right:5,bottom:5,top:5}
55139         }, c.west) : false,
55140         east: c.east !== false ? Roo.apply({
55141             split:true,
55142             initialSize: 200,
55143             minSize: 175,
55144             maxSize: 400,
55145             titlebar: true,
55146             collapsible: true,
55147             animate: true,
55148             margins:{left:0,right:5,bottom:5,top:5},
55149             cmargins:{left:5,right:5,bottom:5,top:5}
55150         }, c.east) : false,
55151         center: Roo.apply({
55152             tabPosition: 'top',
55153             autoScroll:false,
55154             closeOnTab: true,
55155             titlebar:false,
55156             margins:{left:c.west!==false ? 0 : 5,right:c.east!==false ? 0 : 5,bottom:5,top:2}
55157         }, c.center)
55158     });
55159
55160     this.el.addClass('x-reader');
55161
55162     this.beginUpdate();
55163
55164     var inner = new Roo.BorderLayout(Roo.get(document.body).createChild(), {
55165         south: c.preview !== false ? Roo.apply({
55166             split:true,
55167             initialSize: 200,
55168             minSize: 100,
55169             autoScroll:true,
55170             collapsible:true,
55171             titlebar: true,
55172             cmargins:{top:5,left:0, right:0, bottom:0}
55173         }, c.preview) : false,
55174         center: Roo.apply({
55175             autoScroll:false,
55176             titlebar:false,
55177             minHeight:200
55178         }, c.listView)
55179     });
55180     this.add('center', new Roo.NestedLayoutPanel(inner,
55181             Roo.apply({title: c.mainTitle || '',tabTip:''},c.innerPanelCfg)));
55182
55183     this.endUpdate();
55184
55185     this.regions.preview = inner.getRegion('south');
55186     this.regions.listView = inner.getRegion('center');
55187 };
55188
55189 Roo.extend(Roo.ReaderLayout, Roo.BorderLayout);/*
55190  * Based on:
55191  * Ext JS Library 1.1.1
55192  * Copyright(c) 2006-2007, Ext JS, LLC.
55193  *
55194  * Originally Released Under LGPL - original licence link has changed is not relivant.
55195  *
55196  * Fork - LGPL
55197  * <script type="text/javascript">
55198  */
55199  
55200 /**
55201  * @class Roo.grid.Grid
55202  * @extends Roo.util.Observable
55203  * This class represents the primary interface of a component based grid control.
55204  * <br><br>Usage:<pre><code>
55205  var grid = new Roo.grid.Grid("my-container-id", {
55206      ds: myDataStore,
55207      cm: myColModel,
55208      selModel: mySelectionModel,
55209      autoSizeColumns: true,
55210      monitorWindowResize: false,
55211      trackMouseOver: true
55212  });
55213  // set any options
55214  grid.render();
55215  * </code></pre>
55216  * <b>Common Problems:</b><br/>
55217  * - Grid does not resize properly when going smaller: Setting overflow hidden on the container
55218  * element will correct this<br/>
55219  * - If you get el.style[camel]= NaNpx or -2px or something related, be certain you have given your container element
55220  * dimensions. The grid adapts to your container's size, if your container has no size defined then the results
55221  * are unpredictable.<br/>
55222  * - Do not render the grid into an element with display:none. Try using visibility:hidden. Otherwise there is no way for the
55223  * grid to calculate dimensions/offsets.<br/>
55224   * @constructor
55225  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
55226  * The container MUST have some type of size defined for the grid to fill. The container will be
55227  * automatically set to position relative if it isn't already.
55228  * @param {Object} config A config object that sets properties on this grid.
55229  */
55230 Roo.grid.Grid = function(container, config){
55231         // initialize the container
55232         this.container = Roo.get(container);
55233         this.container.update("");
55234         this.container.setStyle("overflow", "hidden");
55235     this.container.addClass('x-grid-container');
55236
55237     this.id = this.container.id;
55238
55239     Roo.apply(this, config);
55240     // check and correct shorthanded configs
55241     if(this.ds){
55242         this.dataSource = this.ds;
55243         delete this.ds;
55244     }
55245     if(this.cm){
55246         this.colModel = this.cm;
55247         delete this.cm;
55248     }
55249     if(this.sm){
55250         this.selModel = this.sm;
55251         delete this.sm;
55252     }
55253
55254     if (this.selModel) {
55255         this.selModel = Roo.factory(this.selModel, Roo.grid);
55256         this.sm = this.selModel;
55257         this.sm.xmodule = this.xmodule || false;
55258     }
55259     if (typeof(this.colModel.config) == 'undefined') {
55260         this.colModel = new Roo.grid.ColumnModel(this.colModel);
55261         this.cm = this.colModel;
55262         this.cm.xmodule = this.xmodule || false;
55263     }
55264     if (this.dataSource) {
55265         this.dataSource= Roo.factory(this.dataSource, Roo.data);
55266         this.ds = this.dataSource;
55267         this.ds.xmodule = this.xmodule || false;
55268          
55269     }
55270     
55271     
55272     
55273     if(this.width){
55274         this.container.setWidth(this.width);
55275     }
55276
55277     if(this.height){
55278         this.container.setHeight(this.height);
55279     }
55280     /** @private */
55281         this.addEvents({
55282         // raw events
55283         /**
55284          * @event click
55285          * The raw click event for the entire grid.
55286          * @param {Roo.EventObject} e
55287          */
55288         "click" : true,
55289         /**
55290          * @event dblclick
55291          * The raw dblclick event for the entire grid.
55292          * @param {Roo.EventObject} e
55293          */
55294         "dblclick" : true,
55295         /**
55296          * @event contextmenu
55297          * The raw contextmenu event for the entire grid.
55298          * @param {Roo.EventObject} e
55299          */
55300         "contextmenu" : true,
55301         /**
55302          * @event mousedown
55303          * The raw mousedown event for the entire grid.
55304          * @param {Roo.EventObject} e
55305          */
55306         "mousedown" : true,
55307         /**
55308          * @event mouseup
55309          * The raw mouseup event for the entire grid.
55310          * @param {Roo.EventObject} e
55311          */
55312         "mouseup" : true,
55313         /**
55314          * @event mouseover
55315          * The raw mouseover event for the entire grid.
55316          * @param {Roo.EventObject} e
55317          */
55318         "mouseover" : true,
55319         /**
55320          * @event mouseout
55321          * The raw mouseout event for the entire grid.
55322          * @param {Roo.EventObject} e
55323          */
55324         "mouseout" : true,
55325         /**
55326          * @event keypress
55327          * The raw keypress event for the entire grid.
55328          * @param {Roo.EventObject} e
55329          */
55330         "keypress" : true,
55331         /**
55332          * @event keydown
55333          * The raw keydown event for the entire grid.
55334          * @param {Roo.EventObject} e
55335          */
55336         "keydown" : true,
55337
55338         // custom events
55339
55340         /**
55341          * @event cellclick
55342          * Fires when a cell is clicked
55343          * @param {Grid} this
55344          * @param {Number} rowIndex
55345          * @param {Number} columnIndex
55346          * @param {Roo.EventObject} e
55347          */
55348         "cellclick" : true,
55349         /**
55350          * @event celldblclick
55351          * Fires when a cell is double clicked
55352          * @param {Grid} this
55353          * @param {Number} rowIndex
55354          * @param {Number} columnIndex
55355          * @param {Roo.EventObject} e
55356          */
55357         "celldblclick" : true,
55358         /**
55359          * @event rowclick
55360          * Fires when a row is clicked
55361          * @param {Grid} this
55362          * @param {Number} rowIndex
55363          * @param {Roo.EventObject} e
55364          */
55365         "rowclick" : true,
55366         /**
55367          * @event rowdblclick
55368          * Fires when a row is double clicked
55369          * @param {Grid} this
55370          * @param {Number} rowIndex
55371          * @param {Roo.EventObject} e
55372          */
55373         "rowdblclick" : true,
55374         /**
55375          * @event headerclick
55376          * Fires when a header is clicked
55377          * @param {Grid} this
55378          * @param {Number} columnIndex
55379          * @param {Roo.EventObject} e
55380          */
55381         "headerclick" : true,
55382         /**
55383          * @event headerdblclick
55384          * Fires when a header cell is double clicked
55385          * @param {Grid} this
55386          * @param {Number} columnIndex
55387          * @param {Roo.EventObject} e
55388          */
55389         "headerdblclick" : true,
55390         /**
55391          * @event rowcontextmenu
55392          * Fires when a row is right clicked
55393          * @param {Grid} this
55394          * @param {Number} rowIndex
55395          * @param {Roo.EventObject} e
55396          */
55397         "rowcontextmenu" : true,
55398         /**
55399          * @event cellcontextmenu
55400          * Fires when a cell is right clicked
55401          * @param {Grid} this
55402          * @param {Number} rowIndex
55403          * @param {Number} cellIndex
55404          * @param {Roo.EventObject} e
55405          */
55406          "cellcontextmenu" : true,
55407         /**
55408          * @event headercontextmenu
55409          * Fires when a header is right clicked
55410          * @param {Grid} this
55411          * @param {Number} columnIndex
55412          * @param {Roo.EventObject} e
55413          */
55414         "headercontextmenu" : true,
55415         /**
55416          * @event bodyscroll
55417          * Fires when the body element is scrolled
55418          * @param {Number} scrollLeft
55419          * @param {Number} scrollTop
55420          */
55421         "bodyscroll" : true,
55422         /**
55423          * @event columnresize
55424          * Fires when the user resizes a column
55425          * @param {Number} columnIndex
55426          * @param {Number} newSize
55427          */
55428         "columnresize" : true,
55429         /**
55430          * @event columnmove
55431          * Fires when the user moves a column
55432          * @param {Number} oldIndex
55433          * @param {Number} newIndex
55434          */
55435         "columnmove" : true,
55436         /**
55437          * @event startdrag
55438          * Fires when row(s) start being dragged
55439          * @param {Grid} this
55440          * @param {Roo.GridDD} dd The drag drop object
55441          * @param {event} e The raw browser event
55442          */
55443         "startdrag" : true,
55444         /**
55445          * @event enddrag
55446          * Fires when a drag operation is complete
55447          * @param {Grid} this
55448          * @param {Roo.GridDD} dd The drag drop object
55449          * @param {event} e The raw browser event
55450          */
55451         "enddrag" : true,
55452         /**
55453          * @event dragdrop
55454          * Fires when dragged row(s) are dropped on a valid DD target
55455          * @param {Grid} this
55456          * @param {Roo.GridDD} dd The drag drop object
55457          * @param {String} targetId The target drag drop object
55458          * @param {event} e The raw browser event
55459          */
55460         "dragdrop" : true,
55461         /**
55462          * @event dragover
55463          * Fires while row(s) are being dragged. "targetId" is the id of the Yahoo.util.DD object the selected rows are being dragged over.
55464          * @param {Grid} this
55465          * @param {Roo.GridDD} dd The drag drop object
55466          * @param {String} targetId The target drag drop object
55467          * @param {event} e The raw browser event
55468          */
55469         "dragover" : true,
55470         /**
55471          * @event dragenter
55472          *  Fires when the dragged row(s) first cross another DD target while being dragged
55473          * @param {Grid} this
55474          * @param {Roo.GridDD} dd The drag drop object
55475          * @param {String} targetId The target drag drop object
55476          * @param {event} e The raw browser event
55477          */
55478         "dragenter" : true,
55479         /**
55480          * @event dragout
55481          * Fires when the dragged row(s) leave another DD target while being dragged
55482          * @param {Grid} this
55483          * @param {Roo.GridDD} dd The drag drop object
55484          * @param {String} targetId The target drag drop object
55485          * @param {event} e The raw browser event
55486          */
55487         "dragout" : true,
55488         /**
55489          * @event rowclass
55490          * Fires when a row is rendered, so you can change add a style to it.
55491          * @param {GridView} gridview   The grid view
55492          * @param {Object} rowcfg   contains record  rowIndex and rowClass - set rowClass to add a style.
55493          */
55494         'rowclass' : true,
55495
55496         /**
55497          * @event render
55498          * Fires when the grid is rendered
55499          * @param {Grid} grid
55500          */
55501         'render' : true
55502     });
55503
55504     Roo.grid.Grid.superclass.constructor.call(this);
55505 };
55506 Roo.extend(Roo.grid.Grid, Roo.util.Observable, {
55507     
55508     /**
55509      * @cfg {String} ddGroup - drag drop group.
55510      */
55511       /**
55512      * @cfg {String} dragGroup - drag group (?? not sure if needed.)
55513      */
55514
55515     /**
55516      * @cfg {Number} minColumnWidth The minimum width a column can be resized to. Default is 25.
55517      */
55518     minColumnWidth : 25,
55519
55520     /**
55521      * @cfg {Boolean} autoSizeColumns True to automatically resize the columns to fit their content
55522      * <b>on initial render.</b> It is more efficient to explicitly size the columns
55523      * through the ColumnModel's {@link Roo.grid.ColumnModel#width} config option.  Default is false.
55524      */
55525     autoSizeColumns : false,
55526
55527     /**
55528      * @cfg {Boolean} autoSizeHeaders True to measure headers with column data when auto sizing columns. Default is true.
55529      */
55530     autoSizeHeaders : true,
55531
55532     /**
55533      * @cfg {Boolean} monitorWindowResize True to autoSize the grid when the window resizes. Default is true.
55534      */
55535     monitorWindowResize : true,
55536
55537     /**
55538      * @cfg {Boolean} maxRowsToMeasure If autoSizeColumns is on, maxRowsToMeasure can be used to limit the number of
55539      * rows measured to get a columns size. Default is 0 (all rows).
55540      */
55541     maxRowsToMeasure : 0,
55542
55543     /**
55544      * @cfg {Boolean} trackMouseOver True to highlight rows when the mouse is over. Default is true.
55545      */
55546     trackMouseOver : true,
55547
55548     /**
55549     * @cfg {Boolean} enableDrag  True to enable drag of rows. Default is false. (double check if this is needed?)
55550     */
55551       /**
55552     * @cfg {Boolean} enableDrop  True to enable drop of elements. Default is false. (double check if this is needed?)
55553     */
55554     
55555     /**
55556     * @cfg {Boolean} enableDragDrop True to enable drag and drop of rows. Default is false.
55557     */
55558     enableDragDrop : false,
55559     
55560     /**
55561     * @cfg {Boolean} enableColumnMove True to enable drag and drop reorder of columns. Default is true.
55562     */
55563     enableColumnMove : true,
55564     
55565     /**
55566     * @cfg {Boolean} enableColumnHide True to enable hiding of columns with the header context menu. Default is true.
55567     */
55568     enableColumnHide : true,
55569     
55570     /**
55571     * @cfg {Boolean} enableRowHeightSync True to manually sync row heights across locked and not locked rows. Default is false.
55572     */
55573     enableRowHeightSync : false,
55574     
55575     /**
55576     * @cfg {Boolean} stripeRows True to stripe the rows.  Default is true.
55577     */
55578     stripeRows : true,
55579     
55580     /**
55581     * @cfg {Boolean} autoHeight True to fit the height of the grid container to the height of the data. Default is false.
55582     */
55583     autoHeight : false,
55584
55585     /**
55586      * @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.
55587      */
55588     autoExpandColumn : false,
55589
55590     /**
55591     * @cfg {Number} autoExpandMin The minimum width the autoExpandColumn can have (if enabled).
55592     * Default is 50.
55593     */
55594     autoExpandMin : 50,
55595
55596     /**
55597     * @cfg {Number} autoExpandMax The maximum width the autoExpandColumn can have (if enabled). Default is 1000.
55598     */
55599     autoExpandMax : 1000,
55600
55601     /**
55602     * @cfg {Object} view The {@link Roo.grid.GridView} used by the grid. This can be set before a call to render().
55603     */
55604     view : null,
55605
55606     /**
55607     * @cfg {Object} loadMask An {@link Roo.LoadMask} config or true to mask the grid while loading. Default is false.
55608     */
55609     loadMask : false,
55610     /**
55611     * @cfg {Roo.dd.DropTarget} dropTarget An {@link Roo.dd.DropTarget} config
55612     */
55613     dropTarget: false,
55614     
55615    
55616     
55617     // private
55618     rendered : false,
55619
55620     /**
55621     * @cfg {Boolean} autoWidth True to set the grid's width to the default total width of the grid's columns instead
55622     * of a fixed width. Default is false.
55623     */
55624     /**
55625     * @cfg {Number} maxHeight Sets the maximum height of the grid - ignored if autoHeight is not on.
55626     */
55627     
55628     
55629     /**
55630     * @cfg {String} ddText Configures the text is the drag proxy (defaults to "%0 selected row(s)").
55631     * %0 is replaced with the number of selected rows.
55632     */
55633     ddText : "{0} selected row{1}",
55634     
55635     
55636     /**
55637      * Called once after all setup has been completed and the grid is ready to be rendered.
55638      * @return {Roo.grid.Grid} this
55639      */
55640     render : function()
55641     {
55642         var c = this.container;
55643         // try to detect autoHeight/width mode
55644         if((!c.dom.offsetHeight || c.dom.offsetHeight < 20) || c.getStyle("height") == "auto"){
55645             this.autoHeight = true;
55646         }
55647         var view = this.getView();
55648         view.init(this);
55649
55650         c.on("click", this.onClick, this);
55651         c.on("dblclick", this.onDblClick, this);
55652         c.on("contextmenu", this.onContextMenu, this);
55653         c.on("keydown", this.onKeyDown, this);
55654         if (Roo.isTouch) {
55655             c.on("touchstart", this.onTouchStart, this);
55656         }
55657
55658         this.relayEvents(c, ["mousedown","mouseup","mouseover","mouseout","keypress"]);
55659
55660         this.getSelectionModel().init(this);
55661
55662         view.render();
55663
55664         if(this.loadMask){
55665             this.loadMask = new Roo.LoadMask(this.container,
55666                     Roo.apply({store:this.dataSource}, this.loadMask));
55667         }
55668         
55669         
55670         if (this.toolbar && this.toolbar.xtype) {
55671             this.toolbar.container = this.getView().getHeaderPanel(true);
55672             this.toolbar = new Roo.Toolbar(this.toolbar);
55673         }
55674         if (this.footer && this.footer.xtype) {
55675             this.footer.dataSource = this.getDataSource();
55676             this.footer.container = this.getView().getFooterPanel(true);
55677             this.footer = Roo.factory(this.footer, Roo);
55678         }
55679         if (this.dropTarget && this.dropTarget.xtype) {
55680             delete this.dropTarget.xtype;
55681             this.dropTarget =  new Roo.dd.DropTarget(this.getView().mainBody, this.dropTarget);
55682         }
55683         
55684         
55685         this.rendered = true;
55686         this.fireEvent('render', this);
55687         return this;
55688     },
55689
55690     /**
55691      * Reconfigures the grid to use a different Store and Column Model.
55692      * The View will be bound to the new objects and refreshed.
55693      * @param {Roo.data.Store} dataSource The new {@link Roo.data.Store} object
55694      * @param {Roo.grid.ColumnModel} The new {@link Roo.grid.ColumnModel} object
55695      */
55696     reconfigure : function(dataSource, colModel){
55697         if(this.loadMask){
55698             this.loadMask.destroy();
55699             this.loadMask = new Roo.LoadMask(this.container,
55700                     Roo.apply({store:dataSource}, this.loadMask));
55701         }
55702         this.view.bind(dataSource, colModel);
55703         this.dataSource = dataSource;
55704         this.colModel = colModel;
55705         this.view.refresh(true);
55706     },
55707     /**
55708      * addColumns
55709      * Add's a column, default at the end..
55710      
55711      * @param {int} position to add (default end)
55712      * @param {Array} of objects of column configuration see {@link Roo.grid.ColumnModel} 
55713      */
55714     addColumns : function(pos, ar)
55715     {
55716         
55717         for (var i =0;i< ar.length;i++) {
55718             var cfg = ar[i];
55719             cfg.id = typeof(cfg.id) == 'undefined' ? Roo.id() : cfg.id; // don't normally use this..
55720             this.cm.lookup[cfg.id] = cfg;
55721         }
55722         
55723         
55724         if (typeof(pos) == 'undefined' || pos >= this.cm.config.length) {
55725             pos = this.cm.config.length; //this.cm.config.push(cfg);
55726         } 
55727         pos = Math.max(0,pos);
55728         ar.unshift(0);
55729         ar.unshift(pos);
55730         this.cm.config.splice.apply(this.cm.config, ar);
55731         
55732         
55733         
55734         this.view.generateRules(this.cm);
55735         this.view.refresh(true);
55736         
55737     },
55738     
55739     
55740     
55741     
55742     // private
55743     onKeyDown : function(e){
55744         this.fireEvent("keydown", e);
55745     },
55746
55747     /**
55748      * Destroy this grid.
55749      * @param {Boolean} removeEl True to remove the element
55750      */
55751     destroy : function(removeEl, keepListeners){
55752         if(this.loadMask){
55753             this.loadMask.destroy();
55754         }
55755         var c = this.container;
55756         c.removeAllListeners();
55757         this.view.destroy();
55758         this.colModel.purgeListeners();
55759         if(!keepListeners){
55760             this.purgeListeners();
55761         }
55762         c.update("");
55763         if(removeEl === true){
55764             c.remove();
55765         }
55766     },
55767
55768     // private
55769     processEvent : function(name, e){
55770         // does this fire select???
55771         //Roo.log('grid:processEvent '  + name);
55772         
55773         if (name != 'touchstart' ) {
55774             this.fireEvent(name, e);    
55775         }
55776         
55777         var t = e.getTarget();
55778         var v = this.view;
55779         var header = v.findHeaderIndex(t);
55780         if(header !== false){
55781             var ename = name == 'touchstart' ? 'click' : name;
55782              
55783             this.fireEvent("header" + ename, this, header, e);
55784         }else{
55785             var row = v.findRowIndex(t);
55786             var cell = v.findCellIndex(t);
55787             if (name == 'touchstart') {
55788                 // first touch is always a click.
55789                 // hopefull this happens after selection is updated.?
55790                 name = false;
55791                 
55792                 if (typeof(this.selModel.getSelectedCell) != 'undefined') {
55793                     var cs = this.selModel.getSelectedCell();
55794                     if (row == cs[0] && cell == cs[1]){
55795                         name = 'dblclick';
55796                     }
55797                 }
55798                 if (typeof(this.selModel.getSelections) != 'undefined') {
55799                     var cs = this.selModel.getSelections();
55800                     var ds = this.dataSource;
55801                     if (cs.length == 1 && ds.getAt(row) == cs[0]){
55802                         name = 'dblclick';
55803                     }
55804                 }
55805                 if (!name) {
55806                     return;
55807                 }
55808             }
55809             
55810             
55811             if(row !== false){
55812                 this.fireEvent("row" + name, this, row, e);
55813                 if(cell !== false){
55814                     this.fireEvent("cell" + name, this, row, cell, e);
55815                 }
55816             }
55817         }
55818     },
55819
55820     // private
55821     onClick : function(e){
55822         this.processEvent("click", e);
55823     },
55824    // private
55825     onTouchStart : function(e){
55826         this.processEvent("touchstart", e);
55827     },
55828
55829     // private
55830     onContextMenu : function(e, t){
55831         this.processEvent("contextmenu", e);
55832     },
55833
55834     // private
55835     onDblClick : function(e){
55836         this.processEvent("dblclick", e);
55837     },
55838
55839     // private
55840     walkCells : function(row, col, step, fn, scope){
55841         var cm = this.colModel, clen = cm.getColumnCount();
55842         var ds = this.dataSource, rlen = ds.getCount(), first = true;
55843         if(step < 0){
55844             if(col < 0){
55845                 row--;
55846                 first = false;
55847             }
55848             while(row >= 0){
55849                 if(!first){
55850                     col = clen-1;
55851                 }
55852                 first = false;
55853                 while(col >= 0){
55854                     if(fn.call(scope || this, row, col, cm) === true){
55855                         return [row, col];
55856                     }
55857                     col--;
55858                 }
55859                 row--;
55860             }
55861         } else {
55862             if(col >= clen){
55863                 row++;
55864                 first = false;
55865             }
55866             while(row < rlen){
55867                 if(!first){
55868                     col = 0;
55869                 }
55870                 first = false;
55871                 while(col < clen){
55872                     if(fn.call(scope || this, row, col, cm) === true){
55873                         return [row, col];
55874                     }
55875                     col++;
55876                 }
55877                 row++;
55878             }
55879         }
55880         return null;
55881     },
55882
55883     // private
55884     getSelections : function(){
55885         return this.selModel.getSelections();
55886     },
55887
55888     /**
55889      * Causes the grid to manually recalculate its dimensions. Generally this is done automatically,
55890      * but if manual update is required this method will initiate it.
55891      */
55892     autoSize : function(){
55893         if(this.rendered){
55894             this.view.layout();
55895             if(this.view.adjustForScroll){
55896                 this.view.adjustForScroll();
55897             }
55898         }
55899     },
55900
55901     /**
55902      * Returns the grid's underlying element.
55903      * @return {Element} The element
55904      */
55905     getGridEl : function(){
55906         return this.container;
55907     },
55908
55909     // private for compatibility, overridden by editor grid
55910     stopEditing : function(){},
55911
55912     /**
55913      * Returns the grid's SelectionModel.
55914      * @return {SelectionModel}
55915      */
55916     getSelectionModel : function(){
55917         if(!this.selModel){
55918             this.selModel = new Roo.grid.RowSelectionModel();
55919         }
55920         return this.selModel;
55921     },
55922
55923     /**
55924      * Returns the grid's DataSource.
55925      * @return {DataSource}
55926      */
55927     getDataSource : function(){
55928         return this.dataSource;
55929     },
55930
55931     /**
55932      * Returns the grid's ColumnModel.
55933      * @return {ColumnModel}
55934      */
55935     getColumnModel : function(){
55936         return this.colModel;
55937     },
55938
55939     /**
55940      * Returns the grid's GridView object.
55941      * @return {GridView}
55942      */
55943     getView : function(){
55944         if(!this.view){
55945             this.view = new Roo.grid.GridView(this.viewConfig);
55946             this.relayEvents(this.view, [
55947                 "beforerowremoved", "beforerowsinserted",
55948                 "beforerefresh", "rowremoved",
55949                 "rowsinserted", "rowupdated" ,"refresh"
55950             ]);
55951         }
55952         return this.view;
55953     },
55954     /**
55955      * Called to get grid's drag proxy text, by default returns this.ddText.
55956      * Override this to put something different in the dragged text.
55957      * @return {String}
55958      */
55959     getDragDropText : function(){
55960         var count = this.selModel.getCount();
55961         return String.format(this.ddText, count, count == 1 ? '' : 's');
55962     }
55963 });
55964 /*
55965  * Based on:
55966  * Ext JS Library 1.1.1
55967  * Copyright(c) 2006-2007, Ext JS, LLC.
55968  *
55969  * Originally Released Under LGPL - original licence link has changed is not relivant.
55970  *
55971  * Fork - LGPL
55972  * <script type="text/javascript">
55973  */
55974  
55975 Roo.grid.AbstractGridView = function(){
55976         this.grid = null;
55977         
55978         this.events = {
55979             "beforerowremoved" : true,
55980             "beforerowsinserted" : true,
55981             "beforerefresh" : true,
55982             "rowremoved" : true,
55983             "rowsinserted" : true,
55984             "rowupdated" : true,
55985             "refresh" : true
55986         };
55987     Roo.grid.AbstractGridView.superclass.constructor.call(this);
55988 };
55989
55990 Roo.extend(Roo.grid.AbstractGridView, Roo.util.Observable, {
55991     rowClass : "x-grid-row",
55992     cellClass : "x-grid-cell",
55993     tdClass : "x-grid-td",
55994     hdClass : "x-grid-hd",
55995     splitClass : "x-grid-hd-split",
55996     
55997     init: function(grid){
55998         this.grid = grid;
55999                 var cid = this.grid.getGridEl().id;
56000         this.colSelector = "#" + cid + " ." + this.cellClass + "-";
56001         this.tdSelector = "#" + cid + " ." + this.tdClass + "-";
56002         this.hdSelector = "#" + cid + " ." + this.hdClass + "-";
56003         this.splitSelector = "#" + cid + " ." + this.splitClass + "-";
56004         },
56005         
56006     getColumnRenderers : function(){
56007         var renderers = [];
56008         var cm = this.grid.colModel;
56009         var colCount = cm.getColumnCount();
56010         for(var i = 0; i < colCount; i++){
56011             renderers[i] = cm.getRenderer(i);
56012         }
56013         return renderers;
56014     },
56015     
56016     getColumnIds : function(){
56017         var ids = [];
56018         var cm = this.grid.colModel;
56019         var colCount = cm.getColumnCount();
56020         for(var i = 0; i < colCount; i++){
56021             ids[i] = cm.getColumnId(i);
56022         }
56023         return ids;
56024     },
56025     
56026     getDataIndexes : function(){
56027         if(!this.indexMap){
56028             this.indexMap = this.buildIndexMap();
56029         }
56030         return this.indexMap.colToData;
56031     },
56032     
56033     getColumnIndexByDataIndex : function(dataIndex){
56034         if(!this.indexMap){
56035             this.indexMap = this.buildIndexMap();
56036         }
56037         return this.indexMap.dataToCol[dataIndex];
56038     },
56039     
56040     /**
56041      * Set a css style for a column dynamically. 
56042      * @param {Number} colIndex The index of the column
56043      * @param {String} name The css property name
56044      * @param {String} value The css value
56045      */
56046     setCSSStyle : function(colIndex, name, value){
56047         var selector = "#" + this.grid.id + " .x-grid-col-" + colIndex;
56048         Roo.util.CSS.updateRule(selector, name, value);
56049     },
56050     
56051     generateRules : function(cm){
56052         var ruleBuf = [], rulesId = this.grid.id + '-cssrules';
56053         Roo.util.CSS.removeStyleSheet(rulesId);
56054         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
56055             var cid = cm.getColumnId(i);
56056             ruleBuf.push(this.colSelector, cid, " {\n", cm.config[i].css, "}\n",
56057                          this.tdSelector, cid, " {\n}\n",
56058                          this.hdSelector, cid, " {\n}\n",
56059                          this.splitSelector, cid, " {\n}\n");
56060         }
56061         return Roo.util.CSS.createStyleSheet(ruleBuf.join(""), rulesId);
56062     }
56063 });/*
56064  * Based on:
56065  * Ext JS Library 1.1.1
56066  * Copyright(c) 2006-2007, Ext JS, LLC.
56067  *
56068  * Originally Released Under LGPL - original licence link has changed is not relivant.
56069  *
56070  * Fork - LGPL
56071  * <script type="text/javascript">
56072  */
56073
56074 // private
56075 // This is a support class used internally by the Grid components
56076 Roo.grid.HeaderDragZone = function(grid, hd, hd2){
56077     this.grid = grid;
56078     this.view = grid.getView();
56079     this.ddGroup = "gridHeader" + this.grid.getGridEl().id;
56080     Roo.grid.HeaderDragZone.superclass.constructor.call(this, hd);
56081     if(hd2){
56082         this.setHandleElId(Roo.id(hd));
56083         this.setOuterHandleElId(Roo.id(hd2));
56084     }
56085     this.scroll = false;
56086 };
56087 Roo.extend(Roo.grid.HeaderDragZone, Roo.dd.DragZone, {
56088     maxDragWidth: 120,
56089     getDragData : function(e){
56090         var t = Roo.lib.Event.getTarget(e);
56091         var h = this.view.findHeaderCell(t);
56092         if(h){
56093             return {ddel: h.firstChild, header:h};
56094         }
56095         return false;
56096     },
56097
56098     onInitDrag : function(e){
56099         this.view.headersDisabled = true;
56100         var clone = this.dragData.ddel.cloneNode(true);
56101         clone.id = Roo.id();
56102         clone.style.width = Math.min(this.dragData.header.offsetWidth,this.maxDragWidth) + "px";
56103         this.proxy.update(clone);
56104         return true;
56105     },
56106
56107     afterValidDrop : function(){
56108         var v = this.view;
56109         setTimeout(function(){
56110             v.headersDisabled = false;
56111         }, 50);
56112     },
56113
56114     afterInvalidDrop : function(){
56115         var v = this.view;
56116         setTimeout(function(){
56117             v.headersDisabled = false;
56118         }, 50);
56119     }
56120 });
56121 /*
56122  * Based on:
56123  * Ext JS Library 1.1.1
56124  * Copyright(c) 2006-2007, Ext JS, LLC.
56125  *
56126  * Originally Released Under LGPL - original licence link has changed is not relivant.
56127  *
56128  * Fork - LGPL
56129  * <script type="text/javascript">
56130  */
56131 // private
56132 // This is a support class used internally by the Grid components
56133 Roo.grid.HeaderDropZone = function(grid, hd, hd2){
56134     this.grid = grid;
56135     this.view = grid.getView();
56136     // split the proxies so they don't interfere with mouse events
56137     this.proxyTop = Roo.DomHelper.append(document.body, {
56138         cls:"col-move-top", html:"&#160;"
56139     }, true);
56140     this.proxyBottom = Roo.DomHelper.append(document.body, {
56141         cls:"col-move-bottom", html:"&#160;"
56142     }, true);
56143     this.proxyTop.hide = this.proxyBottom.hide = function(){
56144         this.setLeftTop(-100,-100);
56145         this.setStyle("visibility", "hidden");
56146     };
56147     this.ddGroup = "gridHeader" + this.grid.getGridEl().id;
56148     // temporarily disabled
56149     //Roo.dd.ScrollManager.register(this.view.scroller.dom);
56150     Roo.grid.HeaderDropZone.superclass.constructor.call(this, grid.getGridEl().dom);
56151 };
56152 Roo.extend(Roo.grid.HeaderDropZone, Roo.dd.DropZone, {
56153     proxyOffsets : [-4, -9],
56154     fly: Roo.Element.fly,
56155
56156     getTargetFromEvent : function(e){
56157         var t = Roo.lib.Event.getTarget(e);
56158         var cindex = this.view.findCellIndex(t);
56159         if(cindex !== false){
56160             return this.view.getHeaderCell(cindex);
56161         }
56162         return null;
56163     },
56164
56165     nextVisible : function(h){
56166         var v = this.view, cm = this.grid.colModel;
56167         h = h.nextSibling;
56168         while(h){
56169             if(!cm.isHidden(v.getCellIndex(h))){
56170                 return h;
56171             }
56172             h = h.nextSibling;
56173         }
56174         return null;
56175     },
56176
56177     prevVisible : function(h){
56178         var v = this.view, cm = this.grid.colModel;
56179         h = h.prevSibling;
56180         while(h){
56181             if(!cm.isHidden(v.getCellIndex(h))){
56182                 return h;
56183             }
56184             h = h.prevSibling;
56185         }
56186         return null;
56187     },
56188
56189     positionIndicator : function(h, n, e){
56190         var x = Roo.lib.Event.getPageX(e);
56191         var r = Roo.lib.Dom.getRegion(n.firstChild);
56192         var px, pt, py = r.top + this.proxyOffsets[1];
56193         if((r.right - x) <= (r.right-r.left)/2){
56194             px = r.right+this.view.borderWidth;
56195             pt = "after";
56196         }else{
56197             px = r.left;
56198             pt = "before";
56199         }
56200         var oldIndex = this.view.getCellIndex(h);
56201         var newIndex = this.view.getCellIndex(n);
56202
56203         if(this.grid.colModel.isFixed(newIndex)){
56204             return false;
56205         }
56206
56207         var locked = this.grid.colModel.isLocked(newIndex);
56208
56209         if(pt == "after"){
56210             newIndex++;
56211         }
56212         if(oldIndex < newIndex){
56213             newIndex--;
56214         }
56215         if(oldIndex == newIndex && (locked == this.grid.colModel.isLocked(oldIndex))){
56216             return false;
56217         }
56218         px +=  this.proxyOffsets[0];
56219         this.proxyTop.setLeftTop(px, py);
56220         this.proxyTop.show();
56221         if(!this.bottomOffset){
56222             this.bottomOffset = this.view.mainHd.getHeight();
56223         }
56224         this.proxyBottom.setLeftTop(px, py+this.proxyTop.dom.offsetHeight+this.bottomOffset);
56225         this.proxyBottom.show();
56226         return pt;
56227     },
56228
56229     onNodeEnter : function(n, dd, e, data){
56230         if(data.header != n){
56231             this.positionIndicator(data.header, n, e);
56232         }
56233     },
56234
56235     onNodeOver : function(n, dd, e, data){
56236         var result = false;
56237         if(data.header != n){
56238             result = this.positionIndicator(data.header, n, e);
56239         }
56240         if(!result){
56241             this.proxyTop.hide();
56242             this.proxyBottom.hide();
56243         }
56244         return result ? this.dropAllowed : this.dropNotAllowed;
56245     },
56246
56247     onNodeOut : function(n, dd, e, data){
56248         this.proxyTop.hide();
56249         this.proxyBottom.hide();
56250     },
56251
56252     onNodeDrop : function(n, dd, e, data){
56253         var h = data.header;
56254         if(h != n){
56255             var cm = this.grid.colModel;
56256             var x = Roo.lib.Event.getPageX(e);
56257             var r = Roo.lib.Dom.getRegion(n.firstChild);
56258             var pt = (r.right - x) <= ((r.right-r.left)/2) ? "after" : "before";
56259             var oldIndex = this.view.getCellIndex(h);
56260             var newIndex = this.view.getCellIndex(n);
56261             var locked = cm.isLocked(newIndex);
56262             if(pt == "after"){
56263                 newIndex++;
56264             }
56265             if(oldIndex < newIndex){
56266                 newIndex--;
56267             }
56268             if(oldIndex == newIndex && (locked == cm.isLocked(oldIndex))){
56269                 return false;
56270             }
56271             cm.setLocked(oldIndex, locked, true);
56272             cm.moveColumn(oldIndex, newIndex);
56273             this.grid.fireEvent("columnmove", oldIndex, newIndex);
56274             return true;
56275         }
56276         return false;
56277     }
56278 });
56279 /*
56280  * Based on:
56281  * Ext JS Library 1.1.1
56282  * Copyright(c) 2006-2007, Ext JS, LLC.
56283  *
56284  * Originally Released Under LGPL - original licence link has changed is not relivant.
56285  *
56286  * Fork - LGPL
56287  * <script type="text/javascript">
56288  */
56289   
56290 /**
56291  * @class Roo.grid.GridView
56292  * @extends Roo.util.Observable
56293  *
56294  * @constructor
56295  * @param {Object} config
56296  */
56297 Roo.grid.GridView = function(config){
56298     Roo.grid.GridView.superclass.constructor.call(this);
56299     this.el = null;
56300
56301     Roo.apply(this, config);
56302 };
56303
56304 Roo.extend(Roo.grid.GridView, Roo.grid.AbstractGridView, {
56305
56306     unselectable :  'unselectable="on"',
56307     unselectableCls :  'x-unselectable',
56308     
56309     
56310     rowClass : "x-grid-row",
56311
56312     cellClass : "x-grid-col",
56313
56314     tdClass : "x-grid-td",
56315
56316     hdClass : "x-grid-hd",
56317
56318     splitClass : "x-grid-split",
56319
56320     sortClasses : ["sort-asc", "sort-desc"],
56321
56322     enableMoveAnim : false,
56323
56324     hlColor: "C3DAF9",
56325
56326     dh : Roo.DomHelper,
56327
56328     fly : Roo.Element.fly,
56329
56330     css : Roo.util.CSS,
56331
56332     borderWidth: 1,
56333
56334     splitOffset: 3,
56335
56336     scrollIncrement : 22,
56337
56338     cellRE: /(?:.*?)x-grid-(?:hd|cell|csplit)-(?:[\d]+)-([\d]+)(?:.*?)/,
56339
56340     findRE: /\s?(?:x-grid-hd|x-grid-col|x-grid-csplit)\s/,
56341
56342     bind : function(ds, cm){
56343         if(this.ds){
56344             this.ds.un("load", this.onLoad, this);
56345             this.ds.un("datachanged", this.onDataChange, this);
56346             this.ds.un("add", this.onAdd, this);
56347             this.ds.un("remove", this.onRemove, this);
56348             this.ds.un("update", this.onUpdate, this);
56349             this.ds.un("clear", this.onClear, this);
56350         }
56351         if(ds){
56352             ds.on("load", this.onLoad, this);
56353             ds.on("datachanged", this.onDataChange, this);
56354             ds.on("add", this.onAdd, this);
56355             ds.on("remove", this.onRemove, this);
56356             ds.on("update", this.onUpdate, this);
56357             ds.on("clear", this.onClear, this);
56358         }
56359         this.ds = ds;
56360
56361         if(this.cm){
56362             this.cm.un("widthchange", this.onColWidthChange, this);
56363             this.cm.un("headerchange", this.onHeaderChange, this);
56364             this.cm.un("hiddenchange", this.onHiddenChange, this);
56365             this.cm.un("columnmoved", this.onColumnMove, this);
56366             this.cm.un("columnlockchange", this.onColumnLock, this);
56367         }
56368         if(cm){
56369             this.generateRules(cm);
56370             cm.on("widthchange", this.onColWidthChange, this);
56371             cm.on("headerchange", this.onHeaderChange, this);
56372             cm.on("hiddenchange", this.onHiddenChange, this);
56373             cm.on("columnmoved", this.onColumnMove, this);
56374             cm.on("columnlockchange", this.onColumnLock, this);
56375         }
56376         this.cm = cm;
56377     },
56378
56379     init: function(grid){
56380         Roo.grid.GridView.superclass.init.call(this, grid);
56381
56382         this.bind(grid.dataSource, grid.colModel);
56383
56384         grid.on("headerclick", this.handleHeaderClick, this);
56385
56386         if(grid.trackMouseOver){
56387             grid.on("mouseover", this.onRowOver, this);
56388             grid.on("mouseout", this.onRowOut, this);
56389         }
56390         grid.cancelTextSelection = function(){};
56391         this.gridId = grid.id;
56392
56393         var tpls = this.templates || {};
56394
56395         if(!tpls.master){
56396             tpls.master = new Roo.Template(
56397                '<div class="x-grid" hidefocus="true">',
56398                 '<a href="#" class="x-grid-focus" tabIndex="-1"></a>',
56399                   '<div class="x-grid-topbar"></div>',
56400                   '<div class="x-grid-scroller"><div></div></div>',
56401                   '<div class="x-grid-locked">',
56402                       '<div class="x-grid-header">{lockedHeader}</div>',
56403                       '<div class="x-grid-body">{lockedBody}</div>',
56404                   "</div>",
56405                   '<div class="x-grid-viewport">',
56406                       '<div class="x-grid-header">{header}</div>',
56407                       '<div class="x-grid-body">{body}</div>',
56408                   "</div>",
56409                   '<div class="x-grid-bottombar"></div>',
56410                  
56411                   '<div class="x-grid-resize-proxy">&#160;</div>',
56412                "</div>"
56413             );
56414             tpls.master.disableformats = true;
56415         }
56416
56417         if(!tpls.header){
56418             tpls.header = new Roo.Template(
56419                '<table border="0" cellspacing="0" cellpadding="0">',
56420                '<tbody><tr class="x-grid-hd-row">{cells}</tr></tbody>',
56421                "</table>{splits}"
56422             );
56423             tpls.header.disableformats = true;
56424         }
56425         tpls.header.compile();
56426
56427         if(!tpls.hcell){
56428             tpls.hcell = new Roo.Template(
56429                 '<td class="x-grid-hd x-grid-td-{id} {cellId}"><div title="{title}" class="x-grid-hd-inner x-grid-hd-{id}">',
56430                 '<div class="x-grid-hd-text ' + this.unselectableCls +  '" ' + this.unselectable +'>{value}<img class="x-grid-sort-icon" src="', Roo.BLANK_IMAGE_URL, '" /></div>',
56431                 "</div></td>"
56432              );
56433              tpls.hcell.disableFormats = true;
56434         }
56435         tpls.hcell.compile();
56436
56437         if(!tpls.hsplit){
56438             tpls.hsplit = new Roo.Template('<div class="x-grid-split {splitId} x-grid-split-{id}" style="{style} ' +
56439                                             this.unselectableCls +  '" ' + this.unselectable +'>&#160;</div>');
56440             tpls.hsplit.disableFormats = true;
56441         }
56442         tpls.hsplit.compile();
56443
56444         if(!tpls.body){
56445             tpls.body = new Roo.Template(
56446                '<table border="0" cellspacing="0" cellpadding="0">',
56447                "<tbody>{rows}</tbody>",
56448                "</table>"
56449             );
56450             tpls.body.disableFormats = true;
56451         }
56452         tpls.body.compile();
56453
56454         if(!tpls.row){
56455             tpls.row = new Roo.Template('<tr class="x-grid-row {alt}">{cells}</tr>');
56456             tpls.row.disableFormats = true;
56457         }
56458         tpls.row.compile();
56459
56460         if(!tpls.cell){
56461             tpls.cell = new Roo.Template(
56462                 '<td class="x-grid-col x-grid-td-{id} {cellId} {css}" tabIndex="0">',
56463                 '<div class="x-grid-col-{id} x-grid-cell-inner"><div class="x-grid-cell-text ' +
56464                     this.unselectableCls +  '" ' + this.unselectable +'" {attr}>{value}</div></div>',
56465                 "</td>"
56466             );
56467             tpls.cell.disableFormats = true;
56468         }
56469         tpls.cell.compile();
56470
56471         this.templates = tpls;
56472     },
56473
56474     // remap these for backwards compat
56475     onColWidthChange : function(){
56476         this.updateColumns.apply(this, arguments);
56477     },
56478     onHeaderChange : function(){
56479         this.updateHeaders.apply(this, arguments);
56480     }, 
56481     onHiddenChange : function(){
56482         this.handleHiddenChange.apply(this, arguments);
56483     },
56484     onColumnMove : function(){
56485         this.handleColumnMove.apply(this, arguments);
56486     },
56487     onColumnLock : function(){
56488         this.handleLockChange.apply(this, arguments);
56489     },
56490
56491     onDataChange : function(){
56492         this.refresh();
56493         this.updateHeaderSortState();
56494     },
56495
56496     onClear : function(){
56497         this.refresh();
56498     },
56499
56500     onUpdate : function(ds, record){
56501         this.refreshRow(record);
56502     },
56503
56504     refreshRow : function(record){
56505         var ds = this.ds, index;
56506         if(typeof record == 'number'){
56507             index = record;
56508             record = ds.getAt(index);
56509         }else{
56510             index = ds.indexOf(record);
56511         }
56512         this.insertRows(ds, index, index, true);
56513         this.onRemove(ds, record, index+1, true);
56514         this.syncRowHeights(index, index);
56515         this.layout();
56516         this.fireEvent("rowupdated", this, index, record);
56517     },
56518
56519     onAdd : function(ds, records, index){
56520         this.insertRows(ds, index, index + (records.length-1));
56521     },
56522
56523     onRemove : function(ds, record, index, isUpdate){
56524         if(isUpdate !== true){
56525             this.fireEvent("beforerowremoved", this, index, record);
56526         }
56527         var bt = this.getBodyTable(), lt = this.getLockedTable();
56528         if(bt.rows[index]){
56529             bt.firstChild.removeChild(bt.rows[index]);
56530         }
56531         if(lt.rows[index]){
56532             lt.firstChild.removeChild(lt.rows[index]);
56533         }
56534         if(isUpdate !== true){
56535             this.stripeRows(index);
56536             this.syncRowHeights(index, index);
56537             this.layout();
56538             this.fireEvent("rowremoved", this, index, record);
56539         }
56540     },
56541
56542     onLoad : function(){
56543         this.scrollToTop();
56544     },
56545
56546     /**
56547      * Scrolls the grid to the top
56548      */
56549     scrollToTop : function(){
56550         if(this.scroller){
56551             this.scroller.dom.scrollTop = 0;
56552             this.syncScroll();
56553         }
56554     },
56555
56556     /**
56557      * Gets a panel in the header of the grid that can be used for toolbars etc.
56558      * After modifying the contents of this panel a call to grid.autoSize() may be
56559      * required to register any changes in size.
56560      * @param {Boolean} doShow By default the header is hidden. Pass true to show the panel
56561      * @return Roo.Element
56562      */
56563     getHeaderPanel : function(doShow){
56564         if(doShow){
56565             this.headerPanel.show();
56566         }
56567         return this.headerPanel;
56568     },
56569
56570     /**
56571      * Gets a panel in the footer of the grid that can be used for toolbars etc.
56572      * After modifying the contents of this panel a call to grid.autoSize() may be
56573      * required to register any changes in size.
56574      * @param {Boolean} doShow By default the footer is hidden. Pass true to show the panel
56575      * @return Roo.Element
56576      */
56577     getFooterPanel : function(doShow){
56578         if(doShow){
56579             this.footerPanel.show();
56580         }
56581         return this.footerPanel;
56582     },
56583
56584     initElements : function(){
56585         var E = Roo.Element;
56586         var el = this.grid.getGridEl().dom.firstChild;
56587         var cs = el.childNodes;
56588
56589         this.el = new E(el);
56590         
56591          this.focusEl = new E(el.firstChild);
56592         this.focusEl.swallowEvent("click", true);
56593         
56594         this.headerPanel = new E(cs[1]);
56595         this.headerPanel.enableDisplayMode("block");
56596
56597         this.scroller = new E(cs[2]);
56598         this.scrollSizer = new E(this.scroller.dom.firstChild);
56599
56600         this.lockedWrap = new E(cs[3]);
56601         this.lockedHd = new E(this.lockedWrap.dom.firstChild);
56602         this.lockedBody = new E(this.lockedWrap.dom.childNodes[1]);
56603
56604         this.mainWrap = new E(cs[4]);
56605         this.mainHd = new E(this.mainWrap.dom.firstChild);
56606         this.mainBody = new E(this.mainWrap.dom.childNodes[1]);
56607
56608         this.footerPanel = new E(cs[5]);
56609         this.footerPanel.enableDisplayMode("block");
56610
56611         this.resizeProxy = new E(cs[6]);
56612
56613         this.headerSelector = String.format(
56614            '#{0} td.x-grid-hd, #{1} td.x-grid-hd',
56615            this.lockedHd.id, this.mainHd.id
56616         );
56617
56618         this.splitterSelector = String.format(
56619            '#{0} div.x-grid-split, #{1} div.x-grid-split',
56620            this.idToCssName(this.lockedHd.id), this.idToCssName(this.mainHd.id)
56621         );
56622     },
56623     idToCssName : function(s)
56624     {
56625         return s.replace(/[^a-z0-9]+/ig, '-');
56626     },
56627
56628     getHeaderCell : function(index){
56629         return Roo.DomQuery.select(this.headerSelector)[index];
56630     },
56631
56632     getHeaderCellMeasure : function(index){
56633         return this.getHeaderCell(index).firstChild;
56634     },
56635
56636     getHeaderCellText : function(index){
56637         return this.getHeaderCell(index).firstChild.firstChild;
56638     },
56639
56640     getLockedTable : function(){
56641         return this.lockedBody.dom.firstChild;
56642     },
56643
56644     getBodyTable : function(){
56645         return this.mainBody.dom.firstChild;
56646     },
56647
56648     getLockedRow : function(index){
56649         return this.getLockedTable().rows[index];
56650     },
56651
56652     getRow : function(index){
56653         return this.getBodyTable().rows[index];
56654     },
56655
56656     getRowComposite : function(index){
56657         if(!this.rowEl){
56658             this.rowEl = new Roo.CompositeElementLite();
56659         }
56660         var els = [], lrow, mrow;
56661         if(lrow = this.getLockedRow(index)){
56662             els.push(lrow);
56663         }
56664         if(mrow = this.getRow(index)){
56665             els.push(mrow);
56666         }
56667         this.rowEl.elements = els;
56668         return this.rowEl;
56669     },
56670     /**
56671      * Gets the 'td' of the cell
56672      * 
56673      * @param {Integer} rowIndex row to select
56674      * @param {Integer} colIndex column to select
56675      * 
56676      * @return {Object} 
56677      */
56678     getCell : function(rowIndex, colIndex){
56679         var locked = this.cm.getLockedCount();
56680         var source;
56681         if(colIndex < locked){
56682             source = this.lockedBody.dom.firstChild;
56683         }else{
56684             source = this.mainBody.dom.firstChild;
56685             colIndex -= locked;
56686         }
56687         return source.rows[rowIndex].childNodes[colIndex];
56688     },
56689
56690     getCellText : function(rowIndex, colIndex){
56691         return this.getCell(rowIndex, colIndex).firstChild.firstChild;
56692     },
56693
56694     getCellBox : function(cell){
56695         var b = this.fly(cell).getBox();
56696         if(Roo.isOpera){ // opera fails to report the Y
56697             b.y = cell.offsetTop + this.mainBody.getY();
56698         }
56699         return b;
56700     },
56701
56702     getCellIndex : function(cell){
56703         var id = String(cell.className).match(this.cellRE);
56704         if(id){
56705             return parseInt(id[1], 10);
56706         }
56707         return 0;
56708     },
56709
56710     findHeaderIndex : function(n){
56711         var r = Roo.fly(n).findParent("td." + this.hdClass, 6);
56712         return r ? this.getCellIndex(r) : false;
56713     },
56714
56715     findHeaderCell : function(n){
56716         var r = Roo.fly(n).findParent("td." + this.hdClass, 6);
56717         return r ? r : false;
56718     },
56719
56720     findRowIndex : function(n){
56721         if(!n){
56722             return false;
56723         }
56724         var r = Roo.fly(n).findParent("tr." + this.rowClass, 6);
56725         return r ? r.rowIndex : false;
56726     },
56727
56728     findCellIndex : function(node){
56729         var stop = this.el.dom;
56730         while(node && node != stop){
56731             if(this.findRE.test(node.className)){
56732                 return this.getCellIndex(node);
56733             }
56734             node = node.parentNode;
56735         }
56736         return false;
56737     },
56738
56739     getColumnId : function(index){
56740         return this.cm.getColumnId(index);
56741     },
56742
56743     getSplitters : function()
56744     {
56745         if(this.splitterSelector){
56746            return Roo.DomQuery.select(this.splitterSelector);
56747         }else{
56748             return null;
56749       }
56750     },
56751
56752     getSplitter : function(index){
56753         return this.getSplitters()[index];
56754     },
56755
56756     onRowOver : function(e, t){
56757         var row;
56758         if((row = this.findRowIndex(t)) !== false){
56759             this.getRowComposite(row).addClass("x-grid-row-over");
56760         }
56761     },
56762
56763     onRowOut : function(e, t){
56764         var row;
56765         if((row = this.findRowIndex(t)) !== false && row !== this.findRowIndex(e.getRelatedTarget())){
56766             this.getRowComposite(row).removeClass("x-grid-row-over");
56767         }
56768     },
56769
56770     renderHeaders : function(){
56771         var cm = this.cm;
56772         var ct = this.templates.hcell, ht = this.templates.header, st = this.templates.hsplit;
56773         var cb = [], lb = [], sb = [], lsb = [], p = {};
56774         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
56775             p.cellId = "x-grid-hd-0-" + i;
56776             p.splitId = "x-grid-csplit-0-" + i;
56777             p.id = cm.getColumnId(i);
56778             p.value = cm.getColumnHeader(i) || "";
56779             p.title = cm.getColumnTooltip(i) || (''+p.value).match(/\</)  ? '' :  p.value  || "";
56780             p.style = (this.grid.enableColumnResize === false || !cm.isResizable(i) || cm.isFixed(i)) ? 'cursor:default' : '';
56781             if(!cm.isLocked(i)){
56782                 cb[cb.length] = ct.apply(p);
56783                 sb[sb.length] = st.apply(p);
56784             }else{
56785                 lb[lb.length] = ct.apply(p);
56786                 lsb[lsb.length] = st.apply(p);
56787             }
56788         }
56789         return [ht.apply({cells: lb.join(""), splits:lsb.join("")}),
56790                 ht.apply({cells: cb.join(""), splits:sb.join("")})];
56791     },
56792
56793     updateHeaders : function(){
56794         var html = this.renderHeaders();
56795         this.lockedHd.update(html[0]);
56796         this.mainHd.update(html[1]);
56797     },
56798
56799     /**
56800      * Focuses the specified row.
56801      * @param {Number} row The row index
56802      */
56803     focusRow : function(row)
56804     {
56805         //Roo.log('GridView.focusRow');
56806         var x = this.scroller.dom.scrollLeft;
56807         this.focusCell(row, 0, false);
56808         this.scroller.dom.scrollLeft = x;
56809     },
56810
56811     /**
56812      * Focuses the specified cell.
56813      * @param {Number} row The row index
56814      * @param {Number} col The column index
56815      * @param {Boolean} hscroll false to disable horizontal scrolling
56816      */
56817     focusCell : function(row, col, hscroll)
56818     {
56819         //Roo.log('GridView.focusCell');
56820         var el = this.ensureVisible(row, col, hscroll);
56821         this.focusEl.alignTo(el, "tl-tl");
56822         if(Roo.isGecko){
56823             this.focusEl.focus();
56824         }else{
56825             this.focusEl.focus.defer(1, this.focusEl);
56826         }
56827     },
56828
56829     /**
56830      * Scrolls the specified cell into view
56831      * @param {Number} row The row index
56832      * @param {Number} col The column index
56833      * @param {Boolean} hscroll false to disable horizontal scrolling
56834      */
56835     ensureVisible : function(row, col, hscroll)
56836     {
56837         //Roo.log('GridView.ensureVisible,' + row + ',' + col);
56838         //return null; //disable for testing.
56839         if(typeof row != "number"){
56840             row = row.rowIndex;
56841         }
56842         if(row < 0 && row >= this.ds.getCount()){
56843             return  null;
56844         }
56845         col = (col !== undefined ? col : 0);
56846         var cm = this.grid.colModel;
56847         while(cm.isHidden(col)){
56848             col++;
56849         }
56850
56851         var el = this.getCell(row, col);
56852         if(!el){
56853             return null;
56854         }
56855         var c = this.scroller.dom;
56856
56857         var ctop = parseInt(el.offsetTop, 10);
56858         var cleft = parseInt(el.offsetLeft, 10);
56859         var cbot = ctop + el.offsetHeight;
56860         var cright = cleft + el.offsetWidth;
56861         
56862         var ch = c.clientHeight - this.mainHd.dom.offsetHeight;
56863         var stop = parseInt(c.scrollTop, 10);
56864         var sleft = parseInt(c.scrollLeft, 10);
56865         var sbot = stop + ch;
56866         var sright = sleft + c.clientWidth;
56867         /*
56868         Roo.log('GridView.ensureVisible:' +
56869                 ' ctop:' + ctop +
56870                 ' c.clientHeight:' + c.clientHeight +
56871                 ' this.mainHd.dom.offsetHeight:' + this.mainHd.dom.offsetHeight +
56872                 ' stop:' + stop +
56873                 ' cbot:' + cbot +
56874                 ' sbot:' + sbot +
56875                 ' ch:' + ch  
56876                 );
56877         */
56878         if(ctop < stop){
56879             c.scrollTop = ctop;
56880             //Roo.log("set scrolltop to ctop DISABLE?");
56881         }else if(cbot > sbot){
56882             //Roo.log("set scrolltop to cbot-ch");
56883             c.scrollTop = cbot-ch;
56884         }
56885         
56886         if(hscroll !== false){
56887             if(cleft < sleft){
56888                 c.scrollLeft = cleft;
56889             }else if(cright > sright){
56890                 c.scrollLeft = cright-c.clientWidth;
56891             }
56892         }
56893          
56894         return el;
56895     },
56896
56897     updateColumns : function(){
56898         this.grid.stopEditing();
56899         var cm = this.grid.colModel, colIds = this.getColumnIds();
56900         //var totalWidth = cm.getTotalWidth();
56901         var pos = 0;
56902         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
56903             //if(cm.isHidden(i)) continue;
56904             var w = cm.getColumnWidth(i);
56905             this.css.updateRule(this.colSelector+this.idToCssName(colIds[i]), "width", (w - this.borderWidth) + "px");
56906             this.css.updateRule(this.hdSelector+this.idToCssName(colIds[i]), "width", (w - this.borderWidth) + "px");
56907         }
56908         this.updateSplitters();
56909     },
56910
56911     generateRules : function(cm){
56912         var ruleBuf = [], rulesId = this.idToCssName(this.grid.id)+ '-cssrules';
56913         Roo.util.CSS.removeStyleSheet(rulesId);
56914         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
56915             var cid = cm.getColumnId(i);
56916             var align = '';
56917             if(cm.config[i].align){
56918                 align = 'text-align:'+cm.config[i].align+';';
56919             }
56920             var hidden = '';
56921             if(cm.isHidden(i)){
56922                 hidden = 'display:none;';
56923             }
56924             var width = "width:" + (cm.getColumnWidth(i) - this.borderWidth) + "px;";
56925             ruleBuf.push(
56926                     this.colSelector, cid, " {\n", cm.config[i].css, align, width, "\n}\n",
56927                     this.hdSelector, cid, " {\n", align, width, "}\n",
56928                     this.tdSelector, cid, " {\n",hidden,"\n}\n",
56929                     this.splitSelector, cid, " {\n", hidden , "\n}\n");
56930         }
56931         return Roo.util.CSS.createStyleSheet(ruleBuf.join(""), rulesId);
56932     },
56933
56934     updateSplitters : function(){
56935         var cm = this.cm, s = this.getSplitters();
56936         if(s){ // splitters not created yet
56937             var pos = 0, locked = true;
56938             for(var i = 0, len = cm.getColumnCount(); i < len; i++){
56939                 if(cm.isHidden(i)) {
56940                     continue;
56941                 }
56942                 var w = cm.getColumnWidth(i); // make sure it's a number
56943                 if(!cm.isLocked(i) && locked){
56944                     pos = 0;
56945                     locked = false;
56946                 }
56947                 pos += w;
56948                 s[i].style.left = (pos-this.splitOffset) + "px";
56949             }
56950         }
56951     },
56952
56953     handleHiddenChange : function(colModel, colIndex, hidden){
56954         if(hidden){
56955             this.hideColumn(colIndex);
56956         }else{
56957             this.unhideColumn(colIndex);
56958         }
56959     },
56960
56961     hideColumn : function(colIndex){
56962         var cid = this.getColumnId(colIndex);
56963         this.css.updateRule(this.tdSelector+this.idToCssName(cid), "display", "none");
56964         this.css.updateRule(this.splitSelector+this.idToCssName(cid), "display", "none");
56965         if(Roo.isSafari){
56966             this.updateHeaders();
56967         }
56968         this.updateSplitters();
56969         this.layout();
56970     },
56971
56972     unhideColumn : function(colIndex){
56973         var cid = this.getColumnId(colIndex);
56974         this.css.updateRule(this.tdSelector+this.idToCssName(cid), "display", "");
56975         this.css.updateRule(this.splitSelector+this.idToCssName(cid), "display", "");
56976
56977         if(Roo.isSafari){
56978             this.updateHeaders();
56979         }
56980         this.updateSplitters();
56981         this.layout();
56982     },
56983
56984     insertRows : function(dm, firstRow, lastRow, isUpdate){
56985         if(firstRow == 0 && lastRow == dm.getCount()-1){
56986             this.refresh();
56987         }else{
56988             if(!isUpdate){
56989                 this.fireEvent("beforerowsinserted", this, firstRow, lastRow);
56990             }
56991             var s = this.getScrollState();
56992             var markup = this.renderRows(firstRow, lastRow);
56993             this.bufferRows(markup[0], this.getLockedTable(), firstRow);
56994             this.bufferRows(markup[1], this.getBodyTable(), firstRow);
56995             this.restoreScroll(s);
56996             if(!isUpdate){
56997                 this.fireEvent("rowsinserted", this, firstRow, lastRow);
56998                 this.syncRowHeights(firstRow, lastRow);
56999                 this.stripeRows(firstRow);
57000                 this.layout();
57001             }
57002         }
57003     },
57004
57005     bufferRows : function(markup, target, index){
57006         var before = null, trows = target.rows, tbody = target.tBodies[0];
57007         if(index < trows.length){
57008             before = trows[index];
57009         }
57010         var b = document.createElement("div");
57011         b.innerHTML = "<table><tbody>"+markup+"</tbody></table>";
57012         var rows = b.firstChild.rows;
57013         for(var i = 0, len = rows.length; i < len; i++){
57014             if(before){
57015                 tbody.insertBefore(rows[0], before);
57016             }else{
57017                 tbody.appendChild(rows[0]);
57018             }
57019         }
57020         b.innerHTML = "";
57021         b = null;
57022     },
57023
57024     deleteRows : function(dm, firstRow, lastRow){
57025         if(dm.getRowCount()<1){
57026             this.fireEvent("beforerefresh", this);
57027             this.mainBody.update("");
57028             this.lockedBody.update("");
57029             this.fireEvent("refresh", this);
57030         }else{
57031             this.fireEvent("beforerowsdeleted", this, firstRow, lastRow);
57032             var bt = this.getBodyTable();
57033             var tbody = bt.firstChild;
57034             var rows = bt.rows;
57035             for(var rowIndex = firstRow; rowIndex <= lastRow; rowIndex++){
57036                 tbody.removeChild(rows[firstRow]);
57037             }
57038             this.stripeRows(firstRow);
57039             this.fireEvent("rowsdeleted", this, firstRow, lastRow);
57040         }
57041     },
57042
57043     updateRows : function(dataSource, firstRow, lastRow){
57044         var s = this.getScrollState();
57045         this.refresh();
57046         this.restoreScroll(s);
57047     },
57048
57049     handleSort : function(dataSource, sortColumnIndex, sortDir, noRefresh){
57050         if(!noRefresh){
57051            this.refresh();
57052         }
57053         this.updateHeaderSortState();
57054     },
57055
57056     getScrollState : function(){
57057         
57058         var sb = this.scroller.dom;
57059         return {left: sb.scrollLeft, top: sb.scrollTop};
57060     },
57061
57062     stripeRows : function(startRow){
57063         if(!this.grid.stripeRows || this.ds.getCount() < 1){
57064             return;
57065         }
57066         startRow = startRow || 0;
57067         var rows = this.getBodyTable().rows;
57068         var lrows = this.getLockedTable().rows;
57069         var cls = ' x-grid-row-alt ';
57070         for(var i = startRow, len = rows.length; i < len; i++){
57071             var row = rows[i], lrow = lrows[i];
57072             var isAlt = ((i+1) % 2 == 0);
57073             var hasAlt = (' '+row.className + ' ').indexOf(cls) != -1;
57074             if(isAlt == hasAlt){
57075                 continue;
57076             }
57077             if(isAlt){
57078                 row.className += " x-grid-row-alt";
57079             }else{
57080                 row.className = row.className.replace("x-grid-row-alt", "");
57081             }
57082             if(lrow){
57083                 lrow.className = row.className;
57084             }
57085         }
57086     },
57087
57088     restoreScroll : function(state){
57089         //Roo.log('GridView.restoreScroll');
57090         var sb = this.scroller.dom;
57091         sb.scrollLeft = state.left;
57092         sb.scrollTop = state.top;
57093         this.syncScroll();
57094     },
57095
57096     syncScroll : function(){
57097         //Roo.log('GridView.syncScroll');
57098         var sb = this.scroller.dom;
57099         var sh = this.mainHd.dom;
57100         var bs = this.mainBody.dom;
57101         var lv = this.lockedBody.dom;
57102         sh.scrollLeft = bs.scrollLeft = sb.scrollLeft;
57103         lv.scrollTop = bs.scrollTop = sb.scrollTop;
57104     },
57105
57106     handleScroll : function(e){
57107         this.syncScroll();
57108         var sb = this.scroller.dom;
57109         this.grid.fireEvent("bodyscroll", sb.scrollLeft, sb.scrollTop);
57110         e.stopEvent();
57111     },
57112
57113     handleWheel : function(e){
57114         var d = e.getWheelDelta();
57115         this.scroller.dom.scrollTop -= d*22;
57116         // set this here to prevent jumpy scrolling on large tables
57117         this.lockedBody.dom.scrollTop = this.mainBody.dom.scrollTop = this.scroller.dom.scrollTop;
57118         e.stopEvent();
57119     },
57120
57121     renderRows : function(startRow, endRow){
57122         // pull in all the crap needed to render rows
57123         var g = this.grid, cm = g.colModel, ds = g.dataSource, stripe = g.stripeRows;
57124         var colCount = cm.getColumnCount();
57125
57126         if(ds.getCount() < 1){
57127             return ["", ""];
57128         }
57129
57130         // build a map for all the columns
57131         var cs = [];
57132         for(var i = 0; i < colCount; i++){
57133             var name = cm.getDataIndex(i);
57134             cs[i] = {
57135                 name : typeof name == 'undefined' ? ds.fields.get(i).name : name,
57136                 renderer : cm.getRenderer(i),
57137                 id : cm.getColumnId(i),
57138                 locked : cm.isLocked(i),
57139                 has_editor : cm.isCellEditable(i)
57140             };
57141         }
57142
57143         startRow = startRow || 0;
57144         endRow = typeof endRow == "undefined"? ds.getCount()-1 : endRow;
57145
57146         // records to render
57147         var rs = ds.getRange(startRow, endRow);
57148
57149         return this.doRender(cs, rs, ds, startRow, colCount, stripe);
57150     },
57151
57152     // As much as I hate to duplicate code, this was branched because FireFox really hates
57153     // [].join("") on strings. The performance difference was substantial enough to
57154     // branch this function
57155     doRender : Roo.isGecko ?
57156             function(cs, rs, ds, startRow, colCount, stripe){
57157                 var ts = this.templates, ct = ts.cell, rt = ts.row;
57158                 // buffers
57159                 var buf = "", lbuf = "", cb, lcb, c, p = {}, rp = {}, r, rowIndex;
57160                 
57161                 var hasListener = this.grid.hasListener('rowclass');
57162                 var rowcfg = {};
57163                 for(var j = 0, len = rs.length; j < len; j++){
57164                     r = rs[j]; cb = ""; lcb = ""; rowIndex = (j+startRow);
57165                     for(var i = 0; i < colCount; i++){
57166                         c = cs[i];
57167                         p.cellId = "x-grid-cell-" + rowIndex + "-" + i;
57168                         p.id = c.id;
57169                         p.css = p.attr = "";
57170                         p.value = c.renderer(r.data[c.name], p, r, rowIndex, i, ds);
57171                         if(p.value == undefined || p.value === "") {
57172                             p.value = "&#160;";
57173                         }
57174                         if(c.has_editor){
57175                             p.css += ' x-grid-editable-cell';
57176                         }
57177                         if(c.dirty && typeof r.modified[c.name] !== 'undefined'){
57178                             p.css +=  ' x-grid-dirty-cell';
57179                         }
57180                         var markup = ct.apply(p);
57181                         if(!c.locked){
57182                             cb+= markup;
57183                         }else{
57184                             lcb+= markup;
57185                         }
57186                     }
57187                     var alt = [];
57188                     if(stripe && ((rowIndex+1) % 2 == 0)){
57189                         alt.push("x-grid-row-alt")
57190                     }
57191                     if(r.dirty){
57192                         alt.push(  " x-grid-dirty-row");
57193                     }
57194                     rp.cells = lcb;
57195                     if(this.getRowClass){
57196                         alt.push(this.getRowClass(r, rowIndex));
57197                     }
57198                     if (hasListener) {
57199                         rowcfg = {
57200                              
57201                             record: r,
57202                             rowIndex : rowIndex,
57203                             rowClass : ''
57204                         };
57205                         this.grid.fireEvent('rowclass', this, rowcfg);
57206                         alt.push(rowcfg.rowClass);
57207                     }
57208                     rp.alt = alt.join(" ");
57209                     lbuf+= rt.apply(rp);
57210                     rp.cells = cb;
57211                     buf+=  rt.apply(rp);
57212                 }
57213                 return [lbuf, buf];
57214             } :
57215             function(cs, rs, ds, startRow, colCount, stripe){
57216                 var ts = this.templates, ct = ts.cell, rt = ts.row;
57217                 // buffers
57218                 var buf = [], lbuf = [], cb, lcb, c, p = {}, rp = {}, r, rowIndex;
57219                 var hasListener = this.grid.hasListener('rowclass');
57220  
57221                 var rowcfg = {};
57222                 for(var j = 0, len = rs.length; j < len; j++){
57223                     r = rs[j]; cb = []; lcb = []; rowIndex = (j+startRow);
57224                     for(var i = 0; i < colCount; i++){
57225                         c = cs[i];
57226                         p.cellId = "x-grid-cell-" + rowIndex + "-" + i;
57227                         p.id = c.id;
57228                         p.css = p.attr = "";
57229                         p.value = c.renderer(r.data[c.name], p, r, rowIndex, i, ds);
57230                         if(p.value == undefined || p.value === "") {
57231                             p.value = "&#160;";
57232                         }
57233                         //Roo.log(c);
57234                          if(c.has_editor){
57235                             p.css += ' x-grid-editable-cell';
57236                         }
57237                         if(r.dirty && typeof r.modified[c.name] !== 'undefined'){
57238                             p.css += ' x-grid-dirty-cell' 
57239                         }
57240                         
57241                         var markup = ct.apply(p);
57242                         if(!c.locked){
57243                             cb[cb.length] = markup;
57244                         }else{
57245                             lcb[lcb.length] = markup;
57246                         }
57247                     }
57248                     var alt = [];
57249                     if(stripe && ((rowIndex+1) % 2 == 0)){
57250                         alt.push( "x-grid-row-alt");
57251                     }
57252                     if(r.dirty){
57253                         alt.push(" x-grid-dirty-row");
57254                     }
57255                     rp.cells = lcb;
57256                     if(this.getRowClass){
57257                         alt.push( this.getRowClass(r, rowIndex));
57258                     }
57259                     if (hasListener) {
57260                         rowcfg = {
57261                              
57262                             record: r,
57263                             rowIndex : rowIndex,
57264                             rowClass : ''
57265                         };
57266                         this.grid.fireEvent('rowclass', this, rowcfg);
57267                         alt.push(rowcfg.rowClass);
57268                     }
57269                     
57270                     rp.alt = alt.join(" ");
57271                     rp.cells = lcb.join("");
57272                     lbuf[lbuf.length] = rt.apply(rp);
57273                     rp.cells = cb.join("");
57274                     buf[buf.length] =  rt.apply(rp);
57275                 }
57276                 return [lbuf.join(""), buf.join("")];
57277             },
57278
57279     renderBody : function(){
57280         var markup = this.renderRows();
57281         var bt = this.templates.body;
57282         return [bt.apply({rows: markup[0]}), bt.apply({rows: markup[1]})];
57283     },
57284
57285     /**
57286      * Refreshes the grid
57287      * @param {Boolean} headersToo
57288      */
57289     refresh : function(headersToo){
57290         this.fireEvent("beforerefresh", this);
57291         this.grid.stopEditing();
57292         var result = this.renderBody();
57293         this.lockedBody.update(result[0]);
57294         this.mainBody.update(result[1]);
57295         if(headersToo === true){
57296             this.updateHeaders();
57297             this.updateColumns();
57298             this.updateSplitters();
57299             this.updateHeaderSortState();
57300         }
57301         this.syncRowHeights();
57302         this.layout();
57303         this.fireEvent("refresh", this);
57304     },
57305
57306     handleColumnMove : function(cm, oldIndex, newIndex){
57307         this.indexMap = null;
57308         var s = this.getScrollState();
57309         this.refresh(true);
57310         this.restoreScroll(s);
57311         this.afterMove(newIndex);
57312     },
57313
57314     afterMove : function(colIndex){
57315         if(this.enableMoveAnim && Roo.enableFx){
57316             this.fly(this.getHeaderCell(colIndex).firstChild).highlight(this.hlColor);
57317         }
57318         // if multisort - fix sortOrder, and reload..
57319         if (this.grid.dataSource.multiSort) {
57320             // the we can call sort again..
57321             var dm = this.grid.dataSource;
57322             var cm = this.grid.colModel;
57323             var so = [];
57324             for(var i = 0; i < cm.config.length; i++ ) {
57325                 
57326                 if ((typeof(dm.sortToggle[cm.config[i].dataIndex]) == 'undefined')) {
57327                     continue; // dont' bother, it's not in sort list or being set.
57328                 }
57329                 
57330                 so.push(cm.config[i].dataIndex);
57331             };
57332             dm.sortOrder = so;
57333             dm.load(dm.lastOptions);
57334             
57335             
57336         }
57337         
57338     },
57339
57340     updateCell : function(dm, rowIndex, dataIndex){
57341         var colIndex = this.getColumnIndexByDataIndex(dataIndex);
57342         if(typeof colIndex == "undefined"){ // not present in grid
57343             return;
57344         }
57345         var cm = this.grid.colModel;
57346         var cell = this.getCell(rowIndex, colIndex);
57347         var cellText = this.getCellText(rowIndex, colIndex);
57348
57349         var p = {
57350             cellId : "x-grid-cell-" + rowIndex + "-" + colIndex,
57351             id : cm.getColumnId(colIndex),
57352             css: colIndex == cm.getColumnCount()-1 ? "x-grid-col-last" : ""
57353         };
57354         var renderer = cm.getRenderer(colIndex);
57355         var val = renderer(dm.getValueAt(rowIndex, dataIndex), p, rowIndex, colIndex, dm);
57356         if(typeof val == "undefined" || val === "") {
57357             val = "&#160;";
57358         }
57359         cellText.innerHTML = val;
57360         cell.className = this.cellClass + " " + this.idToCssName(p.cellId) + " " + p.css;
57361         this.syncRowHeights(rowIndex, rowIndex);
57362     },
57363
57364     calcColumnWidth : function(colIndex, maxRowsToMeasure){
57365         var maxWidth = 0;
57366         if(this.grid.autoSizeHeaders){
57367             var h = this.getHeaderCellMeasure(colIndex);
57368             maxWidth = Math.max(maxWidth, h.scrollWidth);
57369         }
57370         var tb, index;
57371         if(this.cm.isLocked(colIndex)){
57372             tb = this.getLockedTable();
57373             index = colIndex;
57374         }else{
57375             tb = this.getBodyTable();
57376             index = colIndex - this.cm.getLockedCount();
57377         }
57378         if(tb && tb.rows){
57379             var rows = tb.rows;
57380             var stopIndex = Math.min(maxRowsToMeasure || rows.length, rows.length);
57381             for(var i = 0; i < stopIndex; i++){
57382                 var cell = rows[i].childNodes[index].firstChild;
57383                 maxWidth = Math.max(maxWidth, cell.scrollWidth);
57384             }
57385         }
57386         return maxWidth + /*margin for error in IE*/ 5;
57387     },
57388     /**
57389      * Autofit a column to its content.
57390      * @param {Number} colIndex
57391      * @param {Boolean} forceMinSize true to force the column to go smaller if possible
57392      */
57393      autoSizeColumn : function(colIndex, forceMinSize, suppressEvent){
57394          if(this.cm.isHidden(colIndex)){
57395              return; // can't calc a hidden column
57396          }
57397         if(forceMinSize){
57398             var cid = this.cm.getColumnId(colIndex);
57399             this.css.updateRule(this.colSelector +this.idToCssName( cid), "width", this.grid.minColumnWidth + "px");
57400            if(this.grid.autoSizeHeaders){
57401                this.css.updateRule(this.hdSelector + this.idToCssName(cid), "width", this.grid.minColumnWidth + "px");
57402            }
57403         }
57404         var newWidth = this.calcColumnWidth(colIndex);
57405         this.cm.setColumnWidth(colIndex,
57406             Math.max(this.grid.minColumnWidth, newWidth), suppressEvent);
57407         if(!suppressEvent){
57408             this.grid.fireEvent("columnresize", colIndex, newWidth);
57409         }
57410     },
57411
57412     /**
57413      * Autofits all columns to their content and then expands to fit any extra space in the grid
57414      */
57415      autoSizeColumns : function(){
57416         var cm = this.grid.colModel;
57417         var colCount = cm.getColumnCount();
57418         for(var i = 0; i < colCount; i++){
57419             this.autoSizeColumn(i, true, true);
57420         }
57421         if(cm.getTotalWidth() < this.scroller.dom.clientWidth){
57422             this.fitColumns();
57423         }else{
57424             this.updateColumns();
57425             this.layout();
57426         }
57427     },
57428
57429     /**
57430      * Autofits all columns to the grid's width proportionate with their current size
57431      * @param {Boolean} reserveScrollSpace Reserve space for a scrollbar
57432      */
57433     fitColumns : function(reserveScrollSpace){
57434         var cm = this.grid.colModel;
57435         var colCount = cm.getColumnCount();
57436         var cols = [];
57437         var width = 0;
57438         var i, w;
57439         for (i = 0; i < colCount; i++){
57440             if(!cm.isHidden(i) && !cm.isFixed(i)){
57441                 w = cm.getColumnWidth(i);
57442                 cols.push(i);
57443                 cols.push(w);
57444                 width += w;
57445             }
57446         }
57447         var avail = Math.min(this.scroller.dom.clientWidth, this.el.getWidth());
57448         if(reserveScrollSpace){
57449             avail -= 17;
57450         }
57451         var frac = (avail - cm.getTotalWidth())/width;
57452         while (cols.length){
57453             w = cols.pop();
57454             i = cols.pop();
57455             cm.setColumnWidth(i, Math.floor(w + w*frac), true);
57456         }
57457         this.updateColumns();
57458         this.layout();
57459     },
57460
57461     onRowSelect : function(rowIndex){
57462         var row = this.getRowComposite(rowIndex);
57463         row.addClass("x-grid-row-selected");
57464     },
57465
57466     onRowDeselect : function(rowIndex){
57467         var row = this.getRowComposite(rowIndex);
57468         row.removeClass("x-grid-row-selected");
57469     },
57470
57471     onCellSelect : function(row, col){
57472         var cell = this.getCell(row, col);
57473         if(cell){
57474             Roo.fly(cell).addClass("x-grid-cell-selected");
57475         }
57476     },
57477
57478     onCellDeselect : function(row, col){
57479         var cell = this.getCell(row, col);
57480         if(cell){
57481             Roo.fly(cell).removeClass("x-grid-cell-selected");
57482         }
57483     },
57484
57485     updateHeaderSortState : function(){
57486         
57487         // sort state can be single { field: xxx, direction : yyy}
57488         // or   { xxx=>ASC , yyy : DESC ..... }
57489         
57490         var mstate = {};
57491         if (!this.ds.multiSort) { 
57492             var state = this.ds.getSortState();
57493             if(!state){
57494                 return;
57495             }
57496             mstate[state.field] = state.direction;
57497             // FIXME... - this is not used here.. but might be elsewhere..
57498             this.sortState = state;
57499             
57500         } else {
57501             mstate = this.ds.sortToggle;
57502         }
57503         //remove existing sort classes..
57504         
57505         var sc = this.sortClasses;
57506         var hds = this.el.select(this.headerSelector).removeClass(sc);
57507         
57508         for(var f in mstate) {
57509         
57510             var sortColumn = this.cm.findColumnIndex(f);
57511             
57512             if(sortColumn != -1){
57513                 var sortDir = mstate[f];        
57514                 hds.item(sortColumn).addClass(sc[sortDir == "DESC" ? 1 : 0]);
57515             }
57516         }
57517         
57518          
57519         
57520     },
57521
57522
57523     handleHeaderClick : function(g, index,e){
57524         
57525         Roo.log("header click");
57526         
57527         if (Roo.isTouch) {
57528             // touch events on header are handled by context
57529             this.handleHdCtx(g,index,e);
57530             return;
57531         }
57532         
57533         
57534         if(this.headersDisabled){
57535             return;
57536         }
57537         var dm = g.dataSource, cm = g.colModel;
57538         if(!cm.isSortable(index)){
57539             return;
57540         }
57541         g.stopEditing();
57542         
57543         if (dm.multiSort) {
57544             // update the sortOrder
57545             var so = [];
57546             for(var i = 0; i < cm.config.length; i++ ) {
57547                 
57548                 if ((typeof(dm.sortToggle[cm.config[i].dataIndex]) == 'undefined') && (index != i)) {
57549                     continue; // dont' bother, it's not in sort list or being set.
57550                 }
57551                 
57552                 so.push(cm.config[i].dataIndex);
57553             };
57554             dm.sortOrder = so;
57555         }
57556         
57557         
57558         dm.sort(cm.getDataIndex(index));
57559     },
57560
57561
57562     destroy : function(){
57563         if(this.colMenu){
57564             this.colMenu.removeAll();
57565             Roo.menu.MenuMgr.unregister(this.colMenu);
57566             this.colMenu.getEl().remove();
57567             delete this.colMenu;
57568         }
57569         if(this.hmenu){
57570             this.hmenu.removeAll();
57571             Roo.menu.MenuMgr.unregister(this.hmenu);
57572             this.hmenu.getEl().remove();
57573             delete this.hmenu;
57574         }
57575         if(this.grid.enableColumnMove){
57576             var dds = Roo.dd.DDM.ids['gridHeader' + this.grid.getGridEl().id];
57577             if(dds){
57578                 for(var dd in dds){
57579                     if(!dds[dd].config.isTarget && dds[dd].dragElId){
57580                         var elid = dds[dd].dragElId;
57581                         dds[dd].unreg();
57582                         Roo.get(elid).remove();
57583                     } else if(dds[dd].config.isTarget){
57584                         dds[dd].proxyTop.remove();
57585                         dds[dd].proxyBottom.remove();
57586                         dds[dd].unreg();
57587                     }
57588                     if(Roo.dd.DDM.locationCache[dd]){
57589                         delete Roo.dd.DDM.locationCache[dd];
57590                     }
57591                 }
57592                 delete Roo.dd.DDM.ids['gridHeader' + this.grid.getGridEl().id];
57593             }
57594         }
57595         Roo.util.CSS.removeStyleSheet(this.idToCssName(this.grid.id) + '-cssrules');
57596         this.bind(null, null);
57597         Roo.EventManager.removeResizeListener(this.onWindowResize, this);
57598     },
57599
57600     handleLockChange : function(){
57601         this.refresh(true);
57602     },
57603
57604     onDenyColumnLock : function(){
57605
57606     },
57607
57608     onDenyColumnHide : function(){
57609
57610     },
57611
57612     handleHdMenuClick : function(item){
57613         var index = this.hdCtxIndex;
57614         var cm = this.cm, ds = this.ds;
57615         switch(item.id){
57616             case "asc":
57617                 ds.sort(cm.getDataIndex(index), "ASC");
57618                 break;
57619             case "desc":
57620                 ds.sort(cm.getDataIndex(index), "DESC");
57621                 break;
57622             case "lock":
57623                 var lc = cm.getLockedCount();
57624                 if(cm.getColumnCount(true) <= lc+1){
57625                     this.onDenyColumnLock();
57626                     return;
57627                 }
57628                 if(lc != index){
57629                     cm.setLocked(index, true, true);
57630                     cm.moveColumn(index, lc);
57631                     this.grid.fireEvent("columnmove", index, lc);
57632                 }else{
57633                     cm.setLocked(index, true);
57634                 }
57635             break;
57636             case "unlock":
57637                 var lc = cm.getLockedCount();
57638                 if((lc-1) != index){
57639                     cm.setLocked(index, false, true);
57640                     cm.moveColumn(index, lc-1);
57641                     this.grid.fireEvent("columnmove", index, lc-1);
57642                 }else{
57643                     cm.setLocked(index, false);
57644                 }
57645             break;
57646             case 'wider': // used to expand cols on touch..
57647             case 'narrow':
57648                 var cw = cm.getColumnWidth(index);
57649                 cw += (item.id == 'wider' ? 1 : -1) * 50;
57650                 cw = Math.max(0, cw);
57651                 cw = Math.min(cw,4000);
57652                 cm.setColumnWidth(index, cw);
57653                 break;
57654                 
57655             default:
57656                 index = cm.getIndexById(item.id.substr(4));
57657                 if(index != -1){
57658                     if(item.checked && cm.getColumnCount(true) <= 1){
57659                         this.onDenyColumnHide();
57660                         return false;
57661                     }
57662                     cm.setHidden(index, item.checked);
57663                 }
57664         }
57665         return true;
57666     },
57667
57668     beforeColMenuShow : function(){
57669         var cm = this.cm,  colCount = cm.getColumnCount();
57670         this.colMenu.removeAll();
57671         for(var i = 0; i < colCount; i++){
57672             this.colMenu.add(new Roo.menu.CheckItem({
57673                 id: "col-"+cm.getColumnId(i),
57674                 text: cm.getColumnHeader(i),
57675                 checked: !cm.isHidden(i),
57676                 hideOnClick:false
57677             }));
57678         }
57679     },
57680
57681     handleHdCtx : function(g, index, e){
57682         e.stopEvent();
57683         var hd = this.getHeaderCell(index);
57684         this.hdCtxIndex = index;
57685         var ms = this.hmenu.items, cm = this.cm;
57686         ms.get("asc").setDisabled(!cm.isSortable(index));
57687         ms.get("desc").setDisabled(!cm.isSortable(index));
57688         if(this.grid.enableColLock !== false){
57689             ms.get("lock").setDisabled(cm.isLocked(index));
57690             ms.get("unlock").setDisabled(!cm.isLocked(index));
57691         }
57692         this.hmenu.show(hd, "tl-bl");
57693     },
57694
57695     handleHdOver : function(e){
57696         var hd = this.findHeaderCell(e.getTarget());
57697         if(hd && !this.headersDisabled){
57698             if(this.grid.colModel.isSortable(this.getCellIndex(hd))){
57699                this.fly(hd).addClass("x-grid-hd-over");
57700             }
57701         }
57702     },
57703
57704     handleHdOut : function(e){
57705         var hd = this.findHeaderCell(e.getTarget());
57706         if(hd){
57707             this.fly(hd).removeClass("x-grid-hd-over");
57708         }
57709     },
57710
57711     handleSplitDblClick : function(e, t){
57712         var i = this.getCellIndex(t);
57713         if(this.grid.enableColumnResize !== false && this.cm.isResizable(i) && !this.cm.isFixed(i)){
57714             this.autoSizeColumn(i, true);
57715             this.layout();
57716         }
57717     },
57718
57719     render : function(){
57720
57721         var cm = this.cm;
57722         var colCount = cm.getColumnCount();
57723
57724         if(this.grid.monitorWindowResize === true){
57725             Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
57726         }
57727         var header = this.renderHeaders();
57728         var body = this.templates.body.apply({rows:""});
57729         var html = this.templates.master.apply({
57730             lockedBody: body,
57731             body: body,
57732             lockedHeader: header[0],
57733             header: header[1]
57734         });
57735
57736         //this.updateColumns();
57737
57738         this.grid.getGridEl().dom.innerHTML = html;
57739
57740         this.initElements();
57741         
57742         // a kludge to fix the random scolling effect in webkit
57743         this.el.on("scroll", function() {
57744             this.el.dom.scrollTop=0; // hopefully not recursive..
57745         },this);
57746
57747         this.scroller.on("scroll", this.handleScroll, this);
57748         this.lockedBody.on("mousewheel", this.handleWheel, this);
57749         this.mainBody.on("mousewheel", this.handleWheel, this);
57750
57751         this.mainHd.on("mouseover", this.handleHdOver, this);
57752         this.mainHd.on("mouseout", this.handleHdOut, this);
57753         this.mainHd.on("dblclick", this.handleSplitDblClick, this,
57754                 {delegate: "."+this.splitClass});
57755
57756         this.lockedHd.on("mouseover", this.handleHdOver, this);
57757         this.lockedHd.on("mouseout", this.handleHdOut, this);
57758         this.lockedHd.on("dblclick", this.handleSplitDblClick, this,
57759                 {delegate: "."+this.splitClass});
57760
57761         if(this.grid.enableColumnResize !== false && Roo.grid.SplitDragZone){
57762             new Roo.grid.SplitDragZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
57763         }
57764
57765         this.updateSplitters();
57766
57767         if(this.grid.enableColumnMove && Roo.grid.HeaderDragZone){
57768             new Roo.grid.HeaderDragZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
57769             new Roo.grid.HeaderDropZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
57770         }
57771
57772         if(this.grid.enableCtxMenu !== false && Roo.menu.Menu){
57773             this.hmenu = new Roo.menu.Menu({id: this.grid.id + "-hctx"});
57774             this.hmenu.add(
57775                 {id:"asc", text: this.sortAscText, cls: "xg-hmenu-sort-asc"},
57776                 {id:"desc", text: this.sortDescText, cls: "xg-hmenu-sort-desc"}
57777             );
57778             if(this.grid.enableColLock !== false){
57779                 this.hmenu.add('-',
57780                     {id:"lock", text: this.lockText, cls: "xg-hmenu-lock"},
57781                     {id:"unlock", text: this.unlockText, cls: "xg-hmenu-unlock"}
57782                 );
57783             }
57784             if (Roo.isTouch) {
57785                  this.hmenu.add('-',
57786                     {id:"wider", text: this.columnsWiderText},
57787                     {id:"narrow", text: this.columnsNarrowText }
57788                 );
57789                 
57790                  
57791             }
57792             
57793             if(this.grid.enableColumnHide !== false){
57794
57795                 this.colMenu = new Roo.menu.Menu({id:this.grid.id + "-hcols-menu"});
57796                 this.colMenu.on("beforeshow", this.beforeColMenuShow, this);
57797                 this.colMenu.on("itemclick", this.handleHdMenuClick, this);
57798
57799                 this.hmenu.add('-',
57800                     {id:"columns", text: this.columnsText, menu: this.colMenu}
57801                 );
57802             }
57803             this.hmenu.on("itemclick", this.handleHdMenuClick, this);
57804
57805             this.grid.on("headercontextmenu", this.handleHdCtx, this);
57806         }
57807
57808         if((this.grid.enableDragDrop || this.grid.enableDrag) && Roo.grid.GridDragZone){
57809             this.dd = new Roo.grid.GridDragZone(this.grid, {
57810                 ddGroup : this.grid.ddGroup || 'GridDD'
57811             });
57812             
57813         }
57814
57815         /*
57816         for(var i = 0; i < colCount; i++){
57817             if(cm.isHidden(i)){
57818                 this.hideColumn(i);
57819             }
57820             if(cm.config[i].align){
57821                 this.css.updateRule(this.colSelector + i, "textAlign", cm.config[i].align);
57822                 this.css.updateRule(this.hdSelector + i, "textAlign", cm.config[i].align);
57823             }
57824         }*/
57825         
57826         this.updateHeaderSortState();
57827
57828         this.beforeInitialResize();
57829         this.layout(true);
57830
57831         // two part rendering gives faster view to the user
57832         this.renderPhase2.defer(1, this);
57833     },
57834
57835     renderPhase2 : function(){
57836         // render the rows now
57837         this.refresh();
57838         if(this.grid.autoSizeColumns){
57839             this.autoSizeColumns();
57840         }
57841     },
57842
57843     beforeInitialResize : function(){
57844
57845     },
57846
57847     onColumnSplitterMoved : function(i, w){
57848         this.userResized = true;
57849         var cm = this.grid.colModel;
57850         cm.setColumnWidth(i, w, true);
57851         var cid = cm.getColumnId(i);
57852         this.css.updateRule(this.colSelector + this.idToCssName(cid), "width", (w-this.borderWidth) + "px");
57853         this.css.updateRule(this.hdSelector + this.idToCssName(cid), "width", (w-this.borderWidth) + "px");
57854         this.updateSplitters();
57855         this.layout();
57856         this.grid.fireEvent("columnresize", i, w);
57857     },
57858
57859     syncRowHeights : function(startIndex, endIndex){
57860         if(this.grid.enableRowHeightSync === true && this.cm.getLockedCount() > 0){
57861             startIndex = startIndex || 0;
57862             var mrows = this.getBodyTable().rows;
57863             var lrows = this.getLockedTable().rows;
57864             var len = mrows.length-1;
57865             endIndex = Math.min(endIndex || len, len);
57866             for(var i = startIndex; i <= endIndex; i++){
57867                 var m = mrows[i], l = lrows[i];
57868                 var h = Math.max(m.offsetHeight, l.offsetHeight);
57869                 m.style.height = l.style.height = h + "px";
57870             }
57871         }
57872     },
57873
57874     layout : function(initialRender, is2ndPass)
57875     {
57876         var g = this.grid;
57877         var auto = g.autoHeight;
57878         var scrollOffset = 16;
57879         var c = g.getGridEl(), cm = this.cm,
57880                 expandCol = g.autoExpandColumn,
57881                 gv = this;
57882         //c.beginMeasure();
57883
57884         if(!c.dom.offsetWidth){ // display:none?
57885             if(initialRender){
57886                 this.lockedWrap.show();
57887                 this.mainWrap.show();
57888             }
57889             return;
57890         }
57891
57892         var hasLock = this.cm.isLocked(0);
57893
57894         var tbh = this.headerPanel.getHeight();
57895         var bbh = this.footerPanel.getHeight();
57896
57897         if(auto){
57898             var ch = this.getBodyTable().offsetHeight + tbh + bbh + this.mainHd.getHeight();
57899             var newHeight = ch + c.getBorderWidth("tb");
57900             if(g.maxHeight){
57901                 newHeight = Math.min(g.maxHeight, newHeight);
57902             }
57903             c.setHeight(newHeight);
57904         }
57905
57906         if(g.autoWidth){
57907             c.setWidth(cm.getTotalWidth()+c.getBorderWidth('lr'));
57908         }
57909
57910         var s = this.scroller;
57911
57912         var csize = c.getSize(true);
57913
57914         this.el.setSize(csize.width, csize.height);
57915
57916         this.headerPanel.setWidth(csize.width);
57917         this.footerPanel.setWidth(csize.width);
57918
57919         var hdHeight = this.mainHd.getHeight();
57920         var vw = csize.width;
57921         var vh = csize.height - (tbh + bbh);
57922
57923         s.setSize(vw, vh);
57924
57925         var bt = this.getBodyTable();
57926         
57927         if(cm.getLockedCount() == cm.config.length){
57928             bt = this.getLockedTable();
57929         }
57930         
57931         var ltWidth = hasLock ?
57932                       Math.max(this.getLockedTable().offsetWidth, this.lockedHd.dom.firstChild.offsetWidth) : 0;
57933
57934         var scrollHeight = bt.offsetHeight;
57935         var scrollWidth = ltWidth + bt.offsetWidth;
57936         var vscroll = false, hscroll = false;
57937
57938         this.scrollSizer.setSize(scrollWidth, scrollHeight+hdHeight);
57939
57940         var lw = this.lockedWrap, mw = this.mainWrap;
57941         var lb = this.lockedBody, mb = this.mainBody;
57942
57943         setTimeout(function(){
57944             var t = s.dom.offsetTop;
57945             var w = s.dom.clientWidth,
57946                 h = s.dom.clientHeight;
57947
57948             lw.setTop(t);
57949             lw.setSize(ltWidth, h);
57950
57951             mw.setLeftTop(ltWidth, t);
57952             mw.setSize(w-ltWidth, h);
57953
57954             lb.setHeight(h-hdHeight);
57955             mb.setHeight(h-hdHeight);
57956
57957             if(is2ndPass !== true && !gv.userResized && expandCol){
57958                 // high speed resize without full column calculation
57959                 
57960                 var ci = cm.getIndexById(expandCol);
57961                 if (ci < 0) {
57962                     ci = cm.findColumnIndex(expandCol);
57963                 }
57964                 ci = Math.max(0, ci); // make sure it's got at least the first col.
57965                 var expandId = cm.getColumnId(ci);
57966                 var  tw = cm.getTotalWidth(false);
57967                 var currentWidth = cm.getColumnWidth(ci);
57968                 var cw = Math.min(Math.max(((w-tw)+currentWidth-2)-/*scrollbar*/(w <= s.dom.offsetWidth ? 0 : 18), g.autoExpandMin), g.autoExpandMax);
57969                 if(currentWidth != cw){
57970                     cm.setColumnWidth(ci, cw, true);
57971                     gv.css.updateRule(gv.colSelector+gv.idToCssName(expandId), "width", (cw - gv.borderWidth) + "px");
57972                     gv.css.updateRule(gv.hdSelector+gv.idToCssName(expandId), "width", (cw - gv.borderWidth) + "px");
57973                     gv.updateSplitters();
57974                     gv.layout(false, true);
57975                 }
57976             }
57977
57978             if(initialRender){
57979                 lw.show();
57980                 mw.show();
57981             }
57982             //c.endMeasure();
57983         }, 10);
57984     },
57985
57986     onWindowResize : function(){
57987         if(!this.grid.monitorWindowResize || this.grid.autoHeight){
57988             return;
57989         }
57990         this.layout();
57991     },
57992
57993     appendFooter : function(parentEl){
57994         return null;
57995     },
57996
57997     sortAscText : "Sort Ascending",
57998     sortDescText : "Sort Descending",
57999     lockText : "Lock Column",
58000     unlockText : "Unlock Column",
58001     columnsText : "Columns",
58002  
58003     columnsWiderText : "Wider",
58004     columnsNarrowText : "Thinner"
58005 });
58006
58007
58008 Roo.grid.GridView.ColumnDragZone = function(grid, hd){
58009     Roo.grid.GridView.ColumnDragZone.superclass.constructor.call(this, grid, hd, null);
58010     this.proxy.el.addClass('x-grid3-col-dd');
58011 };
58012
58013 Roo.extend(Roo.grid.GridView.ColumnDragZone, Roo.grid.HeaderDragZone, {
58014     handleMouseDown : function(e){
58015
58016     },
58017
58018     callHandleMouseDown : function(e){
58019         Roo.grid.GridView.ColumnDragZone.superclass.handleMouseDown.call(this, e);
58020     }
58021 });
58022 /*
58023  * Based on:
58024  * Ext JS Library 1.1.1
58025  * Copyright(c) 2006-2007, Ext JS, LLC.
58026  *
58027  * Originally Released Under LGPL - original licence link has changed is not relivant.
58028  *
58029  * Fork - LGPL
58030  * <script type="text/javascript">
58031  */
58032  
58033 // private
58034 // This is a support class used internally by the Grid components
58035 Roo.grid.SplitDragZone = function(grid, hd, hd2){
58036     this.grid = grid;
58037     this.view = grid.getView();
58038     this.proxy = this.view.resizeProxy;
58039     Roo.grid.SplitDragZone.superclass.constructor.call(this, hd,
58040         "gridSplitters" + this.grid.getGridEl().id, {
58041         dragElId : Roo.id(this.proxy.dom), resizeFrame:false
58042     });
58043     this.setHandleElId(Roo.id(hd));
58044     this.setOuterHandleElId(Roo.id(hd2));
58045     this.scroll = false;
58046 };
58047 Roo.extend(Roo.grid.SplitDragZone, Roo.dd.DDProxy, {
58048     fly: Roo.Element.fly,
58049
58050     b4StartDrag : function(x, y){
58051         this.view.headersDisabled = true;
58052         this.proxy.setHeight(this.view.mainWrap.getHeight());
58053         var w = this.cm.getColumnWidth(this.cellIndex);
58054         var minw = Math.max(w-this.grid.minColumnWidth, 0);
58055         this.resetConstraints();
58056         this.setXConstraint(minw, 1000);
58057         this.setYConstraint(0, 0);
58058         this.minX = x - minw;
58059         this.maxX = x + 1000;
58060         this.startPos = x;
58061         Roo.dd.DDProxy.prototype.b4StartDrag.call(this, x, y);
58062     },
58063
58064
58065     handleMouseDown : function(e){
58066         ev = Roo.EventObject.setEvent(e);
58067         var t = this.fly(ev.getTarget());
58068         if(t.hasClass("x-grid-split")){
58069             this.cellIndex = this.view.getCellIndex(t.dom);
58070             this.split = t.dom;
58071             this.cm = this.grid.colModel;
58072             if(this.cm.isResizable(this.cellIndex) && !this.cm.isFixed(this.cellIndex)){
58073                 Roo.grid.SplitDragZone.superclass.handleMouseDown.apply(this, arguments);
58074             }
58075         }
58076     },
58077
58078     endDrag : function(e){
58079         this.view.headersDisabled = false;
58080         var endX = Math.max(this.minX, Roo.lib.Event.getPageX(e));
58081         var diff = endX - this.startPos;
58082         this.view.onColumnSplitterMoved(this.cellIndex, this.cm.getColumnWidth(this.cellIndex)+diff);
58083     },
58084
58085     autoOffset : function(){
58086         this.setDelta(0,0);
58087     }
58088 });/*
58089  * Based on:
58090  * Ext JS Library 1.1.1
58091  * Copyright(c) 2006-2007, Ext JS, LLC.
58092  *
58093  * Originally Released Under LGPL - original licence link has changed is not relivant.
58094  *
58095  * Fork - LGPL
58096  * <script type="text/javascript">
58097  */
58098  
58099 // private
58100 // This is a support class used internally by the Grid components
58101 Roo.grid.GridDragZone = function(grid, config){
58102     this.view = grid.getView();
58103     Roo.grid.GridDragZone.superclass.constructor.call(this, this.view.mainBody.dom, config);
58104     if(this.view.lockedBody){
58105         this.setHandleElId(Roo.id(this.view.mainBody.dom));
58106         this.setOuterHandleElId(Roo.id(this.view.lockedBody.dom));
58107     }
58108     this.scroll = false;
58109     this.grid = grid;
58110     this.ddel = document.createElement('div');
58111     this.ddel.className = 'x-grid-dd-wrap';
58112 };
58113
58114 Roo.extend(Roo.grid.GridDragZone, Roo.dd.DragZone, {
58115     ddGroup : "GridDD",
58116
58117     getDragData : function(e){
58118         var t = Roo.lib.Event.getTarget(e);
58119         var rowIndex = this.view.findRowIndex(t);
58120         var sm = this.grid.selModel;
58121             
58122         //Roo.log(rowIndex);
58123         
58124         if (sm.getSelectedCell) {
58125             // cell selection..
58126             if (!sm.getSelectedCell()) {
58127                 return false;
58128             }
58129             if (rowIndex != sm.getSelectedCell()[0]) {
58130                 return false;
58131             }
58132         
58133         }
58134         if (sm.getSelections && sm.getSelections().length < 1) {
58135             return false;
58136         }
58137         
58138         
58139         // before it used to all dragging of unseleted... - now we dont do that.
58140         if(rowIndex !== false){
58141             
58142             // if editorgrid.. 
58143             
58144             
58145             //Roo.log([ sm.getSelectedCell() ? sm.getSelectedCell()[0] : 'NO' , rowIndex ]);
58146                
58147             //if(!sm.isSelected(rowIndex) || e.hasModifier()){
58148               //  
58149             //}
58150             if (e.hasModifier()){
58151                 sm.handleMouseDown(e, t); // non modifier buttons are handled by row select.
58152             }
58153             
58154             Roo.log("getDragData");
58155             
58156             return {
58157                 grid: this.grid,
58158                 ddel: this.ddel,
58159                 rowIndex: rowIndex,
58160                 selections: sm.getSelections ? sm.getSelections() : (
58161                     sm.getSelectedCell() ? [ this.grid.ds.getAt(sm.getSelectedCell()[0]) ] : [])
58162             };
58163         }
58164         return false;
58165     },
58166     
58167     
58168     onInitDrag : function(e){
58169         var data = this.dragData;
58170         this.ddel.innerHTML = this.grid.getDragDropText();
58171         this.proxy.update(this.ddel);
58172         // fire start drag?
58173     },
58174
58175     afterRepair : function(){
58176         this.dragging = false;
58177     },
58178
58179     getRepairXY : function(e, data){
58180         return false;
58181     },
58182
58183     onEndDrag : function(data, e){
58184         // fire end drag?
58185     },
58186
58187     onValidDrop : function(dd, e, id){
58188         // fire drag drop?
58189         this.hideProxy();
58190     },
58191
58192     beforeInvalidDrop : function(e, id){
58193
58194     }
58195 });/*
58196  * Based on:
58197  * Ext JS Library 1.1.1
58198  * Copyright(c) 2006-2007, Ext JS, LLC.
58199  *
58200  * Originally Released Under LGPL - original licence link has changed is not relivant.
58201  *
58202  * Fork - LGPL
58203  * <script type="text/javascript">
58204  */
58205  
58206
58207 /**
58208  * @class Roo.grid.ColumnModel
58209  * @extends Roo.util.Observable
58210  * This is the default implementation of a ColumnModel used by the Grid. It defines
58211  * the columns in the grid.
58212  * <br>Usage:<br>
58213  <pre><code>
58214  var colModel = new Roo.grid.ColumnModel([
58215         {header: "Ticker", width: 60, sortable: true, locked: true},
58216         {header: "Company Name", width: 150, sortable: true},
58217         {header: "Market Cap.", width: 100, sortable: true},
58218         {header: "$ Sales", width: 100, sortable: true, renderer: money},
58219         {header: "Employees", width: 100, sortable: true, resizable: false}
58220  ]);
58221  </code></pre>
58222  * <p>
58223  
58224  * The config options listed for this class are options which may appear in each
58225  * individual column definition.
58226  * <br/>RooJS Fix - column id's are not sequential but use Roo.id() - fixes bugs with layouts.
58227  * @constructor
58228  * @param {Object} config An Array of column config objects. See this class's
58229  * config objects for details.
58230 */
58231 Roo.grid.ColumnModel = function(config){
58232         /**
58233      * The config passed into the constructor
58234      */
58235     this.config = config;
58236     this.lookup = {};
58237
58238     // if no id, create one
58239     // if the column does not have a dataIndex mapping,
58240     // map it to the order it is in the config
58241     for(var i = 0, len = config.length; i < len; i++){
58242         var c = config[i];
58243         if(typeof c.dataIndex == "undefined"){
58244             c.dataIndex = i;
58245         }
58246         if(typeof c.renderer == "string"){
58247             c.renderer = Roo.util.Format[c.renderer];
58248         }
58249         if(typeof c.id == "undefined"){
58250             c.id = Roo.id();
58251         }
58252         if(c.editor && c.editor.xtype){
58253             c.editor  = Roo.factory(c.editor, Roo.grid);
58254         }
58255         if(c.editor && c.editor.isFormField){
58256             c.editor = new Roo.grid.GridEditor(c.editor);
58257         }
58258         this.lookup[c.id] = c;
58259     }
58260
58261     /**
58262      * The width of columns which have no width specified (defaults to 100)
58263      * @type Number
58264      */
58265     this.defaultWidth = 100;
58266
58267     /**
58268      * Default sortable of columns which have no sortable specified (defaults to false)
58269      * @type Boolean
58270      */
58271     this.defaultSortable = false;
58272
58273     this.addEvents({
58274         /**
58275              * @event widthchange
58276              * Fires when the width of a column changes.
58277              * @param {ColumnModel} this
58278              * @param {Number} columnIndex The column index
58279              * @param {Number} newWidth The new width
58280              */
58281             "widthchange": true,
58282         /**
58283              * @event headerchange
58284              * Fires when the text of a header changes.
58285              * @param {ColumnModel} this
58286              * @param {Number} columnIndex The column index
58287              * @param {Number} newText The new header text
58288              */
58289             "headerchange": true,
58290         /**
58291              * @event hiddenchange
58292              * Fires when a column is hidden or "unhidden".
58293              * @param {ColumnModel} this
58294              * @param {Number} columnIndex The column index
58295              * @param {Boolean} hidden true if hidden, false otherwise
58296              */
58297             "hiddenchange": true,
58298             /**
58299          * @event columnmoved
58300          * Fires when a column is moved.
58301          * @param {ColumnModel} this
58302          * @param {Number} oldIndex
58303          * @param {Number} newIndex
58304          */
58305         "columnmoved" : true,
58306         /**
58307          * @event columlockchange
58308          * Fires when a column's locked state is changed
58309          * @param {ColumnModel} this
58310          * @param {Number} colIndex
58311          * @param {Boolean} locked true if locked
58312          */
58313         "columnlockchange" : true
58314     });
58315     Roo.grid.ColumnModel.superclass.constructor.call(this);
58316 };
58317 Roo.extend(Roo.grid.ColumnModel, Roo.util.Observable, {
58318     /**
58319      * @cfg {String} header The header text to display in the Grid view.
58320      */
58321     /**
58322      * @cfg {String} dataIndex (Optional) The name of the field in the grid's {@link Roo.data.Store}'s
58323      * {@link Roo.data.Record} definition from which to draw the column's value. If not
58324      * specified, the column's index is used as an index into the Record's data Array.
58325      */
58326     /**
58327      * @cfg {Number} width (Optional) The initial width in pixels of the column. Using this
58328      * instead of {@link Roo.grid.Grid#autoSizeColumns} is more efficient.
58329      */
58330     /**
58331      * @cfg {Boolean} sortable (Optional) True if sorting is to be allowed on this column.
58332      * Defaults to the value of the {@link #defaultSortable} property.
58333      * Whether local/remote sorting is used is specified in {@link Roo.data.Store#remoteSort}.
58334      */
58335     /**
58336      * @cfg {Boolean} locked (Optional) True to lock the column in place while scrolling the Grid.  Defaults to false.
58337      */
58338     /**
58339      * @cfg {Boolean} fixed (Optional) True if the column width cannot be changed.  Defaults to false.
58340      */
58341     /**
58342      * @cfg {Boolean} resizable (Optional) False to disable column resizing. Defaults to true.
58343      */
58344     /**
58345      * @cfg {Boolean} hidden (Optional) True to hide the column. Defaults to false.
58346      */
58347     /**
58348      * @cfg {Function} renderer (Optional) A function used to generate HTML markup for a cell
58349      * given the cell's data value. See {@link #setRenderer}. If not specified, the
58350      * default renderer returns the escaped data value. If an object is returned (bootstrap only)
58351      * then it is treated as a Roo Component object instance, and it is rendered after the initial row is rendered
58352      */
58353        /**
58354      * @cfg {Roo.grid.GridEditor} editor (Optional) For grid editors - returns the grid editor 
58355      */
58356     /**
58357      * @cfg {String} align (Optional) Set the CSS text-align property of the column.  Defaults to undefined.
58358      */
58359     /**
58360      * @cfg {String} valign (Optional) Set the CSS vertical-align property of the column (eg. middle, top, bottom etc).  Defaults to undefined.
58361      */
58362     /**
58363      * @cfg {String} cursor (Optional)
58364      */
58365     /**
58366      * @cfg {String} tooltip (Optional)
58367      */
58368     /**
58369      * @cfg {Number} xs (Optional)
58370      */
58371     /**
58372      * @cfg {Number} sm (Optional)
58373      */
58374     /**
58375      * @cfg {Number} md (Optional)
58376      */
58377     /**
58378      * @cfg {Number} lg (Optional)
58379      */
58380     /**
58381      * Returns the id of the column at the specified index.
58382      * @param {Number} index The column index
58383      * @return {String} the id
58384      */
58385     getColumnId : function(index){
58386         return this.config[index].id;
58387     },
58388
58389     /**
58390      * Returns the column for a specified id.
58391      * @param {String} id The column id
58392      * @return {Object} the column
58393      */
58394     getColumnById : function(id){
58395         return this.lookup[id];
58396     },
58397
58398     
58399     /**
58400      * Returns the column for a specified dataIndex.
58401      * @param {String} dataIndex The column dataIndex
58402      * @return {Object|Boolean} the column or false if not found
58403      */
58404     getColumnByDataIndex: function(dataIndex){
58405         var index = this.findColumnIndex(dataIndex);
58406         return index > -1 ? this.config[index] : false;
58407     },
58408     
58409     /**
58410      * Returns the index for a specified column id.
58411      * @param {String} id The column id
58412      * @return {Number} the index, or -1 if not found
58413      */
58414     getIndexById : function(id){
58415         for(var i = 0, len = this.config.length; i < len; i++){
58416             if(this.config[i].id == id){
58417                 return i;
58418             }
58419         }
58420         return -1;
58421     },
58422     
58423     /**
58424      * Returns the index for a specified column dataIndex.
58425      * @param {String} dataIndex The column dataIndex
58426      * @return {Number} the index, or -1 if not found
58427      */
58428     
58429     findColumnIndex : function(dataIndex){
58430         for(var i = 0, len = this.config.length; i < len; i++){
58431             if(this.config[i].dataIndex == dataIndex){
58432                 return i;
58433             }
58434         }
58435         return -1;
58436     },
58437     
58438     
58439     moveColumn : function(oldIndex, newIndex){
58440         var c = this.config[oldIndex];
58441         this.config.splice(oldIndex, 1);
58442         this.config.splice(newIndex, 0, c);
58443         this.dataMap = null;
58444         this.fireEvent("columnmoved", this, oldIndex, newIndex);
58445     },
58446
58447     isLocked : function(colIndex){
58448         return this.config[colIndex].locked === true;
58449     },
58450
58451     setLocked : function(colIndex, value, suppressEvent){
58452         if(this.isLocked(colIndex) == value){
58453             return;
58454         }
58455         this.config[colIndex].locked = value;
58456         if(!suppressEvent){
58457             this.fireEvent("columnlockchange", this, colIndex, value);
58458         }
58459     },
58460
58461     getTotalLockedWidth : function(){
58462         var totalWidth = 0;
58463         for(var i = 0; i < this.config.length; i++){
58464             if(this.isLocked(i) && !this.isHidden(i)){
58465                 this.totalWidth += this.getColumnWidth(i);
58466             }
58467         }
58468         return totalWidth;
58469     },
58470
58471     getLockedCount : function(){
58472         for(var i = 0, len = this.config.length; i < len; i++){
58473             if(!this.isLocked(i)){
58474                 return i;
58475             }
58476         }
58477         
58478         return this.config.length;
58479     },
58480
58481     /**
58482      * Returns the number of columns.
58483      * @return {Number}
58484      */
58485     getColumnCount : function(visibleOnly){
58486         if(visibleOnly === true){
58487             var c = 0;
58488             for(var i = 0, len = this.config.length; i < len; i++){
58489                 if(!this.isHidden(i)){
58490                     c++;
58491                 }
58492             }
58493             return c;
58494         }
58495         return this.config.length;
58496     },
58497
58498     /**
58499      * Returns the column configs that return true by the passed function that is called with (columnConfig, index)
58500      * @param {Function} fn
58501      * @param {Object} scope (optional)
58502      * @return {Array} result
58503      */
58504     getColumnsBy : function(fn, scope){
58505         var r = [];
58506         for(var i = 0, len = this.config.length; i < len; i++){
58507             var c = this.config[i];
58508             if(fn.call(scope||this, c, i) === true){
58509                 r[r.length] = c;
58510             }
58511         }
58512         return r;
58513     },
58514
58515     /**
58516      * Returns true if the specified column is sortable.
58517      * @param {Number} col The column index
58518      * @return {Boolean}
58519      */
58520     isSortable : function(col){
58521         if(typeof this.config[col].sortable == "undefined"){
58522             return this.defaultSortable;
58523         }
58524         return this.config[col].sortable;
58525     },
58526
58527     /**
58528      * Returns the rendering (formatting) function defined for the column.
58529      * @param {Number} col The column index.
58530      * @return {Function} The function used to render the cell. See {@link #setRenderer}.
58531      */
58532     getRenderer : function(col){
58533         if(!this.config[col].renderer){
58534             return Roo.grid.ColumnModel.defaultRenderer;
58535         }
58536         return this.config[col].renderer;
58537     },
58538
58539     /**
58540      * Sets the rendering (formatting) function for a column.
58541      * @param {Number} col The column index
58542      * @param {Function} fn The function to use to process the cell's raw data
58543      * to return HTML markup for the grid view. The render function is called with
58544      * the following parameters:<ul>
58545      * <li>Data value.</li>
58546      * <li>Cell metadata. An object in which you may set the following attributes:<ul>
58547      * <li>css A CSS style string to apply to the table cell.</li>
58548      * <li>attr An HTML attribute definition string to apply to the data container element <i>within</i> the table cell.</li></ul>
58549      * <li>The {@link Roo.data.Record} from which the data was extracted.</li>
58550      * <li>Row index</li>
58551      * <li>Column index</li>
58552      * <li>The {@link Roo.data.Store} object from which the Record was extracted</li></ul>
58553      */
58554     setRenderer : function(col, fn){
58555         this.config[col].renderer = fn;
58556     },
58557
58558     /**
58559      * Returns the width for the specified column.
58560      * @param {Number} col The column index
58561      * @return {Number}
58562      */
58563     getColumnWidth : function(col){
58564         return this.config[col].width * 1 || this.defaultWidth;
58565     },
58566
58567     /**
58568      * Sets the width for a column.
58569      * @param {Number} col The column index
58570      * @param {Number} width The new width
58571      */
58572     setColumnWidth : function(col, width, suppressEvent){
58573         this.config[col].width = width;
58574         this.totalWidth = null;
58575         if(!suppressEvent){
58576              this.fireEvent("widthchange", this, col, width);
58577         }
58578     },
58579
58580     /**
58581      * Returns the total width of all columns.
58582      * @param {Boolean} includeHidden True to include hidden column widths
58583      * @return {Number}
58584      */
58585     getTotalWidth : function(includeHidden){
58586         if(!this.totalWidth){
58587             this.totalWidth = 0;
58588             for(var i = 0, len = this.config.length; i < len; i++){
58589                 if(includeHidden || !this.isHidden(i)){
58590                     this.totalWidth += this.getColumnWidth(i);
58591                 }
58592             }
58593         }
58594         return this.totalWidth;
58595     },
58596
58597     /**
58598      * Returns the header for the specified column.
58599      * @param {Number} col The column index
58600      * @return {String}
58601      */
58602     getColumnHeader : function(col){
58603         return this.config[col].header;
58604     },
58605
58606     /**
58607      * Sets the header for a column.
58608      * @param {Number} col The column index
58609      * @param {String} header The new header
58610      */
58611     setColumnHeader : function(col, header){
58612         this.config[col].header = header;
58613         this.fireEvent("headerchange", this, col, header);
58614     },
58615
58616     /**
58617      * Returns the tooltip for the specified column.
58618      * @param {Number} col The column index
58619      * @return {String}
58620      */
58621     getColumnTooltip : function(col){
58622             return this.config[col].tooltip;
58623     },
58624     /**
58625      * Sets the tooltip for a column.
58626      * @param {Number} col The column index
58627      * @param {String} tooltip The new tooltip
58628      */
58629     setColumnTooltip : function(col, tooltip){
58630             this.config[col].tooltip = tooltip;
58631     },
58632
58633     /**
58634      * Returns the dataIndex for the specified column.
58635      * @param {Number} col The column index
58636      * @return {Number}
58637      */
58638     getDataIndex : function(col){
58639         return this.config[col].dataIndex;
58640     },
58641
58642     /**
58643      * Sets the dataIndex for a column.
58644      * @param {Number} col The column index
58645      * @param {Number} dataIndex The new dataIndex
58646      */
58647     setDataIndex : function(col, dataIndex){
58648         this.config[col].dataIndex = dataIndex;
58649     },
58650
58651     
58652     
58653     /**
58654      * Returns true if the cell is editable.
58655      * @param {Number} colIndex The column index
58656      * @param {Number} rowIndex The row index - this is nto actually used..?
58657      * @return {Boolean}
58658      */
58659     isCellEditable : function(colIndex, rowIndex){
58660         return (this.config[colIndex].editable || (typeof this.config[colIndex].editable == "undefined" && this.config[colIndex].editor)) ? true : false;
58661     },
58662
58663     /**
58664      * Returns the editor defined for the cell/column.
58665      * return false or null to disable editing.
58666      * @param {Number} colIndex The column index
58667      * @param {Number} rowIndex The row index
58668      * @return {Object}
58669      */
58670     getCellEditor : function(colIndex, rowIndex){
58671         return this.config[colIndex].editor;
58672     },
58673
58674     /**
58675      * Sets if a column is editable.
58676      * @param {Number} col The column index
58677      * @param {Boolean} editable True if the column is editable
58678      */
58679     setEditable : function(col, editable){
58680         this.config[col].editable = editable;
58681     },
58682
58683
58684     /**
58685      * Returns true if the column is hidden.
58686      * @param {Number} colIndex The column index
58687      * @return {Boolean}
58688      */
58689     isHidden : function(colIndex){
58690         return this.config[colIndex].hidden;
58691     },
58692
58693
58694     /**
58695      * Returns true if the column width cannot be changed
58696      */
58697     isFixed : function(colIndex){
58698         return this.config[colIndex].fixed;
58699     },
58700
58701     /**
58702      * Returns true if the column can be resized
58703      * @return {Boolean}
58704      */
58705     isResizable : function(colIndex){
58706         return colIndex >= 0 && this.config[colIndex].resizable !== false && this.config[colIndex].fixed !== true;
58707     },
58708     /**
58709      * Sets if a column is hidden.
58710      * @param {Number} colIndex The column index
58711      * @param {Boolean} hidden True if the column is hidden
58712      */
58713     setHidden : function(colIndex, hidden){
58714         this.config[colIndex].hidden = hidden;
58715         this.totalWidth = null;
58716         this.fireEvent("hiddenchange", this, colIndex, hidden);
58717     },
58718
58719     /**
58720      * Sets the editor for a column.
58721      * @param {Number} col The column index
58722      * @param {Object} editor The editor object
58723      */
58724     setEditor : function(col, editor){
58725         this.config[col].editor = editor;
58726     }
58727 });
58728
58729 Roo.grid.ColumnModel.defaultRenderer = function(value)
58730 {
58731     if(typeof value == "object") {
58732         return value;
58733     }
58734         if(typeof value == "string" && value.length < 1){
58735             return "&#160;";
58736         }
58737     
58738         return String.format("{0}", value);
58739 };
58740
58741 // Alias for backwards compatibility
58742 Roo.grid.DefaultColumnModel = Roo.grid.ColumnModel;
58743 /*
58744  * Based on:
58745  * Ext JS Library 1.1.1
58746  * Copyright(c) 2006-2007, Ext JS, LLC.
58747  *
58748  * Originally Released Under LGPL - original licence link has changed is not relivant.
58749  *
58750  * Fork - LGPL
58751  * <script type="text/javascript">
58752  */
58753
58754 /**
58755  * @class Roo.grid.AbstractSelectionModel
58756  * @extends Roo.util.Observable
58757  * Abstract base class for grid SelectionModels.  It provides the interface that should be
58758  * implemented by descendant classes.  This class should not be directly instantiated.
58759  * @constructor
58760  */
58761 Roo.grid.AbstractSelectionModel = function(){
58762     this.locked = false;
58763     Roo.grid.AbstractSelectionModel.superclass.constructor.call(this);
58764 };
58765
58766 Roo.extend(Roo.grid.AbstractSelectionModel, Roo.util.Observable,  {
58767     /** @ignore Called by the grid automatically. Do not call directly. */
58768     init : function(grid){
58769         this.grid = grid;
58770         this.initEvents();
58771     },
58772
58773     /**
58774      * Locks the selections.
58775      */
58776     lock : function(){
58777         this.locked = true;
58778     },
58779
58780     /**
58781      * Unlocks the selections.
58782      */
58783     unlock : function(){
58784         this.locked = false;
58785     },
58786
58787     /**
58788      * Returns true if the selections are locked.
58789      * @return {Boolean}
58790      */
58791     isLocked : function(){
58792         return this.locked;
58793     }
58794 });/*
58795  * Based on:
58796  * Ext JS Library 1.1.1
58797  * Copyright(c) 2006-2007, Ext JS, LLC.
58798  *
58799  * Originally Released Under LGPL - original licence link has changed is not relivant.
58800  *
58801  * Fork - LGPL
58802  * <script type="text/javascript">
58803  */
58804 /**
58805  * @extends Roo.grid.AbstractSelectionModel
58806  * @class Roo.grid.RowSelectionModel
58807  * The default SelectionModel used by {@link Roo.grid.Grid}.
58808  * It supports multiple selections and keyboard selection/navigation. 
58809  * @constructor
58810  * @param {Object} config
58811  */
58812 Roo.grid.RowSelectionModel = function(config){
58813     Roo.apply(this, config);
58814     this.selections = new Roo.util.MixedCollection(false, function(o){
58815         return o.id;
58816     });
58817
58818     this.last = false;
58819     this.lastActive = false;
58820
58821     this.addEvents({
58822         /**
58823              * @event selectionchange
58824              * Fires when the selection changes
58825              * @param {SelectionModel} this
58826              */
58827             "selectionchange" : true,
58828         /**
58829              * @event afterselectionchange
58830              * Fires after the selection changes (eg. by key press or clicking)
58831              * @param {SelectionModel} this
58832              */
58833             "afterselectionchange" : true,
58834         /**
58835              * @event beforerowselect
58836              * Fires when a row is selected being selected, return false to cancel.
58837              * @param {SelectionModel} this
58838              * @param {Number} rowIndex The selected index
58839              * @param {Boolean} keepExisting False if other selections will be cleared
58840              */
58841             "beforerowselect" : true,
58842         /**
58843              * @event rowselect
58844              * Fires when a row is selected.
58845              * @param {SelectionModel} this
58846              * @param {Number} rowIndex The selected index
58847              * @param {Roo.data.Record} r The record
58848              */
58849             "rowselect" : true,
58850         /**
58851              * @event rowdeselect
58852              * Fires when a row is deselected.
58853              * @param {SelectionModel} this
58854              * @param {Number} rowIndex The selected index
58855              */
58856         "rowdeselect" : true
58857     });
58858     Roo.grid.RowSelectionModel.superclass.constructor.call(this);
58859     this.locked = false;
58860 };
58861
58862 Roo.extend(Roo.grid.RowSelectionModel, Roo.grid.AbstractSelectionModel,  {
58863     /**
58864      * @cfg {Boolean} singleSelect
58865      * True to allow selection of only one row at a time (defaults to false)
58866      */
58867     singleSelect : false,
58868
58869     // private
58870     initEvents : function(){
58871
58872         if(!this.grid.enableDragDrop && !this.grid.enableDrag){
58873             this.grid.on("mousedown", this.handleMouseDown, this);
58874         }else{ // allow click to work like normal
58875             this.grid.on("rowclick", this.handleDragableRowClick, this);
58876         }
58877
58878         this.rowNav = new Roo.KeyNav(this.grid.getGridEl(), {
58879             "up" : function(e){
58880                 if(!e.shiftKey){
58881                     this.selectPrevious(e.shiftKey);
58882                 }else if(this.last !== false && this.lastActive !== false){
58883                     var last = this.last;
58884                     this.selectRange(this.last,  this.lastActive-1);
58885                     this.grid.getView().focusRow(this.lastActive);
58886                     if(last !== false){
58887                         this.last = last;
58888                     }
58889                 }else{
58890                     this.selectFirstRow();
58891                 }
58892                 this.fireEvent("afterselectionchange", this);
58893             },
58894             "down" : function(e){
58895                 if(!e.shiftKey){
58896                     this.selectNext(e.shiftKey);
58897                 }else if(this.last !== false && this.lastActive !== false){
58898                     var last = this.last;
58899                     this.selectRange(this.last,  this.lastActive+1);
58900                     this.grid.getView().focusRow(this.lastActive);
58901                     if(last !== false){
58902                         this.last = last;
58903                     }
58904                 }else{
58905                     this.selectFirstRow();
58906                 }
58907                 this.fireEvent("afterselectionchange", this);
58908             },
58909             scope: this
58910         });
58911
58912         var view = this.grid.view;
58913         view.on("refresh", this.onRefresh, this);
58914         view.on("rowupdated", this.onRowUpdated, this);
58915         view.on("rowremoved", this.onRemove, this);
58916     },
58917
58918     // private
58919     onRefresh : function(){
58920         var ds = this.grid.dataSource, i, v = this.grid.view;
58921         var s = this.selections;
58922         s.each(function(r){
58923             if((i = ds.indexOfId(r.id)) != -1){
58924                 v.onRowSelect(i);
58925                 s.add(ds.getAt(i)); // updating the selection relate data
58926             }else{
58927                 s.remove(r);
58928             }
58929         });
58930     },
58931
58932     // private
58933     onRemove : function(v, index, r){
58934         this.selections.remove(r);
58935     },
58936
58937     // private
58938     onRowUpdated : function(v, index, r){
58939         if(this.isSelected(r)){
58940             v.onRowSelect(index);
58941         }
58942     },
58943
58944     /**
58945      * Select records.
58946      * @param {Array} records The records to select
58947      * @param {Boolean} keepExisting (optional) True to keep existing selections
58948      */
58949     selectRecords : function(records, keepExisting){
58950         if(!keepExisting){
58951             this.clearSelections();
58952         }
58953         var ds = this.grid.dataSource;
58954         for(var i = 0, len = records.length; i < len; i++){
58955             this.selectRow(ds.indexOf(records[i]), true);
58956         }
58957     },
58958
58959     /**
58960      * Gets the number of selected rows.
58961      * @return {Number}
58962      */
58963     getCount : function(){
58964         return this.selections.length;
58965     },
58966
58967     /**
58968      * Selects the first row in the grid.
58969      */
58970     selectFirstRow : function(){
58971         this.selectRow(0);
58972     },
58973
58974     /**
58975      * Select the last row.
58976      * @param {Boolean} keepExisting (optional) True to keep existing selections
58977      */
58978     selectLastRow : function(keepExisting){
58979         this.selectRow(this.grid.dataSource.getCount() - 1, keepExisting);
58980     },
58981
58982     /**
58983      * Selects the row immediately following the last selected row.
58984      * @param {Boolean} keepExisting (optional) True to keep existing selections
58985      */
58986     selectNext : function(keepExisting){
58987         if(this.last !== false && (this.last+1) < this.grid.dataSource.getCount()){
58988             this.selectRow(this.last+1, keepExisting);
58989             this.grid.getView().focusRow(this.last);
58990         }
58991     },
58992
58993     /**
58994      * Selects the row that precedes the last selected row.
58995      * @param {Boolean} keepExisting (optional) True to keep existing selections
58996      */
58997     selectPrevious : function(keepExisting){
58998         if(this.last){
58999             this.selectRow(this.last-1, keepExisting);
59000             this.grid.getView().focusRow(this.last);
59001         }
59002     },
59003
59004     /**
59005      * Returns the selected records
59006      * @return {Array} Array of selected records
59007      */
59008     getSelections : function(){
59009         return [].concat(this.selections.items);
59010     },
59011
59012     /**
59013      * Returns the first selected record.
59014      * @return {Record}
59015      */
59016     getSelected : function(){
59017         return this.selections.itemAt(0);
59018     },
59019
59020
59021     /**
59022      * Clears all selections.
59023      */
59024     clearSelections : function(fast){
59025         if(this.locked) {
59026             return;
59027         }
59028         if(fast !== true){
59029             var ds = this.grid.dataSource;
59030             var s = this.selections;
59031             s.each(function(r){
59032                 this.deselectRow(ds.indexOfId(r.id));
59033             }, this);
59034             s.clear();
59035         }else{
59036             this.selections.clear();
59037         }
59038         this.last = false;
59039     },
59040
59041
59042     /**
59043      * Selects all rows.
59044      */
59045     selectAll : function(){
59046         if(this.locked) {
59047             return;
59048         }
59049         this.selections.clear();
59050         for(var i = 0, len = this.grid.dataSource.getCount(); i < len; i++){
59051             this.selectRow(i, true);
59052         }
59053     },
59054
59055     /**
59056      * Returns True if there is a selection.
59057      * @return {Boolean}
59058      */
59059     hasSelection : function(){
59060         return this.selections.length > 0;
59061     },
59062
59063     /**
59064      * Returns True if the specified row is selected.
59065      * @param {Number/Record} record The record or index of the record to check
59066      * @return {Boolean}
59067      */
59068     isSelected : function(index){
59069         var r = typeof index == "number" ? this.grid.dataSource.getAt(index) : index;
59070         return (r && this.selections.key(r.id) ? true : false);
59071     },
59072
59073     /**
59074      * Returns True if the specified record id is selected.
59075      * @param {String} id The id of record to check
59076      * @return {Boolean}
59077      */
59078     isIdSelected : function(id){
59079         return (this.selections.key(id) ? true : false);
59080     },
59081
59082     // private
59083     handleMouseDown : function(e, t){
59084         var view = this.grid.getView(), rowIndex;
59085         if(this.isLocked() || (rowIndex = view.findRowIndex(t)) === false){
59086             return;
59087         };
59088         if(e.shiftKey && this.last !== false){
59089             var last = this.last;
59090             this.selectRange(last, rowIndex, e.ctrlKey);
59091             this.last = last; // reset the last
59092             view.focusRow(rowIndex);
59093         }else{
59094             var isSelected = this.isSelected(rowIndex);
59095             if(e.button !== 0 && isSelected){
59096                 view.focusRow(rowIndex);
59097             }else if(e.ctrlKey && isSelected){
59098                 this.deselectRow(rowIndex);
59099             }else if(!isSelected){
59100                 this.selectRow(rowIndex, e.button === 0 && (e.ctrlKey || e.shiftKey));
59101                 view.focusRow(rowIndex);
59102             }
59103         }
59104         this.fireEvent("afterselectionchange", this);
59105     },
59106     // private
59107     handleDragableRowClick :  function(grid, rowIndex, e) 
59108     {
59109         if(e.button === 0 && !e.shiftKey && !e.ctrlKey) {
59110             this.selectRow(rowIndex, false);
59111             grid.view.focusRow(rowIndex);
59112              this.fireEvent("afterselectionchange", this);
59113         }
59114     },
59115     
59116     /**
59117      * Selects multiple rows.
59118      * @param {Array} rows Array of the indexes of the row to select
59119      * @param {Boolean} keepExisting (optional) True to keep existing selections
59120      */
59121     selectRows : function(rows, keepExisting){
59122         if(!keepExisting){
59123             this.clearSelections();
59124         }
59125         for(var i = 0, len = rows.length; i < len; i++){
59126             this.selectRow(rows[i], true);
59127         }
59128     },
59129
59130     /**
59131      * Selects a range of rows. All rows in between startRow and endRow are also selected.
59132      * @param {Number} startRow The index of the first row in the range
59133      * @param {Number} endRow The index of the last row in the range
59134      * @param {Boolean} keepExisting (optional) True to retain existing selections
59135      */
59136     selectRange : function(startRow, endRow, keepExisting){
59137         if(this.locked) {
59138             return;
59139         }
59140         if(!keepExisting){
59141             this.clearSelections();
59142         }
59143         if(startRow <= endRow){
59144             for(var i = startRow; i <= endRow; i++){
59145                 this.selectRow(i, true);
59146             }
59147         }else{
59148             for(var i = startRow; i >= endRow; i--){
59149                 this.selectRow(i, true);
59150             }
59151         }
59152     },
59153
59154     /**
59155      * Deselects a range of rows. All rows in between startRow and endRow are also deselected.
59156      * @param {Number} startRow The index of the first row in the range
59157      * @param {Number} endRow The index of the last row in the range
59158      */
59159     deselectRange : function(startRow, endRow, preventViewNotify){
59160         if(this.locked) {
59161             return;
59162         }
59163         for(var i = startRow; i <= endRow; i++){
59164             this.deselectRow(i, preventViewNotify);
59165         }
59166     },
59167
59168     /**
59169      * Selects a row.
59170      * @param {Number} row The index of the row to select
59171      * @param {Boolean} keepExisting (optional) True to keep existing selections
59172      */
59173     selectRow : function(index, keepExisting, preventViewNotify){
59174         if(this.locked || (index < 0 || index >= this.grid.dataSource.getCount())) {
59175             return;
59176         }
59177         if(this.fireEvent("beforerowselect", this, index, keepExisting) !== false){
59178             if(!keepExisting || this.singleSelect){
59179                 this.clearSelections();
59180             }
59181             var r = this.grid.dataSource.getAt(index);
59182             this.selections.add(r);
59183             this.last = this.lastActive = index;
59184             if(!preventViewNotify){
59185                 this.grid.getView().onRowSelect(index);
59186             }
59187             this.fireEvent("rowselect", this, index, r);
59188             this.fireEvent("selectionchange", this);
59189         }
59190     },
59191
59192     /**
59193      * Deselects a row.
59194      * @param {Number} row The index of the row to deselect
59195      */
59196     deselectRow : function(index, preventViewNotify){
59197         if(this.locked) {
59198             return;
59199         }
59200         if(this.last == index){
59201             this.last = false;
59202         }
59203         if(this.lastActive == index){
59204             this.lastActive = false;
59205         }
59206         var r = this.grid.dataSource.getAt(index);
59207         this.selections.remove(r);
59208         if(!preventViewNotify){
59209             this.grid.getView().onRowDeselect(index);
59210         }
59211         this.fireEvent("rowdeselect", this, index);
59212         this.fireEvent("selectionchange", this);
59213     },
59214
59215     // private
59216     restoreLast : function(){
59217         if(this._last){
59218             this.last = this._last;
59219         }
59220     },
59221
59222     // private
59223     acceptsNav : function(row, col, cm){
59224         return !cm.isHidden(col) && cm.isCellEditable(col, row);
59225     },
59226
59227     // private
59228     onEditorKey : function(field, e){
59229         var k = e.getKey(), newCell, g = this.grid, ed = g.activeEditor;
59230         if(k == e.TAB){
59231             e.stopEvent();
59232             ed.completeEdit();
59233             if(e.shiftKey){
59234                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
59235             }else{
59236                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
59237             }
59238         }else if(k == e.ENTER && !e.ctrlKey){
59239             e.stopEvent();
59240             ed.completeEdit();
59241             if(e.shiftKey){
59242                 newCell = g.walkCells(ed.row-1, ed.col, -1, this.acceptsNav, this);
59243             }else{
59244                 newCell = g.walkCells(ed.row+1, ed.col, 1, this.acceptsNav, this);
59245             }
59246         }else if(k == e.ESC){
59247             ed.cancelEdit();
59248         }
59249         if(newCell){
59250             g.startEditing(newCell[0], newCell[1]);
59251         }
59252     }
59253 });/*
59254  * Based on:
59255  * Ext JS Library 1.1.1
59256  * Copyright(c) 2006-2007, Ext JS, LLC.
59257  *
59258  * Originally Released Under LGPL - original licence link has changed is not relivant.
59259  *
59260  * Fork - LGPL
59261  * <script type="text/javascript">
59262  */
59263 /**
59264  * @class Roo.grid.CellSelectionModel
59265  * @extends Roo.grid.AbstractSelectionModel
59266  * This class provides the basic implementation for cell selection in a grid.
59267  * @constructor
59268  * @param {Object} config The object containing the configuration of this model.
59269  * @cfg {Boolean} enter_is_tab Enter behaves the same as tab. (eg. goes to next cell) default: false
59270  */
59271 Roo.grid.CellSelectionModel = function(config){
59272     Roo.apply(this, config);
59273
59274     this.selection = null;
59275
59276     this.addEvents({
59277         /**
59278              * @event beforerowselect
59279              * Fires before a cell is selected.
59280              * @param {SelectionModel} this
59281              * @param {Number} rowIndex The selected row index
59282              * @param {Number} colIndex The selected cell index
59283              */
59284             "beforecellselect" : true,
59285         /**
59286              * @event cellselect
59287              * Fires when a cell is selected.
59288              * @param {SelectionModel} this
59289              * @param {Number} rowIndex The selected row index
59290              * @param {Number} colIndex The selected cell index
59291              */
59292             "cellselect" : true,
59293         /**
59294              * @event selectionchange
59295              * Fires when the active selection changes.
59296              * @param {SelectionModel} this
59297              * @param {Object} selection null for no selection or an object (o) with two properties
59298                 <ul>
59299                 <li>o.record: the record object for the row the selection is in</li>
59300                 <li>o.cell: An array of [rowIndex, columnIndex]</li>
59301                 </ul>
59302              */
59303             "selectionchange" : true,
59304         /**
59305              * @event tabend
59306              * Fires when the tab (or enter) was pressed on the last editable cell
59307              * You can use this to trigger add new row.
59308              * @param {SelectionModel} this
59309              */
59310             "tabend" : true,
59311          /**
59312              * @event beforeeditnext
59313              * Fires before the next editable sell is made active
59314              * You can use this to skip to another cell or fire the tabend
59315              *    if you set cell to false
59316              * @param {Object} eventdata object : { cell : [ row, col ] } 
59317              */
59318             "beforeeditnext" : true
59319     });
59320     Roo.grid.CellSelectionModel.superclass.constructor.call(this);
59321 };
59322
59323 Roo.extend(Roo.grid.CellSelectionModel, Roo.grid.AbstractSelectionModel,  {
59324     
59325     enter_is_tab: false,
59326
59327     /** @ignore */
59328     initEvents : function(){
59329         this.grid.on("mousedown", this.handleMouseDown, this);
59330         this.grid.getGridEl().on(Roo.isIE ? "keydown" : "keypress", this.handleKeyDown, this);
59331         var view = this.grid.view;
59332         view.on("refresh", this.onViewChange, this);
59333         view.on("rowupdated", this.onRowUpdated, this);
59334         view.on("beforerowremoved", this.clearSelections, this);
59335         view.on("beforerowsinserted", this.clearSelections, this);
59336         if(this.grid.isEditor){
59337             this.grid.on("beforeedit", this.beforeEdit,  this);
59338         }
59339     },
59340
59341         //private
59342     beforeEdit : function(e){
59343         this.select(e.row, e.column, false, true, e.record);
59344     },
59345
59346         //private
59347     onRowUpdated : function(v, index, r){
59348         if(this.selection && this.selection.record == r){
59349             v.onCellSelect(index, this.selection.cell[1]);
59350         }
59351     },
59352
59353         //private
59354     onViewChange : function(){
59355         this.clearSelections(true);
59356     },
59357
59358         /**
59359          * Returns the currently selected cell,.
59360          * @return {Array} The selected cell (row, column) or null if none selected.
59361          */
59362     getSelectedCell : function(){
59363         return this.selection ? this.selection.cell : null;
59364     },
59365
59366     /**
59367      * Clears all selections.
59368      * @param {Boolean} true to prevent the gridview from being notified about the change.
59369      */
59370     clearSelections : function(preventNotify){
59371         var s = this.selection;
59372         if(s){
59373             if(preventNotify !== true){
59374                 this.grid.view.onCellDeselect(s.cell[0], s.cell[1]);
59375             }
59376             this.selection = null;
59377             this.fireEvent("selectionchange", this, null);
59378         }
59379     },
59380
59381     /**
59382      * Returns true if there is a selection.
59383      * @return {Boolean}
59384      */
59385     hasSelection : function(){
59386         return this.selection ? true : false;
59387     },
59388
59389     /** @ignore */
59390     handleMouseDown : function(e, t){
59391         var v = this.grid.getView();
59392         if(this.isLocked()){
59393             return;
59394         };
59395         var row = v.findRowIndex(t);
59396         var cell = v.findCellIndex(t);
59397         if(row !== false && cell !== false){
59398             this.select(row, cell);
59399         }
59400     },
59401
59402     /**
59403      * Selects a cell.
59404      * @param {Number} rowIndex
59405      * @param {Number} collIndex
59406      */
59407     select : function(rowIndex, colIndex, preventViewNotify, preventFocus, /*internal*/ r){
59408         if(this.fireEvent("beforecellselect", this, rowIndex, colIndex) !== false){
59409             this.clearSelections();
59410             r = r || this.grid.dataSource.getAt(rowIndex);
59411             this.selection = {
59412                 record : r,
59413                 cell : [rowIndex, colIndex]
59414             };
59415             if(!preventViewNotify){
59416                 var v = this.grid.getView();
59417                 v.onCellSelect(rowIndex, colIndex);
59418                 if(preventFocus !== true){
59419                     v.focusCell(rowIndex, colIndex);
59420                 }
59421             }
59422             this.fireEvent("cellselect", this, rowIndex, colIndex);
59423             this.fireEvent("selectionchange", this, this.selection);
59424         }
59425     },
59426
59427         //private
59428     isSelectable : function(rowIndex, colIndex, cm){
59429         return !cm.isHidden(colIndex);
59430     },
59431
59432     /** @ignore */
59433     handleKeyDown : function(e){
59434         //Roo.log('Cell Sel Model handleKeyDown');
59435         if(!e.isNavKeyPress()){
59436             return;
59437         }
59438         var g = this.grid, s = this.selection;
59439         if(!s){
59440             e.stopEvent();
59441             var cell = g.walkCells(0, 0, 1, this.isSelectable,  this);
59442             if(cell){
59443                 this.select(cell[0], cell[1]);
59444             }
59445             return;
59446         }
59447         var sm = this;
59448         var walk = function(row, col, step){
59449             return g.walkCells(row, col, step, sm.isSelectable,  sm);
59450         };
59451         var k = e.getKey(), r = s.cell[0], c = s.cell[1];
59452         var newCell;
59453
59454       
59455
59456         switch(k){
59457             case e.TAB:
59458                 // handled by onEditorKey
59459                 if (g.isEditor && g.editing) {
59460                     return;
59461                 }
59462                 if(e.shiftKey) {
59463                     newCell = walk(r, c-1, -1);
59464                 } else {
59465                     newCell = walk(r, c+1, 1);
59466                 }
59467                 break;
59468             
59469             case e.DOWN:
59470                newCell = walk(r+1, c, 1);
59471                 break;
59472             
59473             case e.UP:
59474                 newCell = walk(r-1, c, -1);
59475                 break;
59476             
59477             case e.RIGHT:
59478                 newCell = walk(r, c+1, 1);
59479                 break;
59480             
59481             case e.LEFT:
59482                 newCell = walk(r, c-1, -1);
59483                 break;
59484             
59485             case e.ENTER:
59486                 
59487                 if(g.isEditor && !g.editing){
59488                    g.startEditing(r, c);
59489                    e.stopEvent();
59490                    return;
59491                 }
59492                 
59493                 
59494              break;
59495         };
59496         if(newCell){
59497             this.select(newCell[0], newCell[1]);
59498             e.stopEvent();
59499             
59500         }
59501     },
59502
59503     acceptsNav : function(row, col, cm){
59504         return !cm.isHidden(col) && cm.isCellEditable(col, row);
59505     },
59506     /**
59507      * Selects a cell.
59508      * @param {Number} field (not used) - as it's normally used as a listener
59509      * @param {Number} e - event - fake it by using
59510      *
59511      * var e = Roo.EventObjectImpl.prototype;
59512      * e.keyCode = e.TAB
59513      *
59514      * 
59515      */
59516     onEditorKey : function(field, e){
59517         
59518         var k = e.getKey(),
59519             newCell,
59520             g = this.grid,
59521             ed = g.activeEditor,
59522             forward = false;
59523         ///Roo.log('onEditorKey' + k);
59524         
59525         
59526         if (this.enter_is_tab && k == e.ENTER) {
59527             k = e.TAB;
59528         }
59529         
59530         if(k == e.TAB){
59531             if(e.shiftKey){
59532                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
59533             }else{
59534                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
59535                 forward = true;
59536             }
59537             
59538             e.stopEvent();
59539             
59540         } else if(k == e.ENTER &&  !e.ctrlKey){
59541             ed.completeEdit();
59542             e.stopEvent();
59543             newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
59544         
59545                 } else if(k == e.ESC){
59546             ed.cancelEdit();
59547         }
59548                 
59549         if (newCell) {
59550             var ecall = { cell : newCell, forward : forward };
59551             this.fireEvent('beforeeditnext', ecall );
59552             newCell = ecall.cell;
59553                         forward = ecall.forward;
59554         }
59555                 
59556         if(newCell){
59557             //Roo.log('next cell after edit');
59558             g.startEditing.defer(100, g, [newCell[0], newCell[1]]);
59559         } else if (forward) {
59560             // tabbed past last
59561             this.fireEvent.defer(100, this, ['tabend',this]);
59562         }
59563     }
59564 });/*
59565  * Based on:
59566  * Ext JS Library 1.1.1
59567  * Copyright(c) 2006-2007, Ext JS, LLC.
59568  *
59569  * Originally Released Under LGPL - original licence link has changed is not relivant.
59570  *
59571  * Fork - LGPL
59572  * <script type="text/javascript">
59573  */
59574  
59575 /**
59576  * @class Roo.grid.EditorGrid
59577  * @extends Roo.grid.Grid
59578  * Class for creating and editable grid.
59579  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered - 
59580  * The container MUST have some type of size defined for the grid to fill. The container will be 
59581  * automatically set to position relative if it isn't already.
59582  * @param {Object} dataSource The data model to bind to
59583  * @param {Object} colModel The column model with info about this grid's columns
59584  */
59585 Roo.grid.EditorGrid = function(container, config){
59586     Roo.grid.EditorGrid.superclass.constructor.call(this, container, config);
59587     this.getGridEl().addClass("xedit-grid");
59588
59589     if(!this.selModel){
59590         this.selModel = new Roo.grid.CellSelectionModel();
59591     }
59592
59593     this.activeEditor = null;
59594
59595         this.addEvents({
59596             /**
59597              * @event beforeedit
59598              * Fires before cell editing is triggered. The edit event object has the following properties <br />
59599              * <ul style="padding:5px;padding-left:16px;">
59600              * <li>grid - This grid</li>
59601              * <li>record - The record being edited</li>
59602              * <li>field - The field name being edited</li>
59603              * <li>value - The value for the field being edited.</li>
59604              * <li>row - The grid row index</li>
59605              * <li>column - The grid column index</li>
59606              * <li>cancel - Set this to true to cancel the edit or return false from your handler.</li>
59607              * </ul>
59608              * @param {Object} e An edit event (see above for description)
59609              */
59610             "beforeedit" : true,
59611             /**
59612              * @event afteredit
59613              * Fires after a cell is edited. <br />
59614              * <ul style="padding:5px;padding-left:16px;">
59615              * <li>grid - This grid</li>
59616              * <li>record - The record being edited</li>
59617              * <li>field - The field name being edited</li>
59618              * <li>value - The value being set</li>
59619              * <li>originalValue - The original value for the field, before the edit.</li>
59620              * <li>row - The grid row index</li>
59621              * <li>column - The grid column index</li>
59622              * </ul>
59623              * @param {Object} e An edit event (see above for description)
59624              */
59625             "afteredit" : true,
59626             /**
59627              * @event validateedit
59628              * Fires after a cell is edited, but before the value is set in the record. 
59629          * You can use this to modify the value being set in the field, Return false
59630              * to cancel the change. The edit event object has the following properties <br />
59631              * <ul style="padding:5px;padding-left:16px;">
59632          * <li>editor - This editor</li>
59633              * <li>grid - This grid</li>
59634              * <li>record - The record being edited</li>
59635              * <li>field - The field name being edited</li>
59636              * <li>value - The value being set</li>
59637              * <li>originalValue - The original value for the field, before the edit.</li>
59638              * <li>row - The grid row index</li>
59639              * <li>column - The grid column index</li>
59640              * <li>cancel - Set this to true to cancel the edit or return false from your handler.</li>
59641              * </ul>
59642              * @param {Object} e An edit event (see above for description)
59643              */
59644             "validateedit" : true
59645         });
59646     this.on("bodyscroll", this.stopEditing,  this);
59647     this.on(this.clicksToEdit == 1 ? "cellclick" : "celldblclick", this.onCellDblClick,  this);
59648 };
59649
59650 Roo.extend(Roo.grid.EditorGrid, Roo.grid.Grid, {
59651     /**
59652      * @cfg {Number} clicksToEdit
59653      * The number of clicks on a cell required to display the cell's editor (defaults to 2)
59654      */
59655     clicksToEdit: 2,
59656
59657     // private
59658     isEditor : true,
59659     // private
59660     trackMouseOver: false, // causes very odd FF errors
59661
59662     onCellDblClick : function(g, row, col){
59663         this.startEditing(row, col);
59664     },
59665
59666     onEditComplete : function(ed, value, startValue){
59667         this.editing = false;
59668         this.activeEditor = null;
59669         ed.un("specialkey", this.selModel.onEditorKey, this.selModel);
59670         var r = ed.record;
59671         var field = this.colModel.getDataIndex(ed.col);
59672         var e = {
59673             grid: this,
59674             record: r,
59675             field: field,
59676             originalValue: startValue,
59677             value: value,
59678             row: ed.row,
59679             column: ed.col,
59680             cancel:false,
59681             editor: ed
59682         };
59683         var cell = Roo.get(this.view.getCell(ed.row,ed.col));
59684         cell.show();
59685           
59686         if(String(value) !== String(startValue)){
59687             
59688             if(this.fireEvent("validateedit", e) !== false && !e.cancel){
59689                 r.set(field, e.value);
59690                 // if we are dealing with a combo box..
59691                 // then we also set the 'name' colum to be the displayField
59692                 if (ed.field.displayField && ed.field.name) {
59693                     r.set(ed.field.name, ed.field.el.dom.value);
59694                 }
59695                 
59696                 delete e.cancel; //?? why!!!
59697                 this.fireEvent("afteredit", e);
59698             }
59699         } else {
59700             this.fireEvent("afteredit", e); // always fire it!
59701         }
59702         this.view.focusCell(ed.row, ed.col);
59703     },
59704
59705     /**
59706      * Starts editing the specified for the specified row/column
59707      * @param {Number} rowIndex
59708      * @param {Number} colIndex
59709      */
59710     startEditing : function(row, col){
59711         this.stopEditing();
59712         if(this.colModel.isCellEditable(col, row)){
59713             this.view.ensureVisible(row, col, true);
59714           
59715             var r = this.dataSource.getAt(row);
59716             var field = this.colModel.getDataIndex(col);
59717             var cell = Roo.get(this.view.getCell(row,col));
59718             var e = {
59719                 grid: this,
59720                 record: r,
59721                 field: field,
59722                 value: r.data[field],
59723                 row: row,
59724                 column: col,
59725                 cancel:false 
59726             };
59727             if(this.fireEvent("beforeedit", e) !== false && !e.cancel){
59728                 this.editing = true;
59729                 var ed = this.colModel.getCellEditor(col, row);
59730                 
59731                 if (!ed) {
59732                     return;
59733                 }
59734                 if(!ed.rendered){
59735                     ed.render(ed.parentEl || document.body);
59736                 }
59737                 ed.field.reset();
59738                
59739                 cell.hide();
59740                 
59741                 (function(){ // complex but required for focus issues in safari, ie and opera
59742                     ed.row = row;
59743                     ed.col = col;
59744                     ed.record = r;
59745                     ed.on("complete",   this.onEditComplete,        this,       {single: true});
59746                     ed.on("specialkey", this.selModel.onEditorKey,  this.selModel);
59747                     this.activeEditor = ed;
59748                     var v = r.data[field];
59749                     ed.startEdit(this.view.getCell(row, col), v);
59750                     // combo's with 'displayField and name set
59751                     if (ed.field.displayField && ed.field.name) {
59752                         ed.field.el.dom.value = r.data[ed.field.name];
59753                     }
59754                     
59755                     
59756                 }).defer(50, this);
59757             }
59758         }
59759     },
59760         
59761     /**
59762      * Stops any active editing
59763      */
59764     stopEditing : function(){
59765         if(this.activeEditor){
59766             this.activeEditor.completeEdit();
59767         }
59768         this.activeEditor = null;
59769     },
59770         
59771          /**
59772      * Called to get grid's drag proxy text, by default returns this.ddText.
59773      * @return {String}
59774      */
59775     getDragDropText : function(){
59776         var count = this.selModel.getSelectedCell() ? 1 : 0;
59777         return String.format(this.ddText, count, count == 1 ? '' : 's');
59778     }
59779         
59780 });/*
59781  * Based on:
59782  * Ext JS Library 1.1.1
59783  * Copyright(c) 2006-2007, Ext JS, LLC.
59784  *
59785  * Originally Released Under LGPL - original licence link has changed is not relivant.
59786  *
59787  * Fork - LGPL
59788  * <script type="text/javascript">
59789  */
59790
59791 // private - not really -- you end up using it !
59792 // This is a support class used internally by the Grid components
59793
59794 /**
59795  * @class Roo.grid.GridEditor
59796  * @extends Roo.Editor
59797  * Class for creating and editable grid elements.
59798  * @param {Object} config any settings (must include field)
59799  */
59800 Roo.grid.GridEditor = function(field, config){
59801     if (!config && field.field) {
59802         config = field;
59803         field = Roo.factory(config.field, Roo.form);
59804     }
59805     Roo.grid.GridEditor.superclass.constructor.call(this, field, config);
59806     field.monitorTab = false;
59807 };
59808
59809 Roo.extend(Roo.grid.GridEditor, Roo.Editor, {
59810     
59811     /**
59812      * @cfg {Roo.form.Field} field Field to wrap (or xtyped)
59813      */
59814     
59815     alignment: "tl-tl",
59816     autoSize: "width",
59817     hideEl : false,
59818     cls: "x-small-editor x-grid-editor",
59819     shim:false,
59820     shadow:"frame"
59821 });/*
59822  * Based on:
59823  * Ext JS Library 1.1.1
59824  * Copyright(c) 2006-2007, Ext JS, LLC.
59825  *
59826  * Originally Released Under LGPL - original licence link has changed is not relivant.
59827  *
59828  * Fork - LGPL
59829  * <script type="text/javascript">
59830  */
59831   
59832
59833   
59834 Roo.grid.PropertyRecord = Roo.data.Record.create([
59835     {name:'name',type:'string'},  'value'
59836 ]);
59837
59838
59839 Roo.grid.PropertyStore = function(grid, source){
59840     this.grid = grid;
59841     this.store = new Roo.data.Store({
59842         recordType : Roo.grid.PropertyRecord
59843     });
59844     this.store.on('update', this.onUpdate,  this);
59845     if(source){
59846         this.setSource(source);
59847     }
59848     Roo.grid.PropertyStore.superclass.constructor.call(this);
59849 };
59850
59851
59852
59853 Roo.extend(Roo.grid.PropertyStore, Roo.util.Observable, {
59854     setSource : function(o){
59855         this.source = o;
59856         this.store.removeAll();
59857         var data = [];
59858         for(var k in o){
59859             if(this.isEditableValue(o[k])){
59860                 data.push(new Roo.grid.PropertyRecord({name: k, value: o[k]}, k));
59861             }
59862         }
59863         this.store.loadRecords({records: data}, {}, true);
59864     },
59865
59866     onUpdate : function(ds, record, type){
59867         if(type == Roo.data.Record.EDIT){
59868             var v = record.data['value'];
59869             var oldValue = record.modified['value'];
59870             if(this.grid.fireEvent('beforepropertychange', this.source, record.id, v, oldValue) !== false){
59871                 this.source[record.id] = v;
59872                 record.commit();
59873                 this.grid.fireEvent('propertychange', this.source, record.id, v, oldValue);
59874             }else{
59875                 record.reject();
59876             }
59877         }
59878     },
59879
59880     getProperty : function(row){
59881        return this.store.getAt(row);
59882     },
59883
59884     isEditableValue: function(val){
59885         if(val && val instanceof Date){
59886             return true;
59887         }else if(typeof val == 'object' || typeof val == 'function'){
59888             return false;
59889         }
59890         return true;
59891     },
59892
59893     setValue : function(prop, value){
59894         this.source[prop] = value;
59895         this.store.getById(prop).set('value', value);
59896     },
59897
59898     getSource : function(){
59899         return this.source;
59900     }
59901 });
59902
59903 Roo.grid.PropertyColumnModel = function(grid, store){
59904     this.grid = grid;
59905     var g = Roo.grid;
59906     g.PropertyColumnModel.superclass.constructor.call(this, [
59907         {header: this.nameText, sortable: true, dataIndex:'name', id: 'name'},
59908         {header: this.valueText, resizable:false, dataIndex: 'value', id: 'value'}
59909     ]);
59910     this.store = store;
59911     this.bselect = Roo.DomHelper.append(document.body, {
59912         tag: 'select', style:'display:none', cls: 'x-grid-editor', children: [
59913             {tag: 'option', value: 'true', html: 'true'},
59914             {tag: 'option', value: 'false', html: 'false'}
59915         ]
59916     });
59917     Roo.id(this.bselect);
59918     var f = Roo.form;
59919     this.editors = {
59920         'date' : new g.GridEditor(new f.DateField({selectOnFocus:true})),
59921         'string' : new g.GridEditor(new f.TextField({selectOnFocus:true})),
59922         'number' : new g.GridEditor(new f.NumberField({selectOnFocus:true, style:'text-align:left;'})),
59923         'int' : new g.GridEditor(new f.NumberField({selectOnFocus:true, allowDecimals:false, style:'text-align:left;'})),
59924         'boolean' : new g.GridEditor(new f.Field({el:this.bselect,selectOnFocus:true}))
59925     };
59926     this.renderCellDelegate = this.renderCell.createDelegate(this);
59927     this.renderPropDelegate = this.renderProp.createDelegate(this);
59928 };
59929
59930 Roo.extend(Roo.grid.PropertyColumnModel, Roo.grid.ColumnModel, {
59931     
59932     
59933     nameText : 'Name',
59934     valueText : 'Value',
59935     
59936     dateFormat : 'm/j/Y',
59937     
59938     
59939     renderDate : function(dateVal){
59940         return dateVal.dateFormat(this.dateFormat);
59941     },
59942
59943     renderBool : function(bVal){
59944         return bVal ? 'true' : 'false';
59945     },
59946
59947     isCellEditable : function(colIndex, rowIndex){
59948         return colIndex == 1;
59949     },
59950
59951     getRenderer : function(col){
59952         return col == 1 ?
59953             this.renderCellDelegate : this.renderPropDelegate;
59954     },
59955
59956     renderProp : function(v){
59957         return this.getPropertyName(v);
59958     },
59959
59960     renderCell : function(val){
59961         var rv = val;
59962         if(val instanceof Date){
59963             rv = this.renderDate(val);
59964         }else if(typeof val == 'boolean'){
59965             rv = this.renderBool(val);
59966         }
59967         return Roo.util.Format.htmlEncode(rv);
59968     },
59969
59970     getPropertyName : function(name){
59971         var pn = this.grid.propertyNames;
59972         return pn && pn[name] ? pn[name] : name;
59973     },
59974
59975     getCellEditor : function(colIndex, rowIndex){
59976         var p = this.store.getProperty(rowIndex);
59977         var n = p.data['name'], val = p.data['value'];
59978         
59979         if(typeof(this.grid.customEditors[n]) == 'string'){
59980             return this.editors[this.grid.customEditors[n]];
59981         }
59982         if(typeof(this.grid.customEditors[n]) != 'undefined'){
59983             return this.grid.customEditors[n];
59984         }
59985         if(val instanceof Date){
59986             return this.editors['date'];
59987         }else if(typeof val == 'number'){
59988             return this.editors['number'];
59989         }else if(typeof val == 'boolean'){
59990             return this.editors['boolean'];
59991         }else{
59992             return this.editors['string'];
59993         }
59994     }
59995 });
59996
59997 /**
59998  * @class Roo.grid.PropertyGrid
59999  * @extends Roo.grid.EditorGrid
60000  * This class represents the  interface of a component based property grid control.
60001  * <br><br>Usage:<pre><code>
60002  var grid = new Roo.grid.PropertyGrid("my-container-id", {
60003       
60004  });
60005  // set any options
60006  grid.render();
60007  * </code></pre>
60008   
60009  * @constructor
60010  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
60011  * The container MUST have some type of size defined for the grid to fill. The container will be
60012  * automatically set to position relative if it isn't already.
60013  * @param {Object} config A config object that sets properties on this grid.
60014  */
60015 Roo.grid.PropertyGrid = function(container, config){
60016     config = config || {};
60017     var store = new Roo.grid.PropertyStore(this);
60018     this.store = store;
60019     var cm = new Roo.grid.PropertyColumnModel(this, store);
60020     store.store.sort('name', 'ASC');
60021     Roo.grid.PropertyGrid.superclass.constructor.call(this, container, Roo.apply({
60022         ds: store.store,
60023         cm: cm,
60024         enableColLock:false,
60025         enableColumnMove:false,
60026         stripeRows:false,
60027         trackMouseOver: false,
60028         clicksToEdit:1
60029     }, config));
60030     this.getGridEl().addClass('x-props-grid');
60031     this.lastEditRow = null;
60032     this.on('columnresize', this.onColumnResize, this);
60033     this.addEvents({
60034          /**
60035              * @event beforepropertychange
60036              * Fires before a property changes (return false to stop?)
60037              * @param {Roo.grid.PropertyGrid} grid property grid? (check could be store)
60038              * @param {String} id Record Id
60039              * @param {String} newval New Value
60040          * @param {String} oldval Old Value
60041              */
60042         "beforepropertychange": true,
60043         /**
60044              * @event propertychange
60045              * Fires after a property changes
60046              * @param {Roo.grid.PropertyGrid} grid property grid? (check could be store)
60047              * @param {String} id Record Id
60048              * @param {String} newval New Value
60049          * @param {String} oldval Old Value
60050              */
60051         "propertychange": true
60052     });
60053     this.customEditors = this.customEditors || {};
60054 };
60055 Roo.extend(Roo.grid.PropertyGrid, Roo.grid.EditorGrid, {
60056     
60057      /**
60058      * @cfg {Object} customEditors map of colnames=> custom editors.
60059      * the custom editor can be one of the standard ones (date|string|number|int|boolean), or a
60060      * grid editor eg. Roo.grid.GridEditor(new Roo.form.TextArea({selectOnFocus:true})),
60061      * false disables editing of the field.
60062          */
60063     
60064       /**
60065      * @cfg {Object} propertyNames map of property Names to their displayed value
60066          */
60067     
60068     render : function(){
60069         Roo.grid.PropertyGrid.superclass.render.call(this);
60070         this.autoSize.defer(100, this);
60071     },
60072
60073     autoSize : function(){
60074         Roo.grid.PropertyGrid.superclass.autoSize.call(this);
60075         if(this.view){
60076             this.view.fitColumns();
60077         }
60078     },
60079
60080     onColumnResize : function(){
60081         this.colModel.setColumnWidth(1, this.container.getWidth(true)-this.colModel.getColumnWidth(0));
60082         this.autoSize();
60083     },
60084     /**
60085      * Sets the data for the Grid
60086      * accepts a Key => Value object of all the elements avaiable.
60087      * @param {Object} data  to appear in grid.
60088      */
60089     setSource : function(source){
60090         this.store.setSource(source);
60091         //this.autoSize();
60092     },
60093     /**
60094      * Gets all the data from the grid.
60095      * @return {Object} data  data stored in grid
60096      */
60097     getSource : function(){
60098         return this.store.getSource();
60099     }
60100 });/*
60101   
60102  * Licence LGPL
60103  
60104  */
60105  
60106 /**
60107  * @class Roo.grid.Calendar
60108  * @extends Roo.util.Grid
60109  * This class extends the Grid to provide a calendar widget
60110  * <br><br>Usage:<pre><code>
60111  var grid = new Roo.grid.Calendar("my-container-id", {
60112      ds: myDataStore,
60113      cm: myColModel,
60114      selModel: mySelectionModel,
60115      autoSizeColumns: true,
60116      monitorWindowResize: false,
60117      trackMouseOver: true
60118      eventstore : real data store..
60119  });
60120  // set any options
60121  grid.render();
60122   
60123   * @constructor
60124  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
60125  * The container MUST have some type of size defined for the grid to fill. The container will be
60126  * automatically set to position relative if it isn't already.
60127  * @param {Object} config A config object that sets properties on this grid.
60128  */
60129 Roo.grid.Calendar = function(container, config){
60130         // initialize the container
60131         this.container = Roo.get(container);
60132         this.container.update("");
60133         this.container.setStyle("overflow", "hidden");
60134     this.container.addClass('x-grid-container');
60135
60136     this.id = this.container.id;
60137
60138     Roo.apply(this, config);
60139     // check and correct shorthanded configs
60140     
60141     var rows = [];
60142     var d =1;
60143     for (var r = 0;r < 6;r++) {
60144         
60145         rows[r]=[];
60146         for (var c =0;c < 7;c++) {
60147             rows[r][c]= '';
60148         }
60149     }
60150     if (this.eventStore) {
60151         this.eventStore= Roo.factory(this.eventStore, Roo.data);
60152         this.eventStore.on('load',this.onLoad, this);
60153         this.eventStore.on('beforeload',this.clearEvents, this);
60154          
60155     }
60156     
60157     this.dataSource = new Roo.data.Store({
60158             proxy: new Roo.data.MemoryProxy(rows),
60159             reader: new Roo.data.ArrayReader({}, [
60160                    'weekday0', 'weekday1', 'weekday2', 'weekday3', 'weekday4', 'weekday5', 'weekday6' ])
60161     });
60162
60163     this.dataSource.load();
60164     this.ds = this.dataSource;
60165     this.ds.xmodule = this.xmodule || false;
60166     
60167     
60168     var cellRender = function(v,x,r)
60169     {
60170         return String.format(
60171             '<div class="fc-day  fc-widget-content"><div>' +
60172                 '<div class="fc-event-container"></div>' +
60173                 '<div class="fc-day-number">{0}</div>'+
60174                 
60175                 '<div class="fc-day-content"><div style="position:relative"></div></div>' +
60176             '</div></div>', v);
60177     
60178     }
60179     
60180     
60181     this.colModel = new Roo.grid.ColumnModel( [
60182         {
60183             xtype: 'ColumnModel',
60184             xns: Roo.grid,
60185             dataIndex : 'weekday0',
60186             header : 'Sunday',
60187             renderer : cellRender
60188         },
60189         {
60190             xtype: 'ColumnModel',
60191             xns: Roo.grid,
60192             dataIndex : 'weekday1',
60193             header : 'Monday',
60194             renderer : cellRender
60195         },
60196         {
60197             xtype: 'ColumnModel',
60198             xns: Roo.grid,
60199             dataIndex : 'weekday2',
60200             header : 'Tuesday',
60201             renderer : cellRender
60202         },
60203         {
60204             xtype: 'ColumnModel',
60205             xns: Roo.grid,
60206             dataIndex : 'weekday3',
60207             header : 'Wednesday',
60208             renderer : cellRender
60209         },
60210         {
60211             xtype: 'ColumnModel',
60212             xns: Roo.grid,
60213             dataIndex : 'weekday4',
60214             header : 'Thursday',
60215             renderer : cellRender
60216         },
60217         {
60218             xtype: 'ColumnModel',
60219             xns: Roo.grid,
60220             dataIndex : 'weekday5',
60221             header : 'Friday',
60222             renderer : cellRender
60223         },
60224         {
60225             xtype: 'ColumnModel',
60226             xns: Roo.grid,
60227             dataIndex : 'weekday6',
60228             header : 'Saturday',
60229             renderer : cellRender
60230         }
60231     ]);
60232     this.cm = this.colModel;
60233     this.cm.xmodule = this.xmodule || false;
60234  
60235         
60236           
60237     //this.selModel = new Roo.grid.CellSelectionModel();
60238     //this.sm = this.selModel;
60239     //this.selModel.init(this);
60240     
60241     
60242     if(this.width){
60243         this.container.setWidth(this.width);
60244     }
60245
60246     if(this.height){
60247         this.container.setHeight(this.height);
60248     }
60249     /** @private */
60250         this.addEvents({
60251         // raw events
60252         /**
60253          * @event click
60254          * The raw click event for the entire grid.
60255          * @param {Roo.EventObject} e
60256          */
60257         "click" : true,
60258         /**
60259          * @event dblclick
60260          * The raw dblclick event for the entire grid.
60261          * @param {Roo.EventObject} e
60262          */
60263         "dblclick" : true,
60264         /**
60265          * @event contextmenu
60266          * The raw contextmenu event for the entire grid.
60267          * @param {Roo.EventObject} e
60268          */
60269         "contextmenu" : true,
60270         /**
60271          * @event mousedown
60272          * The raw mousedown event for the entire grid.
60273          * @param {Roo.EventObject} e
60274          */
60275         "mousedown" : true,
60276         /**
60277          * @event mouseup
60278          * The raw mouseup event for the entire grid.
60279          * @param {Roo.EventObject} e
60280          */
60281         "mouseup" : true,
60282         /**
60283          * @event mouseover
60284          * The raw mouseover event for the entire grid.
60285          * @param {Roo.EventObject} e
60286          */
60287         "mouseover" : true,
60288         /**
60289          * @event mouseout
60290          * The raw mouseout event for the entire grid.
60291          * @param {Roo.EventObject} e
60292          */
60293         "mouseout" : true,
60294         /**
60295          * @event keypress
60296          * The raw keypress event for the entire grid.
60297          * @param {Roo.EventObject} e
60298          */
60299         "keypress" : true,
60300         /**
60301          * @event keydown
60302          * The raw keydown event for the entire grid.
60303          * @param {Roo.EventObject} e
60304          */
60305         "keydown" : true,
60306
60307         // custom events
60308
60309         /**
60310          * @event cellclick
60311          * Fires when a cell is clicked
60312          * @param {Grid} this
60313          * @param {Number} rowIndex
60314          * @param {Number} columnIndex
60315          * @param {Roo.EventObject} e
60316          */
60317         "cellclick" : true,
60318         /**
60319          * @event celldblclick
60320          * Fires when a cell is double clicked
60321          * @param {Grid} this
60322          * @param {Number} rowIndex
60323          * @param {Number} columnIndex
60324          * @param {Roo.EventObject} e
60325          */
60326         "celldblclick" : true,
60327         /**
60328          * @event rowclick
60329          * Fires when a row is clicked
60330          * @param {Grid} this
60331          * @param {Number} rowIndex
60332          * @param {Roo.EventObject} e
60333          */
60334         "rowclick" : true,
60335         /**
60336          * @event rowdblclick
60337          * Fires when a row is double clicked
60338          * @param {Grid} this
60339          * @param {Number} rowIndex
60340          * @param {Roo.EventObject} e
60341          */
60342         "rowdblclick" : true,
60343         /**
60344          * @event headerclick
60345          * Fires when a header is clicked
60346          * @param {Grid} this
60347          * @param {Number} columnIndex
60348          * @param {Roo.EventObject} e
60349          */
60350         "headerclick" : true,
60351         /**
60352          * @event headerdblclick
60353          * Fires when a header cell is double clicked
60354          * @param {Grid} this
60355          * @param {Number} columnIndex
60356          * @param {Roo.EventObject} e
60357          */
60358         "headerdblclick" : true,
60359         /**
60360          * @event rowcontextmenu
60361          * Fires when a row is right clicked
60362          * @param {Grid} this
60363          * @param {Number} rowIndex
60364          * @param {Roo.EventObject} e
60365          */
60366         "rowcontextmenu" : true,
60367         /**
60368          * @event cellcontextmenu
60369          * Fires when a cell is right clicked
60370          * @param {Grid} this
60371          * @param {Number} rowIndex
60372          * @param {Number} cellIndex
60373          * @param {Roo.EventObject} e
60374          */
60375          "cellcontextmenu" : true,
60376         /**
60377          * @event headercontextmenu
60378          * Fires when a header is right clicked
60379          * @param {Grid} this
60380          * @param {Number} columnIndex
60381          * @param {Roo.EventObject} e
60382          */
60383         "headercontextmenu" : true,
60384         /**
60385          * @event bodyscroll
60386          * Fires when the body element is scrolled
60387          * @param {Number} scrollLeft
60388          * @param {Number} scrollTop
60389          */
60390         "bodyscroll" : true,
60391         /**
60392          * @event columnresize
60393          * Fires when the user resizes a column
60394          * @param {Number} columnIndex
60395          * @param {Number} newSize
60396          */
60397         "columnresize" : true,
60398         /**
60399          * @event columnmove
60400          * Fires when the user moves a column
60401          * @param {Number} oldIndex
60402          * @param {Number} newIndex
60403          */
60404         "columnmove" : true,
60405         /**
60406          * @event startdrag
60407          * Fires when row(s) start being dragged
60408          * @param {Grid} this
60409          * @param {Roo.GridDD} dd The drag drop object
60410          * @param {event} e The raw browser event
60411          */
60412         "startdrag" : true,
60413         /**
60414          * @event enddrag
60415          * Fires when a drag operation is complete
60416          * @param {Grid} this
60417          * @param {Roo.GridDD} dd The drag drop object
60418          * @param {event} e The raw browser event
60419          */
60420         "enddrag" : true,
60421         /**
60422          * @event dragdrop
60423          * Fires when dragged row(s) are dropped on a valid DD target
60424          * @param {Grid} this
60425          * @param {Roo.GridDD} dd The drag drop object
60426          * @param {String} targetId The target drag drop object
60427          * @param {event} e The raw browser event
60428          */
60429         "dragdrop" : true,
60430         /**
60431          * @event dragover
60432          * Fires while row(s) are being dragged. "targetId" is the id of the Yahoo.util.DD object the selected rows are being dragged over.
60433          * @param {Grid} this
60434          * @param {Roo.GridDD} dd The drag drop object
60435          * @param {String} targetId The target drag drop object
60436          * @param {event} e The raw browser event
60437          */
60438         "dragover" : true,
60439         /**
60440          * @event dragenter
60441          *  Fires when the dragged row(s) first cross another DD target while being dragged
60442          * @param {Grid} this
60443          * @param {Roo.GridDD} dd The drag drop object
60444          * @param {String} targetId The target drag drop object
60445          * @param {event} e The raw browser event
60446          */
60447         "dragenter" : true,
60448         /**
60449          * @event dragout
60450          * Fires when the dragged row(s) leave another DD target while being dragged
60451          * @param {Grid} this
60452          * @param {Roo.GridDD} dd The drag drop object
60453          * @param {String} targetId The target drag drop object
60454          * @param {event} e The raw browser event
60455          */
60456         "dragout" : true,
60457         /**
60458          * @event rowclass
60459          * Fires when a row is rendered, so you can change add a style to it.
60460          * @param {GridView} gridview   The grid view
60461          * @param {Object} rowcfg   contains record  rowIndex and rowClass - set rowClass to add a style.
60462          */
60463         'rowclass' : true,
60464
60465         /**
60466          * @event render
60467          * Fires when the grid is rendered
60468          * @param {Grid} grid
60469          */
60470         'render' : true,
60471             /**
60472              * @event select
60473              * Fires when a date is selected
60474              * @param {DatePicker} this
60475              * @param {Date} date The selected date
60476              */
60477         'select': true,
60478         /**
60479              * @event monthchange
60480              * Fires when the displayed month changes 
60481              * @param {DatePicker} this
60482              * @param {Date} date The selected month
60483              */
60484         'monthchange': true,
60485         /**
60486              * @event evententer
60487              * Fires when mouse over an event
60488              * @param {Calendar} this
60489              * @param {event} Event
60490              */
60491         'evententer': true,
60492         /**
60493              * @event eventleave
60494              * Fires when the mouse leaves an
60495              * @param {Calendar} this
60496              * @param {event}
60497              */
60498         'eventleave': true,
60499         /**
60500              * @event eventclick
60501              * Fires when the mouse click an
60502              * @param {Calendar} this
60503              * @param {event}
60504              */
60505         'eventclick': true,
60506         /**
60507              * @event eventrender
60508              * Fires before each cell is rendered, so you can modify the contents, like cls / title / qtip
60509              * @param {Calendar} this
60510              * @param {data} data to be modified
60511              */
60512         'eventrender': true
60513         
60514     });
60515
60516     Roo.grid.Grid.superclass.constructor.call(this);
60517     this.on('render', function() {
60518         this.view.el.addClass('x-grid-cal'); 
60519         
60520         (function() { this.setDate(new Date()); }).defer(100,this); //default today..
60521
60522     },this);
60523     
60524     if (!Roo.grid.Calendar.style) {
60525         Roo.grid.Calendar.style = Roo.util.CSS.createStyleSheet({
60526             
60527             
60528             '.x-grid-cal .x-grid-col' :  {
60529                 height: 'auto !important',
60530                 'vertical-align': 'top'
60531             },
60532             '.x-grid-cal  .fc-event-hori' : {
60533                 height: '14px'
60534             }
60535              
60536             
60537         }, Roo.id());
60538     }
60539
60540     
60541     
60542 };
60543 Roo.extend(Roo.grid.Calendar, Roo.grid.Grid, {
60544     /**
60545      * @cfg {Store} eventStore The store that loads events.
60546      */
60547     eventStore : 25,
60548
60549      
60550     activeDate : false,
60551     startDay : 0,
60552     autoWidth : true,
60553     monitorWindowResize : false,
60554
60555     
60556     resizeColumns : function() {
60557         var col = (this.view.el.getWidth() / 7) - 3;
60558         // loop through cols, and setWidth
60559         for(var i =0 ; i < 7 ; i++){
60560             this.cm.setColumnWidth(i, col);
60561         }
60562     },
60563      setDate :function(date) {
60564         
60565         Roo.log('setDate?');
60566         
60567         this.resizeColumns();
60568         var vd = this.activeDate;
60569         this.activeDate = date;
60570 //        if(vd && this.el){
60571 //            var t = date.getTime();
60572 //            if(vd.getMonth() == date.getMonth() && vd.getFullYear() == date.getFullYear()){
60573 //                Roo.log('using add remove');
60574 //                
60575 //                this.fireEvent('monthchange', this, date);
60576 //                
60577 //                this.cells.removeClass("fc-state-highlight");
60578 //                this.cells.each(function(c){
60579 //                   if(c.dateValue == t){
60580 //                       c.addClass("fc-state-highlight");
60581 //                       setTimeout(function(){
60582 //                            try{c.dom.firstChild.focus();}catch(e){}
60583 //                       }, 50);
60584 //                       return false;
60585 //                   }
60586 //                   return true;
60587 //                });
60588 //                return;
60589 //            }
60590 //        }
60591         
60592         var days = date.getDaysInMonth();
60593         
60594         var firstOfMonth = date.getFirstDateOfMonth();
60595         var startingPos = firstOfMonth.getDay()-this.startDay;
60596         
60597         if(startingPos < this.startDay){
60598             startingPos += 7;
60599         }
60600         
60601         var pm = date.add(Date.MONTH, -1);
60602         var prevStart = pm.getDaysInMonth()-startingPos;
60603 //        
60604         
60605         
60606         this.cells = this.view.el.select('.x-grid-row .x-grid-col',true);
60607         
60608         this.textNodes = this.view.el.query('.x-grid-row .x-grid-col .x-grid-cell-text');
60609         //this.cells.addClassOnOver('fc-state-hover');
60610         
60611         var cells = this.cells.elements;
60612         var textEls = this.textNodes;
60613         
60614         //Roo.each(cells, function(cell){
60615         //    cell.removeClass([ 'fc-past', 'fc-other-month', 'fc-future', 'fc-state-highlight', 'fc-state-disabled']);
60616         //});
60617         
60618         days += startingPos;
60619
60620         // convert everything to numbers so it's fast
60621         var day = 86400000;
60622         var d = (new Date(pm.getFullYear(), pm.getMonth(), prevStart)).clearTime();
60623         //Roo.log(d);
60624         //Roo.log(pm);
60625         //Roo.log(prevStart);
60626         
60627         var today = new Date().clearTime().getTime();
60628         var sel = date.clearTime().getTime();
60629         var min = this.minDate ? this.minDate.clearTime() : Number.NEGATIVE_INFINITY;
60630         var max = this.maxDate ? this.maxDate.clearTime() : Number.POSITIVE_INFINITY;
60631         var ddMatch = this.disabledDatesRE;
60632         var ddText = this.disabledDatesText;
60633         var ddays = this.disabledDays ? this.disabledDays.join("") : false;
60634         var ddaysText = this.disabledDaysText;
60635         var format = this.format;
60636         
60637         var setCellClass = function(cal, cell){
60638             
60639             //Roo.log('set Cell Class');
60640             cell.title = "";
60641             var t = d.getTime();
60642             
60643             //Roo.log(d);
60644             
60645             
60646             cell.dateValue = t;
60647             if(t == today){
60648                 cell.className += " fc-today";
60649                 cell.className += " fc-state-highlight";
60650                 cell.title = cal.todayText;
60651             }
60652             if(t == sel){
60653                 // disable highlight in other month..
60654                 cell.className += " fc-state-highlight";
60655                 
60656             }
60657             // disabling
60658             if(t < min) {
60659                 //cell.className = " fc-state-disabled";
60660                 cell.title = cal.minText;
60661                 return;
60662             }
60663             if(t > max) {
60664                 //cell.className = " fc-state-disabled";
60665                 cell.title = cal.maxText;
60666                 return;
60667             }
60668             if(ddays){
60669                 if(ddays.indexOf(d.getDay()) != -1){
60670                     // cell.title = ddaysText;
60671                    // cell.className = " fc-state-disabled";
60672                 }
60673             }
60674             if(ddMatch && format){
60675                 var fvalue = d.dateFormat(format);
60676                 if(ddMatch.test(fvalue)){
60677                     cell.title = ddText.replace("%0", fvalue);
60678                    cell.className = " fc-state-disabled";
60679                 }
60680             }
60681             
60682             if (!cell.initialClassName) {
60683                 cell.initialClassName = cell.dom.className;
60684             }
60685             
60686             cell.dom.className = cell.initialClassName  + ' ' +  cell.className;
60687         };
60688
60689         var i = 0;
60690         
60691         for(; i < startingPos; i++) {
60692             cells[i].dayName =  (++prevStart);
60693             Roo.log(textEls[i]);
60694             d.setDate(d.getDate()+1);
60695             
60696             //cells[i].className = "fc-past fc-other-month";
60697             setCellClass(this, cells[i]);
60698         }
60699         
60700         var intDay = 0;
60701         
60702         for(; i < days; i++){
60703             intDay = i - startingPos + 1;
60704             cells[i].dayName =  (intDay);
60705             d.setDate(d.getDate()+1);
60706             
60707             cells[i].className = ''; // "x-date-active";
60708             setCellClass(this, cells[i]);
60709         }
60710         var extraDays = 0;
60711         
60712         for(; i < 42; i++) {
60713             //textEls[i].innerHTML = (++extraDays);
60714             
60715             d.setDate(d.getDate()+1);
60716             cells[i].dayName = (++extraDays);
60717             cells[i].className = "fc-future fc-other-month";
60718             setCellClass(this, cells[i]);
60719         }
60720         
60721         //this.el.select('.fc-header-title h2',true).update(Date.monthNames[date.getMonth()] + " " + date.getFullYear());
60722         
60723         var totalRows = Math.ceil((date.getDaysInMonth() + date.getFirstDateOfMonth().getDay()) / 7);
60724         
60725         // this will cause all the cells to mis
60726         var rows= [];
60727         var i =0;
60728         for (var r = 0;r < 6;r++) {
60729             for (var c =0;c < 7;c++) {
60730                 this.ds.getAt(r).set('weekday' + c ,cells[i++].dayName );
60731             }    
60732         }
60733         
60734         this.cells = this.view.el.select('.x-grid-row .x-grid-col',true);
60735         for(i=0;i<cells.length;i++) {
60736             
60737             this.cells.elements[i].dayName = cells[i].dayName ;
60738             this.cells.elements[i].className = cells[i].className;
60739             this.cells.elements[i].initialClassName = cells[i].initialClassName ;
60740             this.cells.elements[i].title = cells[i].title ;
60741             this.cells.elements[i].dateValue = cells[i].dateValue ;
60742         }
60743         
60744         
60745         
60746         
60747         //this.el.select('tr.fc-week.fc-prev-last',true).removeClass('fc-last');
60748         //this.el.select('tr.fc-week.fc-next-last',true).addClass('fc-last').show();
60749         
60750         ////if(totalRows != 6){
60751             //this.el.select('tr.fc-week.fc-last',true).removeClass('fc-last').addClass('fc-next-last').hide();
60752            // this.el.select('tr.fc-week.fc-prev-last',true).addClass('fc-last');
60753        // }
60754         
60755         this.fireEvent('monthchange', this, date);
60756         
60757         
60758     },
60759  /**
60760      * Returns the grid's SelectionModel.
60761      * @return {SelectionModel}
60762      */
60763     getSelectionModel : function(){
60764         if(!this.selModel){
60765             this.selModel = new Roo.grid.CellSelectionModel();
60766         }
60767         return this.selModel;
60768     },
60769
60770     load: function() {
60771         this.eventStore.load()
60772         
60773         
60774         
60775     },
60776     
60777     findCell : function(dt) {
60778         dt = dt.clearTime().getTime();
60779         var ret = false;
60780         this.cells.each(function(c){
60781             //Roo.log("check " +c.dateValue + '?=' + dt);
60782             if(c.dateValue == dt){
60783                 ret = c;
60784                 return false;
60785             }
60786             return true;
60787         });
60788         
60789         return ret;
60790     },
60791     
60792     findCells : function(rec) {
60793         var s = rec.data.start_dt.clone().clearTime().getTime();
60794        // Roo.log(s);
60795         var e= rec.data.end_dt.clone().clearTime().getTime();
60796        // Roo.log(e);
60797         var ret = [];
60798         this.cells.each(function(c){
60799              ////Roo.log("check " +c.dateValue + '<' + e + ' > ' + s);
60800             
60801             if(c.dateValue > e){
60802                 return ;
60803             }
60804             if(c.dateValue < s){
60805                 return ;
60806             }
60807             ret.push(c);
60808         });
60809         
60810         return ret;    
60811     },
60812     
60813     findBestRow: function(cells)
60814     {
60815         var ret = 0;
60816         
60817         for (var i =0 ; i < cells.length;i++) {
60818             ret  = Math.max(cells[i].rows || 0,ret);
60819         }
60820         return ret;
60821         
60822     },
60823     
60824     
60825     addItem : function(rec)
60826     {
60827         // look for vertical location slot in
60828         var cells = this.findCells(rec);
60829         
60830         rec.row = this.findBestRow(cells);
60831         
60832         // work out the location.
60833         
60834         var crow = false;
60835         var rows = [];
60836         for(var i =0; i < cells.length; i++) {
60837             if (!crow) {
60838                 crow = {
60839                     start : cells[i],
60840                     end :  cells[i]
60841                 };
60842                 continue;
60843             }
60844             if (crow.start.getY() == cells[i].getY()) {
60845                 // on same row.
60846                 crow.end = cells[i];
60847                 continue;
60848             }
60849             // different row.
60850             rows.push(crow);
60851             crow = {
60852                 start: cells[i],
60853                 end : cells[i]
60854             };
60855             
60856         }
60857         
60858         rows.push(crow);
60859         rec.els = [];
60860         rec.rows = rows;
60861         rec.cells = cells;
60862         for (var i = 0; i < cells.length;i++) {
60863             cells[i].rows = Math.max(cells[i].rows || 0 , rec.row + 1 );
60864             
60865         }
60866         
60867         
60868     },
60869     
60870     clearEvents: function() {
60871         
60872         if (!this.eventStore.getCount()) {
60873             return;
60874         }
60875         // reset number of rows in cells.
60876         Roo.each(this.cells.elements, function(c){
60877             c.rows = 0;
60878         });
60879         
60880         this.eventStore.each(function(e) {
60881             this.clearEvent(e);
60882         },this);
60883         
60884     },
60885     
60886     clearEvent : function(ev)
60887     {
60888         if (ev.els) {
60889             Roo.each(ev.els, function(el) {
60890                 el.un('mouseenter' ,this.onEventEnter, this);
60891                 el.un('mouseleave' ,this.onEventLeave, this);
60892                 el.remove();
60893             },this);
60894             ev.els = [];
60895         }
60896     },
60897     
60898     
60899     renderEvent : function(ev,ctr) {
60900         if (!ctr) {
60901              ctr = this.view.el.select('.fc-event-container',true).first();
60902         }
60903         
60904          
60905         this.clearEvent(ev);
60906             //code
60907        
60908         
60909         
60910         ev.els = [];
60911         var cells = ev.cells;
60912         var rows = ev.rows;
60913         this.fireEvent('eventrender', this, ev);
60914         
60915         for(var i =0; i < rows.length; i++) {
60916             
60917             cls = '';
60918             if (i == 0) {
60919                 cls += ' fc-event-start';
60920             }
60921             if ((i+1) == rows.length) {
60922                 cls += ' fc-event-end';
60923             }
60924             
60925             //Roo.log(ev.data);
60926             // how many rows should it span..
60927             var cg = this.eventTmpl.append(ctr,Roo.apply({
60928                 fccls : cls
60929                 
60930             }, ev.data) , true);
60931             
60932             
60933             cg.on('mouseenter' ,this.onEventEnter, this, ev);
60934             cg.on('mouseleave' ,this.onEventLeave, this, ev);
60935             cg.on('click', this.onEventClick, this, ev);
60936             
60937             ev.els.push(cg);
60938             
60939             var sbox = rows[i].start.select('.fc-day-content',true).first().getBox();
60940             var ebox = rows[i].end.select('.fc-day-content',true).first().getBox();
60941             //Roo.log(cg);
60942              
60943             cg.setXY([sbox.x +2, sbox.y +(ev.row * 20)]);    
60944             cg.setWidth(ebox.right - sbox.x -2);
60945         }
60946     },
60947     
60948     renderEvents: function()
60949     {   
60950         // first make sure there is enough space..
60951         
60952         if (!this.eventTmpl) {
60953             this.eventTmpl = new Roo.Template(
60954                 '<div class="roo-dynamic fc-event fc-event-hori fc-event-draggable ui-draggable {fccls} {cls}"  style="position: absolute" unselectable="on">' +
60955                     '<div class="fc-event-inner">' +
60956                         '<span class="fc-event-time">{time}</span>' +
60957                         '<span class="fc-event-title" qtip="{qtip}">{title}</span>' +
60958                     '</div>' +
60959                     '<div class="ui-resizable-heandle ui-resizable-e">&nbsp;&nbsp;&nbsp;</div>' +
60960                 '</div>'
60961             );
60962                 
60963         }
60964                
60965         
60966         
60967         this.cells.each(function(c) {
60968             //Roo.log(c.select('.fc-day-content div',true).first());
60969             c.select('.fc-day-content div',true).first().setHeight(Math.max(34, (c.rows || 1) * 20));
60970         });
60971         
60972         var ctr = this.view.el.select('.fc-event-container',true).first();
60973         
60974         var cls;
60975         this.eventStore.each(function(ev){
60976             
60977             this.renderEvent(ev);
60978              
60979              
60980         }, this);
60981         this.view.layout();
60982         
60983     },
60984     
60985     onEventEnter: function (e, el,event,d) {
60986         this.fireEvent('evententer', this, el, event);
60987     },
60988     
60989     onEventLeave: function (e, el,event,d) {
60990         this.fireEvent('eventleave', this, el, event);
60991     },
60992     
60993     onEventClick: function (e, el,event,d) {
60994         this.fireEvent('eventclick', this, el, event);
60995     },
60996     
60997     onMonthChange: function () {
60998         this.store.load();
60999     },
61000     
61001     onLoad: function () {
61002         
61003         //Roo.log('calendar onload');
61004 //         
61005         if(this.eventStore.getCount() > 0){
61006             
61007            
61008             
61009             this.eventStore.each(function(d){
61010                 
61011                 
61012                 // FIXME..
61013                 var add =   d.data;
61014                 if (typeof(add.end_dt) == 'undefined')  {
61015                     Roo.log("Missing End time in calendar data: ");
61016                     Roo.log(d);
61017                     return;
61018                 }
61019                 if (typeof(add.start_dt) == 'undefined')  {
61020                     Roo.log("Missing Start time in calendar data: ");
61021                     Roo.log(d);
61022                     return;
61023                 }
61024                 add.start_dt = typeof(add.start_dt) == 'string' ? Date.parseDate(add.start_dt,'Y-m-d H:i:s') : add.start_dt,
61025                 add.end_dt = typeof(add.end_dt) == 'string' ? Date.parseDate(add.end_dt,'Y-m-d H:i:s') : add.end_dt,
61026                 add.id = add.id || d.id;
61027                 add.title = add.title || '??';
61028                 
61029                 this.addItem(d);
61030                 
61031              
61032             },this);
61033         }
61034         
61035         this.renderEvents();
61036     }
61037     
61038
61039 });
61040 /*
61041  grid : {
61042                 xtype: 'Grid',
61043                 xns: Roo.grid,
61044                 listeners : {
61045                     render : function ()
61046                     {
61047                         _this.grid = this;
61048                         
61049                         if (!this.view.el.hasClass('course-timesheet')) {
61050                             this.view.el.addClass('course-timesheet');
61051                         }
61052                         if (this.tsStyle) {
61053                             this.ds.load({});
61054                             return; 
61055                         }
61056                         Roo.log('width');
61057                         Roo.log(_this.grid.view.el.getWidth());
61058                         
61059                         
61060                         this.tsStyle =  Roo.util.CSS.createStyleSheet({
61061                             '.course-timesheet .x-grid-row' : {
61062                                 height: '80px'
61063                             },
61064                             '.x-grid-row td' : {
61065                                 'vertical-align' : 0
61066                             },
61067                             '.course-edit-link' : {
61068                                 'color' : 'blue',
61069                                 'text-overflow' : 'ellipsis',
61070                                 'overflow' : 'hidden',
61071                                 'white-space' : 'nowrap',
61072                                 'cursor' : 'pointer'
61073                             },
61074                             '.sub-link' : {
61075                                 'color' : 'green'
61076                             },
61077                             '.de-act-sup-link' : {
61078                                 'color' : 'purple',
61079                                 'text-decoration' : 'line-through'
61080                             },
61081                             '.de-act-link' : {
61082                                 'color' : 'red',
61083                                 'text-decoration' : 'line-through'
61084                             },
61085                             '.course-timesheet .course-highlight' : {
61086                                 'border-top-style': 'dashed !important',
61087                                 'border-bottom-bottom': 'dashed !important'
61088                             },
61089                             '.course-timesheet .course-item' : {
61090                                 'font-family'   : 'tahoma, arial, helvetica',
61091                                 'font-size'     : '11px',
61092                                 'overflow'      : 'hidden',
61093                                 'padding-left'  : '10px',
61094                                 'padding-right' : '10px',
61095                                 'padding-top' : '10px' 
61096                             }
61097                             
61098                         }, Roo.id());
61099                                 this.ds.load({});
61100                     }
61101                 },
61102                 autoWidth : true,
61103                 monitorWindowResize : false,
61104                 cellrenderer : function(v,x,r)
61105                 {
61106                     return v;
61107                 },
61108                 sm : {
61109                     xtype: 'CellSelectionModel',
61110                     xns: Roo.grid
61111                 },
61112                 dataSource : {
61113                     xtype: 'Store',
61114                     xns: Roo.data,
61115                     listeners : {
61116                         beforeload : function (_self, options)
61117                         {
61118                             options.params = options.params || {};
61119                             options.params._month = _this.monthField.getValue();
61120                             options.params.limit = 9999;
61121                             options.params['sort'] = 'when_dt';    
61122                             options.params['dir'] = 'ASC';    
61123                             this.proxy.loadResponse = this.loadResponse;
61124                             Roo.log("load?");
61125                             //this.addColumns();
61126                         },
61127                         load : function (_self, records, options)
61128                         {
61129                             _this.grid.view.el.select('.course-edit-link', true).on('click', function() {
61130                                 // if you click on the translation.. you can edit it...
61131                                 var el = Roo.get(this);
61132                                 var id = el.dom.getAttribute('data-id');
61133                                 var d = el.dom.getAttribute('data-date');
61134                                 var t = el.dom.getAttribute('data-time');
61135                                 //var id = this.child('span').dom.textContent;
61136                                 
61137                                 //Roo.log(this);
61138                                 Pman.Dialog.CourseCalendar.show({
61139                                     id : id,
61140                                     when_d : d,
61141                                     when_t : t,
61142                                     productitem_active : id ? 1 : 0
61143                                 }, function() {
61144                                     _this.grid.ds.load({});
61145                                 });
61146                            
61147                            });
61148                            
61149                            _this.panel.fireEvent('resize', [ '', '' ]);
61150                         }
61151                     },
61152                     loadResponse : function(o, success, response){
61153                             // this is overridden on before load..
61154                             
61155                             Roo.log("our code?");       
61156                             //Roo.log(success);
61157                             //Roo.log(response)
61158                             delete this.activeRequest;
61159                             if(!success){
61160                                 this.fireEvent("loadexception", this, o, response);
61161                                 o.request.callback.call(o.request.scope, null, o.request.arg, false);
61162                                 return;
61163                             }
61164                             var result;
61165                             try {
61166                                 result = o.reader.read(response);
61167                             }catch(e){
61168                                 Roo.log("load exception?");
61169                                 this.fireEvent("loadexception", this, o, response, e);
61170                                 o.request.callback.call(o.request.scope, null, o.request.arg, false);
61171                                 return;
61172                             }
61173                             Roo.log("ready...");        
61174                             // loop through result.records;
61175                             // and set this.tdate[date] = [] << array of records..
61176                             _this.tdata  = {};
61177                             Roo.each(result.records, function(r){
61178                                 //Roo.log(r.data);
61179                                 if(typeof(_this.tdata[r.data.when_dt.format('j')]) == 'undefined'){
61180                                     _this.tdata[r.data.when_dt.format('j')] = [];
61181                                 }
61182                                 _this.tdata[r.data.when_dt.format('j')].push(r.data);
61183                             });
61184                             
61185                             //Roo.log(_this.tdata);
61186                             
61187                             result.records = [];
61188                             result.totalRecords = 6;
61189                     
61190                             // let's generate some duumy records for the rows.
61191                             //var st = _this.dateField.getValue();
61192                             
61193                             // work out monday..
61194                             //st = st.add(Date.DAY, -1 * st.format('w'));
61195                             
61196                             var date = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
61197                             
61198                             var firstOfMonth = date.getFirstDayOfMonth();
61199                             var days = date.getDaysInMonth();
61200                             var d = 1;
61201                             var firstAdded = false;
61202                             for (var i = 0; i < result.totalRecords ; i++) {
61203                                 //var d= st.add(Date.DAY, i);
61204                                 var row = {};
61205                                 var added = 0;
61206                                 for(var w = 0 ; w < 7 ; w++){
61207                                     if(!firstAdded && firstOfMonth != w){
61208                                         continue;
61209                                     }
61210                                     if(d > days){
61211                                         continue;
61212                                     }
61213                                     firstAdded = true;
61214                                     var dd = (d > 0 && d < 10) ? "0"+d : d;
61215                                     row['weekday'+w] = String.format(
61216                                                     '<span style="font-size: 16px;"><b>{0}</b></span>'+
61217                                                     '<span class="course-edit-link" style="color:blue;" data-id="0" data-date="{1}"> Add New</span>',
61218                                                     d,
61219                                                     date.format('Y-m-')+dd
61220                                                 );
61221                                     added++;
61222                                     if(typeof(_this.tdata[d]) != 'undefined'){
61223                                         Roo.each(_this.tdata[d], function(r){
61224                                             var is_sub = '';
61225                                             var deactive = '';
61226                                             var id = r.id;
61227                                             var desc = (r.productitem_id_descrip) ? r.productitem_id_descrip : '';
61228                                             if(r.parent_id*1>0){
61229                                                 is_sub = (r.productitem_id_visible*1 < 1) ? 'de-act-sup-link' :'sub-link';
61230                                                 id = r.parent_id;
61231                                             }
61232                                             if(r.productitem_id_visible*1 < 1 && r.parent_id*1 < 1){
61233                                                 deactive = 'de-act-link';
61234                                             }
61235                                             
61236                                             row['weekday'+w] += String.format(
61237                                                     '<br /><span class="course-edit-link {3} {4}" qtip="{5}" data-id="{0}">{2} - {1}</span>',
61238                                                     id, //0
61239                                                     r.product_id_name, //1
61240                                                     r.when_dt.format('h:ia'), //2
61241                                                     is_sub, //3
61242                                                     deactive, //4
61243                                                     desc // 5
61244                                             );
61245                                         });
61246                                     }
61247                                     d++;
61248                                 }
61249                                 
61250                                 // only do this if something added..
61251                                 if(added > 0){ 
61252                                     result.records.push(_this.grid.dataSource.reader.newRow(row));
61253                                 }
61254                                 
61255                                 
61256                                 // push it twice. (second one with an hour..
61257                                 
61258                             }
61259                             //Roo.log(result);
61260                             this.fireEvent("load", this, o, o.request.arg);
61261                             o.request.callback.call(o.request.scope, result, o.request.arg, true);
61262                         },
61263                     sortInfo : {field: 'when_dt', direction : 'ASC' },
61264                     proxy : {
61265                         xtype: 'HttpProxy',
61266                         xns: Roo.data,
61267                         method : 'GET',
61268                         url : baseURL + '/Roo/Shop_course.php'
61269                     },
61270                     reader : {
61271                         xtype: 'JsonReader',
61272                         xns: Roo.data,
61273                         id : 'id',
61274                         fields : [
61275                             {
61276                                 'name': 'id',
61277                                 'type': 'int'
61278                             },
61279                             {
61280                                 'name': 'when_dt',
61281                                 'type': 'string'
61282                             },
61283                             {
61284                                 'name': 'end_dt',
61285                                 'type': 'string'
61286                             },
61287                             {
61288                                 'name': 'parent_id',
61289                                 'type': 'int'
61290                             },
61291                             {
61292                                 'name': 'product_id',
61293                                 'type': 'int'
61294                             },
61295                             {
61296                                 'name': 'productitem_id',
61297                                 'type': 'int'
61298                             },
61299                             {
61300                                 'name': 'guid',
61301                                 'type': 'int'
61302                             }
61303                         ]
61304                     }
61305                 },
61306                 toolbar : {
61307                     xtype: 'Toolbar',
61308                     xns: Roo,
61309                     items : [
61310                         {
61311                             xtype: 'Button',
61312                             xns: Roo.Toolbar,
61313                             listeners : {
61314                                 click : function (_self, e)
61315                                 {
61316                                     var sd = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
61317                                     sd.setMonth(sd.getMonth()-1);
61318                                     _this.monthField.setValue(sd.format('Y-m-d'));
61319                                     _this.grid.ds.load({});
61320                                 }
61321                             },
61322                             text : "Back"
61323                         },
61324                         {
61325                             xtype: 'Separator',
61326                             xns: Roo.Toolbar
61327                         },
61328                         {
61329                             xtype: 'MonthField',
61330                             xns: Roo.form,
61331                             listeners : {
61332                                 render : function (_self)
61333                                 {
61334                                     _this.monthField = _self;
61335                                    // _this.monthField.set  today
61336                                 },
61337                                 select : function (combo, date)
61338                                 {
61339                                     _this.grid.ds.load({});
61340                                 }
61341                             },
61342                             value : (function() { return new Date(); })()
61343                         },
61344                         {
61345                             xtype: 'Separator',
61346                             xns: Roo.Toolbar
61347                         },
61348                         {
61349                             xtype: 'TextItem',
61350                             xns: Roo.Toolbar,
61351                             text : "Blue: in-active, green: in-active sup-event, red: de-active, purple: de-active sup-event"
61352                         },
61353                         {
61354                             xtype: 'Fill',
61355                             xns: Roo.Toolbar
61356                         },
61357                         {
61358                             xtype: 'Button',
61359                             xns: Roo.Toolbar,
61360                             listeners : {
61361                                 click : function (_self, e)
61362                                 {
61363                                     var sd = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
61364                                     sd.setMonth(sd.getMonth()+1);
61365                                     _this.monthField.setValue(sd.format('Y-m-d'));
61366                                     _this.grid.ds.load({});
61367                                 }
61368                             },
61369                             text : "Next"
61370                         }
61371                     ]
61372                 },
61373                  
61374             }
61375         };
61376         
61377         *//*
61378  * Based on:
61379  * Ext JS Library 1.1.1
61380  * Copyright(c) 2006-2007, Ext JS, LLC.
61381  *
61382  * Originally Released Under LGPL - original licence link has changed is not relivant.
61383  *
61384  * Fork - LGPL
61385  * <script type="text/javascript">
61386  */
61387  
61388 /**
61389  * @class Roo.LoadMask
61390  * A simple utility class for generically masking elements while loading data.  If the element being masked has
61391  * an underlying {@link Roo.data.Store}, the masking will be automatically synchronized with the store's loading
61392  * process and the mask element will be cached for reuse.  For all other elements, this mask will replace the
61393  * element's UpdateManager load indicator and will be destroyed after the initial load.
61394  * @constructor
61395  * Create a new LoadMask
61396  * @param {String/HTMLElement/Roo.Element} el The element or DOM node, or its id
61397  * @param {Object} config The config object
61398  */
61399 Roo.LoadMask = function(el, config){
61400     this.el = Roo.get(el);
61401     Roo.apply(this, config);
61402     if(this.store){
61403         this.store.on('beforeload', this.onBeforeLoad, this);
61404         this.store.on('load', this.onLoad, this);
61405         this.store.on('loadexception', this.onLoadException, this);
61406         this.removeMask = false;
61407     }else{
61408         var um = this.el.getUpdateManager();
61409         um.showLoadIndicator = false; // disable the default indicator
61410         um.on('beforeupdate', this.onBeforeLoad, this);
61411         um.on('update', this.onLoad, this);
61412         um.on('failure', this.onLoad, this);
61413         this.removeMask = true;
61414     }
61415 };
61416
61417 Roo.LoadMask.prototype = {
61418     /**
61419      * @cfg {Boolean} removeMask
61420      * True to create a single-use mask that is automatically destroyed after loading (useful for page loads),
61421      * False to persist the mask element reference for multiple uses (e.g., for paged data widgets).  Defaults to false.
61422      */
61423     /**
61424      * @cfg {String} msg
61425      * The text to display in a centered loading message box (defaults to 'Loading...')
61426      */
61427     msg : 'Loading...',
61428     /**
61429      * @cfg {String} msgCls
61430      * The CSS class to apply to the loading message element (defaults to "x-mask-loading")
61431      */
61432     msgCls : 'x-mask-loading',
61433
61434     /**
61435      * Read-only. True if the mask is currently disabled so that it will not be displayed (defaults to false)
61436      * @type Boolean
61437      */
61438     disabled: false,
61439
61440     /**
61441      * Disables the mask to prevent it from being displayed
61442      */
61443     disable : function(){
61444        this.disabled = true;
61445     },
61446
61447     /**
61448      * Enables the mask so that it can be displayed
61449      */
61450     enable : function(){
61451         this.disabled = false;
61452     },
61453     
61454     onLoadException : function()
61455     {
61456         Roo.log(arguments);
61457         
61458         if (typeof(arguments[3]) != 'undefined') {
61459             Roo.MessageBox.alert("Error loading",arguments[3]);
61460         } 
61461         /*
61462         try {
61463             if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
61464                 Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
61465             }   
61466         } catch(e) {
61467             
61468         }
61469         */
61470     
61471         (function() { this.el.unmask(this.removeMask); }).defer(50, this);
61472     },
61473     // private
61474     onLoad : function()
61475     {
61476         (function() { this.el.unmask(this.removeMask); }).defer(50, this);
61477     },
61478
61479     // private
61480     onBeforeLoad : function(){
61481         if(!this.disabled){
61482             (function() { this.el.mask(this.msg, this.msgCls); }).defer(50, this);
61483         }
61484     },
61485
61486     // private
61487     destroy : function(){
61488         if(this.store){
61489             this.store.un('beforeload', this.onBeforeLoad, this);
61490             this.store.un('load', this.onLoad, this);
61491             this.store.un('loadexception', this.onLoadException, this);
61492         }else{
61493             var um = this.el.getUpdateManager();
61494             um.un('beforeupdate', this.onBeforeLoad, this);
61495             um.un('update', this.onLoad, this);
61496             um.un('failure', this.onLoad, this);
61497         }
61498     }
61499 };/*
61500  * Based on:
61501  * Ext JS Library 1.1.1
61502  * Copyright(c) 2006-2007, Ext JS, LLC.
61503  *
61504  * Originally Released Under LGPL - original licence link has changed is not relivant.
61505  *
61506  * Fork - LGPL
61507  * <script type="text/javascript">
61508  */
61509
61510
61511 /**
61512  * @class Roo.XTemplate
61513  * @extends Roo.Template
61514  * Provides a template that can have nested templates for loops or conditionals. The syntax is:
61515 <pre><code>
61516 var t = new Roo.XTemplate(
61517         '&lt;select name="{name}"&gt;',
61518                 '&lt;tpl for="options"&gt;&lt;option value="{value:trim}"&gt;{text:ellipsis(10)}&lt;/option&gt;&lt;/tpl&gt;',
61519         '&lt;/select&gt;'
61520 );
61521  
61522 // then append, applying the master template values
61523  </code></pre>
61524  *
61525  * Supported features:
61526  *
61527  *  Tags:
61528
61529 <pre><code>
61530       {a_variable} - output encoded.
61531       {a_variable.format:("Y-m-d")} - call a method on the variable
61532       {a_variable:raw} - unencoded output
61533       {a_variable:toFixed(1,2)} - Roo.util.Format."toFixed"
61534       {a_variable:this.method_on_template(...)} - call a method on the template object.
61535  
61536 </code></pre>
61537  *  The tpl tag:
61538 <pre><code>
61539         &lt;tpl for="a_variable or condition.."&gt;&lt;/tpl&gt;
61540         &lt;tpl if="a_variable or condition"&gt;&lt;/tpl&gt;
61541         &lt;tpl exec="some javascript"&gt;&lt;/tpl&gt;
61542         &lt;tpl name="named_template"&gt;&lt;/tpl&gt; (experimental)
61543   
61544         &lt;tpl for="."&gt;&lt;/tpl&gt; - just iterate the property..
61545         &lt;tpl for=".."&gt;&lt;/tpl&gt; - iterates with the parent (probably the template) 
61546 </code></pre>
61547  *      
61548  */
61549 Roo.XTemplate = function()
61550 {
61551     Roo.XTemplate.superclass.constructor.apply(this, arguments);
61552     if (this.html) {
61553         this.compile();
61554     }
61555 };
61556
61557
61558 Roo.extend(Roo.XTemplate, Roo.Template, {
61559
61560     /**
61561      * The various sub templates
61562      */
61563     tpls : false,
61564     /**
61565      *
61566      * basic tag replacing syntax
61567      * WORD:WORD()
61568      *
61569      * // you can fake an object call by doing this
61570      *  x.t:(test,tesT) 
61571      * 
61572      */
61573     re : /\{([\w-\.]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
61574
61575     /**
61576      * compile the template
61577      *
61578      * This is not recursive, so I'm not sure how nested templates are really going to be handled..
61579      *
61580      */
61581     compile: function()
61582     {
61583         var s = this.html;
61584      
61585         s = ['<tpl>', s, '</tpl>'].join('');
61586     
61587         var re     = /<tpl\b[^>]*>((?:(?=([^<]+))\2|<(?!tpl\b[^>]*>))*?)<\/tpl>/,
61588             nameRe = /^<tpl\b[^>]*?for="(.*?)"/,
61589             ifRe   = /^<tpl\b[^>]*?if="(.*?)"/,
61590             execRe = /^<tpl\b[^>]*?exec="(.*?)"/,
61591             namedRe = /^<tpl\b[^>]*?name="(\w+)"/,  // named templates..
61592             m,
61593             id     = 0,
61594             tpls   = [];
61595     
61596         while(true == !!(m = s.match(re))){
61597             var forMatch   = m[0].match(nameRe),
61598                 ifMatch   = m[0].match(ifRe),
61599                 execMatch   = m[0].match(execRe),
61600                 namedMatch   = m[0].match(namedRe),
61601                 
61602                 exp  = null, 
61603                 fn   = null,
61604                 exec = null,
61605                 name = forMatch && forMatch[1] ? forMatch[1] : '';
61606                 
61607             if (ifMatch) {
61608                 // if - puts fn into test..
61609                 exp = ifMatch && ifMatch[1] ? ifMatch[1] : null;
61610                 if(exp){
61611                    fn = new Function('values', 'parent', 'with(values){ return '+(Roo.util.Format.htmlDecode(exp))+'; }');
61612                 }
61613             }
61614             
61615             if (execMatch) {
61616                 // exec - calls a function... returns empty if true is  returned.
61617                 exp = execMatch && execMatch[1] ? execMatch[1] : null;
61618                 if(exp){
61619                    exec = new Function('values', 'parent', 'with(values){ '+(Roo.util.Format.htmlDecode(exp))+'; }');
61620                 }
61621             }
61622             
61623             
61624             if (name) {
61625                 // for = 
61626                 switch(name){
61627                     case '.':  name = new Function('values', 'parent', 'with(values){ return values; }'); break;
61628                     case '..': name = new Function('values', 'parent', 'with(values){ return parent; }'); break;
61629                     default:   name = new Function('values', 'parent', 'with(values){ return '+name+'; }');
61630                 }
61631             }
61632             var uid = namedMatch ? namedMatch[1] : id;
61633             
61634             
61635             tpls.push({
61636                 id:     namedMatch ? namedMatch[1] : id,
61637                 target: name,
61638                 exec:   exec,
61639                 test:   fn,
61640                 body:   m[1] || ''
61641             });
61642             if (namedMatch) {
61643                 s = s.replace(m[0], '');
61644             } else { 
61645                 s = s.replace(m[0], '{xtpl'+ id + '}');
61646             }
61647             ++id;
61648         }
61649         this.tpls = [];
61650         for(var i = tpls.length-1; i >= 0; --i){
61651             this.compileTpl(tpls[i]);
61652             this.tpls[tpls[i].id] = tpls[i];
61653         }
61654         this.master = tpls[tpls.length-1];
61655         return this;
61656     },
61657     /**
61658      * same as applyTemplate, except it's done to one of the subTemplates
61659      * when using named templates, you can do:
61660      *
61661      * var str = pl.applySubTemplate('your-name', values);
61662      *
61663      * 
61664      * @param {Number} id of the template
61665      * @param {Object} values to apply to template
61666      * @param {Object} parent (normaly the instance of this object)
61667      */
61668     applySubTemplate : function(id, values, parent)
61669     {
61670         
61671         
61672         var t = this.tpls[id];
61673         
61674         
61675         try { 
61676             if(t.test && !t.test.call(this, values, parent)){
61677                 return '';
61678             }
61679         } catch(e) {
61680             Roo.log("Xtemplate.applySubTemplate 'test': Exception thrown");
61681             Roo.log(e.toString());
61682             Roo.log(t.test);
61683             return ''
61684         }
61685         try { 
61686             
61687             if(t.exec && t.exec.call(this, values, parent)){
61688                 return '';
61689             }
61690         } catch(e) {
61691             Roo.log("Xtemplate.applySubTemplate 'exec': Exception thrown");
61692             Roo.log(e.toString());
61693             Roo.log(t.exec);
61694             return ''
61695         }
61696         try {
61697             var vs = t.target ? t.target.call(this, values, parent) : values;
61698             parent = t.target ? values : parent;
61699             if(t.target && vs instanceof Array){
61700                 var buf = [];
61701                 for(var i = 0, len = vs.length; i < len; i++){
61702                     buf[buf.length] = t.compiled.call(this, vs[i], parent);
61703                 }
61704                 return buf.join('');
61705             }
61706             return t.compiled.call(this, vs, parent);
61707         } catch (e) {
61708             Roo.log("Xtemplate.applySubTemplate : Exception thrown");
61709             Roo.log(e.toString());
61710             Roo.log(t.compiled);
61711             return '';
61712         }
61713     },
61714
61715     compileTpl : function(tpl)
61716     {
61717         var fm = Roo.util.Format;
61718         var useF = this.disableFormats !== true;
61719         var sep = Roo.isGecko ? "+" : ",";
61720         var undef = function(str) {
61721             Roo.log("Property not found :"  + str);
61722             return '';
61723         };
61724         
61725         var fn = function(m, name, format, args)
61726         {
61727             //Roo.log(arguments);
61728             args = args ? args.replace(/\\'/g,"'") : args;
61729             //["{TEST:(a,b,c)}", "TEST", "", "a,b,c", 0, "{TEST:(a,b,c)}"]
61730             if (typeof(format) == 'undefined') {
61731                 format= 'htmlEncode';
61732             }
61733             if (format == 'raw' ) {
61734                 format = false;
61735             }
61736             
61737             if(name.substr(0, 4) == 'xtpl'){
61738                 return "'"+ sep +'this.applySubTemplate('+name.substr(4)+', values, parent)'+sep+"'";
61739             }
61740             
61741             // build an array of options to determine if value is undefined..
61742             
61743             // basically get 'xxxx.yyyy' then do
61744             // (typeof(xxxx) == 'undefined' || typeof(xxx.yyyy) == 'undefined') ?
61745             //    (function () { Roo.log("Property not found"); return ''; })() :
61746             //    ......
61747             
61748             var udef_ar = [];
61749             var lookfor = '';
61750             Roo.each(name.split('.'), function(st) {
61751                 lookfor += (lookfor.length ? '.': '') + st;
61752                 udef_ar.push(  "(typeof(" + lookfor + ") == 'undefined')"  );
61753             });
61754             
61755             var udef_st = '((' + udef_ar.join(" || ") +") ? undef('" + name + "') : "; // .. needs )
61756             
61757             
61758             if(format && useF){
61759                 
61760                 args = args ? ',' + args : "";
61761                  
61762                 if(format.substr(0, 5) != "this."){
61763                     format = "fm." + format + '(';
61764                 }else{
61765                     format = 'this.call("'+ format.substr(5) + '", ';
61766                     args = ", values";
61767                 }
61768                 
61769                 return "'"+ sep +   udef_st   +    format + name + args + "))"+sep+"'";
61770             }
61771              
61772             if (args.length) {
61773                 // called with xxyx.yuu:(test,test)
61774                 // change to ()
61775                 return "'"+ sep + udef_st  + name + '(' +  args + "))"+sep+"'";
61776             }
61777             // raw.. - :raw modifier..
61778             return "'"+ sep + udef_st  + name + ")"+sep+"'";
61779             
61780         };
61781         var body;
61782         // branched to use + in gecko and [].join() in others
61783         if(Roo.isGecko){
61784             body = "tpl.compiled = function(values, parent){  with(values) { return '" +
61785                    tpl.body.replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
61786                     "';};};";
61787         }else{
61788             body = ["tpl.compiled = function(values, parent){  with (values) { return ['"];
61789             body.push(tpl.body.replace(/(\r\n|\n)/g,
61790                             '\\n').replace(/'/g, "\\'").replace(this.re, fn));
61791             body.push("'].join('');};};");
61792             body = body.join('');
61793         }
61794         
61795         Roo.debug && Roo.log(body.replace(/\\n/,'\n'));
61796        
61797         /** eval:var:tpl eval:var:fm eval:var:useF eval:var:undef  */
61798         eval(body);
61799         
61800         return this;
61801     },
61802
61803     applyTemplate : function(values){
61804         return this.master.compiled.call(this, values, {});
61805         //var s = this.subs;
61806     },
61807
61808     apply : function(){
61809         return this.applyTemplate.apply(this, arguments);
61810     }
61811
61812  });
61813
61814 Roo.XTemplate.from = function(el){
61815     el = Roo.getDom(el);
61816     return new Roo.XTemplate(el.value || el.innerHTML);
61817 };