sync
[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             
5070             
5071             if((' '+
5072                 ( (ci instanceof SVGElement) ? ci.className.baseVal : ci.className)
5073                  +' ').indexOf(v) != -1){
5074                 r[++ri] = ci;
5075             }
5076         }
5077         return r;
5078     };
5079
5080     function attrValue(n, attr){
5081         if(!n.tagName && typeof n.length != "undefined"){
5082             n = n[0];
5083         }
5084         if(!n){
5085             return null;
5086         }
5087         if(attr == "for"){
5088             return n.htmlFor;
5089         }
5090         if(attr == "class" || attr == "className"){
5091             return (n instanceof SVGElement) ? n.className.baseVal : n.className;
5092         }
5093         return n.getAttribute(attr) || n[attr];
5094
5095     };
5096
5097     function getNodes(ns, mode, tagName){
5098         var result = [], ri = -1, cs;
5099         if(!ns){
5100             return result;
5101         }
5102         tagName = tagName || "*";
5103         if(typeof ns.getElementsByTagName != "undefined"){
5104             ns = [ns];
5105         }
5106         if(!mode){
5107             for(var i = 0, ni; ni = ns[i]; i++){
5108                 cs = ni.getElementsByTagName(tagName);
5109                 for(var j = 0, ci; ci = cs[j]; j++){
5110                     result[++ri] = ci;
5111                 }
5112             }
5113         }else if(mode == "/" || mode == ">"){
5114             var utag = tagName.toUpperCase();
5115             for(var i = 0, ni, cn; ni = ns[i]; i++){
5116                 cn = ni.children || ni.childNodes;
5117                 for(var j = 0, cj; cj = cn[j]; j++){
5118                     if(cj.nodeName == utag || cj.nodeName == tagName  || tagName == '*'){
5119                         result[++ri] = cj;
5120                     }
5121                 }
5122             }
5123         }else if(mode == "+"){
5124             var utag = tagName.toUpperCase();
5125             for(var i = 0, n; n = ns[i]; i++){
5126                 while((n = n.nextSibling) && n.nodeType != 1);
5127                 if(n && (n.nodeName == utag || n.nodeName == tagName || tagName == '*')){
5128                     result[++ri] = n;
5129                 }
5130             }
5131         }else if(mode == "~"){
5132             for(var i = 0, n; n = ns[i]; i++){
5133                 while((n = n.nextSibling) && (n.nodeType != 1 || (tagName == '*' || n.tagName.toLowerCase()!=tagName)));
5134                 if(n){
5135                     result[++ri] = n;
5136                 }
5137             }
5138         }
5139         return result;
5140     };
5141
5142     function concat(a, b){
5143         if(b.slice){
5144             return a.concat(b);
5145         }
5146         for(var i = 0, l = b.length; i < l; i++){
5147             a[a.length] = b[i];
5148         }
5149         return a;
5150     }
5151
5152     function byTag(cs, tagName){
5153         if(cs.tagName || cs == document){
5154             cs = [cs];
5155         }
5156         if(!tagName){
5157             return cs;
5158         }
5159         var r = [], ri = -1;
5160         tagName = tagName.toLowerCase();
5161         for(var i = 0, ci; ci = cs[i]; i++){
5162             if(ci.nodeType == 1 && ci.tagName.toLowerCase()==tagName){
5163                 r[++ri] = ci;
5164             }
5165         }
5166         return r;
5167     };
5168
5169     function byId(cs, attr, id){
5170         if(cs.tagName || cs == document){
5171             cs = [cs];
5172         }
5173         if(!id){
5174             return cs;
5175         }
5176         var r = [], ri = -1;
5177         for(var i = 0,ci; ci = cs[i]; i++){
5178             if(ci && ci.id == id){
5179                 r[++ri] = ci;
5180                 return r;
5181             }
5182         }
5183         return r;
5184     };
5185
5186     function byAttribute(cs, attr, value, op, custom){
5187         var r = [], ri = -1, st = custom=="{";
5188         var f = Roo.DomQuery.operators[op];
5189         for(var i = 0, ci; ci = cs[i]; i++){
5190             var a;
5191             if(st){
5192                 a = Roo.DomQuery.getStyle(ci, attr);
5193             }
5194             else if(attr == "class" || attr == "className"){
5195                 a = (ci instanceof SVGElement) ? ci.className.baseVal : ci.className;
5196             }else if(attr == "for"){
5197                 a = ci.htmlFor;
5198             }else if(attr == "href"){
5199                 a = ci.getAttribute("href", 2);
5200             }else{
5201                 a = ci.getAttribute(attr);
5202             }
5203             if((f && f(a, value)) || (!f && a)){
5204                 r[++ri] = ci;
5205             }
5206         }
5207         return r;
5208     };
5209
5210     function byPseudo(cs, name, value){
5211         return Roo.DomQuery.pseudos[name](cs, value);
5212     };
5213
5214     // This is for IE MSXML which does not support expandos.
5215     // IE runs the same speed using setAttribute, however FF slows way down
5216     // and Safari completely fails so they need to continue to use expandos.
5217     var isIE = window.ActiveXObject ? true : false;
5218
5219     // this eval is stop the compressor from
5220     // renaming the variable to something shorter
5221     
5222     /** eval:var:batch */
5223     var batch = 30803; 
5224
5225     var key = 30803;
5226
5227     function nodupIEXml(cs){
5228         var d = ++key;
5229         cs[0].setAttribute("_nodup", d);
5230         var r = [cs[0]];
5231         for(var i = 1, len = cs.length; i < len; i++){
5232             var c = cs[i];
5233             if(!c.getAttribute("_nodup") != d){
5234                 c.setAttribute("_nodup", d);
5235                 r[r.length] = c;
5236             }
5237         }
5238         for(var i = 0, len = cs.length; i < len; i++){
5239             cs[i].removeAttribute("_nodup");
5240         }
5241         return r;
5242     }
5243
5244     function nodup(cs){
5245         if(!cs){
5246             return [];
5247         }
5248         var len = cs.length, c, i, r = cs, cj, ri = -1;
5249         if(!len || typeof cs.nodeType != "undefined" || len == 1){
5250             return cs;
5251         }
5252         if(isIE && typeof cs[0].selectSingleNode != "undefined"){
5253             return nodupIEXml(cs);
5254         }
5255         var d = ++key;
5256         cs[0]._nodup = d;
5257         for(i = 1; c = cs[i]; i++){
5258             if(c._nodup != d){
5259                 c._nodup = d;
5260             }else{
5261                 r = [];
5262                 for(var j = 0; j < i; j++){
5263                     r[++ri] = cs[j];
5264                 }
5265                 for(j = i+1; cj = cs[j]; j++){
5266                     if(cj._nodup != d){
5267                         cj._nodup = d;
5268                         r[++ri] = cj;
5269                     }
5270                 }
5271                 return r;
5272             }
5273         }
5274         return r;
5275     }
5276
5277     function quickDiffIEXml(c1, c2){
5278         var d = ++key;
5279         for(var i = 0, len = c1.length; i < len; i++){
5280             c1[i].setAttribute("_qdiff", d);
5281         }
5282         var r = [];
5283         for(var i = 0, len = c2.length; i < len; i++){
5284             if(c2[i].getAttribute("_qdiff") != d){
5285                 r[r.length] = c2[i];
5286             }
5287         }
5288         for(var i = 0, len = c1.length; i < len; i++){
5289            c1[i].removeAttribute("_qdiff");
5290         }
5291         return r;
5292     }
5293
5294     function quickDiff(c1, c2){
5295         var len1 = c1.length;
5296         if(!len1){
5297             return c2;
5298         }
5299         if(isIE && c1[0].selectSingleNode){
5300             return quickDiffIEXml(c1, c2);
5301         }
5302         var d = ++key;
5303         for(var i = 0; i < len1; i++){
5304             c1[i]._qdiff = d;
5305         }
5306         var r = [];
5307         for(var i = 0, len = c2.length; i < len; i++){
5308             if(c2[i]._qdiff != d){
5309                 r[r.length] = c2[i];
5310             }
5311         }
5312         return r;
5313     }
5314
5315     function quickId(ns, mode, root, id){
5316         if(ns == root){
5317            var d = root.ownerDocument || root;
5318            return d.getElementById(id);
5319         }
5320         ns = getNodes(ns, mode, "*");
5321         return byId(ns, null, id);
5322     }
5323
5324     return {
5325         getStyle : function(el, name){
5326             return Roo.fly(el).getStyle(name);
5327         },
5328         /**
5329          * Compiles a selector/xpath query into a reusable function. The returned function
5330          * takes one parameter "root" (optional), which is the context node from where the query should start.
5331          * @param {String} selector The selector/xpath query
5332          * @param {String} type (optional) Either "select" (the default) or "simple" for a simple selector match
5333          * @return {Function}
5334          */
5335         compile : function(path, type){
5336             type = type || "select";
5337             
5338             var fn = ["var f = function(root){\n var mode; ++batch; var n = root || document;\n"];
5339             var q = path, mode, lq;
5340             var tk = Roo.DomQuery.matchers;
5341             var tklen = tk.length;
5342             var mm;
5343
5344             // accept leading mode switch
5345             var lmode = q.match(modeRe);
5346             if(lmode && lmode[1]){
5347                 fn[fn.length] = 'mode="'+lmode[1].replace(trimRe, "")+'";';
5348                 q = q.replace(lmode[1], "");
5349             }
5350             // strip leading slashes
5351             while(path.substr(0, 1)=="/"){
5352                 path = path.substr(1);
5353             }
5354
5355             while(q && lq != q){
5356                 lq = q;
5357                 var tm = q.match(tagTokenRe);
5358                 if(type == "select"){
5359                     if(tm){
5360                         if(tm[1] == "#"){
5361                             fn[fn.length] = 'n = quickId(n, mode, root, "'+tm[2]+'");';
5362                         }else{
5363                             fn[fn.length] = 'n = getNodes(n, mode, "'+tm[2]+'");';
5364                         }
5365                         q = q.replace(tm[0], "");
5366                     }else if(q.substr(0, 1) != '@'){
5367                         fn[fn.length] = 'n = getNodes(n, mode, "*");';
5368                     }
5369                 }else{
5370                     if(tm){
5371                         if(tm[1] == "#"){
5372                             fn[fn.length] = 'n = byId(n, null, "'+tm[2]+'");';
5373                         }else{
5374                             fn[fn.length] = 'n = byTag(n, "'+tm[2]+'");';
5375                         }
5376                         q = q.replace(tm[0], "");
5377                     }
5378                 }
5379                 while(!(mm = q.match(modeRe))){
5380                     var matched = false;
5381                     for(var j = 0; j < tklen; j++){
5382                         var t = tk[j];
5383                         var m = q.match(t.re);
5384                         if(m){
5385                             fn[fn.length] = t.select.replace(tplRe, function(x, i){
5386                                                     return m[i];
5387                                                 });
5388                             q = q.replace(m[0], "");
5389                             matched = true;
5390                             break;
5391                         }
5392                     }
5393                     // prevent infinite loop on bad selector
5394                     if(!matched){
5395                         throw 'Error parsing selector, parsing failed at "' + q + '"';
5396                     }
5397                 }
5398                 if(mm[1]){
5399                     fn[fn.length] = 'mode="'+mm[1].replace(trimRe, "")+'";';
5400                     q = q.replace(mm[1], "");
5401                 }
5402             }
5403             fn[fn.length] = "return nodup(n);\n}";
5404             
5405              /** 
5406               * list of variables that need from compression as they are used by eval.
5407              *  eval:var:batch 
5408              *  eval:var:nodup
5409              *  eval:var:byTag
5410              *  eval:var:ById
5411              *  eval:var:getNodes
5412              *  eval:var:quickId
5413              *  eval:var:mode
5414              *  eval:var:root
5415              *  eval:var:n
5416              *  eval:var:byClassName
5417              *  eval:var:byPseudo
5418              *  eval:var:byAttribute
5419              *  eval:var:attrValue
5420              * 
5421              **/ 
5422             eval(fn.join(""));
5423             return f;
5424         },
5425
5426         /**
5427          * Selects a group of elements.
5428          * @param {String} selector The selector/xpath query (can be a comma separated list of selectors)
5429          * @param {Node} root (optional) The start of the query (defaults to document).
5430          * @return {Array}
5431          */
5432         select : function(path, root, type){
5433             if(!root || root == document){
5434                 root = document;
5435             }
5436             if(typeof root == "string"){
5437                 root = document.getElementById(root);
5438             }
5439             var paths = path.split(",");
5440             var results = [];
5441             for(var i = 0, len = paths.length; i < len; i++){
5442                 var p = paths[i].replace(trimRe, "");
5443                 if(!cache[p]){
5444                     cache[p] = Roo.DomQuery.compile(p);
5445                     if(!cache[p]){
5446                         throw p + " is not a valid selector";
5447                     }
5448                 }
5449                 var result = cache[p](root);
5450                 if(result && result != document){
5451                     results = results.concat(result);
5452                 }
5453             }
5454             if(paths.length > 1){
5455                 return nodup(results);
5456             }
5457             return results;
5458         },
5459
5460         /**
5461          * Selects a single element.
5462          * @param {String} selector The selector/xpath query
5463          * @param {Node} root (optional) The start of the query (defaults to document).
5464          * @return {Element}
5465          */
5466         selectNode : function(path, root){
5467             return Roo.DomQuery.select(path, root)[0];
5468         },
5469
5470         /**
5471          * Selects the value of a node, optionally replacing null with the defaultValue.
5472          * @param {String} selector The selector/xpath query
5473          * @param {Node} root (optional) The start of the query (defaults to document).
5474          * @param {String} defaultValue
5475          */
5476         selectValue : function(path, root, defaultValue){
5477             path = path.replace(trimRe, "");
5478             if(!valueCache[path]){
5479                 valueCache[path] = Roo.DomQuery.compile(path, "select");
5480             }
5481             var n = valueCache[path](root);
5482             n = n[0] ? n[0] : n;
5483             var v = (n && n.firstChild ? n.firstChild.nodeValue : null);
5484             return ((v === null||v === undefined||v==='') ? defaultValue : v);
5485         },
5486
5487         /**
5488          * Selects the value of a node, parsing integers and floats.
5489          * @param {String} selector The selector/xpath query
5490          * @param {Node} root (optional) The start of the query (defaults to document).
5491          * @param {Number} defaultValue
5492          * @return {Number}
5493          */
5494         selectNumber : function(path, root, defaultValue){
5495             var v = Roo.DomQuery.selectValue(path, root, defaultValue || 0);
5496             return parseFloat(v);
5497         },
5498
5499         /**
5500          * Returns true if the passed element(s) match the passed simple selector (e.g. div.some-class or span:first-child)
5501          * @param {String/HTMLElement/Array} el An element id, element or array of elements
5502          * @param {String} selector The simple selector to test
5503          * @return {Boolean}
5504          */
5505         is : function(el, ss){
5506             if(typeof el == "string"){
5507                 el = document.getElementById(el);
5508             }
5509             var isArray = (el instanceof Array);
5510             var result = Roo.DomQuery.filter(isArray ? el : [el], ss);
5511             return isArray ? (result.length == el.length) : (result.length > 0);
5512         },
5513
5514         /**
5515          * Filters an array of elements to only include matches of a simple selector (e.g. div.some-class or span:first-child)
5516          * @param {Array} el An array of elements to filter
5517          * @param {String} selector The simple selector to test
5518          * @param {Boolean} nonMatches If true, it returns the elements that DON'T match
5519          * the selector instead of the ones that match
5520          * @return {Array}
5521          */
5522         filter : function(els, ss, nonMatches){
5523             ss = ss.replace(trimRe, "");
5524             if(!simpleCache[ss]){
5525                 simpleCache[ss] = Roo.DomQuery.compile(ss, "simple");
5526             }
5527             var result = simpleCache[ss](els);
5528             return nonMatches ? quickDiff(result, els) : result;
5529         },
5530
5531         /**
5532          * Collection of matching regular expressions and code snippets.
5533          */
5534         matchers : [{
5535                 re: /^\.([\w-]+)/,
5536                 select: 'n = byClassName(n, null, " {1} ");'
5537             }, {
5538                 re: /^\:([\w-]+)(?:\(((?:[^\s>\/]*|.*?))\))?/,
5539                 select: 'n = byPseudo(n, "{1}", "{2}");'
5540             },{
5541                 re: /^(?:([\[\{])(?:@)?([\w-]+)\s?(?:(=|.=)\s?['"]?(.*?)["']?)?[\]\}])/,
5542                 select: 'n = byAttribute(n, "{2}", "{4}", "{3}", "{1}");'
5543             }, {
5544                 re: /^#([\w-]+)/,
5545                 select: 'n = byId(n, null, "{1}");'
5546             },{
5547                 re: /^@([\w-]+)/,
5548                 select: 'return {firstChild:{nodeValue:attrValue(n, "{1}")}};'
5549             }
5550         ],
5551
5552         /**
5553          * Collection of operator comparison functions. The default operators are =, !=, ^=, $=, *=, %=, |= and ~=.
5554          * 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;.
5555          */
5556         operators : {
5557             "=" : function(a, v){
5558                 return a == v;
5559             },
5560             "!=" : function(a, v){
5561                 return a != v;
5562             },
5563             "^=" : function(a, v){
5564                 return a && a.substr(0, v.length) == v;
5565             },
5566             "$=" : function(a, v){
5567                 return a && a.substr(a.length-v.length) == v;
5568             },
5569             "*=" : function(a, v){
5570                 return a && a.indexOf(v) !== -1;
5571             },
5572             "%=" : function(a, v){
5573                 return (a % v) == 0;
5574             },
5575             "|=" : function(a, v){
5576                 return a && (a == v || a.substr(0, v.length+1) == v+'-');
5577             },
5578             "~=" : function(a, v){
5579                 return a && (' '+a+' ').indexOf(' '+v+' ') != -1;
5580             }
5581         },
5582
5583         /**
5584          * Collection of "pseudo class" processors. Each processor is passed the current nodeset (array)
5585          * and the argument (if any) supplied in the selector.
5586          */
5587         pseudos : {
5588             "first-child" : function(c){
5589                 var r = [], ri = -1, n;
5590                 for(var i = 0, ci; ci = n = c[i]; i++){
5591                     while((n = n.previousSibling) && n.nodeType != 1);
5592                     if(!n){
5593                         r[++ri] = ci;
5594                     }
5595                 }
5596                 return r;
5597             },
5598
5599             "last-child" : function(c){
5600                 var r = [], ri = -1, n;
5601                 for(var i = 0, ci; ci = n = c[i]; i++){
5602                     while((n = n.nextSibling) && n.nodeType != 1);
5603                     if(!n){
5604                         r[++ri] = ci;
5605                     }
5606                 }
5607                 return r;
5608             },
5609
5610             "nth-child" : function(c, a) {
5611                 var r = [], ri = -1;
5612                 var m = nthRe.exec(a == "even" && "2n" || a == "odd" && "2n+1" || !nthRe2.test(a) && "n+" + a || a);
5613                 var f = (m[1] || 1) - 0, l = m[2] - 0;
5614                 for(var i = 0, n; n = c[i]; i++){
5615                     var pn = n.parentNode;
5616                     if (batch != pn._batch) {
5617                         var j = 0;
5618                         for(var cn = pn.firstChild; cn; cn = cn.nextSibling){
5619                             if(cn.nodeType == 1){
5620                                cn.nodeIndex = ++j;
5621                             }
5622                         }
5623                         pn._batch = batch;
5624                     }
5625                     if (f == 1) {
5626                         if (l == 0 || n.nodeIndex == l){
5627                             r[++ri] = n;
5628                         }
5629                     } else if ((n.nodeIndex + l) % f == 0){
5630                         r[++ri] = n;
5631                     }
5632                 }
5633
5634                 return r;
5635             },
5636
5637             "only-child" : function(c){
5638                 var r = [], ri = -1;;
5639                 for(var i = 0, ci; ci = c[i]; i++){
5640                     if(!prev(ci) && !next(ci)){
5641                         r[++ri] = ci;
5642                     }
5643                 }
5644                 return r;
5645             },
5646
5647             "empty" : function(c){
5648                 var r = [], ri = -1;
5649                 for(var i = 0, ci; ci = c[i]; i++){
5650                     var cns = ci.childNodes, j = 0, cn, empty = true;
5651                     while(cn = cns[j]){
5652                         ++j;
5653                         if(cn.nodeType == 1 || cn.nodeType == 3){
5654                             empty = false;
5655                             break;
5656                         }
5657                     }
5658                     if(empty){
5659                         r[++ri] = ci;
5660                     }
5661                 }
5662                 return r;
5663             },
5664
5665             "contains" : function(c, v){
5666                 var r = [], ri = -1;
5667                 for(var i = 0, ci; ci = c[i]; i++){
5668                     if((ci.textContent||ci.innerText||'').indexOf(v) != -1){
5669                         r[++ri] = ci;
5670                     }
5671                 }
5672                 return r;
5673             },
5674
5675             "nodeValue" : function(c, v){
5676                 var r = [], ri = -1;
5677                 for(var i = 0, ci; ci = c[i]; i++){
5678                     if(ci.firstChild && ci.firstChild.nodeValue == v){
5679                         r[++ri] = ci;
5680                     }
5681                 }
5682                 return r;
5683             },
5684
5685             "checked" : function(c){
5686                 var r = [], ri = -1;
5687                 for(var i = 0, ci; ci = c[i]; i++){
5688                     if(ci.checked == true){
5689                         r[++ri] = ci;
5690                     }
5691                 }
5692                 return r;
5693             },
5694
5695             "not" : function(c, ss){
5696                 return Roo.DomQuery.filter(c, ss, true);
5697             },
5698
5699             "odd" : function(c){
5700                 return this["nth-child"](c, "odd");
5701             },
5702
5703             "even" : function(c){
5704                 return this["nth-child"](c, "even");
5705             },
5706
5707             "nth" : function(c, a){
5708                 return c[a-1] || [];
5709             },
5710
5711             "first" : function(c){
5712                 return c[0] || [];
5713             },
5714
5715             "last" : function(c){
5716                 return c[c.length-1] || [];
5717             },
5718
5719             "has" : function(c, ss){
5720                 var s = Roo.DomQuery.select;
5721                 var r = [], ri = -1;
5722                 for(var i = 0, ci; ci = c[i]; i++){
5723                     if(s(ss, ci).length > 0){
5724                         r[++ri] = ci;
5725                     }
5726                 }
5727                 return r;
5728             },
5729
5730             "next" : function(c, ss){
5731                 var is = Roo.DomQuery.is;
5732                 var r = [], ri = -1;
5733                 for(var i = 0, ci; ci = c[i]; i++){
5734                     var n = next(ci);
5735                     if(n && is(n, ss)){
5736                         r[++ri] = ci;
5737                     }
5738                 }
5739                 return r;
5740             },
5741
5742             "prev" : function(c, ss){
5743                 var is = Roo.DomQuery.is;
5744                 var r = [], ri = -1;
5745                 for(var i = 0, ci; ci = c[i]; i++){
5746                     var n = prev(ci);
5747                     if(n && is(n, ss)){
5748                         r[++ri] = ci;
5749                     }
5750                 }
5751                 return r;
5752             }
5753         }
5754     };
5755 }();
5756
5757 /**
5758  * Selects an array of DOM nodes by CSS/XPath selector. Shorthand of {@link Roo.DomQuery#select}
5759  * @param {String} path The selector/xpath query
5760  * @param {Node} root (optional) The start of the query (defaults to document).
5761  * @return {Array}
5762  * @member Roo
5763  * @method query
5764  */
5765 Roo.query = Roo.DomQuery.select;
5766 /*
5767  * Based on:
5768  * Ext JS Library 1.1.1
5769  * Copyright(c) 2006-2007, Ext JS, LLC.
5770  *
5771  * Originally Released Under LGPL - original licence link has changed is not relivant.
5772  *
5773  * Fork - LGPL
5774  * <script type="text/javascript">
5775  */
5776
5777 /**
5778  * @class Roo.util.Observable
5779  * Base class that provides a common interface for publishing events. Subclasses are expected to
5780  * to have a property "events" with all the events defined.<br>
5781  * For example:
5782  * <pre><code>
5783  Employee = function(name){
5784     this.name = name;
5785     this.addEvents({
5786         "fired" : true,
5787         "quit" : true
5788     });
5789  }
5790  Roo.extend(Employee, Roo.util.Observable);
5791 </code></pre>
5792  * @param {Object} config properties to use (incuding events / listeners)
5793  */
5794
5795 Roo.util.Observable = function(cfg){
5796     
5797     cfg = cfg|| {};
5798     this.addEvents(cfg.events || {});
5799     if (cfg.events) {
5800         delete cfg.events; // make sure
5801     }
5802      
5803     Roo.apply(this, cfg);
5804     
5805     if(this.listeners){
5806         this.on(this.listeners);
5807         delete this.listeners;
5808     }
5809 };
5810 Roo.util.Observable.prototype = {
5811     /** 
5812  * @cfg {Object} listeners  list of events and functions to call for this object, 
5813  * For example :
5814  * <pre><code>
5815     listeners :  { 
5816        'click' : function(e) {
5817            ..... 
5818         } ,
5819         .... 
5820     } 
5821   </code></pre>
5822  */
5823     
5824     
5825     /**
5826      * Fires the specified event with the passed parameters (minus the event name).
5827      * @param {String} eventName
5828      * @param {Object...} args Variable number of parameters are passed to handlers
5829      * @return {Boolean} returns false if any of the handlers return false otherwise it returns true
5830      */
5831     fireEvent : function(){
5832         var ce = this.events[arguments[0].toLowerCase()];
5833         if(typeof ce == "object"){
5834             return ce.fire.apply(ce, Array.prototype.slice.call(arguments, 1));
5835         }else{
5836             return true;
5837         }
5838     },
5839
5840     // private
5841     filterOptRe : /^(?:scope|delay|buffer|single)$/,
5842
5843     /**
5844      * Appends an event handler to this component
5845      * @param {String}   eventName The type of event to listen for
5846      * @param {Function} handler The method the event invokes
5847      * @param {Object}   scope (optional) The scope in which to execute the handler
5848      * function. The handler function's "this" context.
5849      * @param {Object}   options (optional) An object containing handler configuration
5850      * properties. This may contain any of the following properties:<ul>
5851      * <li>scope {Object} The scope in which to execute the handler function. The handler function's "this" context.</li>
5852      * <li>delay {Number} The number of milliseconds to delay the invocation of the handler after te event fires.</li>
5853      * <li>single {Boolean} True to add a handler to handle just the next firing of the event, and then remove itself.</li>
5854      * <li>buffer {Number} Causes the handler to be scheduled to run in an {@link Roo.util.DelayedTask} delayed
5855      * by the specified number of milliseconds. If the event fires again within that time, the original
5856      * handler is <em>not</em> invoked, but the new handler is scheduled in its place.</li>
5857      * </ul><br>
5858      * <p>
5859      * <b>Combining Options</b><br>
5860      * Using the options argument, it is possible to combine different types of listeners:<br>
5861      * <br>
5862      * A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)
5863                 <pre><code>
5864                 el.on('click', this.onClick, this, {
5865                         single: true,
5866                 delay: 100,
5867                 forumId: 4
5868                 });
5869                 </code></pre>
5870      * <p>
5871      * <b>Attaching multiple handlers in 1 call</b><br>
5872      * The method also allows for a single argument to be passed which is a config object containing properties
5873      * which specify multiple handlers.
5874      * <pre><code>
5875                 el.on({
5876                         'click': {
5877                         fn: this.onClick,
5878                         scope: this,
5879                         delay: 100
5880                 }, 
5881                 'mouseover': {
5882                         fn: this.onMouseOver,
5883                         scope: this
5884                 },
5885                 'mouseout': {
5886                         fn: this.onMouseOut,
5887                         scope: this
5888                 }
5889                 });
5890                 </code></pre>
5891      * <p>
5892      * Or a shorthand syntax which passes the same scope object to all handlers:
5893         <pre><code>
5894                 el.on({
5895                         'click': this.onClick,
5896                 'mouseover': this.onMouseOver,
5897                 'mouseout': this.onMouseOut,
5898                 scope: this
5899                 });
5900                 </code></pre>
5901      */
5902     addListener : function(eventName, fn, scope, o){
5903         if(typeof eventName == "object"){
5904             o = eventName;
5905             for(var e in o){
5906                 if(this.filterOptRe.test(e)){
5907                     continue;
5908                 }
5909                 if(typeof o[e] == "function"){
5910                     // shared options
5911                     this.addListener(e, o[e], o.scope,  o);
5912                 }else{
5913                     // individual options
5914                     this.addListener(e, o[e].fn, o[e].scope, o[e]);
5915                 }
5916             }
5917             return;
5918         }
5919         o = (!o || typeof o == "boolean") ? {} : o;
5920         eventName = eventName.toLowerCase();
5921         var ce = this.events[eventName] || true;
5922         if(typeof ce == "boolean"){
5923             ce = new Roo.util.Event(this, eventName);
5924             this.events[eventName] = ce;
5925         }
5926         ce.addListener(fn, scope, o);
5927     },
5928
5929     /**
5930      * Removes a listener
5931      * @param {String}   eventName     The type of event to listen for
5932      * @param {Function} handler        The handler to remove
5933      * @param {Object}   scope  (optional) The scope (this object) for the handler
5934      */
5935     removeListener : function(eventName, fn, scope){
5936         var ce = this.events[eventName.toLowerCase()];
5937         if(typeof ce == "object"){
5938             ce.removeListener(fn, scope);
5939         }
5940     },
5941
5942     /**
5943      * Removes all listeners for this object
5944      */
5945     purgeListeners : function(){
5946         for(var evt in this.events){
5947             if(typeof this.events[evt] == "object"){
5948                  this.events[evt].clearListeners();
5949             }
5950         }
5951     },
5952
5953     relayEvents : function(o, events){
5954         var createHandler = function(ename){
5955             return function(){
5956                  
5957                 return this.fireEvent.apply(this, Roo.combine(ename, Array.prototype.slice.call(arguments, 0)));
5958             };
5959         };
5960         for(var i = 0, len = events.length; i < len; i++){
5961             var ename = events[i];
5962             if(!this.events[ename]){
5963                 this.events[ename] = true;
5964             };
5965             o.on(ename, createHandler(ename), this);
5966         }
5967     },
5968
5969     /**
5970      * Used to define events on this Observable
5971      * @param {Object} object The object with the events defined
5972      */
5973     addEvents : function(o){
5974         if(!this.events){
5975             this.events = {};
5976         }
5977         Roo.applyIf(this.events, o);
5978     },
5979
5980     /**
5981      * Checks to see if this object has any listeners for a specified event
5982      * @param {String} eventName The name of the event to check for
5983      * @return {Boolean} True if the event is being listened for, else false
5984      */
5985     hasListener : function(eventName){
5986         var e = this.events[eventName];
5987         return typeof e == "object" && e.listeners.length > 0;
5988     }
5989 };
5990 /**
5991  * Appends an event handler to this element (shorthand for addListener)
5992  * @param {String}   eventName     The type of event to listen for
5993  * @param {Function} handler        The method the event invokes
5994  * @param {Object}   scope (optional) The scope in which to execute the handler
5995  * function. The handler function's "this" context.
5996  * @param {Object}   options  (optional)
5997  * @method
5998  */
5999 Roo.util.Observable.prototype.on = Roo.util.Observable.prototype.addListener;
6000 /**
6001  * Removes a listener (shorthand for removeListener)
6002  * @param {String}   eventName     The type of event to listen for
6003  * @param {Function} handler        The handler to remove
6004  * @param {Object}   scope  (optional) The scope (this object) for the handler
6005  * @method
6006  */
6007 Roo.util.Observable.prototype.un = Roo.util.Observable.prototype.removeListener;
6008
6009 /**
6010  * Starts capture on the specified Observable. All events will be passed
6011  * to the supplied function with the event name + standard signature of the event
6012  * <b>before</b> the event is fired. If the supplied function returns false,
6013  * the event will not fire.
6014  * @param {Observable} o The Observable to capture
6015  * @param {Function} fn The function to call
6016  * @param {Object} scope (optional) The scope (this object) for the fn
6017  * @static
6018  */
6019 Roo.util.Observable.capture = function(o, fn, scope){
6020     o.fireEvent = o.fireEvent.createInterceptor(fn, scope);
6021 };
6022
6023 /**
6024  * Removes <b>all</b> added captures from the Observable.
6025  * @param {Observable} o The Observable to release
6026  * @static
6027  */
6028 Roo.util.Observable.releaseCapture = function(o){
6029     o.fireEvent = Roo.util.Observable.prototype.fireEvent;
6030 };
6031
6032 (function(){
6033
6034     var createBuffered = function(h, o, scope){
6035         var task = new Roo.util.DelayedTask();
6036         return function(){
6037             task.delay(o.buffer, h, scope, Array.prototype.slice.call(arguments, 0));
6038         };
6039     };
6040
6041     var createSingle = function(h, e, fn, scope){
6042         return function(){
6043             e.removeListener(fn, scope);
6044             return h.apply(scope, arguments);
6045         };
6046     };
6047
6048     var createDelayed = function(h, o, scope){
6049         return function(){
6050             var args = Array.prototype.slice.call(arguments, 0);
6051             setTimeout(function(){
6052                 h.apply(scope, args);
6053             }, o.delay || 10);
6054         };
6055     };
6056
6057     Roo.util.Event = function(obj, name){
6058         this.name = name;
6059         this.obj = obj;
6060         this.listeners = [];
6061     };
6062
6063     Roo.util.Event.prototype = {
6064         addListener : function(fn, scope, options){
6065             var o = options || {};
6066             scope = scope || this.obj;
6067             if(!this.isListening(fn, scope)){
6068                 var l = {fn: fn, scope: scope, options: o};
6069                 var h = fn;
6070                 if(o.delay){
6071                     h = createDelayed(h, o, scope);
6072                 }
6073                 if(o.single){
6074                     h = createSingle(h, this, fn, scope);
6075                 }
6076                 if(o.buffer){
6077                     h = createBuffered(h, o, scope);
6078                 }
6079                 l.fireFn = h;
6080                 if(!this.firing){ // if we are currently firing this event, don't disturb the listener loop
6081                     this.listeners.push(l);
6082                 }else{
6083                     this.listeners = this.listeners.slice(0);
6084                     this.listeners.push(l);
6085                 }
6086             }
6087         },
6088
6089         findListener : function(fn, scope){
6090             scope = scope || this.obj;
6091             var ls = this.listeners;
6092             for(var i = 0, len = ls.length; i < len; i++){
6093                 var l = ls[i];
6094                 if(l.fn == fn && l.scope == scope){
6095                     return i;
6096                 }
6097             }
6098             return -1;
6099         },
6100
6101         isListening : function(fn, scope){
6102             return this.findListener(fn, scope) != -1;
6103         },
6104
6105         removeListener : function(fn, scope){
6106             var index;
6107             if((index = this.findListener(fn, scope)) != -1){
6108                 if(!this.firing){
6109                     this.listeners.splice(index, 1);
6110                 }else{
6111                     this.listeners = this.listeners.slice(0);
6112                     this.listeners.splice(index, 1);
6113                 }
6114                 return true;
6115             }
6116             return false;
6117         },
6118
6119         clearListeners : function(){
6120             this.listeners = [];
6121         },
6122
6123         fire : function(){
6124             var ls = this.listeners, scope, len = ls.length;
6125             if(len > 0){
6126                 this.firing = true;
6127                 var args = Array.prototype.slice.call(arguments, 0);                
6128                 for(var i = 0; i < len; i++){
6129                     var l = ls[i];
6130                     if(l.fireFn.apply(l.scope||this.obj||window, args) === false){
6131                         this.firing = false;
6132                         return false;
6133                     }
6134                 }
6135                 this.firing = false;
6136             }
6137             return true;
6138         }
6139     };
6140 })();/*
6141  * RooJS Library 
6142  * Copyright(c) 2007-2017, Roo J Solutions Ltd
6143  *
6144  * Licence LGPL 
6145  *
6146  */
6147  
6148 /**
6149  * @class Roo.Document
6150  * @extends Roo.util.Observable
6151  * This is a convience class to wrap up the main document loading code.. , rather than adding Roo.onReady(......)
6152  * 
6153  * @param {Object} config the methods and properties of the 'base' class for the application.
6154  * 
6155  *  Generic Page handler - implement this to start your app..
6156  * 
6157  * eg.
6158  *  MyProject = new Roo.Document({
6159         events : {
6160             'load' : true // your events..
6161         },
6162         listeners : {
6163             'ready' : function() {
6164                 // fired on Roo.onReady()
6165             }
6166         }
6167  * 
6168  */
6169 Roo.Document = function(cfg) {
6170      
6171     this.addEvents({ 
6172         'ready' : true
6173     });
6174     Roo.util.Observable.call(this,cfg);
6175     
6176     var _this = this;
6177     
6178     Roo.onReady(function() {
6179         _this.fireEvent('ready');
6180     },null,false);
6181     
6182     
6183 }
6184
6185 Roo.extend(Roo.Document, Roo.util.Observable, {});/*
6186  * Based on:
6187  * Ext JS Library 1.1.1
6188  * Copyright(c) 2006-2007, Ext JS, LLC.
6189  *
6190  * Originally Released Under LGPL - original licence link has changed is not relivant.
6191  *
6192  * Fork - LGPL
6193  * <script type="text/javascript">
6194  */
6195
6196 /**
6197  * @class Roo.EventManager
6198  * Registers event handlers that want to receive a normalized EventObject instead of the standard browser event and provides 
6199  * several useful events directly.
6200  * See {@link Roo.EventObject} for more details on normalized event objects.
6201  * @singleton
6202  */
6203 Roo.EventManager = function(){
6204     var docReadyEvent, docReadyProcId, docReadyState = false;
6205     var resizeEvent, resizeTask, textEvent, textSize;
6206     var E = Roo.lib.Event;
6207     var D = Roo.lib.Dom;
6208
6209     
6210     
6211
6212     var fireDocReady = function(){
6213         if(!docReadyState){
6214             docReadyState = true;
6215             Roo.isReady = true;
6216             if(docReadyProcId){
6217                 clearInterval(docReadyProcId);
6218             }
6219             if(Roo.isGecko || Roo.isOpera) {
6220                 document.removeEventListener("DOMContentLoaded", fireDocReady, false);
6221             }
6222             if(Roo.isIE){
6223                 var defer = document.getElementById("ie-deferred-loader");
6224                 if(defer){
6225                     defer.onreadystatechange = null;
6226                     defer.parentNode.removeChild(defer);
6227                 }
6228             }
6229             if(docReadyEvent){
6230                 docReadyEvent.fire();
6231                 docReadyEvent.clearListeners();
6232             }
6233         }
6234     };
6235     
6236     var initDocReady = function(){
6237         docReadyEvent = new Roo.util.Event();
6238         if(Roo.isGecko || Roo.isOpera) {
6239             document.addEventListener("DOMContentLoaded", fireDocReady, false);
6240         }else if(Roo.isIE){
6241             document.write("<s"+'cript id="ie-deferred-loader" defer="defer" src="/'+'/:"></s'+"cript>");
6242             var defer = document.getElementById("ie-deferred-loader");
6243             defer.onreadystatechange = function(){
6244                 if(this.readyState == "complete"){
6245                     fireDocReady();
6246                 }
6247             };
6248         }else if(Roo.isSafari){ 
6249             docReadyProcId = setInterval(function(){
6250                 var rs = document.readyState;
6251                 if(rs == "complete") {
6252                     fireDocReady();     
6253                  }
6254             }, 10);
6255         }
6256         // no matter what, make sure it fires on load
6257         E.on(window, "load", fireDocReady);
6258     };
6259
6260     var createBuffered = function(h, o){
6261         var task = new Roo.util.DelayedTask(h);
6262         return function(e){
6263             // create new event object impl so new events don't wipe out properties
6264             e = new Roo.EventObjectImpl(e);
6265             task.delay(o.buffer, h, null, [e]);
6266         };
6267     };
6268
6269     var createSingle = function(h, el, ename, fn){
6270         return function(e){
6271             Roo.EventManager.removeListener(el, ename, fn);
6272             h(e);
6273         };
6274     };
6275
6276     var createDelayed = function(h, o){
6277         return function(e){
6278             // create new event object impl so new events don't wipe out properties
6279             e = new Roo.EventObjectImpl(e);
6280             setTimeout(function(){
6281                 h(e);
6282             }, o.delay || 10);
6283         };
6284     };
6285     var transitionEndVal = false;
6286     
6287     var transitionEnd = function()
6288     {
6289         if (transitionEndVal) {
6290             return transitionEndVal;
6291         }
6292         var el = document.createElement('div');
6293
6294         var transEndEventNames = {
6295             WebkitTransition : 'webkitTransitionEnd',
6296             MozTransition    : 'transitionend',
6297             OTransition      : 'oTransitionEnd otransitionend',
6298             transition       : 'transitionend'
6299         };
6300     
6301         for (var name in transEndEventNames) {
6302             if (el.style[name] !== undefined) {
6303                 transitionEndVal = transEndEventNames[name];
6304                 return  transitionEndVal ;
6305             }
6306         }
6307     }
6308     
6309   
6310
6311     var listen = function(element, ename, opt, fn, scope)
6312     {
6313         var o = (!opt || typeof opt == "boolean") ? {} : opt;
6314         fn = fn || o.fn; scope = scope || o.scope;
6315         var el = Roo.getDom(element);
6316         
6317         
6318         if(!el){
6319             throw "Error listening for \"" + ename + '\". Element "' + element + '" doesn\'t exist.';
6320         }
6321         
6322         if (ename == 'transitionend') {
6323             ename = transitionEnd();
6324         }
6325         var h = function(e){
6326             e = Roo.EventObject.setEvent(e);
6327             var t;
6328             if(o.delegate){
6329                 t = e.getTarget(o.delegate, el);
6330                 if(!t){
6331                     return;
6332                 }
6333             }else{
6334                 t = e.target;
6335             }
6336             if(o.stopEvent === true){
6337                 e.stopEvent();
6338             }
6339             if(o.preventDefault === true){
6340                e.preventDefault();
6341             }
6342             if(o.stopPropagation === true){
6343                 e.stopPropagation();
6344             }
6345
6346             if(o.normalized === false){
6347                 e = e.browserEvent;
6348             }
6349
6350             fn.call(scope || el, e, t, o);
6351         };
6352         if(o.delay){
6353             h = createDelayed(h, o);
6354         }
6355         if(o.single){
6356             h = createSingle(h, el, ename, fn);
6357         }
6358         if(o.buffer){
6359             h = createBuffered(h, o);
6360         }
6361         
6362         fn._handlers = fn._handlers || [];
6363         
6364         
6365         fn._handlers.push([Roo.id(el), ename, h]);
6366         
6367         
6368          
6369         E.on(el, ename, h); // this adds the actuall listener to the object..
6370         
6371         
6372         if(ename == "mousewheel" && el.addEventListener){ // workaround for jQuery
6373             el.addEventListener("DOMMouseScroll", h, false);
6374             E.on(window, 'unload', function(){
6375                 el.removeEventListener("DOMMouseScroll", h, false);
6376             });
6377         }
6378         if(ename == "mousedown" && el == document){ // fix stopped mousedowns on the document
6379             Roo.EventManager.stoppedMouseDownEvent.addListener(h);
6380         }
6381         return h;
6382     };
6383
6384     var stopListening = function(el, ename, fn){
6385         var id = Roo.id(el), hds = fn._handlers, hd = fn;
6386         if(hds){
6387             for(var i = 0, len = hds.length; i < len; i++){
6388                 var h = hds[i];
6389                 if(h[0] == id && h[1] == ename){
6390                     hd = h[2];
6391                     hds.splice(i, 1);
6392                     break;
6393                 }
6394             }
6395         }
6396         E.un(el, ename, hd);
6397         el = Roo.getDom(el);
6398         if(ename == "mousewheel" && el.addEventListener){
6399             el.removeEventListener("DOMMouseScroll", hd, false);
6400         }
6401         if(ename == "mousedown" && el == document){ // fix stopped mousedowns on the document
6402             Roo.EventManager.stoppedMouseDownEvent.removeListener(hd);
6403         }
6404     };
6405
6406     var propRe = /^(?:scope|delay|buffer|single|stopEvent|preventDefault|stopPropagation|normalized|args|delegate)$/;
6407     
6408     var pub = {
6409         
6410         
6411         /** 
6412          * Fix for doc tools
6413          * @scope Roo.EventManager
6414          */
6415         
6416         
6417         /** 
6418          * This is no longer needed and is deprecated. Places a simple wrapper around an event handler to override the browser event
6419          * object with a Roo.EventObject
6420          * @param {Function} fn        The method the event invokes
6421          * @param {Object}   scope    An object that becomes the scope of the handler
6422          * @param {boolean}  override If true, the obj passed in becomes
6423          *                             the execution scope of the listener
6424          * @return {Function} The wrapped function
6425          * @deprecated
6426          */
6427         wrap : function(fn, scope, override){
6428             return function(e){
6429                 Roo.EventObject.setEvent(e);
6430                 fn.call(override ? scope || window : window, Roo.EventObject, scope);
6431             };
6432         },
6433         
6434         /**
6435      * Appends an event handler to an element (shorthand for addListener)
6436      * @param {String/HTMLElement}   element        The html element or id to assign the
6437      * @param {String}   eventName The type of event to listen for
6438      * @param {Function} handler The method the event invokes
6439      * @param {Object}   scope (optional) The scope in which to execute the handler
6440      * function. The handler function's "this" context.
6441      * @param {Object}   options (optional) An object containing handler configuration
6442      * properties. This may contain any of the following properties:<ul>
6443      * <li>scope {Object} The scope in which to execute the handler function. The handler function's "this" context.</li>
6444      * <li>delegate {String} A simple selector to filter the target or look for a descendant of the target</li>
6445      * <li>stopEvent {Boolean} True to stop the event. That is stop propagation, and prevent the default action.</li>
6446      * <li>preventDefault {Boolean} True to prevent the default action</li>
6447      * <li>stopPropagation {Boolean} True to prevent event propagation</li>
6448      * <li>normalized {Boolean} False to pass a browser event to the handler function instead of an Roo.EventObject</li>
6449      * <li>delay {Number} The number of milliseconds to delay the invocation of the handler after te event fires.</li>
6450      * <li>single {Boolean} True to add a handler to handle just the next firing of the event, and then remove itself.</li>
6451      * <li>buffer {Number} Causes the handler to be scheduled to run in an {@link Roo.util.DelayedTask} delayed
6452      * by the specified number of milliseconds. If the event fires again within that time, the original
6453      * handler is <em>not</em> invoked, but the new handler is scheduled in its place.</li>
6454      * </ul><br>
6455      * <p>
6456      * <b>Combining Options</b><br>
6457      * Using the options argument, it is possible to combine different types of listeners:<br>
6458      * <br>
6459      * A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)<div style="margin: 5px 20px 20px;">
6460      * Code:<pre><code>
6461 el.on('click', this.onClick, this, {
6462     single: true,
6463     delay: 100,
6464     stopEvent : true,
6465     forumId: 4
6466 });</code></pre>
6467      * <p>
6468      * <b>Attaching multiple handlers in 1 call</b><br>
6469       * The method also allows for a single argument to be passed which is a config object containing properties
6470      * which specify multiple handlers.
6471      * <p>
6472      * Code:<pre><code>
6473 el.on({
6474     'click' : {
6475         fn: this.onClick
6476         scope: this,
6477         delay: 100
6478     },
6479     'mouseover' : {
6480         fn: this.onMouseOver
6481         scope: this
6482     },
6483     'mouseout' : {
6484         fn: this.onMouseOut
6485         scope: this
6486     }
6487 });</code></pre>
6488      * <p>
6489      * Or a shorthand syntax:<br>
6490      * Code:<pre><code>
6491 el.on({
6492     'click' : this.onClick,
6493     'mouseover' : this.onMouseOver,
6494     'mouseout' : this.onMouseOut
6495     scope: this
6496 });</code></pre>
6497      */
6498         addListener : function(element, eventName, fn, scope, options){
6499             if(typeof eventName == "object"){
6500                 var o = eventName;
6501                 for(var e in o){
6502                     if(propRe.test(e)){
6503                         continue;
6504                     }
6505                     if(typeof o[e] == "function"){
6506                         // shared options
6507                         listen(element, e, o, o[e], o.scope);
6508                     }else{
6509                         // individual options
6510                         listen(element, e, o[e]);
6511                     }
6512                 }
6513                 return;
6514             }
6515             return listen(element, eventName, options, fn, scope);
6516         },
6517         
6518         /**
6519          * Removes an event handler
6520          *
6521          * @param {String/HTMLElement}   element        The id or html element to remove the 
6522          *                             event from
6523          * @param {String}   eventName     The type of event
6524          * @param {Function} fn
6525          * @return {Boolean} True if a listener was actually removed
6526          */
6527         removeListener : function(element, eventName, fn){
6528             return stopListening(element, eventName, fn);
6529         },
6530         
6531         /**
6532          * Fires when the document is ready (before onload and before images are loaded). Can be 
6533          * accessed shorthanded Roo.onReady().
6534          * @param {Function} fn        The method the event invokes
6535          * @param {Object}   scope    An  object that becomes the scope of the handler
6536          * @param {boolean}  options
6537          */
6538         onDocumentReady : function(fn, scope, options){
6539             if(docReadyState){ // if it already fired
6540                 docReadyEvent.addListener(fn, scope, options);
6541                 docReadyEvent.fire();
6542                 docReadyEvent.clearListeners();
6543                 return;
6544             }
6545             if(!docReadyEvent){
6546                 initDocReady();
6547             }
6548             docReadyEvent.addListener(fn, scope, options);
6549         },
6550         
6551         /**
6552          * Fires when the window is resized and provides resize event buffering (50 milliseconds), passes new viewport width and height to handlers.
6553          * @param {Function} fn        The method the event invokes
6554          * @param {Object}   scope    An object that becomes the scope of the handler
6555          * @param {boolean}  options
6556          */
6557         onWindowResize : function(fn, scope, options){
6558             if(!resizeEvent){
6559                 resizeEvent = new Roo.util.Event();
6560                 resizeTask = new Roo.util.DelayedTask(function(){
6561                     resizeEvent.fire(D.getViewWidth(), D.getViewHeight());
6562                 });
6563                 E.on(window, "resize", function(){
6564                     if(Roo.isIE){
6565                         resizeTask.delay(50);
6566                     }else{
6567                         resizeEvent.fire(D.getViewWidth(), D.getViewHeight());
6568                     }
6569                 });
6570             }
6571             resizeEvent.addListener(fn, scope, options);
6572         },
6573
6574         /**
6575          * Fires when the user changes the active text size. Handler gets called with 2 params, the old size and the new size.
6576          * @param {Function} fn        The method the event invokes
6577          * @param {Object}   scope    An object that becomes the scope of the handler
6578          * @param {boolean}  options
6579          */
6580         onTextResize : function(fn, scope, options){
6581             if(!textEvent){
6582                 textEvent = new Roo.util.Event();
6583                 var textEl = new Roo.Element(document.createElement('div'));
6584                 textEl.dom.className = 'x-text-resize';
6585                 textEl.dom.innerHTML = 'X';
6586                 textEl.appendTo(document.body);
6587                 textSize = textEl.dom.offsetHeight;
6588                 setInterval(function(){
6589                     if(textEl.dom.offsetHeight != textSize){
6590                         textEvent.fire(textSize, textSize = textEl.dom.offsetHeight);
6591                     }
6592                 }, this.textResizeInterval);
6593             }
6594             textEvent.addListener(fn, scope, options);
6595         },
6596
6597         /**
6598          * Removes the passed window resize listener.
6599          * @param {Function} fn        The method the event invokes
6600          * @param {Object}   scope    The scope of handler
6601          */
6602         removeResizeListener : function(fn, scope){
6603             if(resizeEvent){
6604                 resizeEvent.removeListener(fn, scope);
6605             }
6606         },
6607
6608         // private
6609         fireResize : function(){
6610             if(resizeEvent){
6611                 resizeEvent.fire(D.getViewWidth(), D.getViewHeight());
6612             }   
6613         },
6614         /**
6615          * Url used for onDocumentReady with using SSL (defaults to Roo.SSL_SECURE_URL)
6616          */
6617         ieDeferSrc : false,
6618         /**
6619          * The frequency, in milliseconds, to check for text resize events (defaults to 50)
6620          */
6621         textResizeInterval : 50
6622     };
6623     
6624     /**
6625      * Fix for doc tools
6626      * @scopeAlias pub=Roo.EventManager
6627      */
6628     
6629      /**
6630      * Appends an event handler to an element (shorthand for addListener)
6631      * @param {String/HTMLElement}   element        The html element or id to assign the
6632      * @param {String}   eventName The type of event to listen for
6633      * @param {Function} handler The method the event invokes
6634      * @param {Object}   scope (optional) The scope in which to execute the handler
6635      * function. The handler function's "this" context.
6636      * @param {Object}   options (optional) An object containing handler configuration
6637      * properties. This may contain any of the following properties:<ul>
6638      * <li>scope {Object} The scope in which to execute the handler function. The handler function's "this" context.</li>
6639      * <li>delegate {String} A simple selector to filter the target or look for a descendant of the target</li>
6640      * <li>stopEvent {Boolean} True to stop the event. That is stop propagation, and prevent the default action.</li>
6641      * <li>preventDefault {Boolean} True to prevent the default action</li>
6642      * <li>stopPropagation {Boolean} True to prevent event propagation</li>
6643      * <li>normalized {Boolean} False to pass a browser event to the handler function instead of an Roo.EventObject</li>
6644      * <li>delay {Number} The number of milliseconds to delay the invocation of the handler after te event fires.</li>
6645      * <li>single {Boolean} True to add a handler to handle just the next firing of the event, and then remove itself.</li>
6646      * <li>buffer {Number} Causes the handler to be scheduled to run in an {@link Roo.util.DelayedTask} delayed
6647      * by the specified number of milliseconds. If the event fires again within that time, the original
6648      * handler is <em>not</em> invoked, but the new handler is scheduled in its place.</li>
6649      * </ul><br>
6650      * <p>
6651      * <b>Combining Options</b><br>
6652      * Using the options argument, it is possible to combine different types of listeners:<br>
6653      * <br>
6654      * A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)<div style="margin: 5px 20px 20px;">
6655      * Code:<pre><code>
6656 el.on('click', this.onClick, this, {
6657     single: true,
6658     delay: 100,
6659     stopEvent : true,
6660     forumId: 4
6661 });</code></pre>
6662      * <p>
6663      * <b>Attaching multiple handlers in 1 call</b><br>
6664       * The method also allows for a single argument to be passed which is a config object containing properties
6665      * which specify multiple handlers.
6666      * <p>
6667      * Code:<pre><code>
6668 el.on({
6669     'click' : {
6670         fn: this.onClick
6671         scope: this,
6672         delay: 100
6673     },
6674     'mouseover' : {
6675         fn: this.onMouseOver
6676         scope: this
6677     },
6678     'mouseout' : {
6679         fn: this.onMouseOut
6680         scope: this
6681     }
6682 });</code></pre>
6683      * <p>
6684      * Or a shorthand syntax:<br>
6685      * Code:<pre><code>
6686 el.on({
6687     'click' : this.onClick,
6688     'mouseover' : this.onMouseOver,
6689     'mouseout' : this.onMouseOut
6690     scope: this
6691 });</code></pre>
6692      */
6693     pub.on = pub.addListener;
6694     pub.un = pub.removeListener;
6695
6696     pub.stoppedMouseDownEvent = new Roo.util.Event();
6697     return pub;
6698 }();
6699 /**
6700   * Fires when the document is ready (before onload and before images are loaded).  Shorthand of {@link Roo.EventManager#onDocumentReady}.
6701   * @param {Function} fn        The method the event invokes
6702   * @param {Object}   scope    An  object that becomes the scope of the handler
6703   * @param {boolean}  override If true, the obj passed in becomes
6704   *                             the execution scope of the listener
6705   * @member Roo
6706   * @method onReady
6707  */
6708 Roo.onReady = Roo.EventManager.onDocumentReady;
6709
6710 Roo.onReady(function(){
6711     var bd = Roo.get(document.body);
6712     if(!bd){ return; }
6713
6714     var cls = [
6715             Roo.isIE ? "roo-ie"
6716             : Roo.isIE11 ? "roo-ie11"
6717             : Roo.isEdge ? "roo-edge"
6718             : Roo.isGecko ? "roo-gecko"
6719             : Roo.isOpera ? "roo-opera"
6720             : Roo.isSafari ? "roo-safari" : ""];
6721
6722     if(Roo.isMac){
6723         cls.push("roo-mac");
6724     }
6725     if(Roo.isLinux){
6726         cls.push("roo-linux");
6727     }
6728     if(Roo.isIOS){
6729         cls.push("roo-ios");
6730     }
6731     if(Roo.isTouch){
6732         cls.push("roo-touch");
6733     }
6734     if(Roo.isBorderBox){
6735         cls.push('roo-border-box');
6736     }
6737     if(Roo.isStrict){ // add to the parent to allow for selectors like ".ext-strict .ext-ie"
6738         var p = bd.dom.parentNode;
6739         if(p){
6740             p.className += ' roo-strict';
6741         }
6742     }
6743     bd.addClass(cls.join(' '));
6744 });
6745
6746 /**
6747  * @class Roo.EventObject
6748  * EventObject exposes the Yahoo! UI Event functionality directly on the object
6749  * passed to your event handler. It exists mostly for convenience. It also fixes the annoying null checks automatically to cleanup your code 
6750  * Example:
6751  * <pre><code>
6752  function handleClick(e){ // e is not a standard event object, it is a Roo.EventObject
6753     e.preventDefault();
6754     var target = e.getTarget();
6755     ...
6756  }
6757  var myDiv = Roo.get("myDiv");
6758  myDiv.on("click", handleClick);
6759  //or
6760  Roo.EventManager.on("myDiv", 'click', handleClick);
6761  Roo.EventManager.addListener("myDiv", 'click', handleClick);
6762  </code></pre>
6763  * @singleton
6764  */
6765 Roo.EventObject = function(){
6766     
6767     var E = Roo.lib.Event;
6768     
6769     // safari keypress events for special keys return bad keycodes
6770     var safariKeys = {
6771         63234 : 37, // left
6772         63235 : 39, // right
6773         63232 : 38, // up
6774         63233 : 40, // down
6775         63276 : 33, // page up
6776         63277 : 34, // page down
6777         63272 : 46, // delete
6778         63273 : 36, // home
6779         63275 : 35  // end
6780     };
6781
6782     // normalize button clicks
6783     var btnMap = Roo.isIE ? {1:0,4:1,2:2} :
6784                 (Roo.isSafari ? {1:0,2:1,3:2} : {0:0,1:1,2:2});
6785
6786     Roo.EventObjectImpl = function(e){
6787         if(e){
6788             this.setEvent(e.browserEvent || e);
6789         }
6790     };
6791     Roo.EventObjectImpl.prototype = {
6792         /**
6793          * Used to fix doc tools.
6794          * @scope Roo.EventObject.prototype
6795          */
6796             
6797
6798         
6799         
6800         /** The normal browser event */
6801         browserEvent : null,
6802         /** The button pressed in a mouse event */
6803         button : -1,
6804         /** True if the shift key was down during the event */
6805         shiftKey : false,
6806         /** True if the control key was down during the event */
6807         ctrlKey : false,
6808         /** True if the alt key was down during the event */
6809         altKey : false,
6810
6811         /** Key constant 
6812         * @type Number */
6813         BACKSPACE : 8,
6814         /** Key constant 
6815         * @type Number */
6816         TAB : 9,
6817         /** Key constant 
6818         * @type Number */
6819         RETURN : 13,
6820         /** Key constant 
6821         * @type Number */
6822         ENTER : 13,
6823         /** Key constant 
6824         * @type Number */
6825         SHIFT : 16,
6826         /** Key constant 
6827         * @type Number */
6828         CONTROL : 17,
6829         /** Key constant 
6830         * @type Number */
6831         ESC : 27,
6832         /** Key constant 
6833         * @type Number */
6834         SPACE : 32,
6835         /** Key constant 
6836         * @type Number */
6837         PAGEUP : 33,
6838         /** Key constant 
6839         * @type Number */
6840         PAGEDOWN : 34,
6841         /** Key constant 
6842         * @type Number */
6843         END : 35,
6844         /** Key constant 
6845         * @type Number */
6846         HOME : 36,
6847         /** Key constant 
6848         * @type Number */
6849         LEFT : 37,
6850         /** Key constant 
6851         * @type Number */
6852         UP : 38,
6853         /** Key constant 
6854         * @type Number */
6855         RIGHT : 39,
6856         /** Key constant 
6857         * @type Number */
6858         DOWN : 40,
6859         /** Key constant 
6860         * @type Number */
6861         DELETE : 46,
6862         /** Key constant 
6863         * @type Number */
6864         F5 : 116,
6865
6866            /** @private */
6867         setEvent : function(e){
6868             if(e == this || (e && e.browserEvent)){ // already wrapped
6869                 return e;
6870             }
6871             this.browserEvent = e;
6872             if(e){
6873                 // normalize buttons
6874                 this.button = e.button ? btnMap[e.button] : (e.which ? e.which-1 : -1);
6875                 if(e.type == 'click' && this.button == -1){
6876                     this.button = 0;
6877                 }
6878                 this.type = e.type;
6879                 this.shiftKey = e.shiftKey;
6880                 // mac metaKey behaves like ctrlKey
6881                 this.ctrlKey = e.ctrlKey || e.metaKey;
6882                 this.altKey = e.altKey;
6883                 // in getKey these will be normalized for the mac
6884                 this.keyCode = e.keyCode;
6885                 // keyup warnings on firefox.
6886                 this.charCode = (e.type == 'keyup' || e.type == 'keydown') ? 0 : e.charCode;
6887                 // cache the target for the delayed and or buffered events
6888                 this.target = E.getTarget(e);
6889                 // same for XY
6890                 this.xy = E.getXY(e);
6891             }else{
6892                 this.button = -1;
6893                 this.shiftKey = false;
6894                 this.ctrlKey = false;
6895                 this.altKey = false;
6896                 this.keyCode = 0;
6897                 this.charCode =0;
6898                 this.target = null;
6899                 this.xy = [0, 0];
6900             }
6901             return this;
6902         },
6903
6904         /**
6905          * Stop the event (preventDefault and stopPropagation)
6906          */
6907         stopEvent : function(){
6908             if(this.browserEvent){
6909                 if(this.browserEvent.type == 'mousedown'){
6910                     Roo.EventManager.stoppedMouseDownEvent.fire(this);
6911                 }
6912                 E.stopEvent(this.browserEvent);
6913             }
6914         },
6915
6916         /**
6917          * Prevents the browsers default handling of the event.
6918          */
6919         preventDefault : function(){
6920             if(this.browserEvent){
6921                 E.preventDefault(this.browserEvent);
6922             }
6923         },
6924
6925         /** @private */
6926         isNavKeyPress : function(){
6927             var k = this.keyCode;
6928             k = Roo.isSafari ? (safariKeys[k] || k) : k;
6929             return (k >= 33 && k <= 40) || k == this.RETURN || k == this.TAB || k == this.ESC;
6930         },
6931
6932         isSpecialKey : function(){
6933             var k = this.keyCode;
6934             return (this.type == 'keypress' && this.ctrlKey) || k == 9 || k == 13  || k == 40 || k == 27 ||
6935             (k == 16) || (k == 17) ||
6936             (k >= 18 && k <= 20) ||
6937             (k >= 33 && k <= 35) ||
6938             (k >= 36 && k <= 39) ||
6939             (k >= 44 && k <= 45);
6940         },
6941         /**
6942          * Cancels bubbling of the event.
6943          */
6944         stopPropagation : function(){
6945             if(this.browserEvent){
6946                 if(this.type == 'mousedown'){
6947                     Roo.EventManager.stoppedMouseDownEvent.fire(this);
6948                 }
6949                 E.stopPropagation(this.browserEvent);
6950             }
6951         },
6952
6953         /**
6954          * Gets the key code for the event.
6955          * @return {Number}
6956          */
6957         getCharCode : function(){
6958             return this.charCode || this.keyCode;
6959         },
6960
6961         /**
6962          * Returns a normalized keyCode for the event.
6963          * @return {Number} The key code
6964          */
6965         getKey : function(){
6966             var k = this.keyCode || this.charCode;
6967             return Roo.isSafari ? (safariKeys[k] || k) : k;
6968         },
6969
6970         /**
6971          * Gets the x coordinate of the event.
6972          * @return {Number}
6973          */
6974         getPageX : function(){
6975             return this.xy[0];
6976         },
6977
6978         /**
6979          * Gets the y coordinate of the event.
6980          * @return {Number}
6981          */
6982         getPageY : function(){
6983             return this.xy[1];
6984         },
6985
6986         /**
6987          * Gets the time of the event.
6988          * @return {Number}
6989          */
6990         getTime : function(){
6991             if(this.browserEvent){
6992                 return E.getTime(this.browserEvent);
6993             }
6994             return null;
6995         },
6996
6997         /**
6998          * Gets the page coordinates of the event.
6999          * @return {Array} The xy values like [x, y]
7000          */
7001         getXY : function(){
7002             return this.xy;
7003         },
7004
7005         /**
7006          * Gets the target for the event.
7007          * @param {String} selector (optional) A simple selector to filter the target or look for an ancestor of the target
7008          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
7009                 search as a number or element (defaults to 10 || document.body)
7010          * @param {Boolean} returnEl (optional) True to return a Roo.Element object instead of DOM node
7011          * @return {HTMLelement}
7012          */
7013         getTarget : function(selector, maxDepth, returnEl){
7014             return selector ? Roo.fly(this.target).findParent(selector, maxDepth, returnEl) : this.target;
7015         },
7016         /**
7017          * Gets the related target.
7018          * @return {HTMLElement}
7019          */
7020         getRelatedTarget : function(){
7021             if(this.browserEvent){
7022                 return E.getRelatedTarget(this.browserEvent);
7023             }
7024             return null;
7025         },
7026
7027         /**
7028          * Normalizes mouse wheel delta across browsers
7029          * @return {Number} The delta
7030          */
7031         getWheelDelta : function(){
7032             var e = this.browserEvent;
7033             var delta = 0;
7034             if(e.wheelDelta){ /* IE/Opera. */
7035                 delta = e.wheelDelta/120;
7036             }else if(e.detail){ /* Mozilla case. */
7037                 delta = -e.detail/3;
7038             }
7039             return delta;
7040         },
7041
7042         /**
7043          * Returns true if the control, meta, shift or alt key was pressed during this event.
7044          * @return {Boolean}
7045          */
7046         hasModifier : function(){
7047             return !!((this.ctrlKey || this.altKey) || this.shiftKey);
7048         },
7049
7050         /**
7051          * Returns true if the target of this event equals el or is a child of el
7052          * @param {String/HTMLElement/Element} el
7053          * @param {Boolean} related (optional) true to test if the related target is within el instead of the target
7054          * @return {Boolean}
7055          */
7056         within : function(el, related){
7057             var t = this[related ? "getRelatedTarget" : "getTarget"]();
7058             return t && Roo.fly(el).contains(t);
7059         },
7060
7061         getPoint : function(){
7062             return new Roo.lib.Point(this.xy[0], this.xy[1]);
7063         }
7064     };
7065
7066     return new Roo.EventObjectImpl();
7067 }();
7068             
7069     /*
7070  * Based on:
7071  * Ext JS Library 1.1.1
7072  * Copyright(c) 2006-2007, Ext JS, LLC.
7073  *
7074  * Originally Released Under LGPL - original licence link has changed is not relivant.
7075  *
7076  * Fork - LGPL
7077  * <script type="text/javascript">
7078  */
7079
7080  
7081 // was in Composite Element!??!?!
7082  
7083 (function(){
7084     var D = Roo.lib.Dom;
7085     var E = Roo.lib.Event;
7086     var A = Roo.lib.Anim;
7087
7088     // local style camelizing for speed
7089     var propCache = {};
7090     var camelRe = /(-[a-z])/gi;
7091     var camelFn = function(m, a){ return a.charAt(1).toUpperCase(); };
7092     var view = document.defaultView;
7093
7094 /**
7095  * @class Roo.Element
7096  * Represents an Element in the DOM.<br><br>
7097  * Usage:<br>
7098 <pre><code>
7099 var el = Roo.get("my-div");
7100
7101 // or with getEl
7102 var el = getEl("my-div");
7103
7104 // or with a DOM element
7105 var el = Roo.get(myDivElement);
7106 </code></pre>
7107  * Using Roo.get() or getEl() instead of calling the constructor directly ensures you get the same object
7108  * each call instead of constructing a new one.<br><br>
7109  * <b>Animations</b><br />
7110  * Many of the functions for manipulating an element have an optional "animate" parameter. The animate parameter
7111  * should either be a boolean (true) or an object literal with animation options. The animation options are:
7112 <pre>
7113 Option    Default   Description
7114 --------- --------  ---------------------------------------------
7115 duration  .35       The duration of the animation in seconds
7116 easing    easeOut   The YUI easing method
7117 callback  none      A function to execute when the anim completes
7118 scope     this      The scope (this) of the callback function
7119 </pre>
7120 * Also, the Anim object being used for the animation will be set on your options object as "anim", which allows you to stop or
7121 * manipulate the animation. Here's an example:
7122 <pre><code>
7123 var el = Roo.get("my-div");
7124
7125 // no animation
7126 el.setWidth(100);
7127
7128 // default animation
7129 el.setWidth(100, true);
7130
7131 // animation with some options set
7132 el.setWidth(100, {
7133     duration: 1,
7134     callback: this.foo,
7135     scope: this
7136 });
7137
7138 // using the "anim" property to get the Anim object
7139 var opt = {
7140     duration: 1,
7141     callback: this.foo,
7142     scope: this
7143 };
7144 el.setWidth(100, opt);
7145 ...
7146 if(opt.anim.isAnimated()){
7147     opt.anim.stop();
7148 }
7149 </code></pre>
7150 * <b> Composite (Collections of) Elements</b><br />
7151  * For working with collections of Elements, see <a href="Roo.CompositeElement.html">Roo.CompositeElement</a>
7152  * @constructor Create a new Element directly.
7153  * @param {String/HTMLElement} element
7154  * @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).
7155  */
7156     Roo.Element = function(element, forceNew)
7157     {
7158         var dom = typeof element == "string" ?
7159                 document.getElementById(element) : element;
7160         
7161         this.listeners = {};
7162         
7163         if(!dom){ // invalid id/element
7164             return null;
7165         }
7166         var id = dom.id;
7167         if(forceNew !== true && id && Roo.Element.cache[id]){ // element object already exists
7168             return Roo.Element.cache[id];
7169         }
7170
7171         /**
7172          * The DOM element
7173          * @type HTMLElement
7174          */
7175         this.dom = dom;
7176
7177         /**
7178          * The DOM element ID
7179          * @type String
7180          */
7181         this.id = id || Roo.id(dom);
7182         
7183         return this; // assumed for cctor?
7184     };
7185
7186     var El = Roo.Element;
7187
7188     El.prototype = {
7189         /**
7190          * The element's default display mode  (defaults to "") 
7191          * @type String
7192          */
7193         originalDisplay : "",
7194
7195         
7196         // note this is overridden in BS version..
7197         visibilityMode : 1, 
7198         /**
7199          * The default unit to append to CSS values where a unit isn't provided (defaults to px).
7200          * @type String
7201          */
7202         defaultUnit : "px",
7203         
7204         /**
7205          * Sets the element's visibility mode. When setVisible() is called it
7206          * will use this to determine whether to set the visibility or the display property.
7207          * @param visMode Element.VISIBILITY or Element.DISPLAY
7208          * @return {Roo.Element} this
7209          */
7210         setVisibilityMode : function(visMode){
7211             this.visibilityMode = visMode;
7212             return this;
7213         },
7214         /**
7215          * Convenience method for setVisibilityMode(Element.DISPLAY)
7216          * @param {String} display (optional) What to set display to when visible
7217          * @return {Roo.Element} this
7218          */
7219         enableDisplayMode : function(display){
7220             this.setVisibilityMode(El.DISPLAY);
7221             if(typeof display != "undefined") { this.originalDisplay = display; }
7222             return this;
7223         },
7224
7225         /**
7226          * 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)
7227          * @param {String} selector The simple selector to test
7228          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
7229                 search as a number or element (defaults to 10 || document.body)
7230          * @param {Boolean} returnEl (optional) True to return a Roo.Element object instead of DOM node
7231          * @return {HTMLElement} The matching DOM node (or null if no match was found)
7232          */
7233         findParent : function(simpleSelector, maxDepth, returnEl){
7234             var p = this.dom, b = document.body, depth = 0, dq = Roo.DomQuery, stopEl;
7235             maxDepth = maxDepth || 50;
7236             if(typeof maxDepth != "number"){
7237                 stopEl = Roo.getDom(maxDepth);
7238                 maxDepth = 10;
7239             }
7240             while(p && p.nodeType == 1 && depth < maxDepth && p != b && p != stopEl){
7241                 if(dq.is(p, simpleSelector)){
7242                     return returnEl ? Roo.get(p) : p;
7243                 }
7244                 depth++;
7245                 p = p.parentNode;
7246             }
7247             return null;
7248         },
7249
7250
7251         /**
7252          * Looks at parent nodes for a match of the passed simple selector (e.g. div.some-class or span:first-child)
7253          * @param {String} selector The simple selector to test
7254          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
7255                 search as a number or element (defaults to 10 || document.body)
7256          * @param {Boolean} returnEl (optional) True to return a Roo.Element object instead of DOM node
7257          * @return {HTMLElement} The matching DOM node (or null if no match was found)
7258          */
7259         findParentNode : function(simpleSelector, maxDepth, returnEl){
7260             var p = Roo.fly(this.dom.parentNode, '_internal');
7261             return p ? p.findParent(simpleSelector, maxDepth, returnEl) : null;
7262         },
7263         
7264         /**
7265          * Looks at  the scrollable parent element
7266          */
7267         findScrollableParent : function()
7268         {
7269             var overflowRegex = /(auto|scroll)/;
7270             
7271             if(this.getStyle('position') === 'fixed'){
7272                 return Roo.isAndroid ? Roo.get(document.documentElement) : Roo.get(document.body);
7273             }
7274             
7275             var excludeStaticParent = this.getStyle('position') === "absolute";
7276             
7277             for (var parent = this; (parent = Roo.get(parent.dom.parentNode));){
7278                 
7279                 if (excludeStaticParent && parent.getStyle('position') === "static") {
7280                     continue;
7281                 }
7282                 
7283                 if (overflowRegex.test(parent.getStyle('overflow') + parent.getStyle('overflow-x') + parent.getStyle('overflow-y'))){
7284                     return parent;
7285                 }
7286                 
7287                 if(parent.dom.nodeName.toLowerCase() == 'body'){
7288                     return Roo.isAndroid ? Roo.get(document.documentElement) : Roo.get(document.body);
7289                 }
7290             }
7291             
7292             return Roo.isAndroid ? Roo.get(document.documentElement) : Roo.get(document.body);
7293         },
7294
7295         /**
7296          * Walks up the dom looking for a parent node that matches the passed simple selector (e.g. div.some-class or span:first-child).
7297          * This is a shortcut for findParentNode() that always returns an Roo.Element.
7298          * @param {String} selector The simple selector to test
7299          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
7300                 search as a number or element (defaults to 10 || document.body)
7301          * @return {Roo.Element} The matching DOM node (or null if no match was found)
7302          */
7303         up : function(simpleSelector, maxDepth){
7304             return this.findParentNode(simpleSelector, maxDepth, true);
7305         },
7306
7307
7308
7309         /**
7310          * Returns true if this element matches the passed simple selector (e.g. div.some-class or span:first-child)
7311          * @param {String} selector The simple selector to test
7312          * @return {Boolean} True if this element matches the selector, else false
7313          */
7314         is : function(simpleSelector){
7315             return Roo.DomQuery.is(this.dom, simpleSelector);
7316         },
7317
7318         /**
7319          * Perform animation on this element.
7320          * @param {Object} args The YUI animation control args
7321          * @param {Float} duration (optional) How long the animation lasts in seconds (defaults to .35)
7322          * @param {Function} onComplete (optional) Function to call when animation completes
7323          * @param {String} easing (optional) Easing method to use (defaults to 'easeOut')
7324          * @param {String} animType (optional) 'run' is the default. Can also be 'color', 'motion', or 'scroll'
7325          * @return {Roo.Element} this
7326          */
7327         animate : function(args, duration, onComplete, easing, animType){
7328             this.anim(args, {duration: duration, callback: onComplete, easing: easing}, animType);
7329             return this;
7330         },
7331
7332         /*
7333          * @private Internal animation call
7334          */
7335         anim : function(args, opt, animType, defaultDur, defaultEase, cb){
7336             animType = animType || 'run';
7337             opt = opt || {};
7338             var anim = Roo.lib.Anim[animType](
7339                 this.dom, args,
7340                 (opt.duration || defaultDur) || .35,
7341                 (opt.easing || defaultEase) || 'easeOut',
7342                 function(){
7343                     Roo.callback(cb, this);
7344                     Roo.callback(opt.callback, opt.scope || this, [this, opt]);
7345                 },
7346                 this
7347             );
7348             opt.anim = anim;
7349             return anim;
7350         },
7351
7352         // private legacy anim prep
7353         preanim : function(a, i){
7354             return !a[i] ? false : (typeof a[i] == "object" ? a[i]: {duration: a[i+1], callback: a[i+2], easing: a[i+3]});
7355         },
7356
7357         /**
7358          * Removes worthless text nodes
7359          * @param {Boolean} forceReclean (optional) By default the element
7360          * keeps track if it has been cleaned already so
7361          * you can call this over and over. However, if you update the element and
7362          * need to force a reclean, you can pass true.
7363          */
7364         clean : function(forceReclean){
7365             if(this.isCleaned && forceReclean !== true){
7366                 return this;
7367             }
7368             var ns = /\S/;
7369             var d = this.dom, n = d.firstChild, ni = -1;
7370             while(n){
7371                 var nx = n.nextSibling;
7372                 if(n.nodeType == 3 && !ns.test(n.nodeValue)){
7373                     d.removeChild(n);
7374                 }else{
7375                     n.nodeIndex = ++ni;
7376                 }
7377                 n = nx;
7378             }
7379             this.isCleaned = true;
7380             return this;
7381         },
7382
7383         // private
7384         calcOffsetsTo : function(el){
7385             el = Roo.get(el);
7386             var d = el.dom;
7387             var restorePos = false;
7388             if(el.getStyle('position') == 'static'){
7389                 el.position('relative');
7390                 restorePos = true;
7391             }
7392             var x = 0, y =0;
7393             var op = this.dom;
7394             while(op && op != d && op.tagName != 'HTML'){
7395                 x+= op.offsetLeft;
7396                 y+= op.offsetTop;
7397                 op = op.offsetParent;
7398             }
7399             if(restorePos){
7400                 el.position('static');
7401             }
7402             return [x, y];
7403         },
7404
7405         /**
7406          * Scrolls this element into view within the passed container.
7407          * @param {String/HTMLElement/Element} container (optional) The container element to scroll (defaults to document.body)
7408          * @param {Boolean} hscroll (optional) False to disable horizontal scroll (defaults to true)
7409          * @return {Roo.Element} this
7410          */
7411         scrollIntoView : function(container, hscroll){
7412             var c = Roo.getDom(container) || document.body;
7413             var el = this.dom;
7414
7415             var o = this.calcOffsetsTo(c),
7416                 l = o[0],
7417                 t = o[1],
7418                 b = t+el.offsetHeight,
7419                 r = l+el.offsetWidth;
7420
7421             var ch = c.clientHeight;
7422             var ct = parseInt(c.scrollTop, 10);
7423             var cl = parseInt(c.scrollLeft, 10);
7424             var cb = ct + ch;
7425             var cr = cl + c.clientWidth;
7426
7427             if(t < ct){
7428                 c.scrollTop = t;
7429             }else if(b > cb){
7430                 c.scrollTop = b-ch;
7431             }
7432
7433             if(hscroll !== false){
7434                 if(l < cl){
7435                     c.scrollLeft = l;
7436                 }else if(r > cr){
7437                     c.scrollLeft = r-c.clientWidth;
7438                 }
7439             }
7440             return this;
7441         },
7442
7443         // private
7444         scrollChildIntoView : function(child, hscroll){
7445             Roo.fly(child, '_scrollChildIntoView').scrollIntoView(this, hscroll);
7446         },
7447
7448         /**
7449          * Measures the element's content height and updates height to match. Note: this function uses setTimeout so
7450          * the new height may not be available immediately.
7451          * @param {Boolean} animate (optional) Animate the transition (defaults to false)
7452          * @param {Float} duration (optional) Length of the animation in seconds (defaults to .35)
7453          * @param {Function} onComplete (optional) Function to call when animation completes
7454          * @param {String} easing (optional) Easing method to use (defaults to easeOut)
7455          * @return {Roo.Element} this
7456          */
7457         autoHeight : function(animate, duration, onComplete, easing){
7458             var oldHeight = this.getHeight();
7459             this.clip();
7460             this.setHeight(1); // force clipping
7461             setTimeout(function(){
7462                 var height = parseInt(this.dom.scrollHeight, 10); // parseInt for Safari
7463                 if(!animate){
7464                     this.setHeight(height);
7465                     this.unclip();
7466                     if(typeof onComplete == "function"){
7467                         onComplete();
7468                     }
7469                 }else{
7470                     this.setHeight(oldHeight); // restore original height
7471                     this.setHeight(height, animate, duration, function(){
7472                         this.unclip();
7473                         if(typeof onComplete == "function") { onComplete(); }
7474                     }.createDelegate(this), easing);
7475                 }
7476             }.createDelegate(this), 0);
7477             return this;
7478         },
7479
7480         /**
7481          * Returns true if this element is an ancestor of the passed element
7482          * @param {HTMLElement/String} el The element to check
7483          * @return {Boolean} True if this element is an ancestor of el, else false
7484          */
7485         contains : function(el){
7486             if(!el){return false;}
7487             return D.isAncestor(this.dom, el.dom ? el.dom : el);
7488         },
7489
7490         /**
7491          * Checks whether the element is currently visible using both visibility and display properties.
7492          * @param {Boolean} deep (optional) True to walk the dom and see if parent elements are hidden (defaults to false)
7493          * @return {Boolean} True if the element is currently visible, else false
7494          */
7495         isVisible : function(deep) {
7496             var vis = !(this.getStyle("visibility") == "hidden" || this.getStyle("display") == "none");
7497             if(deep !== true || !vis){
7498                 return vis;
7499             }
7500             var p = this.dom.parentNode;
7501             while(p && p.tagName.toLowerCase() != "body"){
7502                 if(!Roo.fly(p, '_isVisible').isVisible()){
7503                     return false;
7504                 }
7505                 p = p.parentNode;
7506             }
7507             return true;
7508         },
7509
7510         /**
7511          * Creates a {@link Roo.CompositeElement} for child nodes based on the passed CSS selector (the selector should not contain an id).
7512          * @param {String} selector The CSS selector
7513          * @param {Boolean} unique (optional) True to create a unique Roo.Element for each child (defaults to false, which creates a single shared flyweight object)
7514          * @return {CompositeElement/CompositeElementLite} The composite element
7515          */
7516         select : function(selector, unique){
7517             return El.select(selector, unique, this.dom);
7518         },
7519
7520         /**
7521          * Selects child nodes based on the passed CSS selector (the selector should not contain an id).
7522          * @param {String} selector The CSS selector
7523          * @return {Array} An array of the matched nodes
7524          */
7525         query : function(selector, unique){
7526             return Roo.DomQuery.select(selector, this.dom);
7527         },
7528
7529         /**
7530          * Selects a single child at any depth below this element based on the passed CSS selector (the selector should not contain an id).
7531          * @param {String} selector The CSS selector
7532          * @param {Boolean} returnDom (optional) True to return the DOM node instead of Roo.Element (defaults to false)
7533          * @return {HTMLElement/Roo.Element} The child Roo.Element (or DOM node if returnDom = true)
7534          */
7535         child : function(selector, returnDom){
7536             var n = Roo.DomQuery.selectNode(selector, this.dom);
7537             return returnDom ? n : Roo.get(n);
7538         },
7539
7540         /**
7541          * Selects a single *direct* child based on the passed CSS selector (the selector should not contain an id).
7542          * @param {String} selector The CSS selector
7543          * @param {Boolean} returnDom (optional) True to return the DOM node instead of Roo.Element (defaults to false)
7544          * @return {HTMLElement/Roo.Element} The child Roo.Element (or DOM node if returnDom = true)
7545          */
7546         down : function(selector, returnDom){
7547             var n = Roo.DomQuery.selectNode(" > " + selector, this.dom);
7548             return returnDom ? n : Roo.get(n);
7549         },
7550
7551         /**
7552          * Initializes a {@link Roo.dd.DD} drag drop object for this element.
7553          * @param {String} group The group the DD object is member of
7554          * @param {Object} config The DD config object
7555          * @param {Object} overrides An object containing methods to override/implement on the DD object
7556          * @return {Roo.dd.DD} The DD object
7557          */
7558         initDD : function(group, config, overrides){
7559             var dd = new Roo.dd.DD(Roo.id(this.dom), group, config);
7560             return Roo.apply(dd, overrides);
7561         },
7562
7563         /**
7564          * Initializes a {@link Roo.dd.DDProxy} object for this element.
7565          * @param {String} group The group the DDProxy object is member of
7566          * @param {Object} config The DDProxy config object
7567          * @param {Object} overrides An object containing methods to override/implement on the DDProxy object
7568          * @return {Roo.dd.DDProxy} The DDProxy object
7569          */
7570         initDDProxy : function(group, config, overrides){
7571             var dd = new Roo.dd.DDProxy(Roo.id(this.dom), group, config);
7572             return Roo.apply(dd, overrides);
7573         },
7574
7575         /**
7576          * Initializes a {@link Roo.dd.DDTarget} object for this element.
7577          * @param {String} group The group the DDTarget object is member of
7578          * @param {Object} config The DDTarget config object
7579          * @param {Object} overrides An object containing methods to override/implement on the DDTarget object
7580          * @return {Roo.dd.DDTarget} The DDTarget object
7581          */
7582         initDDTarget : function(group, config, overrides){
7583             var dd = new Roo.dd.DDTarget(Roo.id(this.dom), group, config);
7584             return Roo.apply(dd, overrides);
7585         },
7586
7587         /**
7588          * Sets the visibility of the element (see details). If the visibilityMode is set to Element.DISPLAY, it will use
7589          * the display property to hide the element, otherwise it uses visibility. The default is to hide and show using the visibility property.
7590          * @param {Boolean} visible Whether the element is visible
7591          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7592          * @return {Roo.Element} this
7593          */
7594          setVisible : function(visible, animate){
7595             if(!animate || !A){
7596                 if(this.visibilityMode == El.DISPLAY){
7597                     this.setDisplayed(visible);
7598                 }else{
7599                     this.fixDisplay();
7600                     this.dom.style.visibility = visible ? "visible" : "hidden";
7601                 }
7602             }else{
7603                 // closure for composites
7604                 var dom = this.dom;
7605                 var visMode = this.visibilityMode;
7606                 if(visible){
7607                     this.setOpacity(.01);
7608                     this.setVisible(true);
7609                 }
7610                 this.anim({opacity: { to: (visible?1:0) }},
7611                       this.preanim(arguments, 1),
7612                       null, .35, 'easeIn', function(){
7613                          if(!visible){
7614                              if(visMode == El.DISPLAY){
7615                                  dom.style.display = "none";
7616                              }else{
7617                                  dom.style.visibility = "hidden";
7618                              }
7619                              Roo.get(dom).setOpacity(1);
7620                          }
7621                      });
7622             }
7623             return this;
7624         },
7625
7626         /**
7627          * Returns true if display is not "none"
7628          * @return {Boolean}
7629          */
7630         isDisplayed : function() {
7631             return this.getStyle("display") != "none";
7632         },
7633
7634         /**
7635          * Toggles the element's visibility or display, depending on visibility mode.
7636          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7637          * @return {Roo.Element} this
7638          */
7639         toggle : function(animate){
7640             this.setVisible(!this.isVisible(), this.preanim(arguments, 0));
7641             return this;
7642         },
7643
7644         /**
7645          * Sets the CSS display property. Uses originalDisplay if the specified value is a boolean true.
7646          * @param {Boolean} value Boolean value to display the element using its default display, or a string to set the display directly
7647          * @return {Roo.Element} this
7648          */
7649         setDisplayed : function(value) {
7650             if(typeof value == "boolean"){
7651                value = value ? this.originalDisplay : "none";
7652             }
7653             this.setStyle("display", value);
7654             return this;
7655         },
7656
7657         /**
7658          * Tries to focus the element. Any exceptions are caught and ignored.
7659          * @return {Roo.Element} this
7660          */
7661         focus : function() {
7662             try{
7663                 this.dom.focus();
7664             }catch(e){}
7665             return this;
7666         },
7667
7668         /**
7669          * Tries to blur the element. Any exceptions are caught and ignored.
7670          * @return {Roo.Element} this
7671          */
7672         blur : function() {
7673             try{
7674                 this.dom.blur();
7675             }catch(e){}
7676             return this;
7677         },
7678
7679         /**
7680          * Adds one or more CSS classes to the element. Duplicate classes are automatically filtered out.
7681          * @param {String/Array} className The CSS class to add, or an array of classes
7682          * @return {Roo.Element} this
7683          */
7684         addClass : function(className){
7685             if(className instanceof Array){
7686                 for(var i = 0, len = className.length; i < len; i++) {
7687                     this.addClass(className[i]);
7688                 }
7689             }else{
7690                 if(className && !this.hasClass(className)){
7691                     if (this.dom instanceof SVGElement) {
7692                         this.dom.className.baseVal =this.dom.className.baseVal  + " " + className;
7693                     } else {
7694                         this.dom.className = this.dom.className + " " + className;
7695                     }
7696                 }
7697             }
7698             return this;
7699         },
7700
7701         /**
7702          * Adds one or more CSS classes to this element and removes the same class(es) from all siblings.
7703          * @param {String/Array} className The CSS class to add, or an array of classes
7704          * @return {Roo.Element} this
7705          */
7706         radioClass : function(className){
7707             var siblings = this.dom.parentNode.childNodes;
7708             for(var i = 0; i < siblings.length; i++) {
7709                 var s = siblings[i];
7710                 if(s.nodeType == 1){
7711                     Roo.get(s).removeClass(className);
7712                 }
7713             }
7714             this.addClass(className);
7715             return this;
7716         },
7717
7718         /**
7719          * Removes one or more CSS classes from the element.
7720          * @param {String/Array} className The CSS class to remove, or an array of classes
7721          * @return {Roo.Element} this
7722          */
7723         removeClass : function(className){
7724             
7725             var cn = this.dom instanceof SVGElement ? this.dom.className.baseVal : this.dom.className;
7726             if(!className || !cn){
7727                 return this;
7728             }
7729             if(className instanceof Array){
7730                 for(var i = 0, len = className.length; i < len; i++) {
7731                     this.removeClass(className[i]);
7732                 }
7733             }else{
7734                 if(this.hasClass(className)){
7735                     var re = this.classReCache[className];
7736                     if (!re) {
7737                        re = new RegExp('(?:^|\\s+)' + className + '(?:\\s+|$)', "g");
7738                        this.classReCache[className] = re;
7739                     }
7740                     if (this.dom instanceof SVGElement) {
7741                         this.dom.className.baseVal = cn.replace(re, " ");
7742                     } else {
7743                         this.dom.className = cn.replace(re, " ");
7744                     }
7745                 }
7746             }
7747             return this;
7748         },
7749
7750         // private
7751         classReCache: {},
7752
7753         /**
7754          * Toggles the specified CSS class on this element (removes it if it already exists, otherwise adds it).
7755          * @param {String} className The CSS class to toggle
7756          * @return {Roo.Element} this
7757          */
7758         toggleClass : function(className){
7759             if(this.hasClass(className)){
7760                 this.removeClass(className);
7761             }else{
7762                 this.addClass(className);
7763             }
7764             return this;
7765         },
7766
7767         /**
7768          * Checks if the specified CSS class exists on this element's DOM node.
7769          * @param {String} className The CSS class to check for
7770          * @return {Boolean} True if the class exists, else false
7771          */
7772         hasClass : function(className){
7773             if (this.dom instanceof SVGElement) {
7774                 return className && (' '+this.dom.className.baseVal +' ').indexOf(' '+className+' ') != -1; 
7775             } 
7776             return className && (' '+this.dom.className+' ').indexOf(' '+className+' ') != -1;
7777         },
7778
7779         /**
7780          * Replaces a CSS class on the element with another.  If the old name does not exist, the new name will simply be added.
7781          * @param {String} oldClassName The CSS class to replace
7782          * @param {String} newClassName The replacement CSS class
7783          * @return {Roo.Element} this
7784          */
7785         replaceClass : function(oldClassName, newClassName){
7786             this.removeClass(oldClassName);
7787             this.addClass(newClassName);
7788             return this;
7789         },
7790
7791         /**
7792          * Returns an object with properties matching the styles requested.
7793          * For example, el.getStyles('color', 'font-size', 'width') might return
7794          * {'color': '#FFFFFF', 'font-size': '13px', 'width': '100px'}.
7795          * @param {String} style1 A style name
7796          * @param {String} style2 A style name
7797          * @param {String} etc.
7798          * @return {Object} The style object
7799          */
7800         getStyles : function(){
7801             var a = arguments, len = a.length, r = {};
7802             for(var i = 0; i < len; i++){
7803                 r[a[i]] = this.getStyle(a[i]);
7804             }
7805             return r;
7806         },
7807
7808         /**
7809          * Normalizes currentStyle and computedStyle. This is not YUI getStyle, it is an optimised version.
7810          * @param {String} property The style property whose value is returned.
7811          * @return {String} The current value of the style property for this element.
7812          */
7813         getStyle : function(){
7814             return view && view.getComputedStyle ?
7815                 function(prop){
7816                     var el = this.dom, v, cs, camel;
7817                     if(prop == 'float'){
7818                         prop = "cssFloat";
7819                     }
7820                     if(el.style && (v = el.style[prop])){
7821                         return v;
7822                     }
7823                     if(cs = view.getComputedStyle(el, "")){
7824                         if(!(camel = propCache[prop])){
7825                             camel = propCache[prop] = prop.replace(camelRe, camelFn);
7826                         }
7827                         return cs[camel];
7828                     }
7829                     return null;
7830                 } :
7831                 function(prop){
7832                     var el = this.dom, v, cs, camel;
7833                     if(prop == 'opacity'){
7834                         if(typeof el.style.filter == 'string'){
7835                             var m = el.style.filter.match(/alpha\(opacity=(.*)\)/i);
7836                             if(m){
7837                                 var fv = parseFloat(m[1]);
7838                                 if(!isNaN(fv)){
7839                                     return fv ? fv / 100 : 0;
7840                                 }
7841                             }
7842                         }
7843                         return 1;
7844                     }else if(prop == 'float'){
7845                         prop = "styleFloat";
7846                     }
7847                     if(!(camel = propCache[prop])){
7848                         camel = propCache[prop] = prop.replace(camelRe, camelFn);
7849                     }
7850                     if(v = el.style[camel]){
7851                         return v;
7852                     }
7853                     if(cs = el.currentStyle){
7854                         return cs[camel];
7855                     }
7856                     return null;
7857                 };
7858         }(),
7859
7860         /**
7861          * Wrapper for setting style properties, also takes single object parameter of multiple styles.
7862          * @param {String/Object} property The style property to be set, or an object of multiple styles.
7863          * @param {String} value (optional) The value to apply to the given property, or null if an object was passed.
7864          * @return {Roo.Element} this
7865          */
7866         setStyle : function(prop, value){
7867             if(typeof prop == "string"){
7868                 
7869                 if (prop == 'float') {
7870                     this.setStyle(Roo.isIE ? 'styleFloat'  : 'cssFloat', value);
7871                     return this;
7872                 }
7873                 
7874                 var camel;
7875                 if(!(camel = propCache[prop])){
7876                     camel = propCache[prop] = prop.replace(camelRe, camelFn);
7877                 }
7878                 
7879                 if(camel == 'opacity') {
7880                     this.setOpacity(value);
7881                 }else{
7882                     this.dom.style[camel] = value;
7883                 }
7884             }else{
7885                 for(var style in prop){
7886                     if(typeof prop[style] != "function"){
7887                        this.setStyle(style, prop[style]);
7888                     }
7889                 }
7890             }
7891             return this;
7892         },
7893
7894         /**
7895          * More flexible version of {@link #setStyle} for setting style properties.
7896          * @param {String/Object/Function} styles A style specification string, e.g. "width:100px", or object in the form {width:"100px"}, or
7897          * a function which returns such a specification.
7898          * @return {Roo.Element} this
7899          */
7900         applyStyles : function(style){
7901             Roo.DomHelper.applyStyles(this.dom, style);
7902             return this;
7903         },
7904
7905         /**
7906           * 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).
7907           * @return {Number} The X position of the element
7908           */
7909         getX : function(){
7910             return D.getX(this.dom);
7911         },
7912
7913         /**
7914           * 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).
7915           * @return {Number} The Y position of the element
7916           */
7917         getY : function(){
7918             return D.getY(this.dom);
7919         },
7920
7921         /**
7922           * 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).
7923           * @return {Array} The XY position of the element
7924           */
7925         getXY : function(){
7926             return D.getXY(this.dom);
7927         },
7928
7929         /**
7930          * 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).
7931          * @param {Number} The X position of the element
7932          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7933          * @return {Roo.Element} this
7934          */
7935         setX : function(x, animate){
7936             if(!animate || !A){
7937                 D.setX(this.dom, x);
7938             }else{
7939                 this.setXY([x, this.getY()], this.preanim(arguments, 1));
7940             }
7941             return this;
7942         },
7943
7944         /**
7945          * 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).
7946          * @param {Number} The Y position of the element
7947          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7948          * @return {Roo.Element} this
7949          */
7950         setY : function(y, animate){
7951             if(!animate || !A){
7952                 D.setY(this.dom, y);
7953             }else{
7954                 this.setXY([this.getX(), y], this.preanim(arguments, 1));
7955             }
7956             return this;
7957         },
7958
7959         /**
7960          * Sets the element's left position directly using CSS style (instead of {@link #setX}).
7961          * @param {String} left The left CSS property value
7962          * @return {Roo.Element} this
7963          */
7964         setLeft : function(left){
7965             this.setStyle("left", this.addUnits(left));
7966             return this;
7967         },
7968
7969         /**
7970          * Sets the element's top position directly using CSS style (instead of {@link #setY}).
7971          * @param {String} top The top CSS property value
7972          * @return {Roo.Element} this
7973          */
7974         setTop : function(top){
7975             this.setStyle("top", this.addUnits(top));
7976             return this;
7977         },
7978
7979         /**
7980          * Sets the element's CSS right style.
7981          * @param {String} right The right CSS property value
7982          * @return {Roo.Element} this
7983          */
7984         setRight : function(right){
7985             this.setStyle("right", this.addUnits(right));
7986             return this;
7987         },
7988
7989         /**
7990          * Sets the element's CSS bottom style.
7991          * @param {String} bottom The bottom CSS property value
7992          * @return {Roo.Element} this
7993          */
7994         setBottom : function(bottom){
7995             this.setStyle("bottom", this.addUnits(bottom));
7996             return this;
7997         },
7998
7999         /**
8000          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
8001          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
8002          * @param {Array} pos Contains X & Y [x, y] values for new position (coordinates are page-based)
8003          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
8004          * @return {Roo.Element} this
8005          */
8006         setXY : function(pos, animate){
8007             if(!animate || !A){
8008                 D.setXY(this.dom, pos);
8009             }else{
8010                 this.anim({points: {to: pos}}, this.preanim(arguments, 1), 'motion');
8011             }
8012             return this;
8013         },
8014
8015         /**
8016          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
8017          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
8018          * @param {Number} x X value for new position (coordinates are page-based)
8019          * @param {Number} y Y value for new position (coordinates are page-based)
8020          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
8021          * @return {Roo.Element} this
8022          */
8023         setLocation : function(x, y, animate){
8024             this.setXY([x, y], this.preanim(arguments, 2));
8025             return this;
8026         },
8027
8028         /**
8029          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
8030          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
8031          * @param {Number} x X value for new position (coordinates are page-based)
8032          * @param {Number} y Y value for new position (coordinates are page-based)
8033          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
8034          * @return {Roo.Element} this
8035          */
8036         moveTo : function(x, y, animate){
8037             this.setXY([x, y], this.preanim(arguments, 2));
8038             return this;
8039         },
8040
8041         /**
8042          * Returns the region of the given element.
8043          * The element must be part of the DOM tree to have a region (display:none or elements not appended return false).
8044          * @return {Region} A Roo.lib.Region containing "top, left, bottom, right" member data.
8045          */
8046         getRegion : function(){
8047             return D.getRegion(this.dom);
8048         },
8049
8050         /**
8051          * Returns the offset height of the element
8052          * @param {Boolean} contentHeight (optional) true to get the height minus borders and padding
8053          * @return {Number} The element's height
8054          */
8055         getHeight : function(contentHeight){
8056             var h = this.dom.offsetHeight || 0;
8057             return contentHeight !== true ? h : h-this.getBorderWidth("tb")-this.getPadding("tb");
8058         },
8059
8060         /**
8061          * Returns the offset width of the element
8062          * @param {Boolean} contentWidth (optional) true to get the width minus borders and padding
8063          * @return {Number} The element's width
8064          */
8065         getWidth : function(contentWidth){
8066             var w = this.dom.offsetWidth || 0;
8067             return contentWidth !== true ? w : w-this.getBorderWidth("lr")-this.getPadding("lr");
8068         },
8069
8070         /**
8071          * Returns either the offsetHeight or the height of this element based on CSS height adjusted by padding or borders
8072          * when needed to simulate offsetHeight when offsets aren't available. This may not work on display:none elements
8073          * if a height has not been set using CSS.
8074          * @return {Number}
8075          */
8076         getComputedHeight : function(){
8077             var h = Math.max(this.dom.offsetHeight, this.dom.clientHeight);
8078             if(!h){
8079                 h = parseInt(this.getStyle('height'), 10) || 0;
8080                 if(!this.isBorderBox()){
8081                     h += this.getFrameWidth('tb');
8082                 }
8083             }
8084             return h;
8085         },
8086
8087         /**
8088          * Returns either the offsetWidth or the width of this element based on CSS width adjusted by padding or borders
8089          * when needed to simulate offsetWidth when offsets aren't available. This may not work on display:none elements
8090          * if a width has not been set using CSS.
8091          * @return {Number}
8092          */
8093         getComputedWidth : function(){
8094             var w = Math.max(this.dom.offsetWidth, this.dom.clientWidth);
8095             if(!w){
8096                 w = parseInt(this.getStyle('width'), 10) || 0;
8097                 if(!this.isBorderBox()){
8098                     w += this.getFrameWidth('lr');
8099                 }
8100             }
8101             return w;
8102         },
8103
8104         /**
8105          * Returns the size of the element.
8106          * @param {Boolean} contentSize (optional) true to get the width/size minus borders and padding
8107          * @return {Object} An object containing the element's size {width: (element width), height: (element height)}
8108          */
8109         getSize : function(contentSize){
8110             return {width: this.getWidth(contentSize), height: this.getHeight(contentSize)};
8111         },
8112
8113         /**
8114          * Returns the width and height of the viewport.
8115          * @return {Object} An object containing the viewport's size {width: (viewport width), height: (viewport height)}
8116          */
8117         getViewSize : function(){
8118             var d = this.dom, doc = document, aw = 0, ah = 0;
8119             if(d == doc || d == doc.body){
8120                 return {width : D.getViewWidth(), height: D.getViewHeight()};
8121             }else{
8122                 return {
8123                     width : d.clientWidth,
8124                     height: d.clientHeight
8125                 };
8126             }
8127         },
8128
8129         /**
8130          * Returns the value of the "value" attribute
8131          * @param {Boolean} asNumber true to parse the value as a number
8132          * @return {String/Number}
8133          */
8134         getValue : function(asNumber){
8135             return asNumber ? parseInt(this.dom.value, 10) : this.dom.value;
8136         },
8137
8138         // private
8139         adjustWidth : function(width){
8140             if(typeof width == "number"){
8141                 if(this.autoBoxAdjust && !this.isBorderBox()){
8142                    width -= (this.getBorderWidth("lr") + this.getPadding("lr"));
8143                 }
8144                 if(width < 0){
8145                     width = 0;
8146                 }
8147             }
8148             return width;
8149         },
8150
8151         // private
8152         adjustHeight : function(height){
8153             if(typeof height == "number"){
8154                if(this.autoBoxAdjust && !this.isBorderBox()){
8155                    height -= (this.getBorderWidth("tb") + this.getPadding("tb"));
8156                }
8157                if(height < 0){
8158                    height = 0;
8159                }
8160             }
8161             return height;
8162         },
8163
8164         /**
8165          * Set the width of the element
8166          * @param {Number} width The new width
8167          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8168          * @return {Roo.Element} this
8169          */
8170         setWidth : function(width, animate){
8171             width = this.adjustWidth(width);
8172             if(!animate || !A){
8173                 this.dom.style.width = this.addUnits(width);
8174             }else{
8175                 this.anim({width: {to: width}}, this.preanim(arguments, 1));
8176             }
8177             return this;
8178         },
8179
8180         /**
8181          * Set the height of the element
8182          * @param {Number} height The new height
8183          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8184          * @return {Roo.Element} this
8185          */
8186          setHeight : function(height, animate){
8187             height = this.adjustHeight(height);
8188             if(!animate || !A){
8189                 this.dom.style.height = this.addUnits(height);
8190             }else{
8191                 this.anim({height: {to: height}}, this.preanim(arguments, 1));
8192             }
8193             return this;
8194         },
8195
8196         /**
8197          * Set the size of the element. If animation is true, both width an height will be animated concurrently.
8198          * @param {Number} width The new width
8199          * @param {Number} height The new height
8200          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8201          * @return {Roo.Element} this
8202          */
8203          setSize : function(width, height, animate){
8204             if(typeof width == "object"){ // in case of object from getSize()
8205                 height = width.height; width = width.width;
8206             }
8207             width = this.adjustWidth(width); height = this.adjustHeight(height);
8208             if(!animate || !A){
8209                 this.dom.style.width = this.addUnits(width);
8210                 this.dom.style.height = this.addUnits(height);
8211             }else{
8212                 this.anim({width: {to: width}, height: {to: height}}, this.preanim(arguments, 2));
8213             }
8214             return this;
8215         },
8216
8217         /**
8218          * Sets the element's position and size in one shot. If animation is true then width, height, x and y will be animated concurrently.
8219          * @param {Number} x X value for new position (coordinates are page-based)
8220          * @param {Number} y Y value for new position (coordinates are page-based)
8221          * @param {Number} width The new width
8222          * @param {Number} height The new height
8223          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8224          * @return {Roo.Element} this
8225          */
8226         setBounds : function(x, y, width, height, animate){
8227             if(!animate || !A){
8228                 this.setSize(width, height);
8229                 this.setLocation(x, y);
8230             }else{
8231                 width = this.adjustWidth(width); height = this.adjustHeight(height);
8232                 this.anim({points: {to: [x, y]}, width: {to: width}, height: {to: height}},
8233                               this.preanim(arguments, 4), 'motion');
8234             }
8235             return this;
8236         },
8237
8238         /**
8239          * 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.
8240          * @param {Roo.lib.Region} region The region to fill
8241          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8242          * @return {Roo.Element} this
8243          */
8244         setRegion : function(region, animate){
8245             this.setBounds(region.left, region.top, region.right-region.left, region.bottom-region.top, this.preanim(arguments, 1));
8246             return this;
8247         },
8248
8249         /**
8250          * Appends an event handler
8251          *
8252          * @param {String}   eventName     The type of event to append
8253          * @param {Function} fn        The method the event invokes
8254          * @param {Object} scope       (optional) The scope (this object) of the fn
8255          * @param {Object}   options   (optional)An object with standard {@link Roo.EventManager#addListener} options
8256          */
8257         addListener : function(eventName, fn, scope, options)
8258         {
8259             if (eventName == 'dblclick') { // doublclick (touchstart) - faked on touch.
8260                 this.addListener('touchstart', this.onTapHandler, this);
8261             }
8262             
8263             // we need to handle a special case where dom element is a svg element.
8264             // in this case we do not actua
8265             if (!this.dom) {
8266                 return;
8267             }
8268             
8269             if (this.dom instanceof SVGElement && !(this.dom instanceof SVGSVGElement)) {
8270                 if (typeof(this.listeners[eventName]) == 'undefined') {
8271                     this.listeners[eventName] =  new Roo.util.Event(this, eventName);
8272                 }
8273                 this.listeners[eventName].addListener(fn, scope, options);
8274                 return;
8275             }
8276             
8277                 
8278             Roo.EventManager.on(this.dom,  eventName, fn, scope || this, options);
8279             
8280             
8281         },
8282         tapedTwice : false,
8283         onTapHandler : function(event)
8284         {
8285             if(!this.tapedTwice) {
8286                 this.tapedTwice = true;
8287                 var s = this;
8288                 setTimeout( function() {
8289                     s.tapedTwice = false;
8290                 }, 300 );
8291                 return;
8292             }
8293             event.preventDefault();
8294             var revent = new MouseEvent('dblclick',  {
8295                 view: window,
8296                 bubbles: true,
8297                 cancelable: true
8298             });
8299              
8300             this.dom.dispatchEvent(revent);
8301             //action on double tap goes below
8302              
8303         }, 
8304  
8305         /**
8306          * Removes an event handler from this element
8307          * @param {String} eventName the type of event to remove
8308          * @param {Function} fn the method the event invokes
8309          * @param {Function} scope (needed for svg fake listeners)
8310          * @return {Roo.Element} this
8311          */
8312         removeListener : function(eventName, fn, scope){
8313             Roo.EventManager.removeListener(this.dom,  eventName, fn);
8314             if (typeof(this.listeners) == 'undefined'  || typeof(this.listeners[eventName]) == 'undefined') {
8315                 return this;
8316             }
8317             this.listeners[eventName].removeListener(fn, scope);
8318             return this;
8319         },
8320
8321         /**
8322          * Removes all previous added listeners from this element
8323          * @return {Roo.Element} this
8324          */
8325         removeAllListeners : function(){
8326             E.purgeElement(this.dom);
8327             this.listeners = {};
8328             return this;
8329         },
8330
8331         relayEvent : function(eventName, observable){
8332             this.on(eventName, function(e){
8333                 observable.fireEvent(eventName, e);
8334             });
8335         },
8336
8337         
8338         /**
8339          * Set the opacity of the element
8340          * @param {Float} opacity The new opacity. 0 = transparent, .5 = 50% visibile, 1 = fully visible, etc
8341          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8342          * @return {Roo.Element} this
8343          */
8344          setOpacity : function(opacity, animate){
8345             if(!animate || !A){
8346                 var s = this.dom.style;
8347                 if(Roo.isIE){
8348                     s.zoom = 1;
8349                     s.filter = (s.filter || '').replace(/alpha\([^\)]*\)/gi,"") +
8350                                (opacity == 1 ? "" : "alpha(opacity=" + opacity * 100 + ")");
8351                 }else{
8352                     s.opacity = opacity;
8353                 }
8354             }else{
8355                 this.anim({opacity: {to: opacity}}, this.preanim(arguments, 1), null, .35, 'easeIn');
8356             }
8357             return this;
8358         },
8359
8360         /**
8361          * Gets the left X coordinate
8362          * @param {Boolean} local True to get the local css position instead of page coordinate
8363          * @return {Number}
8364          */
8365         getLeft : function(local){
8366             if(!local){
8367                 return this.getX();
8368             }else{
8369                 return parseInt(this.getStyle("left"), 10) || 0;
8370             }
8371         },
8372
8373         /**
8374          * Gets the right X coordinate of the element (element X position + element width)
8375          * @param {Boolean} local True to get the local css position instead of page coordinate
8376          * @return {Number}
8377          */
8378         getRight : function(local){
8379             if(!local){
8380                 return this.getX() + this.getWidth();
8381             }else{
8382                 return (this.getLeft(true) + this.getWidth()) || 0;
8383             }
8384         },
8385
8386         /**
8387          * Gets the top Y coordinate
8388          * @param {Boolean} local True to get the local css position instead of page coordinate
8389          * @return {Number}
8390          */
8391         getTop : function(local) {
8392             if(!local){
8393                 return this.getY();
8394             }else{
8395                 return parseInt(this.getStyle("top"), 10) || 0;
8396             }
8397         },
8398
8399         /**
8400          * Gets the bottom Y coordinate of the element (element Y position + element height)
8401          * @param {Boolean} local True to get the local css position instead of page coordinate
8402          * @return {Number}
8403          */
8404         getBottom : function(local){
8405             if(!local){
8406                 return this.getY() + this.getHeight();
8407             }else{
8408                 return (this.getTop(true) + this.getHeight()) || 0;
8409             }
8410         },
8411
8412         /**
8413         * Initializes positioning on this element. If a desired position is not passed, it will make the
8414         * the element positioned relative IF it is not already positioned.
8415         * @param {String} pos (optional) Positioning to use "relative", "absolute" or "fixed"
8416         * @param {Number} zIndex (optional) The zIndex to apply
8417         * @param {Number} x (optional) Set the page X position
8418         * @param {Number} y (optional) Set the page Y position
8419         */
8420         position : function(pos, zIndex, x, y){
8421             if(!pos){
8422                if(this.getStyle('position') == 'static'){
8423                    this.setStyle('position', 'relative');
8424                }
8425             }else{
8426                 this.setStyle("position", pos);
8427             }
8428             if(zIndex){
8429                 this.setStyle("z-index", zIndex);
8430             }
8431             if(x !== undefined && y !== undefined){
8432                 this.setXY([x, y]);
8433             }else if(x !== undefined){
8434                 this.setX(x);
8435             }else if(y !== undefined){
8436                 this.setY(y);
8437             }
8438         },
8439
8440         /**
8441         * Clear positioning back to the default when the document was loaded
8442         * @param {String} value (optional) The value to use for the left,right,top,bottom, defaults to '' (empty string). You could use 'auto'.
8443         * @return {Roo.Element} this
8444          */
8445         clearPositioning : function(value){
8446             value = value ||'';
8447             this.setStyle({
8448                 "left": value,
8449                 "right": value,
8450                 "top": value,
8451                 "bottom": value,
8452                 "z-index": "",
8453                 "position" : "static"
8454             });
8455             return this;
8456         },
8457
8458         /**
8459         * Gets an object with all CSS positioning properties. Useful along with setPostioning to get
8460         * snapshot before performing an update and then restoring the element.
8461         * @return {Object}
8462         */
8463         getPositioning : function(){
8464             var l = this.getStyle("left");
8465             var t = this.getStyle("top");
8466             return {
8467                 "position" : this.getStyle("position"),
8468                 "left" : l,
8469                 "right" : l ? "" : this.getStyle("right"),
8470                 "top" : t,
8471                 "bottom" : t ? "" : this.getStyle("bottom"),
8472                 "z-index" : this.getStyle("z-index")
8473             };
8474         },
8475
8476         /**
8477          * Gets the width of the border(s) for the specified side(s)
8478          * @param {String} side Can be t, l, r, b or any combination of those to add multiple values. For example,
8479          * passing lr would get the border (l)eft width + the border (r)ight width.
8480          * @return {Number} The width of the sides passed added together
8481          */
8482         getBorderWidth : function(side){
8483             return this.addStyles(side, El.borders);
8484         },
8485
8486         /**
8487          * Gets the width of the padding(s) for the specified side(s)
8488          * @param {String} side Can be t, l, r, b or any combination of those to add multiple values. For example,
8489          * passing lr would get the padding (l)eft + the padding (r)ight.
8490          * @return {Number} The padding of the sides passed added together
8491          */
8492         getPadding : function(side){
8493             return this.addStyles(side, El.paddings);
8494         },
8495
8496         /**
8497         * Set positioning with an object returned by getPositioning().
8498         * @param {Object} posCfg
8499         * @return {Roo.Element} this
8500          */
8501         setPositioning : function(pc){
8502             this.applyStyles(pc);
8503             if(pc.right == "auto"){
8504                 this.dom.style.right = "";
8505             }
8506             if(pc.bottom == "auto"){
8507                 this.dom.style.bottom = "";
8508             }
8509             return this;
8510         },
8511
8512         // private
8513         fixDisplay : function(){
8514             if(this.getStyle("display") == "none"){
8515                 this.setStyle("visibility", "hidden");
8516                 this.setStyle("display", this.originalDisplay); // first try reverting to default
8517                 if(this.getStyle("display") == "none"){ // if that fails, default to block
8518                     this.setStyle("display", "block");
8519                 }
8520             }
8521         },
8522
8523         /**
8524          * Quick set left and top adding default units
8525          * @param {String} left The left CSS property value
8526          * @param {String} top The top CSS property value
8527          * @return {Roo.Element} this
8528          */
8529          setLeftTop : function(left, top){
8530             this.dom.style.left = this.addUnits(left);
8531             this.dom.style.top = this.addUnits(top);
8532             return this;
8533         },
8534
8535         /**
8536          * Move this element relative to its current position.
8537          * @param {String} direction Possible values are: "l","left" - "r","right" - "t","top","up" - "b","bottom","down".
8538          * @param {Number} distance How far to move the element in pixels
8539          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8540          * @return {Roo.Element} this
8541          */
8542          move : function(direction, distance, animate){
8543             var xy = this.getXY();
8544             direction = direction.toLowerCase();
8545             switch(direction){
8546                 case "l":
8547                 case "left":
8548                     this.moveTo(xy[0]-distance, xy[1], this.preanim(arguments, 2));
8549                     break;
8550                case "r":
8551                case "right":
8552                     this.moveTo(xy[0]+distance, xy[1], this.preanim(arguments, 2));
8553                     break;
8554                case "t":
8555                case "top":
8556                case "up":
8557                     this.moveTo(xy[0], xy[1]-distance, this.preanim(arguments, 2));
8558                     break;
8559                case "b":
8560                case "bottom":
8561                case "down":
8562                     this.moveTo(xy[0], xy[1]+distance, this.preanim(arguments, 2));
8563                     break;
8564             }
8565             return this;
8566         },
8567
8568         /**
8569          *  Store the current overflow setting and clip overflow on the element - use {@link #unclip} to remove
8570          * @return {Roo.Element} this
8571          */
8572         clip : function(){
8573             if(!this.isClipped){
8574                this.isClipped = true;
8575                this.originalClip = {
8576                    "o": this.getStyle("overflow"),
8577                    "x": this.getStyle("overflow-x"),
8578                    "y": this.getStyle("overflow-y")
8579                };
8580                this.setStyle("overflow", "hidden");
8581                this.setStyle("overflow-x", "hidden");
8582                this.setStyle("overflow-y", "hidden");
8583             }
8584             return this;
8585         },
8586
8587         /**
8588          *  Return clipping (overflow) to original clipping before clip() was called
8589          * @return {Roo.Element} this
8590          */
8591         unclip : function(){
8592             if(this.isClipped){
8593                 this.isClipped = false;
8594                 var o = this.originalClip;
8595                 if(o.o){this.setStyle("overflow", o.o);}
8596                 if(o.x){this.setStyle("overflow-x", o.x);}
8597                 if(o.y){this.setStyle("overflow-y", o.y);}
8598             }
8599             return this;
8600         },
8601
8602
8603         /**
8604          * Gets the x,y coordinates specified by the anchor position on the element.
8605          * @param {String} anchor (optional) The specified anchor position (defaults to "c").  See {@link #alignTo} for details on supported anchor positions.
8606          * @param {Object} size (optional) An object containing the size to use for calculating anchor position
8607          *                       {width: (target width), height: (target height)} (defaults to the element's current size)
8608          * @param {Boolean} local (optional) True to get the local (element top/left-relative) anchor position instead of page coordinates
8609          * @return {Array} [x, y] An array containing the element's x and y coordinates
8610          */
8611         getAnchorXY : function(anchor, local, s){
8612             //Passing a different size is useful for pre-calculating anchors,
8613             //especially for anchored animations that change the el size.
8614
8615             var w, h, vp = false;
8616             if(!s){
8617                 var d = this.dom;
8618                 if(d == document.body || d == document){
8619                     vp = true;
8620                     w = D.getViewWidth(); h = D.getViewHeight();
8621                 }else{
8622                     w = this.getWidth(); h = this.getHeight();
8623                 }
8624             }else{
8625                 w = s.width;  h = s.height;
8626             }
8627             var x = 0, y = 0, r = Math.round;
8628             switch((anchor || "tl").toLowerCase()){
8629                 case "c":
8630                     x = r(w*.5);
8631                     y = r(h*.5);
8632                 break;
8633                 case "t":
8634                     x = r(w*.5);
8635                     y = 0;
8636                 break;
8637                 case "l":
8638                     x = 0;
8639                     y = r(h*.5);
8640                 break;
8641                 case "r":
8642                     x = w;
8643                     y = r(h*.5);
8644                 break;
8645                 case "b":
8646                     x = r(w*.5);
8647                     y = h;
8648                 break;
8649                 case "tl":
8650                     x = 0;
8651                     y = 0;
8652                 break;
8653                 case "bl":
8654                     x = 0;
8655                     y = h;
8656                 break;
8657                 case "br":
8658                     x = w;
8659                     y = h;
8660                 break;
8661                 case "tr":
8662                     x = w;
8663                     y = 0;
8664                 break;
8665             }
8666             if(local === true){
8667                 return [x, y];
8668             }
8669             if(vp){
8670                 var sc = this.getScroll();
8671                 return [x + sc.left, y + sc.top];
8672             }
8673             //Add the element's offset xy
8674             var o = this.getXY();
8675             return [x+o[0], y+o[1]];
8676         },
8677
8678         /**
8679          * Gets the x,y coordinates to align this element with another element. See {@link #alignTo} for more info on the
8680          * supported position values.
8681          * @param {String/HTMLElement/Roo.Element} element The element to align to.
8682          * @param {String} position The position to align to.
8683          * @param {Array} offsets (optional) Offset the positioning by [x, y]
8684          * @return {Array} [x, y]
8685          */
8686         getAlignToXY : function(el, p, o)
8687         {
8688             el = Roo.get(el);
8689             var d = this.dom;
8690             if(!el.dom){
8691                 throw "Element.alignTo with an element that doesn't exist";
8692             }
8693             var c = false; //constrain to viewport
8694             var p1 = "", p2 = "";
8695             o = o || [0,0];
8696
8697             if(!p){
8698                 p = "tl-bl";
8699             }else if(p == "?"){
8700                 p = "tl-bl?";
8701             }else if(p.indexOf("-") == -1){
8702                 p = "tl-" + p;
8703             }
8704             p = p.toLowerCase();
8705             var m = p.match(/^([a-z]+)-([a-z]+)(\?)?$/);
8706             if(!m){
8707                throw "Element.alignTo with an invalid alignment " + p;
8708             }
8709             p1 = m[1]; p2 = m[2]; c = !!m[3];
8710
8711             //Subtract the aligned el's internal xy from the target's offset xy
8712             //plus custom offset to get the aligned el's new offset xy
8713             var a1 = this.getAnchorXY(p1, true);
8714             var a2 = el.getAnchorXY(p2, false);
8715             var x = a2[0] - a1[0] + o[0];
8716             var y = a2[1] - a1[1] + o[1];
8717             if(c){
8718                 //constrain the aligned el to viewport if necessary
8719                 var w = this.getWidth(), h = this.getHeight(), r = el.getRegion();
8720                 // 5px of margin for ie
8721                 var dw = D.getViewWidth()-5, dh = D.getViewHeight()-5;
8722
8723                 //If we are at a viewport boundary and the aligned el is anchored on a target border that is
8724                 //perpendicular to the vp border, allow the aligned el to slide on that border,
8725                 //otherwise swap the aligned el to the opposite border of the target.
8726                 var p1y = p1.charAt(0), p1x = p1.charAt(p1.length-1);
8727                var p2y = p2.charAt(0), p2x = p2.charAt(p2.length-1);
8728                var swapY = ((p1y=="t" && p2y=="b") || (p1y=="b" && p2y=="t")  );
8729                var swapX = ((p1x=="r" && p2x=="l") || (p1x=="l" && p2x=="r"));
8730
8731                var doc = document;
8732                var scrollX = (doc.documentElement.scrollLeft || doc.body.scrollLeft || 0)+5;
8733                var scrollY = (doc.documentElement.scrollTop || doc.body.scrollTop || 0)+5;
8734
8735                if((x+w) > dw + scrollX){
8736                     x = swapX ? r.left-w : dw+scrollX-w;
8737                 }
8738                if(x < scrollX){
8739                    x = swapX ? r.right : scrollX;
8740                }
8741                if((y+h) > dh + scrollY){
8742                     y = swapY ? r.top-h : dh+scrollY-h;
8743                 }
8744                if (y < scrollY){
8745                    y = swapY ? r.bottom : scrollY;
8746                }
8747             }
8748             return [x,y];
8749         },
8750
8751         // private
8752         getConstrainToXY : function(){
8753             var os = {top:0, left:0, bottom:0, right: 0};
8754
8755             return function(el, local, offsets, proposedXY){
8756                 el = Roo.get(el);
8757                 offsets = offsets ? Roo.applyIf(offsets, os) : os;
8758
8759                 var vw, vh, vx = 0, vy = 0;
8760                 if(el.dom == document.body || el.dom == document){
8761                     vw = Roo.lib.Dom.getViewWidth();
8762                     vh = Roo.lib.Dom.getViewHeight();
8763                 }else{
8764                     vw = el.dom.clientWidth;
8765                     vh = el.dom.clientHeight;
8766                     if(!local){
8767                         var vxy = el.getXY();
8768                         vx = vxy[0];
8769                         vy = vxy[1];
8770                     }
8771                 }
8772
8773                 var s = el.getScroll();
8774
8775                 vx += offsets.left + s.left;
8776                 vy += offsets.top + s.top;
8777
8778                 vw -= offsets.right;
8779                 vh -= offsets.bottom;
8780
8781                 var vr = vx+vw;
8782                 var vb = vy+vh;
8783
8784                 var xy = proposedXY || (!local ? this.getXY() : [this.getLeft(true), this.getTop(true)]);
8785                 var x = xy[0], y = xy[1];
8786                 var w = this.dom.offsetWidth, h = this.dom.offsetHeight;
8787
8788                 // only move it if it needs it
8789                 var moved = false;
8790
8791                 // first validate right/bottom
8792                 if((x + w) > vr){
8793                     x = vr - w;
8794                     moved = true;
8795                 }
8796                 if((y + h) > vb){
8797                     y = vb - h;
8798                     moved = true;
8799                 }
8800                 // then make sure top/left isn't negative
8801                 if(x < vx){
8802                     x = vx;
8803                     moved = true;
8804                 }
8805                 if(y < vy){
8806                     y = vy;
8807                     moved = true;
8808                 }
8809                 return moved ? [x, y] : false;
8810             };
8811         }(),
8812
8813         // private
8814         adjustForConstraints : function(xy, parent, offsets){
8815             return this.getConstrainToXY(parent || document, false, offsets, xy) ||  xy;
8816         },
8817
8818         /**
8819          * Aligns this element with another element relative to the specified anchor points. If the other element is the
8820          * document it aligns it to the viewport.
8821          * The position parameter is optional, and can be specified in any one of the following formats:
8822          * <ul>
8823          *   <li><b>Blank</b>: Defaults to aligning the element's top-left corner to the target's bottom-left corner ("tl-bl").</li>
8824          *   <li><b>One anchor (deprecated)</b>: The passed anchor position is used as the target element's anchor point.
8825          *       The element being aligned will position its top-left corner (tl) to that point.  <i>This method has been
8826          *       deprecated in favor of the newer two anchor syntax below</i>.</li>
8827          *   <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
8828          *       element's anchor point, and the second value is used as the target's anchor point.</li>
8829          * </ul>
8830          * In addition to the anchor points, the position parameter also supports the "?" character.  If "?" is passed at the end of
8831          * the position string, the element will attempt to align as specified, but the position will be adjusted to constrain to
8832          * the viewport if necessary.  Note that the element being aligned might be swapped to align to a different position than
8833          * that specified in order to enforce the viewport constraints.
8834          * Following are all of the supported anchor positions:
8835     <pre>
8836     Value  Description
8837     -----  -----------------------------
8838     tl     The top left corner (default)
8839     t      The center of the top edge
8840     tr     The top right corner
8841     l      The center of the left edge
8842     c      In the center of the element
8843     r      The center of the right edge
8844     bl     The bottom left corner
8845     b      The center of the bottom edge
8846     br     The bottom right corner
8847     </pre>
8848     Example Usage:
8849     <pre><code>
8850     // align el to other-el using the default positioning ("tl-bl", non-constrained)
8851     el.alignTo("other-el");
8852
8853     // align the top left corner of el with the top right corner of other-el (constrained to viewport)
8854     el.alignTo("other-el", "tr?");
8855
8856     // align the bottom right corner of el with the center left edge of other-el
8857     el.alignTo("other-el", "br-l?");
8858
8859     // align the center of el with the bottom left corner of other-el and
8860     // adjust the x position by -6 pixels (and the y position by 0)
8861     el.alignTo("other-el", "c-bl", [-6, 0]);
8862     </code></pre>
8863          * @param {String/HTMLElement/Roo.Element} element The element to align to.
8864          * @param {String} position The position to align to.
8865          * @param {Array} offsets (optional) Offset the positioning by [x, y]
8866          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8867          * @return {Roo.Element} this
8868          */
8869         alignTo : function(element, position, offsets, animate){
8870             var xy = this.getAlignToXY(element, position, offsets);
8871             this.setXY(xy, this.preanim(arguments, 3));
8872             return this;
8873         },
8874
8875         /**
8876          * Anchors an element to another element and realigns it when the window is resized.
8877          * @param {String/HTMLElement/Roo.Element} element The element to align to.
8878          * @param {String} position The position to align to.
8879          * @param {Array} offsets (optional) Offset the positioning by [x, y]
8880          * @param {Boolean/Object} animate (optional) True for the default animation or a standard Element animation config object
8881          * @param {Boolean/Number} monitorScroll (optional) True to monitor body scroll and reposition. If this parameter
8882          * is a number, it is used as the buffer delay (defaults to 50ms).
8883          * @param {Function} callback The function to call after the animation finishes
8884          * @return {Roo.Element} this
8885          */
8886         anchorTo : function(el, alignment, offsets, animate, monitorScroll, callback){
8887             var action = function(){
8888                 this.alignTo(el, alignment, offsets, animate);
8889                 Roo.callback(callback, this);
8890             };
8891             Roo.EventManager.onWindowResize(action, this);
8892             var tm = typeof monitorScroll;
8893             if(tm != 'undefined'){
8894                 Roo.EventManager.on(window, 'scroll', action, this,
8895                     {buffer: tm == 'number' ? monitorScroll : 50});
8896             }
8897             action.call(this); // align immediately
8898             return this;
8899         },
8900         /**
8901          * Clears any opacity settings from this element. Required in some cases for IE.
8902          * @return {Roo.Element} this
8903          */
8904         clearOpacity : function(){
8905             if (window.ActiveXObject) {
8906                 if(typeof this.dom.style.filter == 'string' && (/alpha/i).test(this.dom.style.filter)){
8907                     this.dom.style.filter = "";
8908                 }
8909             } else {
8910                 this.dom.style.opacity = "";
8911                 this.dom.style["-moz-opacity"] = "";
8912                 this.dom.style["-khtml-opacity"] = "";
8913             }
8914             return this;
8915         },
8916
8917         /**
8918          * Hide this element - Uses display mode to determine whether to use "display" or "visibility". See {@link #setVisible}.
8919          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8920          * @return {Roo.Element} this
8921          */
8922         hide : function(animate){
8923             this.setVisible(false, this.preanim(arguments, 0));
8924             return this;
8925         },
8926
8927         /**
8928         * Show this element - Uses display mode to determine whether to use "display" or "visibility". See {@link #setVisible}.
8929         * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8930          * @return {Roo.Element} this
8931          */
8932         show : function(animate){
8933             this.setVisible(true, this.preanim(arguments, 0));
8934             return this;
8935         },
8936
8937         /**
8938          * @private Test if size has a unit, otherwise appends the default
8939          */
8940         addUnits : function(size){
8941             return Roo.Element.addUnits(size, this.defaultUnit);
8942         },
8943
8944         /**
8945          * Temporarily enables offsets (width,height,x,y) for an element with display:none, use endMeasure() when done.
8946          * @return {Roo.Element} this
8947          */
8948         beginMeasure : function(){
8949             var el = this.dom;
8950             if(el.offsetWidth || el.offsetHeight){
8951                 return this; // offsets work already
8952             }
8953             var changed = [];
8954             var p = this.dom, b = document.body; // start with this element
8955             while((!el.offsetWidth && !el.offsetHeight) && p && p.tagName && p != b){
8956                 var pe = Roo.get(p);
8957                 if(pe.getStyle('display') == 'none'){
8958                     changed.push({el: p, visibility: pe.getStyle("visibility")});
8959                     p.style.visibility = "hidden";
8960                     p.style.display = "block";
8961                 }
8962                 p = p.parentNode;
8963             }
8964             this._measureChanged = changed;
8965             return this;
8966
8967         },
8968
8969         /**
8970          * Restores displays to before beginMeasure was called
8971          * @return {Roo.Element} this
8972          */
8973         endMeasure : function(){
8974             var changed = this._measureChanged;
8975             if(changed){
8976                 for(var i = 0, len = changed.length; i < len; i++) {
8977                     var r = changed[i];
8978                     r.el.style.visibility = r.visibility;
8979                     r.el.style.display = "none";
8980                 }
8981                 this._measureChanged = null;
8982             }
8983             return this;
8984         },
8985
8986         /**
8987         * Update the innerHTML of this element, optionally searching for and processing scripts
8988         * @param {String} html The new HTML
8989         * @param {Boolean} loadScripts (optional) true to look for and process scripts
8990         * @param {Function} callback For async script loading you can be noticed when the update completes
8991         * @return {Roo.Element} this
8992          */
8993         update : function(html, loadScripts, callback){
8994             if(typeof html == "undefined"){
8995                 html = "";
8996             }
8997             if(loadScripts !== true){
8998                 this.dom.innerHTML = html;
8999                 if(typeof callback == "function"){
9000                     callback();
9001                 }
9002                 return this;
9003             }
9004             var id = Roo.id();
9005             var dom = this.dom;
9006
9007             html += '<span id="' + id + '"></span>';
9008
9009             E.onAvailable(id, function(){
9010                 var hd = document.getElementsByTagName("head")[0];
9011                 var re = /(?:<script([^>]*)?>)((\n|\r|.)*?)(?:<\/script>)/ig;
9012                 var srcRe = /\ssrc=([\'\"])(.*?)\1/i;
9013                 var typeRe = /\stype=([\'\"])(.*?)\1/i;
9014
9015                 var match;
9016                 while(match = re.exec(html)){
9017                     var attrs = match[1];
9018                     var srcMatch = attrs ? attrs.match(srcRe) : false;
9019                     if(srcMatch && srcMatch[2]){
9020                        var s = document.createElement("script");
9021                        s.src = srcMatch[2];
9022                        var typeMatch = attrs.match(typeRe);
9023                        if(typeMatch && typeMatch[2]){
9024                            s.type = typeMatch[2];
9025                        }
9026                        hd.appendChild(s);
9027                     }else if(match[2] && match[2].length > 0){
9028                         if(window.execScript) {
9029                            window.execScript(match[2]);
9030                         } else {
9031                             /**
9032                              * eval:var:id
9033                              * eval:var:dom
9034                              * eval:var:html
9035                              * 
9036                              */
9037                            window.eval(match[2]);
9038                         }
9039                     }
9040                 }
9041                 var el = document.getElementById(id);
9042                 if(el){el.parentNode.removeChild(el);}
9043                 if(typeof callback == "function"){
9044                     callback();
9045                 }
9046             });
9047             dom.innerHTML = html.replace(/(?:<script.*?>)((\n|\r|.)*?)(?:<\/script>)/ig, "");
9048             return this;
9049         },
9050
9051         /**
9052          * Direct access to the UpdateManager update() method (takes the same parameters).
9053          * @param {String/Function} url The url for this request or a function to call to get the url
9054          * @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}
9055          * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
9056          * @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.
9057          * @return {Roo.Element} this
9058          */
9059         load : function(){
9060             var um = this.getUpdateManager();
9061             um.update.apply(um, arguments);
9062             return this;
9063         },
9064
9065         /**
9066         * Gets this element's UpdateManager
9067         * @return {Roo.UpdateManager} The UpdateManager
9068         */
9069         getUpdateManager : function(){
9070             if(!this.updateManager){
9071                 this.updateManager = new Roo.UpdateManager(this);
9072             }
9073             return this.updateManager;
9074         },
9075
9076         /**
9077          * Disables text selection for this element (normalized across browsers)
9078          * @return {Roo.Element} this
9079          */
9080         unselectable : function(){
9081             this.dom.unselectable = "on";
9082             this.swallowEvent("selectstart", true);
9083             this.applyStyles("-moz-user-select:none;-khtml-user-select:none;");
9084             this.addClass("x-unselectable");
9085             return this;
9086         },
9087
9088         /**
9089         * Calculates the x, y to center this element on the screen
9090         * @return {Array} The x, y values [x, y]
9091         */
9092         getCenterXY : function(){
9093             return this.getAlignToXY(document, 'c-c');
9094         },
9095
9096         /**
9097         * Centers the Element in either the viewport, or another Element.
9098         * @param {String/HTMLElement/Roo.Element} centerIn (optional) The element in which to center the element.
9099         */
9100         center : function(centerIn){
9101             this.alignTo(centerIn || document, 'c-c');
9102             return this;
9103         },
9104
9105         /**
9106          * Tests various css rules/browsers to determine if this element uses a border box
9107          * @return {Boolean}
9108          */
9109         isBorderBox : function(){
9110             return noBoxAdjust[this.dom.tagName.toLowerCase()] || Roo.isBorderBox;
9111         },
9112
9113         /**
9114          * Return a box {x, y, width, height} that can be used to set another elements
9115          * size/location to match this element.
9116          * @param {Boolean} contentBox (optional) If true a box for the content of the element is returned.
9117          * @param {Boolean} local (optional) If true the element's left and top are returned instead of page x/y.
9118          * @return {Object} box An object in the format {x, y, width, height}
9119          */
9120         getBox : function(contentBox, local){
9121             var xy;
9122             if(!local){
9123                 xy = this.getXY();
9124             }else{
9125                 var left = parseInt(this.getStyle("left"), 10) || 0;
9126                 var top = parseInt(this.getStyle("top"), 10) || 0;
9127                 xy = [left, top];
9128             }
9129             var el = this.dom, w = el.offsetWidth, h = el.offsetHeight, bx;
9130             if(!contentBox){
9131                 bx = {x: xy[0], y: xy[1], 0: xy[0], 1: xy[1], width: w, height: h};
9132             }else{
9133                 var l = this.getBorderWidth("l")+this.getPadding("l");
9134                 var r = this.getBorderWidth("r")+this.getPadding("r");
9135                 var t = this.getBorderWidth("t")+this.getPadding("t");
9136                 var b = this.getBorderWidth("b")+this.getPadding("b");
9137                 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)};
9138             }
9139             bx.right = bx.x + bx.width;
9140             bx.bottom = bx.y + bx.height;
9141             return bx;
9142         },
9143
9144         /**
9145          * Returns the sum width of the padding and borders for the passed "sides". See getBorderWidth()
9146          for more information about the sides.
9147          * @param {String} sides
9148          * @return {Number}
9149          */
9150         getFrameWidth : function(sides, onlyContentBox){
9151             return onlyContentBox && Roo.isBorderBox ? 0 : (this.getPadding(sides) + this.getBorderWidth(sides));
9152         },
9153
9154         /**
9155          * 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.
9156          * @param {Object} box The box to fill {x, y, width, height}
9157          * @param {Boolean} adjust (optional) Whether to adjust for box-model issues automatically
9158          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9159          * @return {Roo.Element} this
9160          */
9161         setBox : function(box, adjust, animate){
9162             var w = box.width, h = box.height;
9163             if((adjust && !this.autoBoxAdjust) && !this.isBorderBox()){
9164                w -= (this.getBorderWidth("lr") + this.getPadding("lr"));
9165                h -= (this.getBorderWidth("tb") + this.getPadding("tb"));
9166             }
9167             this.setBounds(box.x, box.y, w, h, this.preanim(arguments, 2));
9168             return this;
9169         },
9170
9171         /**
9172          * Forces the browser to repaint this element
9173          * @return {Roo.Element} this
9174          */
9175          repaint : function(){
9176             var dom = this.dom;
9177             this.addClass("x-repaint");
9178             setTimeout(function(){
9179                 Roo.get(dom).removeClass("x-repaint");
9180             }, 1);
9181             return this;
9182         },
9183
9184         /**
9185          * Returns an object with properties top, left, right and bottom representing the margins of this element unless sides is passed,
9186          * then it returns the calculated width of the sides (see getPadding)
9187          * @param {String} sides (optional) Any combination of l, r, t, b to get the sum of those sides
9188          * @return {Object/Number}
9189          */
9190         getMargins : function(side){
9191             if(!side){
9192                 return {
9193                     top: parseInt(this.getStyle("margin-top"), 10) || 0,
9194                     left: parseInt(this.getStyle("margin-left"), 10) || 0,
9195                     bottom: parseInt(this.getStyle("margin-bottom"), 10) || 0,
9196                     right: parseInt(this.getStyle("margin-right"), 10) || 0
9197                 };
9198             }else{
9199                 return this.addStyles(side, El.margins);
9200              }
9201         },
9202
9203         // private
9204         addStyles : function(sides, styles){
9205             var val = 0, v, w;
9206             for(var i = 0, len = sides.length; i < len; i++){
9207                 v = this.getStyle(styles[sides.charAt(i)]);
9208                 if(v){
9209                      w = parseInt(v, 10);
9210                      if(w){ val += w; }
9211                 }
9212             }
9213             return val;
9214         },
9215
9216         /**
9217          * Creates a proxy element of this element
9218          * @param {String/Object} config The class name of the proxy element or a DomHelper config object
9219          * @param {String/HTMLElement} renderTo (optional) The element or element id to render the proxy to (defaults to document.body)
9220          * @param {Boolean} matchBox (optional) True to align and size the proxy to this element now (defaults to false)
9221          * @return {Roo.Element} The new proxy element
9222          */
9223         createProxy : function(config, renderTo, matchBox){
9224             if(renderTo){
9225                 renderTo = Roo.getDom(renderTo);
9226             }else{
9227                 renderTo = document.body;
9228             }
9229             config = typeof config == "object" ?
9230                 config : {tag : "div", cls: config};
9231             var proxy = Roo.DomHelper.append(renderTo, config, true);
9232             if(matchBox){
9233                proxy.setBox(this.getBox());
9234             }
9235             return proxy;
9236         },
9237
9238         /**
9239          * Puts a mask over this element to disable user interaction. Requires core.css.
9240          * This method can only be applied to elements which accept child nodes.
9241          * @param {String} msg (optional) A message to display in the mask
9242          * @param {String} msgCls (optional) A css class to apply to the msg element
9243          * @return {Element} The mask  element
9244          */
9245         mask : function(msg, msgCls)
9246         {
9247             if(this.getStyle("position") == "static" && this.dom.tagName !== 'BODY'){
9248                 this.setStyle("position", "relative");
9249             }
9250             if(!this._mask){
9251                 this._mask = Roo.DomHelper.append(this.dom, {cls:"roo-el-mask"}, true);
9252             }
9253             
9254             this.addClass("x-masked");
9255             this._mask.setDisplayed(true);
9256             
9257             // we wander
9258             var z = 0;
9259             var dom = this.dom;
9260             while (dom && dom.style) {
9261                 if (!isNaN(parseInt(dom.style.zIndex))) {
9262                     z = Math.max(z, parseInt(dom.style.zIndex));
9263                 }
9264                 dom = dom.parentNode;
9265             }
9266             // if we are masking the body - then it hides everything..
9267             if (this.dom == document.body) {
9268                 z = 1000000;
9269                 this._mask.setWidth(Roo.lib.Dom.getDocumentWidth());
9270                 this._mask.setHeight(Roo.lib.Dom.getDocumentHeight());
9271             }
9272            
9273             if(typeof msg == 'string'){
9274                 if(!this._maskMsg){
9275                     this._maskMsg = Roo.DomHelper.append(this.dom, {
9276                         cls: "roo-el-mask-msg", 
9277                         cn: [
9278                             {
9279                                 tag: 'i',
9280                                 cls: 'fa fa-spinner fa-spin'
9281                             },
9282                             {
9283                                 tag: 'div'
9284                             }   
9285                         ]
9286                     }, true);
9287                 }
9288                 var mm = this._maskMsg;
9289                 mm.dom.className = msgCls ? "roo-el-mask-msg " + msgCls : "roo-el-mask-msg";
9290                 if (mm.dom.lastChild) { // weird IE issue?
9291                     mm.dom.lastChild.innerHTML = msg;
9292                 }
9293                 mm.setDisplayed(true);
9294                 mm.center(this);
9295                 mm.setStyle('z-index', z + 102);
9296             }
9297             if(Roo.isIE && !(Roo.isIE7 && Roo.isStrict) && this.getStyle('height') == 'auto'){ // ie will not expand full height automatically
9298                 this._mask.setHeight(this.getHeight());
9299             }
9300             this._mask.setStyle('z-index', z + 100);
9301             
9302             return this._mask;
9303         },
9304
9305         /**
9306          * Removes a previously applied mask. If removeEl is true the mask overlay is destroyed, otherwise
9307          * it is cached for reuse.
9308          */
9309         unmask : function(removeEl){
9310             if(this._mask){
9311                 if(removeEl === true){
9312                     this._mask.remove();
9313                     delete this._mask;
9314                     if(this._maskMsg){
9315                         this._maskMsg.remove();
9316                         delete this._maskMsg;
9317                     }
9318                 }else{
9319                     this._mask.setDisplayed(false);
9320                     if(this._maskMsg){
9321                         this._maskMsg.setDisplayed(false);
9322                     }
9323                 }
9324             }
9325             this.removeClass("x-masked");
9326         },
9327
9328         /**
9329          * Returns true if this element is masked
9330          * @return {Boolean}
9331          */
9332         isMasked : function(){
9333             return this._mask && this._mask.isVisible();
9334         },
9335
9336         /**
9337          * Creates an iframe shim for this element to keep selects and other windowed objects from
9338          * showing through.
9339          * @return {Roo.Element} The new shim element
9340          */
9341         createShim : function(){
9342             var el = document.createElement('iframe');
9343             el.frameBorder = 'no';
9344             el.className = 'roo-shim';
9345             if(Roo.isIE && Roo.isSecure){
9346                 el.src = Roo.SSL_SECURE_URL;
9347             }
9348             var shim = Roo.get(this.dom.parentNode.insertBefore(el, this.dom));
9349             shim.autoBoxAdjust = false;
9350             return shim;
9351         },
9352
9353         /**
9354          * Removes this element from the DOM and deletes it from the cache
9355          */
9356         remove : function(){
9357             if(this.dom.parentNode){
9358                 this.dom.parentNode.removeChild(this.dom);
9359             }
9360             delete El.cache[this.dom.id];
9361         },
9362
9363         /**
9364          * Sets up event handlers to add and remove a css class when the mouse is over this element
9365          * @param {String} className
9366          * @param {Boolean} preventFlicker (optional) If set to true, it prevents flickering by filtering
9367          * mouseout events for children elements
9368          * @return {Roo.Element} this
9369          */
9370         addClassOnOver : function(className, preventFlicker){
9371             this.on("mouseover", function(){
9372                 Roo.fly(this, '_internal').addClass(className);
9373             }, this.dom);
9374             var removeFn = function(e){
9375                 if(preventFlicker !== true || !e.within(this, true)){
9376                     Roo.fly(this, '_internal').removeClass(className);
9377                 }
9378             };
9379             this.on("mouseout", removeFn, this.dom);
9380             return this;
9381         },
9382
9383         /**
9384          * Sets up event handlers to add and remove a css class when this element has the focus
9385          * @param {String} className
9386          * @return {Roo.Element} this
9387          */
9388         addClassOnFocus : function(className){
9389             this.on("focus", function(){
9390                 Roo.fly(this, '_internal').addClass(className);
9391             }, this.dom);
9392             this.on("blur", function(){
9393                 Roo.fly(this, '_internal').removeClass(className);
9394             }, this.dom);
9395             return this;
9396         },
9397         /**
9398          * 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)
9399          * @param {String} className
9400          * @return {Roo.Element} this
9401          */
9402         addClassOnClick : function(className){
9403             var dom = this.dom;
9404             this.on("mousedown", function(){
9405                 Roo.fly(dom, '_internal').addClass(className);
9406                 var d = Roo.get(document);
9407                 var fn = function(){
9408                     Roo.fly(dom, '_internal').removeClass(className);
9409                     d.removeListener("mouseup", fn);
9410                 };
9411                 d.on("mouseup", fn);
9412             });
9413             return this;
9414         },
9415
9416         /**
9417          * Stops the specified event from bubbling and optionally prevents the default action
9418          * @param {String} eventName
9419          * @param {Boolean} preventDefault (optional) true to prevent the default action too
9420          * @return {Roo.Element} this
9421          */
9422         swallowEvent : function(eventName, preventDefault){
9423             var fn = function(e){
9424                 e.stopPropagation();
9425                 if(preventDefault){
9426                     e.preventDefault();
9427                 }
9428             };
9429             if(eventName instanceof Array){
9430                 for(var i = 0, len = eventName.length; i < len; i++){
9431                      this.on(eventName[i], fn);
9432                 }
9433                 return this;
9434             }
9435             this.on(eventName, fn);
9436             return this;
9437         },
9438
9439         /**
9440          * @private
9441          */
9442         fitToParentDelegate : Roo.emptyFn, // keep a reference to the fitToParent delegate
9443
9444         /**
9445          * Sizes this element to its parent element's dimensions performing
9446          * neccessary box adjustments.
9447          * @param {Boolean} monitorResize (optional) If true maintains the fit when the browser window is resized.
9448          * @param {String/HTMLElment/Element} targetParent (optional) The target parent, default to the parentNode.
9449          * @return {Roo.Element} this
9450          */
9451         fitToParent : function(monitorResize, targetParent) {
9452           Roo.EventManager.removeResizeListener(this.fitToParentDelegate); // always remove previous fitToParent delegate from onWindowResize
9453           this.fitToParentDelegate = Roo.emptyFn; // remove reference to previous delegate
9454           if (monitorResize === true && !this.dom.parentNode) { // check if this Element still exists
9455             return this;
9456           }
9457           var p = Roo.get(targetParent || this.dom.parentNode);
9458           this.setSize(p.getComputedWidth() - p.getFrameWidth('lr'), p.getComputedHeight() - p.getFrameWidth('tb'));
9459           if (monitorResize === true) {
9460             this.fitToParentDelegate = this.fitToParent.createDelegate(this, [true, targetParent]);
9461             Roo.EventManager.onWindowResize(this.fitToParentDelegate);
9462           }
9463           return this;
9464         },
9465
9466         /**
9467          * Gets the next sibling, skipping text nodes
9468          * @return {HTMLElement} The next sibling or null
9469          */
9470         getNextSibling : function(){
9471             var n = this.dom.nextSibling;
9472             while(n && n.nodeType != 1){
9473                 n = n.nextSibling;
9474             }
9475             return n;
9476         },
9477
9478         /**
9479          * Gets the previous sibling, skipping text nodes
9480          * @return {HTMLElement} The previous sibling or null
9481          */
9482         getPrevSibling : function(){
9483             var n = this.dom.previousSibling;
9484             while(n && n.nodeType != 1){
9485                 n = n.previousSibling;
9486             }
9487             return n;
9488         },
9489
9490
9491         /**
9492          * Appends the passed element(s) to this element
9493          * @param {String/HTMLElement/Array/Element/CompositeElement} el
9494          * @return {Roo.Element} this
9495          */
9496         appendChild: function(el){
9497             el = Roo.get(el);
9498             el.appendTo(this);
9499             return this;
9500         },
9501
9502         /**
9503          * Creates the passed DomHelper config and appends it to this element or optionally inserts it before the passed child element.
9504          * @param {Object} config DomHelper element config object.  If no tag is specified (e.g., {tag:'input'}) then a div will be
9505          * automatically generated with the specified attributes.
9506          * @param {HTMLElement} insertBefore (optional) a child element of this element
9507          * @param {Boolean} returnDom (optional) true to return the dom node instead of creating an Element
9508          * @return {Roo.Element} The new child element
9509          */
9510         createChild: function(config, insertBefore, returnDom){
9511             config = config || {tag:'div'};
9512             if(insertBefore){
9513                 return Roo.DomHelper.insertBefore(insertBefore, config, returnDom !== true);
9514             }
9515             return Roo.DomHelper[!this.dom.firstChild ? 'overwrite' : 'append'](this.dom, config,  returnDom !== true);
9516         },
9517
9518         /**
9519          * Appends this element to the passed element
9520          * @param {String/HTMLElement/Element} el The new parent element
9521          * @return {Roo.Element} this
9522          */
9523         appendTo: function(el){
9524             el = Roo.getDom(el);
9525             el.appendChild(this.dom);
9526             return this;
9527         },
9528
9529         /**
9530          * Inserts this element before the passed element in the DOM
9531          * @param {String/HTMLElement/Element} el The element to insert before
9532          * @return {Roo.Element} this
9533          */
9534         insertBefore: function(el){
9535             el = Roo.getDom(el);
9536             el.parentNode.insertBefore(this.dom, el);
9537             return this;
9538         },
9539
9540         /**
9541          * Inserts this element after the passed element in the DOM
9542          * @param {String/HTMLElement/Element} el The element to insert after
9543          * @return {Roo.Element} this
9544          */
9545         insertAfter: function(el){
9546             el = Roo.getDom(el);
9547             el.parentNode.insertBefore(this.dom, el.nextSibling);
9548             return this;
9549         },
9550
9551         /**
9552          * Inserts (or creates) an element (or DomHelper config) as the first child of the this element
9553          * @param {String/HTMLElement/Element/Object} el The id or element to insert or a DomHelper config to create and insert
9554          * @return {Roo.Element} The new child
9555          */
9556         insertFirst: function(el, returnDom){
9557             el = el || {};
9558             if(typeof el == 'object' && !el.nodeType){ // dh config
9559                 return this.createChild(el, this.dom.firstChild, returnDom);
9560             }else{
9561                 el = Roo.getDom(el);
9562                 this.dom.insertBefore(el, this.dom.firstChild);
9563                 return !returnDom ? Roo.get(el) : el;
9564             }
9565         },
9566
9567         /**
9568          * Inserts (or creates) the passed element (or DomHelper config) as a sibling of this element
9569          * @param {String/HTMLElement/Element/Object} el The id or element to insert or a DomHelper config to create and insert
9570          * @param {String} where (optional) 'before' or 'after' defaults to before
9571          * @param {Boolean} returnDom (optional) True to return the raw DOM element instead of Roo.Element
9572          * @return {Roo.Element} the inserted Element
9573          */
9574         insertSibling: function(el, where, returnDom){
9575             where = where ? where.toLowerCase() : 'before';
9576             el = el || {};
9577             var rt, refNode = where == 'before' ? this.dom : this.dom.nextSibling;
9578
9579             if(typeof el == 'object' && !el.nodeType){ // dh config
9580                 if(where == 'after' && !this.dom.nextSibling){
9581                     rt = Roo.DomHelper.append(this.dom.parentNode, el, !returnDom);
9582                 }else{
9583                     rt = Roo.DomHelper[where == 'after' ? 'insertAfter' : 'insertBefore'](this.dom, el, !returnDom);
9584                 }
9585
9586             }else{
9587                 rt = this.dom.parentNode.insertBefore(Roo.getDom(el),
9588                             where == 'before' ? this.dom : this.dom.nextSibling);
9589                 if(!returnDom){
9590                     rt = Roo.get(rt);
9591                 }
9592             }
9593             return rt;
9594         },
9595
9596         /**
9597          * Creates and wraps this element with another element
9598          * @param {Object} config (optional) DomHelper element config object for the wrapper element or null for an empty div
9599          * @param {Boolean} returnDom (optional) True to return the raw DOM element instead of Roo.Element
9600          * @return {HTMLElement/Element} The newly created wrapper element
9601          */
9602         wrap: function(config, returnDom){
9603             if(!config){
9604                 config = {tag: "div"};
9605             }
9606             var newEl = Roo.DomHelper.insertBefore(this.dom, config, !returnDom);
9607             newEl.dom ? newEl.dom.appendChild(this.dom) : newEl.appendChild(this.dom);
9608             return newEl;
9609         },
9610
9611         /**
9612          * Replaces the passed element with this element
9613          * @param {String/HTMLElement/Element} el The element to replace
9614          * @return {Roo.Element} this
9615          */
9616         replace: function(el){
9617             el = Roo.get(el);
9618             this.insertBefore(el);
9619             el.remove();
9620             return this;
9621         },
9622
9623         /**
9624          * Inserts an html fragment into this element
9625          * @param {String} where Where to insert the html in relation to the this element - beforeBegin, afterBegin, beforeEnd, afterEnd.
9626          * @param {String} html The HTML fragment
9627          * @param {Boolean} returnEl True to return an Roo.Element
9628          * @return {HTMLElement/Roo.Element} The inserted node (or nearest related if more than 1 inserted)
9629          */
9630         insertHtml : function(where, html, returnEl){
9631             var el = Roo.DomHelper.insertHtml(where, this.dom, html);
9632             return returnEl ? Roo.get(el) : el;
9633         },
9634
9635         /**
9636          * Sets the passed attributes as attributes of this element (a style attribute can be a string, object or function)
9637          * @param {Object} o The object with the attributes
9638          * @param {Boolean} useSet (optional) false to override the default setAttribute to use expandos.
9639          * @return {Roo.Element} this
9640          */
9641         set : function(o, useSet){
9642             var el = this.dom;
9643             useSet = typeof useSet == 'undefined' ? (el.setAttribute ? true : false) : useSet;
9644             for(var attr in o){
9645                 if(attr == "style" || typeof o[attr] == "function")  { continue; }
9646                 if(attr=="cls"){
9647                     el.className = o["cls"];
9648                 }else{
9649                     if(useSet) {
9650                         el.setAttribute(attr, o[attr]);
9651                     } else {
9652                         el[attr] = o[attr];
9653                     }
9654                 }
9655             }
9656             if(o.style){
9657                 Roo.DomHelper.applyStyles(el, o.style);
9658             }
9659             return this;
9660         },
9661
9662         /**
9663          * Convenience method for constructing a KeyMap
9664          * @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:
9665          *                                  {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
9666          * @param {Function} fn The function to call
9667          * @param {Object} scope (optional) The scope of the function
9668          * @return {Roo.KeyMap} The KeyMap created
9669          */
9670         addKeyListener : function(key, fn, scope){
9671             var config;
9672             if(typeof key != "object" || key instanceof Array){
9673                 config = {
9674                     key: key,
9675                     fn: fn,
9676                     scope: scope
9677                 };
9678             }else{
9679                 config = {
9680                     key : key.key,
9681                     shift : key.shift,
9682                     ctrl : key.ctrl,
9683                     alt : key.alt,
9684                     fn: fn,
9685                     scope: scope
9686                 };
9687             }
9688             return new Roo.KeyMap(this, config);
9689         },
9690
9691         /**
9692          * Creates a KeyMap for this element
9693          * @param {Object} config The KeyMap config. See {@link Roo.KeyMap} for more details
9694          * @return {Roo.KeyMap} The KeyMap created
9695          */
9696         addKeyMap : function(config){
9697             return new Roo.KeyMap(this, config);
9698         },
9699
9700         /**
9701          * Returns true if this element is scrollable.
9702          * @return {Boolean}
9703          */
9704          isScrollable : function(){
9705             var dom = this.dom;
9706             return dom.scrollHeight > dom.clientHeight || dom.scrollWidth > dom.clientWidth;
9707         },
9708
9709         /**
9710          * 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().
9711          * @param {String} side Either "left" for scrollLeft values or "top" for scrollTop values.
9712          * @param {Number} value The new scroll value
9713          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9714          * @return {Element} this
9715          */
9716
9717         scrollTo : function(side, value, animate){
9718             var prop = side.toLowerCase() == "left" ? "scrollLeft" : "scrollTop";
9719             if(!animate || !A){
9720                 this.dom[prop] = value;
9721             }else{
9722                 var to = prop == "scrollLeft" ? [value, this.dom.scrollTop] : [this.dom.scrollLeft, value];
9723                 this.anim({scroll: {"to": to}}, this.preanim(arguments, 2), 'scroll');
9724             }
9725             return this;
9726         },
9727
9728         /**
9729          * Scrolls this element the specified direction. Does bounds checking to make sure the scroll is
9730          * within this element's scrollable range.
9731          * @param {String} direction Possible values are: "l","left" - "r","right" - "t","top","up" - "b","bottom","down".
9732          * @param {Number} distance How far to scroll the element in pixels
9733          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9734          * @return {Boolean} Returns true if a scroll was triggered or false if the element
9735          * was scrolled as far as it could go.
9736          */
9737          scroll : function(direction, distance, animate){
9738              if(!this.isScrollable()){
9739                  return;
9740              }
9741              var el = this.dom;
9742              var l = el.scrollLeft, t = el.scrollTop;
9743              var w = el.scrollWidth, h = el.scrollHeight;
9744              var cw = el.clientWidth, ch = el.clientHeight;
9745              direction = direction.toLowerCase();
9746              var scrolled = false;
9747              var a = this.preanim(arguments, 2);
9748              switch(direction){
9749                  case "l":
9750                  case "left":
9751                      if(w - l > cw){
9752                          var v = Math.min(l + distance, w-cw);
9753                          this.scrollTo("left", v, a);
9754                          scrolled = true;
9755                      }
9756                      break;
9757                 case "r":
9758                 case "right":
9759                      if(l > 0){
9760                          var v = Math.max(l - distance, 0);
9761                          this.scrollTo("left", v, a);
9762                          scrolled = true;
9763                      }
9764                      break;
9765                 case "t":
9766                 case "top":
9767                 case "up":
9768                      if(t > 0){
9769                          var v = Math.max(t - distance, 0);
9770                          this.scrollTo("top", v, a);
9771                          scrolled = true;
9772                      }
9773                      break;
9774                 case "b":
9775                 case "bottom":
9776                 case "down":
9777                      if(h - t > ch){
9778                          var v = Math.min(t + distance, h-ch);
9779                          this.scrollTo("top", v, a);
9780                          scrolled = true;
9781                      }
9782                      break;
9783              }
9784              return scrolled;
9785         },
9786
9787         /**
9788          * Translates the passed page coordinates into left/top css values for this element
9789          * @param {Number/Array} x The page x or an array containing [x, y]
9790          * @param {Number} y The page y
9791          * @return {Object} An object with left and top properties. e.g. {left: (value), top: (value)}
9792          */
9793         translatePoints : function(x, y){
9794             if(typeof x == 'object' || x instanceof Array){
9795                 y = x[1]; x = x[0];
9796             }
9797             var p = this.getStyle('position');
9798             var o = this.getXY();
9799
9800             var l = parseInt(this.getStyle('left'), 10);
9801             var t = parseInt(this.getStyle('top'), 10);
9802
9803             if(isNaN(l)){
9804                 l = (p == "relative") ? 0 : this.dom.offsetLeft;
9805             }
9806             if(isNaN(t)){
9807                 t = (p == "relative") ? 0 : this.dom.offsetTop;
9808             }
9809
9810             return {left: (x - o[0] + l), top: (y - o[1] + t)};
9811         },
9812
9813         /**
9814          * Returns the current scroll position of the element.
9815          * @return {Object} An object containing the scroll position in the format {left: (scrollLeft), top: (scrollTop)}
9816          */
9817         getScroll : function(){
9818             var d = this.dom, doc = document;
9819             if(d == doc || d == doc.body){
9820                 var l = window.pageXOffset || doc.documentElement.scrollLeft || doc.body.scrollLeft || 0;
9821                 var t = window.pageYOffset || doc.documentElement.scrollTop || doc.body.scrollTop || 0;
9822                 return {left: l, top: t};
9823             }else{
9824                 return {left: d.scrollLeft, top: d.scrollTop};
9825             }
9826         },
9827
9828         /**
9829          * Return the CSS color for the specified CSS attribute. rgb, 3 digit (like #fff) and valid values
9830          * are convert to standard 6 digit hex color.
9831          * @param {String} attr The css attribute
9832          * @param {String} defaultValue The default value to use when a valid color isn't found
9833          * @param {String} prefix (optional) defaults to #. Use an empty string when working with
9834          * YUI color anims.
9835          */
9836         getColor : function(attr, defaultValue, prefix){
9837             var v = this.getStyle(attr);
9838             if(!v || v == "transparent" || v == "inherit") {
9839                 return defaultValue;
9840             }
9841             var color = typeof prefix == "undefined" ? "#" : prefix;
9842             if(v.substr(0, 4) == "rgb("){
9843                 var rvs = v.slice(4, v.length -1).split(",");
9844                 for(var i = 0; i < 3; i++){
9845                     var h = parseInt(rvs[i]).toString(16);
9846                     if(h < 16){
9847                         h = "0" + h;
9848                     }
9849                     color += h;
9850                 }
9851             } else {
9852                 if(v.substr(0, 1) == "#"){
9853                     if(v.length == 4) {
9854                         for(var i = 1; i < 4; i++){
9855                             var c = v.charAt(i);
9856                             color +=  c + c;
9857                         }
9858                     }else if(v.length == 7){
9859                         color += v.substr(1);
9860                     }
9861                 }
9862             }
9863             return(color.length > 5 ? color.toLowerCase() : defaultValue);
9864         },
9865
9866         /**
9867          * Wraps the specified element with a special markup/CSS block that renders by default as a gray container with a
9868          * gradient background, rounded corners and a 4-way shadow.
9869          * @param {String} class (optional) A base CSS class to apply to the containing wrapper element (defaults to 'x-box').
9870          * Note that there are a number of CSS rules that are dependent on this name to make the overall effect work,
9871          * so if you supply an alternate base class, make sure you also supply all of the necessary rules.
9872          * @return {Roo.Element} this
9873          */
9874         boxWrap : function(cls){
9875             cls = cls || 'x-box';
9876             var el = Roo.get(this.insertHtml('beforeBegin', String.format('<div class="{0}">'+El.boxMarkup+'</div>', cls)));
9877             el.child('.'+cls+'-mc').dom.appendChild(this.dom);
9878             return el;
9879         },
9880
9881         /**
9882          * Returns the value of a namespaced attribute from the element's underlying DOM node.
9883          * @param {String} namespace The namespace in which to look for the attribute
9884          * @param {String} name The attribute name
9885          * @return {String} The attribute value
9886          */
9887         getAttributeNS : Roo.isIE ? function(ns, name){
9888             var d = this.dom;
9889             var type = typeof d[ns+":"+name];
9890             if(type != 'undefined' && type != 'unknown'){
9891                 return d[ns+":"+name];
9892             }
9893             return d[name];
9894         } : function(ns, name){
9895             var d = this.dom;
9896             return d.getAttributeNS(ns, name) || d.getAttribute(ns+":"+name) || d.getAttribute(name) || d[name];
9897         },
9898         
9899         
9900         /**
9901          * Sets or Returns the value the dom attribute value
9902          * @param {String|Object} name The attribute name (or object to set multiple attributes)
9903          * @param {String} value (optional) The value to set the attribute to
9904          * @return {String} The attribute value
9905          */
9906         attr : function(name){
9907             if (arguments.length > 1) {
9908                 this.dom.setAttribute(name, arguments[1]);
9909                 return arguments[1];
9910             }
9911             if (typeof(name) == 'object') {
9912                 for(var i in name) {
9913                     this.attr(i, name[i]);
9914                 }
9915                 return name;
9916             }
9917             
9918             
9919             if (!this.dom.hasAttribute(name)) {
9920                 return undefined;
9921             }
9922             return this.dom.getAttribute(name);
9923         }
9924         
9925         
9926         
9927     };
9928
9929     var ep = El.prototype;
9930
9931     /**
9932      * Appends an event handler (Shorthand for addListener)
9933      * @param {String}   eventName     The type of event to append
9934      * @param {Function} fn        The method the event invokes
9935      * @param {Object} scope       (optional) The scope (this object) of the fn
9936      * @param {Object}   options   (optional)An object with standard {@link Roo.EventManager#addListener} options
9937      * @method
9938      */
9939     ep.on = ep.addListener;
9940         // backwards compat
9941     ep.mon = ep.addListener;
9942
9943     /**
9944      * Removes an event handler from this element (shorthand for removeListener)
9945      * @param {String} eventName the type of event to remove
9946      * @param {Function} fn the method the event invokes
9947      * @return {Roo.Element} this
9948      * @method
9949      */
9950     ep.un = ep.removeListener;
9951
9952     /**
9953      * true to automatically adjust width and height settings for box-model issues (default to true)
9954      */
9955     ep.autoBoxAdjust = true;
9956
9957     // private
9958     El.unitPattern = /\d+(px|em|%|en|ex|pt|in|cm|mm|pc)$/i;
9959
9960     // private
9961     El.addUnits = function(v, defaultUnit){
9962         if(v === "" || v == "auto"){
9963             return v;
9964         }
9965         if(v === undefined){
9966             return '';
9967         }
9968         if(typeof v == "number" || !El.unitPattern.test(v)){
9969             return v + (defaultUnit || 'px');
9970         }
9971         return v;
9972     };
9973
9974     // special markup used throughout Roo when box wrapping elements
9975     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>';
9976     /**
9977      * Visibility mode constant - Use visibility to hide element
9978      * @static
9979      * @type Number
9980      */
9981     El.VISIBILITY = 1;
9982     /**
9983      * Visibility mode constant - Use display to hide element
9984      * @static
9985      * @type Number
9986      */
9987     El.DISPLAY = 2;
9988
9989     El.borders = {l: "border-left-width", r: "border-right-width", t: "border-top-width", b: "border-bottom-width"};
9990     El.paddings = {l: "padding-left", r: "padding-right", t: "padding-top", b: "padding-bottom"};
9991     El.margins = {l: "margin-left", r: "margin-right", t: "margin-top", b: "margin-bottom"};
9992
9993
9994
9995     /**
9996      * @private
9997      */
9998     El.cache = {};
9999
10000     var docEl;
10001
10002     /**
10003      * Static method to retrieve Element objects. Uses simple caching to consistently return the same object.
10004      * Automatically fixes if an object was recreated with the same id via AJAX or DOM.
10005      * @param {String/HTMLElement/Element} el The id of the node, a DOM Node or an existing Element.
10006      * @return {Element} The Element object
10007      * @static
10008      */
10009     El.get = function(el){
10010         var ex, elm, id;
10011         if(!el){ return null; }
10012         if(typeof el == "string"){ // element id
10013             if(!(elm = document.getElementById(el))){
10014                 return null;
10015             }
10016             if(ex = El.cache[el]){
10017                 ex.dom = elm;
10018             }else{
10019                 ex = El.cache[el] = new El(elm);
10020             }
10021             return ex;
10022         }else if(el.tagName){ // dom element
10023             if(!(id = el.id)){
10024                 id = Roo.id(el);
10025             }
10026             if(ex = El.cache[id]){
10027                 ex.dom = el;
10028             }else{
10029                 ex = El.cache[id] = new El(el);
10030             }
10031             return ex;
10032         }else if(el instanceof El){
10033             if(el != docEl){
10034                 el.dom = document.getElementById(el.id) || el.dom; // refresh dom element in case no longer valid,
10035                                                               // catch case where it hasn't been appended
10036                 El.cache[el.id] = el; // in case it was created directly with Element(), let's cache it
10037             }
10038             return el;
10039         }else if(el.isComposite){
10040             return el;
10041         }else if(el instanceof Array){
10042             return El.select(el);
10043         }else if(el == document){
10044             // create a bogus element object representing the document object
10045             if(!docEl){
10046                 var f = function(){};
10047                 f.prototype = El.prototype;
10048                 docEl = new f();
10049                 docEl.dom = document;
10050             }
10051             return docEl;
10052         }
10053         return null;
10054     };
10055
10056     // private
10057     El.uncache = function(el){
10058         for(var i = 0, a = arguments, len = a.length; i < len; i++) {
10059             if(a[i]){
10060                 delete El.cache[a[i].id || a[i]];
10061             }
10062         }
10063     };
10064
10065     // private
10066     // Garbage collection - uncache elements/purge listeners on orphaned elements
10067     // so we don't hold a reference and cause the browser to retain them
10068     El.garbageCollect = function(){
10069         if(!Roo.enableGarbageCollector){
10070             clearInterval(El.collectorThread);
10071             return;
10072         }
10073         for(var eid in El.cache){
10074             var el = El.cache[eid], d = el.dom;
10075             // -------------------------------------------------------
10076             // Determining what is garbage:
10077             // -------------------------------------------------------
10078             // !d
10079             // dom node is null, definitely garbage
10080             // -------------------------------------------------------
10081             // !d.parentNode
10082             // no parentNode == direct orphan, definitely garbage
10083             // -------------------------------------------------------
10084             // !d.offsetParent && !document.getElementById(eid)
10085             // display none elements have no offsetParent so we will
10086             // also try to look it up by it's id. However, check
10087             // offsetParent first so we don't do unneeded lookups.
10088             // This enables collection of elements that are not orphans
10089             // directly, but somewhere up the line they have an orphan
10090             // parent.
10091             // -------------------------------------------------------
10092             if(!d || !d.parentNode || (!d.offsetParent && !document.getElementById(eid))){
10093                 delete El.cache[eid];
10094                 if(d && Roo.enableListenerCollection){
10095                     E.purgeElement(d);
10096                 }
10097             }
10098         }
10099     }
10100     El.collectorThreadId = setInterval(El.garbageCollect, 30000);
10101
10102
10103     // dom is optional
10104     El.Flyweight = function(dom){
10105         this.dom = dom;
10106     };
10107     El.Flyweight.prototype = El.prototype;
10108
10109     El._flyweights = {};
10110     /**
10111      * Gets the globally shared flyweight Element, with the passed node as the active element. Do not store a reference to this element -
10112      * the dom node can be overwritten by other code.
10113      * @param {String/HTMLElement} el The dom node or id
10114      * @param {String} named (optional) Allows for creation of named reusable flyweights to
10115      *                                  prevent conflicts (e.g. internally Roo uses "_internal")
10116      * @static
10117      * @return {Element} The shared Element object
10118      */
10119     El.fly = function(el, named){
10120         named = named || '_global';
10121         el = Roo.getDom(el);
10122         if(!el){
10123             return null;
10124         }
10125         if(!El._flyweights[named]){
10126             El._flyweights[named] = new El.Flyweight();
10127         }
10128         El._flyweights[named].dom = el;
10129         return El._flyweights[named];
10130     };
10131
10132     /**
10133      * Static method to retrieve Element objects. Uses simple caching to consistently return the same object.
10134      * Automatically fixes if an object was recreated with the same id via AJAX or DOM.
10135      * Shorthand of {@link Roo.Element#get}
10136      * @param {String/HTMLElement/Element} el The id of the node, a DOM Node or an existing Element.
10137      * @return {Element} The Element object
10138      * @member Roo
10139      * @method get
10140      */
10141     Roo.get = El.get;
10142     /**
10143      * Gets the globally shared flyweight Element, with the passed node as the active element. Do not store a reference to this element -
10144      * the dom node can be overwritten by other code.
10145      * Shorthand of {@link Roo.Element#fly}
10146      * @param {String/HTMLElement} el The dom node or id
10147      * @param {String} named (optional) Allows for creation of named reusable flyweights to
10148      *                                  prevent conflicts (e.g. internally Roo uses "_internal")
10149      * @static
10150      * @return {Element} The shared Element object
10151      * @member Roo
10152      * @method fly
10153      */
10154     Roo.fly = El.fly;
10155
10156     // speedy lookup for elements never to box adjust
10157     var noBoxAdjust = Roo.isStrict ? {
10158         select:1
10159     } : {
10160         input:1, select:1, textarea:1
10161     };
10162     if(Roo.isIE || Roo.isGecko){
10163         noBoxAdjust['button'] = 1;
10164     }
10165
10166
10167     Roo.EventManager.on(window, 'unload', function(){
10168         delete El.cache;
10169         delete El._flyweights;
10170     });
10171 })();
10172
10173
10174
10175
10176 if(Roo.DomQuery){
10177     Roo.Element.selectorFunction = Roo.DomQuery.select;
10178 }
10179
10180 Roo.Element.select = function(selector, unique, root){
10181     var els;
10182     if(typeof selector == "string"){
10183         els = Roo.Element.selectorFunction(selector, root);
10184     }else if(selector.length !== undefined){
10185         els = selector;
10186     }else{
10187         throw "Invalid selector";
10188     }
10189     if(unique === true){
10190         return new Roo.CompositeElement(els);
10191     }else{
10192         return new Roo.CompositeElementLite(els);
10193     }
10194 };
10195 /**
10196  * Selects elements based on the passed CSS selector to enable working on them as 1.
10197  * @param {String/Array} selector The CSS selector or an array of elements
10198  * @param {Boolean} unique (optional) true to create a unique Roo.Element for each element (defaults to a shared flyweight object)
10199  * @param {HTMLElement/String} root (optional) The root element of the query or id of the root
10200  * @return {CompositeElementLite/CompositeElement}
10201  * @member Roo
10202  * @method select
10203  */
10204 Roo.select = Roo.Element.select;
10205
10206
10207
10208
10209
10210
10211
10212
10213
10214
10215
10216
10217
10218
10219 /*
10220  * Based on:
10221  * Ext JS Library 1.1.1
10222  * Copyright(c) 2006-2007, Ext JS, LLC.
10223  *
10224  * Originally Released Under LGPL - original licence link has changed is not relivant.
10225  *
10226  * Fork - LGPL
10227  * <script type="text/javascript">
10228  */
10229
10230
10231
10232 //Notifies Element that fx methods are available
10233 Roo.enableFx = true;
10234
10235 /**
10236  * @class Roo.Fx
10237  * <p>A class to provide basic animation and visual effects support.  <b>Note:</b> This class is automatically applied
10238  * to the {@link Roo.Element} interface when included, so all effects calls should be performed via Element.
10239  * Conversely, since the effects are not actually defined in Element, Roo.Fx <b>must</b> be included in order for the 
10240  * Element effects to work.</p><br/>
10241  *
10242  * <p>It is important to note that although the Fx methods and many non-Fx Element methods support "method chaining" in that
10243  * they return the Element object itself as the method return value, it is not always possible to mix the two in a single
10244  * method chain.  The Fx methods use an internal effects queue so that each effect can be properly timed and sequenced.
10245  * Non-Fx methods, on the other hand, have no such internal queueing and will always execute immediately.  For this reason,
10246  * while it may be possible to mix certain Fx and non-Fx method calls in a single chain, it may not always provide the
10247  * expected results and should be done with care.</p><br/>
10248  *
10249  * <p>Motion effects support 8-way anchoring, meaning that you can choose one of 8 different anchor points on the Element
10250  * that will serve as either the start or end point of the animation.  Following are all of the supported anchor positions:</p>
10251 <pre>
10252 Value  Description
10253 -----  -----------------------------
10254 tl     The top left corner
10255 t      The center of the top edge
10256 tr     The top right corner
10257 l      The center of the left edge
10258 r      The center of the right edge
10259 bl     The bottom left corner
10260 b      The center of the bottom edge
10261 br     The bottom right corner
10262 </pre>
10263  * <b>Although some Fx methods accept specific custom config parameters, the ones shown in the Config Options section
10264  * below are common options that can be passed to any Fx method.</b>
10265  * @cfg {Function} callback A function called when the effect is finished
10266  * @cfg {Object} scope The scope of the effect function
10267  * @cfg {String} easing A valid Easing value for the effect
10268  * @cfg {String} afterCls A css class to apply after the effect
10269  * @cfg {Number} duration The length of time (in seconds) that the effect should last
10270  * @cfg {Boolean} remove Whether the Element should be removed from the DOM and destroyed after the effect finishes
10271  * @cfg {Boolean} useDisplay Whether to use the <i>display</i> CSS property instead of <i>visibility</i> when hiding Elements (only applies to 
10272  * effects that end with the element being visually hidden, ignored otherwise)
10273  * @cfg {String/Object/Function} afterStyle A style specification string, e.g. "width:100px", or an object in the form {width:"100px"}, or
10274  * a function which returns such a specification that will be applied to the Element after the effect finishes
10275  * @cfg {Boolean} block Whether the effect should block other effects from queueing while it runs
10276  * @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
10277  * @cfg {Boolean} stopFx Whether subsequent effects should be stopped and removed after the current effect finishes
10278  */
10279 Roo.Fx = {
10280         /**
10281          * Slides the element into view.  An anchor point can be optionally passed to set the point of
10282          * origin for the slide effect.  This function automatically handles wrapping the element with
10283          * a fixed-size container if needed.  See the Fx class overview for valid anchor point options.
10284          * Usage:
10285          *<pre><code>
10286 // default: slide the element in from the top
10287 el.slideIn();
10288
10289 // custom: slide the element in from the right with a 2-second duration
10290 el.slideIn('r', { duration: 2 });
10291
10292 // common config options shown with default values
10293 el.slideIn('t', {
10294     easing: 'easeOut',
10295     duration: .5
10296 });
10297 </code></pre>
10298          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to top: 't')
10299          * @param {Object} options (optional) Object literal with any of the Fx config options
10300          * @return {Roo.Element} The Element
10301          */
10302     slideIn : function(anchor, o){
10303         var el = this.getFxEl();
10304         o = o || {};
10305
10306         el.queueFx(o, function(){
10307
10308             anchor = anchor || "t";
10309
10310             // fix display to visibility
10311             this.fixDisplay();
10312
10313             // restore values after effect
10314             var r = this.getFxRestore();
10315             var b = this.getBox();
10316             // fixed size for slide
10317             this.setSize(b);
10318
10319             // wrap if needed
10320             var wrap = this.fxWrap(r.pos, o, "hidden");
10321
10322             var st = this.dom.style;
10323             st.visibility = "visible";
10324             st.position = "absolute";
10325
10326             // clear out temp styles after slide and unwrap
10327             var after = function(){
10328                 el.fxUnwrap(wrap, r.pos, o);
10329                 st.width = r.width;
10330                 st.height = r.height;
10331                 el.afterFx(o);
10332             };
10333             // time to calc the positions
10334             var a, pt = {to: [b.x, b.y]}, bw = {to: b.width}, bh = {to: b.height};
10335
10336             switch(anchor.toLowerCase()){
10337                 case "t":
10338                     wrap.setSize(b.width, 0);
10339                     st.left = st.bottom = "0";
10340                     a = {height: bh};
10341                 break;
10342                 case "l":
10343                     wrap.setSize(0, b.height);
10344                     st.right = st.top = "0";
10345                     a = {width: bw};
10346                 break;
10347                 case "r":
10348                     wrap.setSize(0, b.height);
10349                     wrap.setX(b.right);
10350                     st.left = st.top = "0";
10351                     a = {width: bw, points: pt};
10352                 break;
10353                 case "b":
10354                     wrap.setSize(b.width, 0);
10355                     wrap.setY(b.bottom);
10356                     st.left = st.top = "0";
10357                     a = {height: bh, points: pt};
10358                 break;
10359                 case "tl":
10360                     wrap.setSize(0, 0);
10361                     st.right = st.bottom = "0";
10362                     a = {width: bw, height: bh};
10363                 break;
10364                 case "bl":
10365                     wrap.setSize(0, 0);
10366                     wrap.setY(b.y+b.height);
10367                     st.right = st.top = "0";
10368                     a = {width: bw, height: bh, points: pt};
10369                 break;
10370                 case "br":
10371                     wrap.setSize(0, 0);
10372                     wrap.setXY([b.right, b.bottom]);
10373                     st.left = st.top = "0";
10374                     a = {width: bw, height: bh, points: pt};
10375                 break;
10376                 case "tr":
10377                     wrap.setSize(0, 0);
10378                     wrap.setX(b.x+b.width);
10379                     st.left = st.bottom = "0";
10380                     a = {width: bw, height: bh, points: pt};
10381                 break;
10382             }
10383             this.dom.style.visibility = "visible";
10384             wrap.show();
10385
10386             arguments.callee.anim = wrap.fxanim(a,
10387                 o,
10388                 'motion',
10389                 .5,
10390                 'easeOut', after);
10391         });
10392         return this;
10393     },
10394     
10395         /**
10396          * Slides the element out of view.  An anchor point can be optionally passed to set the end point
10397          * for the slide effect.  When the effect is completed, the element will be hidden (visibility = 
10398          * 'hidden') but block elements will still take up space in the document.  The element must be removed
10399          * from the DOM using the 'remove' config option if desired.  This function automatically handles 
10400          * wrapping the element with a fixed-size container if needed.  See the Fx class overview for valid anchor point options.
10401          * Usage:
10402          *<pre><code>
10403 // default: slide the element out to the top
10404 el.slideOut();
10405
10406 // custom: slide the element out to the right with a 2-second duration
10407 el.slideOut('r', { duration: 2 });
10408
10409 // common config options shown with default values
10410 el.slideOut('t', {
10411     easing: 'easeOut',
10412     duration: .5,
10413     remove: false,
10414     useDisplay: false
10415 });
10416 </code></pre>
10417          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to top: 't')
10418          * @param {Object} options (optional) Object literal with any of the Fx config options
10419          * @return {Roo.Element} The Element
10420          */
10421     slideOut : function(anchor, o){
10422         var el = this.getFxEl();
10423         o = o || {};
10424
10425         el.queueFx(o, function(){
10426
10427             anchor = anchor || "t";
10428
10429             // restore values after effect
10430             var r = this.getFxRestore();
10431             
10432             var b = this.getBox();
10433             // fixed size for slide
10434             this.setSize(b);
10435
10436             // wrap if needed
10437             var wrap = this.fxWrap(r.pos, o, "visible");
10438
10439             var st = this.dom.style;
10440             st.visibility = "visible";
10441             st.position = "absolute";
10442
10443             wrap.setSize(b);
10444
10445             var after = function(){
10446                 if(o.useDisplay){
10447                     el.setDisplayed(false);
10448                 }else{
10449                     el.hide();
10450                 }
10451
10452                 el.fxUnwrap(wrap, r.pos, o);
10453
10454                 st.width = r.width;
10455                 st.height = r.height;
10456
10457                 el.afterFx(o);
10458             };
10459
10460             var a, zero = {to: 0};
10461             switch(anchor.toLowerCase()){
10462                 case "t":
10463                     st.left = st.bottom = "0";
10464                     a = {height: zero};
10465                 break;
10466                 case "l":
10467                     st.right = st.top = "0";
10468                     a = {width: zero};
10469                 break;
10470                 case "r":
10471                     st.left = st.top = "0";
10472                     a = {width: zero, points: {to:[b.right, b.y]}};
10473                 break;
10474                 case "b":
10475                     st.left = st.top = "0";
10476                     a = {height: zero, points: {to:[b.x, b.bottom]}};
10477                 break;
10478                 case "tl":
10479                     st.right = st.bottom = "0";
10480                     a = {width: zero, height: zero};
10481                 break;
10482                 case "bl":
10483                     st.right = st.top = "0";
10484                     a = {width: zero, height: zero, points: {to:[b.x, b.bottom]}};
10485                 break;
10486                 case "br":
10487                     st.left = st.top = "0";
10488                     a = {width: zero, height: zero, points: {to:[b.x+b.width, b.bottom]}};
10489                 break;
10490                 case "tr":
10491                     st.left = st.bottom = "0";
10492                     a = {width: zero, height: zero, points: {to:[b.right, b.y]}};
10493                 break;
10494             }
10495
10496             arguments.callee.anim = wrap.fxanim(a,
10497                 o,
10498                 'motion',
10499                 .5,
10500                 "easeOut", after);
10501         });
10502         return this;
10503     },
10504
10505         /**
10506          * Fades the element out while slowly expanding it in all directions.  When the effect is completed, the 
10507          * element will be hidden (visibility = 'hidden') but block elements will still take up space in the document. 
10508          * The element must be removed from the DOM using the 'remove' config option if desired.
10509          * Usage:
10510          *<pre><code>
10511 // default
10512 el.puff();
10513
10514 // common config options shown with default values
10515 el.puff({
10516     easing: 'easeOut',
10517     duration: .5,
10518     remove: false,
10519     useDisplay: false
10520 });
10521 </code></pre>
10522          * @param {Object} options (optional) Object literal with any of the Fx config options
10523          * @return {Roo.Element} The Element
10524          */
10525     puff : function(o){
10526         var el = this.getFxEl();
10527         o = o || {};
10528
10529         el.queueFx(o, function(){
10530             this.clearOpacity();
10531             this.show();
10532
10533             // restore values after effect
10534             var r = this.getFxRestore();
10535             var st = this.dom.style;
10536
10537             var after = function(){
10538                 if(o.useDisplay){
10539                     el.setDisplayed(false);
10540                 }else{
10541                     el.hide();
10542                 }
10543
10544                 el.clearOpacity();
10545
10546                 el.setPositioning(r.pos);
10547                 st.width = r.width;
10548                 st.height = r.height;
10549                 st.fontSize = '';
10550                 el.afterFx(o);
10551             };
10552
10553             var width = this.getWidth();
10554             var height = this.getHeight();
10555
10556             arguments.callee.anim = this.fxanim({
10557                     width : {to: this.adjustWidth(width * 2)},
10558                     height : {to: this.adjustHeight(height * 2)},
10559                     points : {by: [-(width * .5), -(height * .5)]},
10560                     opacity : {to: 0},
10561                     fontSize: {to:200, unit: "%"}
10562                 },
10563                 o,
10564                 'motion',
10565                 .5,
10566                 "easeOut", after);
10567         });
10568         return this;
10569     },
10570
10571         /**
10572          * Blinks the element as if it was clicked and then collapses on its center (similar to switching off a television).
10573          * When the effect is completed, the element will be hidden (visibility = 'hidden') but block elements will still 
10574          * take up space in the document. The element must be removed from the DOM using the 'remove' config option if desired.
10575          * Usage:
10576          *<pre><code>
10577 // default
10578 el.switchOff();
10579
10580 // all config options shown with default values
10581 el.switchOff({
10582     easing: 'easeIn',
10583     duration: .3,
10584     remove: false,
10585     useDisplay: false
10586 });
10587 </code></pre>
10588          * @param {Object} options (optional) Object literal with any of the Fx config options
10589          * @return {Roo.Element} The Element
10590          */
10591     switchOff : function(o){
10592         var el = this.getFxEl();
10593         o = o || {};
10594
10595         el.queueFx(o, function(){
10596             this.clearOpacity();
10597             this.clip();
10598
10599             // restore values after effect
10600             var r = this.getFxRestore();
10601             var st = this.dom.style;
10602
10603             var after = function(){
10604                 if(o.useDisplay){
10605                     el.setDisplayed(false);
10606                 }else{
10607                     el.hide();
10608                 }
10609
10610                 el.clearOpacity();
10611                 el.setPositioning(r.pos);
10612                 st.width = r.width;
10613                 st.height = r.height;
10614
10615                 el.afterFx(o);
10616             };
10617
10618             this.fxanim({opacity:{to:0.3}}, null, null, .1, null, function(){
10619                 this.clearOpacity();
10620                 (function(){
10621                     this.fxanim({
10622                         height:{to:1},
10623                         points:{by:[0, this.getHeight() * .5]}
10624                     }, o, 'motion', 0.3, 'easeIn', after);
10625                 }).defer(100, this);
10626             });
10627         });
10628         return this;
10629     },
10630
10631     /**
10632      * Highlights the Element by setting a color (applies to the background-color by default, but can be
10633      * changed using the "attr" config option) and then fading back to the original color. If no original
10634      * color is available, you should provide the "endColor" config option which will be cleared after the animation.
10635      * Usage:
10636 <pre><code>
10637 // default: highlight background to yellow
10638 el.highlight();
10639
10640 // custom: highlight foreground text to blue for 2 seconds
10641 el.highlight("0000ff", { attr: 'color', duration: 2 });
10642
10643 // common config options shown with default values
10644 el.highlight("ffff9c", {
10645     attr: "background-color", //can be any valid CSS property (attribute) that supports a color value
10646     endColor: (current color) or "ffffff",
10647     easing: 'easeIn',
10648     duration: 1
10649 });
10650 </code></pre>
10651      * @param {String} color (optional) The highlight color. Should be a 6 char hex color without the leading # (defaults to yellow: 'ffff9c')
10652      * @param {Object} options (optional) Object literal with any of the Fx config options
10653      * @return {Roo.Element} The Element
10654      */ 
10655     highlight : function(color, o){
10656         var el = this.getFxEl();
10657         o = o || {};
10658
10659         el.queueFx(o, function(){
10660             color = color || "ffff9c";
10661             attr = o.attr || "backgroundColor";
10662
10663             this.clearOpacity();
10664             this.show();
10665
10666             var origColor = this.getColor(attr);
10667             var restoreColor = this.dom.style[attr];
10668             endColor = (o.endColor || origColor) || "ffffff";
10669
10670             var after = function(){
10671                 el.dom.style[attr] = restoreColor;
10672                 el.afterFx(o);
10673             };
10674
10675             var a = {};
10676             a[attr] = {from: color, to: endColor};
10677             arguments.callee.anim = this.fxanim(a,
10678                 o,
10679                 'color',
10680                 1,
10681                 'easeIn', after);
10682         });
10683         return this;
10684     },
10685
10686    /**
10687     * Shows a ripple of exploding, attenuating borders to draw attention to an Element.
10688     * Usage:
10689 <pre><code>
10690 // default: a single light blue ripple
10691 el.frame();
10692
10693 // custom: 3 red ripples lasting 3 seconds total
10694 el.frame("ff0000", 3, { duration: 3 });
10695
10696 // common config options shown with default values
10697 el.frame("C3DAF9", 1, {
10698     duration: 1 //duration of entire animation (not each individual ripple)
10699     // Note: Easing is not configurable and will be ignored if included
10700 });
10701 </code></pre>
10702     * @param {String} color (optional) The color of the border.  Should be a 6 char hex color without the leading # (defaults to light blue: 'C3DAF9').
10703     * @param {Number} count (optional) The number of ripples to display (defaults to 1)
10704     * @param {Object} options (optional) Object literal with any of the Fx config options
10705     * @return {Roo.Element} The Element
10706     */
10707     frame : function(color, count, o){
10708         var el = this.getFxEl();
10709         o = o || {};
10710
10711         el.queueFx(o, function(){
10712             color = color || "#C3DAF9";
10713             if(color.length == 6){
10714                 color = "#" + color;
10715             }
10716             count = count || 1;
10717             duration = o.duration || 1;
10718             this.show();
10719
10720             var b = this.getBox();
10721             var animFn = function(){
10722                 var proxy = this.createProxy({
10723
10724                      style:{
10725                         visbility:"hidden",
10726                         position:"absolute",
10727                         "z-index":"35000", // yee haw
10728                         border:"0px solid " + color
10729                      }
10730                   });
10731                 var scale = Roo.isBorderBox ? 2 : 1;
10732                 proxy.animate({
10733                     top:{from:b.y, to:b.y - 20},
10734                     left:{from:b.x, to:b.x - 20},
10735                     borderWidth:{from:0, to:10},
10736                     opacity:{from:1, to:0},
10737                     height:{from:b.height, to:(b.height + (20*scale))},
10738                     width:{from:b.width, to:(b.width + (20*scale))}
10739                 }, duration, function(){
10740                     proxy.remove();
10741                 });
10742                 if(--count > 0){
10743                      animFn.defer((duration/2)*1000, this);
10744                 }else{
10745                     el.afterFx(o);
10746                 }
10747             };
10748             animFn.call(this);
10749         });
10750         return this;
10751     },
10752
10753    /**
10754     * Creates a pause before any subsequent queued effects begin.  If there are
10755     * no effects queued after the pause it will have no effect.
10756     * Usage:
10757 <pre><code>
10758 el.pause(1);
10759 </code></pre>
10760     * @param {Number} seconds The length of time to pause (in seconds)
10761     * @return {Roo.Element} The Element
10762     */
10763     pause : function(seconds){
10764         var el = this.getFxEl();
10765         var o = {};
10766
10767         el.queueFx(o, function(){
10768             setTimeout(function(){
10769                 el.afterFx(o);
10770             }, seconds * 1000);
10771         });
10772         return this;
10773     },
10774
10775    /**
10776     * Fade an element in (from transparent to opaque).  The ending opacity can be specified
10777     * using the "endOpacity" config option.
10778     * Usage:
10779 <pre><code>
10780 // default: fade in from opacity 0 to 100%
10781 el.fadeIn();
10782
10783 // custom: fade in from opacity 0 to 75% over 2 seconds
10784 el.fadeIn({ endOpacity: .75, duration: 2});
10785
10786 // common config options shown with default values
10787 el.fadeIn({
10788     endOpacity: 1, //can be any value between 0 and 1 (e.g. .5)
10789     easing: 'easeOut',
10790     duration: .5
10791 });
10792 </code></pre>
10793     * @param {Object} options (optional) Object literal with any of the Fx config options
10794     * @return {Roo.Element} The Element
10795     */
10796     fadeIn : function(o){
10797         var el = this.getFxEl();
10798         o = o || {};
10799         el.queueFx(o, function(){
10800             this.setOpacity(0);
10801             this.fixDisplay();
10802             this.dom.style.visibility = 'visible';
10803             var to = o.endOpacity || 1;
10804             arguments.callee.anim = this.fxanim({opacity:{to:to}},
10805                 o, null, .5, "easeOut", function(){
10806                 if(to == 1){
10807                     this.clearOpacity();
10808                 }
10809                 el.afterFx(o);
10810             });
10811         });
10812         return this;
10813     },
10814
10815    /**
10816     * Fade an element out (from opaque to transparent).  The ending opacity can be specified
10817     * using the "endOpacity" config option.
10818     * Usage:
10819 <pre><code>
10820 // default: fade out from the element's current opacity to 0
10821 el.fadeOut();
10822
10823 // custom: fade out from the element's current opacity to 25% over 2 seconds
10824 el.fadeOut({ endOpacity: .25, duration: 2});
10825
10826 // common config options shown with default values
10827 el.fadeOut({
10828     endOpacity: 0, //can be any value between 0 and 1 (e.g. .5)
10829     easing: 'easeOut',
10830     duration: .5
10831     remove: false,
10832     useDisplay: false
10833 });
10834 </code></pre>
10835     * @param {Object} options (optional) Object literal with any of the Fx config options
10836     * @return {Roo.Element} The Element
10837     */
10838     fadeOut : function(o){
10839         var el = this.getFxEl();
10840         o = o || {};
10841         el.queueFx(o, function(){
10842             arguments.callee.anim = this.fxanim({opacity:{to:o.endOpacity || 0}},
10843                 o, null, .5, "easeOut", function(){
10844                 if(this.visibilityMode == Roo.Element.DISPLAY || o.useDisplay){
10845                      this.dom.style.display = "none";
10846                 }else{
10847                      this.dom.style.visibility = "hidden";
10848                 }
10849                 this.clearOpacity();
10850                 el.afterFx(o);
10851             });
10852         });
10853         return this;
10854     },
10855
10856    /**
10857     * Animates the transition of an element's dimensions from a starting height/width
10858     * to an ending height/width.
10859     * Usage:
10860 <pre><code>
10861 // change height and width to 100x100 pixels
10862 el.scale(100, 100);
10863
10864 // common config options shown with default values.  The height and width will default to
10865 // the element's existing values if passed as null.
10866 el.scale(
10867     [element's width],
10868     [element's height], {
10869     easing: 'easeOut',
10870     duration: .35
10871 });
10872 </code></pre>
10873     * @param {Number} width  The new width (pass undefined to keep the original width)
10874     * @param {Number} height  The new height (pass undefined to keep the original height)
10875     * @param {Object} options (optional) Object literal with any of the Fx config options
10876     * @return {Roo.Element} The Element
10877     */
10878     scale : function(w, h, o){
10879         this.shift(Roo.apply({}, o, {
10880             width: w,
10881             height: h
10882         }));
10883         return this;
10884     },
10885
10886    /**
10887     * Animates the transition of any combination of an element's dimensions, xy position and/or opacity.
10888     * Any of these properties not specified in the config object will not be changed.  This effect 
10889     * requires that at least one new dimension, position or opacity setting must be passed in on
10890     * the config object in order for the function to have any effect.
10891     * Usage:
10892 <pre><code>
10893 // slide the element horizontally to x position 200 while changing the height and opacity
10894 el.shift({ x: 200, height: 50, opacity: .8 });
10895
10896 // common config options shown with default values.
10897 el.shift({
10898     width: [element's width],
10899     height: [element's height],
10900     x: [element's x position],
10901     y: [element's y position],
10902     opacity: [element's opacity],
10903     easing: 'easeOut',
10904     duration: .35
10905 });
10906 </code></pre>
10907     * @param {Object} options  Object literal with any of the Fx config options
10908     * @return {Roo.Element} The Element
10909     */
10910     shift : function(o){
10911         var el = this.getFxEl();
10912         o = o || {};
10913         el.queueFx(o, function(){
10914             var a = {}, w = o.width, h = o.height, x = o.x, y = o.y,  op = o.opacity;
10915             if(w !== undefined){
10916                 a.width = {to: this.adjustWidth(w)};
10917             }
10918             if(h !== undefined){
10919                 a.height = {to: this.adjustHeight(h)};
10920             }
10921             if(x !== undefined || y !== undefined){
10922                 a.points = {to: [
10923                     x !== undefined ? x : this.getX(),
10924                     y !== undefined ? y : this.getY()
10925                 ]};
10926             }
10927             if(op !== undefined){
10928                 a.opacity = {to: op};
10929             }
10930             if(o.xy !== undefined){
10931                 a.points = {to: o.xy};
10932             }
10933             arguments.callee.anim = this.fxanim(a,
10934                 o, 'motion', .35, "easeOut", function(){
10935                 el.afterFx(o);
10936             });
10937         });
10938         return this;
10939     },
10940
10941         /**
10942          * Slides the element while fading it out of view.  An anchor point can be optionally passed to set the 
10943          * ending point of the effect.
10944          * Usage:
10945          *<pre><code>
10946 // default: slide the element downward while fading out
10947 el.ghost();
10948
10949 // custom: slide the element out to the right with a 2-second duration
10950 el.ghost('r', { duration: 2 });
10951
10952 // common config options shown with default values
10953 el.ghost('b', {
10954     easing: 'easeOut',
10955     duration: .5
10956     remove: false,
10957     useDisplay: false
10958 });
10959 </code></pre>
10960          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to bottom: 'b')
10961          * @param {Object} options (optional) Object literal with any of the Fx config options
10962          * @return {Roo.Element} The Element
10963          */
10964     ghost : function(anchor, o){
10965         var el = this.getFxEl();
10966         o = o || {};
10967
10968         el.queueFx(o, function(){
10969             anchor = anchor || "b";
10970
10971             // restore values after effect
10972             var r = this.getFxRestore();
10973             var w = this.getWidth(),
10974                 h = this.getHeight();
10975
10976             var st = this.dom.style;
10977
10978             var after = function(){
10979                 if(o.useDisplay){
10980                     el.setDisplayed(false);
10981                 }else{
10982                     el.hide();
10983                 }
10984
10985                 el.clearOpacity();
10986                 el.setPositioning(r.pos);
10987                 st.width = r.width;
10988                 st.height = r.height;
10989
10990                 el.afterFx(o);
10991             };
10992
10993             var a = {opacity: {to: 0}, points: {}}, pt = a.points;
10994             switch(anchor.toLowerCase()){
10995                 case "t":
10996                     pt.by = [0, -h];
10997                 break;
10998                 case "l":
10999                     pt.by = [-w, 0];
11000                 break;
11001                 case "r":
11002                     pt.by = [w, 0];
11003                 break;
11004                 case "b":
11005                     pt.by = [0, h];
11006                 break;
11007                 case "tl":
11008                     pt.by = [-w, -h];
11009                 break;
11010                 case "bl":
11011                     pt.by = [-w, h];
11012                 break;
11013                 case "br":
11014                     pt.by = [w, h];
11015                 break;
11016                 case "tr":
11017                     pt.by = [w, -h];
11018                 break;
11019             }
11020
11021             arguments.callee.anim = this.fxanim(a,
11022                 o,
11023                 'motion',
11024                 .5,
11025                 "easeOut", after);
11026         });
11027         return this;
11028     },
11029
11030         /**
11031          * Ensures that all effects queued after syncFx is called on the element are
11032          * run concurrently.  This is the opposite of {@link #sequenceFx}.
11033          * @return {Roo.Element} The Element
11034          */
11035     syncFx : function(){
11036         this.fxDefaults = Roo.apply(this.fxDefaults || {}, {
11037             block : false,
11038             concurrent : true,
11039             stopFx : false
11040         });
11041         return this;
11042     },
11043
11044         /**
11045          * Ensures that all effects queued after sequenceFx is called on the element are
11046          * run in sequence.  This is the opposite of {@link #syncFx}.
11047          * @return {Roo.Element} The Element
11048          */
11049     sequenceFx : function(){
11050         this.fxDefaults = Roo.apply(this.fxDefaults || {}, {
11051             block : false,
11052             concurrent : false,
11053             stopFx : false
11054         });
11055         return this;
11056     },
11057
11058         /* @private */
11059     nextFx : function(){
11060         var ef = this.fxQueue[0];
11061         if(ef){
11062             ef.call(this);
11063         }
11064     },
11065
11066         /**
11067          * Returns true if the element has any effects actively running or queued, else returns false.
11068          * @return {Boolean} True if element has active effects, else false
11069          */
11070     hasActiveFx : function(){
11071         return this.fxQueue && this.fxQueue[0];
11072     },
11073
11074         /**
11075          * Stops any running effects and clears the element's internal effects queue if it contains
11076          * any additional effects that haven't started yet.
11077          * @return {Roo.Element} The Element
11078          */
11079     stopFx : function(){
11080         if(this.hasActiveFx()){
11081             var cur = this.fxQueue[0];
11082             if(cur && cur.anim && cur.anim.isAnimated()){
11083                 this.fxQueue = [cur]; // clear out others
11084                 cur.anim.stop(true);
11085             }
11086         }
11087         return this;
11088     },
11089
11090         /* @private */
11091     beforeFx : function(o){
11092         if(this.hasActiveFx() && !o.concurrent){
11093            if(o.stopFx){
11094                this.stopFx();
11095                return true;
11096            }
11097            return false;
11098         }
11099         return true;
11100     },
11101
11102         /**
11103          * Returns true if the element is currently blocking so that no other effect can be queued
11104          * until this effect is finished, else returns false if blocking is not set.  This is commonly
11105          * used to ensure that an effect initiated by a user action runs to completion prior to the
11106          * same effect being restarted (e.g., firing only one effect even if the user clicks several times).
11107          * @return {Boolean} True if blocking, else false
11108          */
11109     hasFxBlock : function(){
11110         var q = this.fxQueue;
11111         return q && q[0] && q[0].block;
11112     },
11113
11114         /* @private */
11115     queueFx : function(o, fn){
11116         if(!this.fxQueue){
11117             this.fxQueue = [];
11118         }
11119         if(!this.hasFxBlock()){
11120             Roo.applyIf(o, this.fxDefaults);
11121             if(!o.concurrent){
11122                 var run = this.beforeFx(o);
11123                 fn.block = o.block;
11124                 this.fxQueue.push(fn);
11125                 if(run){
11126                     this.nextFx();
11127                 }
11128             }else{
11129                 fn.call(this);
11130             }
11131         }
11132         return this;
11133     },
11134
11135         /* @private */
11136     fxWrap : function(pos, o, vis){
11137         var wrap;
11138         if(!o.wrap || !(wrap = Roo.get(o.wrap))){
11139             var wrapXY;
11140             if(o.fixPosition){
11141                 wrapXY = this.getXY();
11142             }
11143             var div = document.createElement("div");
11144             div.style.visibility = vis;
11145             wrap = Roo.get(this.dom.parentNode.insertBefore(div, this.dom));
11146             wrap.setPositioning(pos);
11147             if(wrap.getStyle("position") == "static"){
11148                 wrap.position("relative");
11149             }
11150             this.clearPositioning('auto');
11151             wrap.clip();
11152             wrap.dom.appendChild(this.dom);
11153             if(wrapXY){
11154                 wrap.setXY(wrapXY);
11155             }
11156         }
11157         return wrap;
11158     },
11159
11160         /* @private */
11161     fxUnwrap : function(wrap, pos, o){
11162         this.clearPositioning();
11163         this.setPositioning(pos);
11164         if(!o.wrap){
11165             wrap.dom.parentNode.insertBefore(this.dom, wrap.dom);
11166             wrap.remove();
11167         }
11168     },
11169
11170         /* @private */
11171     getFxRestore : function(){
11172         var st = this.dom.style;
11173         return {pos: this.getPositioning(), width: st.width, height : st.height};
11174     },
11175
11176         /* @private */
11177     afterFx : function(o){
11178         if(o.afterStyle){
11179             this.applyStyles(o.afterStyle);
11180         }
11181         if(o.afterCls){
11182             this.addClass(o.afterCls);
11183         }
11184         if(o.remove === true){
11185             this.remove();
11186         }
11187         Roo.callback(o.callback, o.scope, [this]);
11188         if(!o.concurrent){
11189             this.fxQueue.shift();
11190             this.nextFx();
11191         }
11192     },
11193
11194         /* @private */
11195     getFxEl : function(){ // support for composite element fx
11196         return Roo.get(this.dom);
11197     },
11198
11199         /* @private */
11200     fxanim : function(args, opt, animType, defaultDur, defaultEase, cb){
11201         animType = animType || 'run';
11202         opt = opt || {};
11203         var anim = Roo.lib.Anim[animType](
11204             this.dom, args,
11205             (opt.duration || defaultDur) || .35,
11206             (opt.easing || defaultEase) || 'easeOut',
11207             function(){
11208                 Roo.callback(cb, this);
11209             },
11210             this
11211         );
11212         opt.anim = anim;
11213         return anim;
11214     }
11215 };
11216
11217 // backwords compat
11218 Roo.Fx.resize = Roo.Fx.scale;
11219
11220 //When included, Roo.Fx is automatically applied to Element so that all basic
11221 //effects are available directly via the Element API
11222 Roo.apply(Roo.Element.prototype, Roo.Fx);/*
11223  * Based on:
11224  * Ext JS Library 1.1.1
11225  * Copyright(c) 2006-2007, Ext JS, LLC.
11226  *
11227  * Originally Released Under LGPL - original licence link has changed is not relivant.
11228  *
11229  * Fork - LGPL
11230  * <script type="text/javascript">
11231  */
11232
11233
11234 /**
11235  * @class Roo.CompositeElement
11236  * Standard composite class. Creates a Roo.Element for every element in the collection.
11237  * <br><br>
11238  * <b>NOTE: Although they are not listed, this class supports all of the set/update methods of Roo.Element. All Roo.Element
11239  * actions will be performed on all the elements in this collection.</b>
11240  * <br><br>
11241  * All methods return <i>this</i> and can be chained.
11242  <pre><code>
11243  var els = Roo.select("#some-el div.some-class", true);
11244  // or select directly from an existing element
11245  var el = Roo.get('some-el');
11246  el.select('div.some-class', true);
11247
11248  els.setWidth(100); // all elements become 100 width
11249  els.hide(true); // all elements fade out and hide
11250  // or
11251  els.setWidth(100).hide(true);
11252  </code></pre>
11253  */
11254 Roo.CompositeElement = function(els){
11255     this.elements = [];
11256     this.addElements(els);
11257 };
11258 Roo.CompositeElement.prototype = {
11259     isComposite: true,
11260     addElements : function(els){
11261         if(!els) {
11262             return this;
11263         }
11264         if(typeof els == "string"){
11265             els = Roo.Element.selectorFunction(els);
11266         }
11267         var yels = this.elements;
11268         var index = yels.length-1;
11269         for(var i = 0, len = els.length; i < len; i++) {
11270                 yels[++index] = Roo.get(els[i]);
11271         }
11272         return this;
11273     },
11274
11275     /**
11276     * Clears this composite and adds the elements returned by the passed selector.
11277     * @param {String/Array} els A string CSS selector, an array of elements or an element
11278     * @return {CompositeElement} this
11279     */
11280     fill : function(els){
11281         this.elements = [];
11282         this.add(els);
11283         return this;
11284     },
11285
11286     /**
11287     * Filters this composite to only elements that match the passed selector.
11288     * @param {String} selector A string CSS selector
11289     * @param {Boolean} inverse return inverse filter (not matches)
11290     * @return {CompositeElement} this
11291     */
11292     filter : function(selector, inverse){
11293         var els = [];
11294         inverse = inverse || false;
11295         this.each(function(el){
11296             var match = inverse ? !el.is(selector) : el.is(selector);
11297             if(match){
11298                 els[els.length] = el.dom;
11299             }
11300         });
11301         this.fill(els);
11302         return this;
11303     },
11304
11305     invoke : function(fn, args){
11306         var els = this.elements;
11307         for(var i = 0, len = els.length; i < len; i++) {
11308                 Roo.Element.prototype[fn].apply(els[i], args);
11309         }
11310         return this;
11311     },
11312     /**
11313     * Adds elements to this composite.
11314     * @param {String/Array} els A string CSS selector, an array of elements or an element
11315     * @return {CompositeElement} this
11316     */
11317     add : function(els){
11318         if(typeof els == "string"){
11319             this.addElements(Roo.Element.selectorFunction(els));
11320         }else if(els.length !== undefined){
11321             this.addElements(els);
11322         }else{
11323             this.addElements([els]);
11324         }
11325         return this;
11326     },
11327     /**
11328     * Calls the passed function passing (el, this, index) for each element in this composite.
11329     * @param {Function} fn The function to call
11330     * @param {Object} scope (optional) The <i>this</i> object (defaults to the element)
11331     * @return {CompositeElement} this
11332     */
11333     each : function(fn, scope){
11334         var els = this.elements;
11335         for(var i = 0, len = els.length; i < len; i++){
11336             if(fn.call(scope || els[i], els[i], this, i) === false) {
11337                 break;
11338             }
11339         }
11340         return this;
11341     },
11342
11343     /**
11344      * Returns the Element object at the specified index
11345      * @param {Number} index
11346      * @return {Roo.Element}
11347      */
11348     item : function(index){
11349         return this.elements[index] || null;
11350     },
11351
11352     /**
11353      * Returns the first Element
11354      * @return {Roo.Element}
11355      */
11356     first : function(){
11357         return this.item(0);
11358     },
11359
11360     /**
11361      * Returns the last Element
11362      * @return {Roo.Element}
11363      */
11364     last : function(){
11365         return this.item(this.elements.length-1);
11366     },
11367
11368     /**
11369      * Returns the number of elements in this composite
11370      * @return Number
11371      */
11372     getCount : function(){
11373         return this.elements.length;
11374     },
11375
11376     /**
11377      * Returns true if this composite contains the passed element
11378      * @return Boolean
11379      */
11380     contains : function(el){
11381         return this.indexOf(el) !== -1;
11382     },
11383
11384     /**
11385      * Returns true if this composite contains the passed element
11386      * @return Boolean
11387      */
11388     indexOf : function(el){
11389         return this.elements.indexOf(Roo.get(el));
11390     },
11391
11392
11393     /**
11394     * Removes the specified element(s).
11395     * @param {Mixed} el The id of an element, the Element itself, the index of the element in this composite
11396     * or an array of any of those.
11397     * @param {Boolean} removeDom (optional) True to also remove the element from the document
11398     * @return {CompositeElement} this
11399     */
11400     removeElement : function(el, removeDom){
11401         if(el instanceof Array){
11402             for(var i = 0, len = el.length; i < len; i++){
11403                 this.removeElement(el[i]);
11404             }
11405             return this;
11406         }
11407         var index = typeof el == 'number' ? el : this.indexOf(el);
11408         if(index !== -1){
11409             if(removeDom){
11410                 var d = this.elements[index];
11411                 if(d.dom){
11412                     d.remove();
11413                 }else{
11414                     d.parentNode.removeChild(d);
11415                 }
11416             }
11417             this.elements.splice(index, 1);
11418         }
11419         return this;
11420     },
11421
11422     /**
11423     * Replaces the specified element with the passed element.
11424     * @param {String/HTMLElement/Element/Number} el The id of an element, the Element itself, the index of the element in this composite
11425     * to replace.
11426     * @param {String/HTMLElement/Element} replacement The id of an element or the Element itself.
11427     * @param {Boolean} domReplace (Optional) True to remove and replace the element in the document too.
11428     * @return {CompositeElement} this
11429     */
11430     replaceElement : function(el, replacement, domReplace){
11431         var index = typeof el == 'number' ? el : this.indexOf(el);
11432         if(index !== -1){
11433             if(domReplace){
11434                 this.elements[index].replaceWith(replacement);
11435             }else{
11436                 this.elements.splice(index, 1, Roo.get(replacement))
11437             }
11438         }
11439         return this;
11440     },
11441
11442     /**
11443      * Removes all elements.
11444      */
11445     clear : function(){
11446         this.elements = [];
11447     }
11448 };
11449 (function(){
11450     Roo.CompositeElement.createCall = function(proto, fnName){
11451         if(!proto[fnName]){
11452             proto[fnName] = function(){
11453                 return this.invoke(fnName, arguments);
11454             };
11455         }
11456     };
11457     for(var fnName in Roo.Element.prototype){
11458         if(typeof Roo.Element.prototype[fnName] == "function"){
11459             Roo.CompositeElement.createCall(Roo.CompositeElement.prototype, fnName);
11460         }
11461     };
11462 })();
11463 /*
11464  * Based on:
11465  * Ext JS Library 1.1.1
11466  * Copyright(c) 2006-2007, Ext JS, LLC.
11467  *
11468  * Originally Released Under LGPL - original licence link has changed is not relivant.
11469  *
11470  * Fork - LGPL
11471  * <script type="text/javascript">
11472  */
11473
11474 /**
11475  * @class Roo.CompositeElementLite
11476  * @extends Roo.CompositeElement
11477  * Flyweight composite class. Reuses the same Roo.Element for element operations.
11478  <pre><code>
11479  var els = Roo.select("#some-el div.some-class");
11480  // or select directly from an existing element
11481  var el = Roo.get('some-el');
11482  el.select('div.some-class');
11483
11484  els.setWidth(100); // all elements become 100 width
11485  els.hide(true); // all elements fade out and hide
11486  // or
11487  els.setWidth(100).hide(true);
11488  </code></pre><br><br>
11489  * <b>NOTE: Although they are not listed, this class supports all of the set/update methods of Roo.Element. All Roo.Element
11490  * actions will be performed on all the elements in this collection.</b>
11491  */
11492 Roo.CompositeElementLite = function(els){
11493     Roo.CompositeElementLite.superclass.constructor.call(this, els);
11494     this.el = new Roo.Element.Flyweight();
11495 };
11496 Roo.extend(Roo.CompositeElementLite, Roo.CompositeElement, {
11497     addElements : function(els){
11498         if(els){
11499             if(els instanceof Array){
11500                 this.elements = this.elements.concat(els);
11501             }else{
11502                 var yels = this.elements;
11503                 var index = yels.length-1;
11504                 for(var i = 0, len = els.length; i < len; i++) {
11505                     yels[++index] = els[i];
11506                 }
11507             }
11508         }
11509         return this;
11510     },
11511     invoke : function(fn, args){
11512         var els = this.elements;
11513         var el = this.el;
11514         for(var i = 0, len = els.length; i < len; i++) {
11515             el.dom = els[i];
11516                 Roo.Element.prototype[fn].apply(el, args);
11517         }
11518         return this;
11519     },
11520     /**
11521      * Returns a flyweight Element of the dom element object at the specified index
11522      * @param {Number} index
11523      * @return {Roo.Element}
11524      */
11525     item : function(index){
11526         if(!this.elements[index]){
11527             return null;
11528         }
11529         this.el.dom = this.elements[index];
11530         return this.el;
11531     },
11532
11533     // fixes scope with flyweight
11534     addListener : function(eventName, handler, scope, opt){
11535         var els = this.elements;
11536         for(var i = 0, len = els.length; i < len; i++) {
11537             Roo.EventManager.on(els[i], eventName, handler, scope || els[i], opt);
11538         }
11539         return this;
11540     },
11541
11542     /**
11543     * Calls the passed function passing (el, this, index) for each element in this composite. <b>The element
11544     * passed is the flyweight (shared) Roo.Element instance, so if you require a
11545     * a reference to the dom node, use el.dom.</b>
11546     * @param {Function} fn The function to call
11547     * @param {Object} scope (optional) The <i>this</i> object (defaults to the element)
11548     * @return {CompositeElement} this
11549     */
11550     each : function(fn, scope){
11551         var els = this.elements;
11552         var el = this.el;
11553         for(var i = 0, len = els.length; i < len; i++){
11554             el.dom = els[i];
11555                 if(fn.call(scope || el, el, this, i) === false){
11556                 break;
11557             }
11558         }
11559         return this;
11560     },
11561
11562     indexOf : function(el){
11563         return this.elements.indexOf(Roo.getDom(el));
11564     },
11565
11566     replaceElement : function(el, replacement, domReplace){
11567         var index = typeof el == 'number' ? el : this.indexOf(el);
11568         if(index !== -1){
11569             replacement = Roo.getDom(replacement);
11570             if(domReplace){
11571                 var d = this.elements[index];
11572                 d.parentNode.insertBefore(replacement, d);
11573                 d.parentNode.removeChild(d);
11574             }
11575             this.elements.splice(index, 1, replacement);
11576         }
11577         return this;
11578     }
11579 });
11580 Roo.CompositeElementLite.prototype.on = Roo.CompositeElementLite.prototype.addListener;
11581
11582 /*
11583  * Based on:
11584  * Ext JS Library 1.1.1
11585  * Copyright(c) 2006-2007, Ext JS, LLC.
11586  *
11587  * Originally Released Under LGPL - original licence link has changed is not relivant.
11588  *
11589  * Fork - LGPL
11590  * <script type="text/javascript">
11591  */
11592
11593  
11594
11595 /**
11596  * @class Roo.data.Connection
11597  * @extends Roo.util.Observable
11598  * The class encapsulates a connection to the page's originating domain, allowing requests to be made
11599  * either to a configured URL, or to a URL specified at request time. 
11600  * 
11601  * Requests made by this class are asynchronous, and will return immediately. No data from
11602  * the server will be available to the statement immediately following the {@link #request} call.
11603  * To process returned data, use a callback in the request options object, or an event listener.
11604  * 
11605  * Note: If you are doing a file upload, you will not get a normal response object sent back to
11606  * your callback or event handler.  Since the upload is handled via in IFRAME, there is no XMLHttpRequest.
11607  * The response object is created using the innerHTML of the IFRAME's document as the responseText
11608  * property and, if present, the IFRAME's XML document as the responseXML property.
11609  * 
11610  * This means that a valid XML or HTML document must be returned. If JSON data is required, it is suggested
11611  * that it be placed either inside a &lt;textarea> in an HTML document and retrieved from the responseText
11612  * using a regex, or inside a CDATA section in an XML document and retrieved from the responseXML using
11613  * standard DOM methods.
11614  * @constructor
11615  * @param {Object} config a configuration object.
11616  */
11617 Roo.data.Connection = function(config){
11618     Roo.apply(this, config);
11619     this.addEvents({
11620         /**
11621          * @event beforerequest
11622          * Fires before a network request is made to retrieve a data object.
11623          * @param {Connection} conn This Connection object.
11624          * @param {Object} options The options config object passed to the {@link #request} method.
11625          */
11626         "beforerequest" : true,
11627         /**
11628          * @event requestcomplete
11629          * Fires if the request was successfully completed.
11630          * @param {Connection} conn This Connection object.
11631          * @param {Object} response The XHR object containing the response data.
11632          * See {@link http://www.w3.org/TR/XMLHttpRequest/} for details.
11633          * @param {Object} options The options config object passed to the {@link #request} method.
11634          */
11635         "requestcomplete" : true,
11636         /**
11637          * @event requestexception
11638          * Fires if an error HTTP status was returned from the server.
11639          * See {@link http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html} for details of HTTP status codes.
11640          * @param {Connection} conn This Connection object.
11641          * @param {Object} response The XHR object containing the response data.
11642          * See {@link http://www.w3.org/TR/XMLHttpRequest/} for details.
11643          * @param {Object} options The options config object passed to the {@link #request} method.
11644          */
11645         "requestexception" : true
11646     });
11647     Roo.data.Connection.superclass.constructor.call(this);
11648 };
11649
11650 Roo.extend(Roo.data.Connection, Roo.util.Observable, {
11651     /**
11652      * @cfg {String} url (Optional) The default URL to be used for requests to the server. (defaults to undefined)
11653      */
11654     /**
11655      * @cfg {Object} extraParams (Optional) An object containing properties which are used as
11656      * extra parameters to each request made by this object. (defaults to undefined)
11657      */
11658     /**
11659      * @cfg {Object} defaultHeaders (Optional) An object containing request headers which are added
11660      *  to each request made by this object. (defaults to undefined)
11661      */
11662     /**
11663      * @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)
11664      */
11665     /**
11666      * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
11667      */
11668     timeout : 30000,
11669     /**
11670      * @cfg {Boolean} autoAbort (Optional) Whether this request should abort any pending requests. (defaults to false)
11671      * @type Boolean
11672      */
11673     autoAbort:false,
11674
11675     /**
11676      * @cfg {Boolean} disableCaching (Optional) True to add a unique cache-buster param to GET requests. (defaults to true)
11677      * @type Boolean
11678      */
11679     disableCaching: true,
11680
11681     /**
11682      * Sends an HTTP request to a remote server.
11683      * @param {Object} options An object which may contain the following properties:<ul>
11684      * <li><b>url</b> {String} (Optional) The URL to which to send the request. Defaults to configured URL</li>
11685      * <li><b>params</b> {Object/String/Function} (Optional) An object containing properties which are used as parameters to the
11686      * request, a url encoded string or a function to call to get either.</li>
11687      * <li><b>method</b> {String} (Optional) The HTTP method to use for the request. Defaults to the configured method, or
11688      * if no method was configured, "GET" if no parameters are being sent, and "POST" if parameters are being sent.</li>
11689      * <li><b>callback</b> {Function} (Optional) The function to be called upon receipt of the HTTP response.
11690      * The callback is called regardless of success or failure and is passed the following parameters:<ul>
11691      * <li>options {Object} The parameter to the request call.</li>
11692      * <li>success {Boolean} True if the request succeeded.</li>
11693      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
11694      * </ul></li>
11695      * <li><b>success</b> {Function} (Optional) The function to be called upon success of the request.
11696      * The callback is passed the following parameters:<ul>
11697      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
11698      * <li>options {Object} The parameter to the request call.</li>
11699      * </ul></li>
11700      * <li><b>failure</b> {Function} (Optional) The function to be called upon failure of the request.
11701      * The callback is passed the following parameters:<ul>
11702      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
11703      * <li>options {Object} The parameter to the request call.</li>
11704      * </ul></li>
11705      * <li><b>scope</b> {Object} (Optional) The scope in which to execute the callbacks: The "this" object
11706      * for the callback function. Defaults to the browser window.</li>
11707      * <li><b>form</b> {Object/String} (Optional) A form object or id to pull parameters from.</li>
11708      * <li><b>isUpload</b> {Boolean} (Optional) True if the form object is a file upload (will usually be automatically detected).</li>
11709      * <li><b>headers</b> {Object} (Optional) Request headers to set for the request.</li>
11710      * <li><b>xmlData</b> {Object} (Optional) XML document to use for the post. Note: This will be used instead of
11711      * params for the post data. Any params will be appended to the URL.</li>
11712      * <li><b>disableCaching</b> {Boolean} (Optional) True to add a unique cache-buster param to GET requests.</li>
11713      * </ul>
11714      * @return {Number} transactionId
11715      */
11716     request : function(o){
11717         if(this.fireEvent("beforerequest", this, o) !== false){
11718             var p = o.params;
11719
11720             if(typeof p == "function"){
11721                 p = p.call(o.scope||window, o);
11722             }
11723             if(typeof p == "object"){
11724                 p = Roo.urlEncode(o.params);
11725             }
11726             if(this.extraParams){
11727                 var extras = Roo.urlEncode(this.extraParams);
11728                 p = p ? (p + '&' + extras) : extras;
11729             }
11730
11731             var url = o.url || this.url;
11732             if(typeof url == 'function'){
11733                 url = url.call(o.scope||window, o);
11734             }
11735
11736             if(o.form){
11737                 var form = Roo.getDom(o.form);
11738                 url = url || form.action;
11739
11740                 var enctype = form.getAttribute("enctype");
11741                 
11742                 if (o.formData) {
11743                     return this.doFormDataUpload(o, url);
11744                 }
11745                 
11746                 if(o.isUpload || (enctype && enctype.toLowerCase() == 'multipart/form-data')){
11747                     return this.doFormUpload(o, p, url);
11748                 }
11749                 var f = Roo.lib.Ajax.serializeForm(form);
11750                 p = p ? (p + '&' + f) : f;
11751             }
11752             
11753             if (!o.form && o.formData) {
11754                 o.formData = o.formData === true ? new FormData() : o.formData;
11755                 for (var k in o.params) {
11756                     o.formData.append(k,o.params[k]);
11757                 }
11758                     
11759                 return this.doFormDataUpload(o, url);
11760             }
11761             
11762
11763             var hs = o.headers;
11764             if(this.defaultHeaders){
11765                 hs = Roo.apply(hs || {}, this.defaultHeaders);
11766                 if(!o.headers){
11767                     o.headers = hs;
11768                 }
11769             }
11770
11771             var cb = {
11772                 success: this.handleResponse,
11773                 failure: this.handleFailure,
11774                 scope: this,
11775                 argument: {options: o},
11776                 timeout : o.timeout || this.timeout
11777             };
11778
11779             var method = o.method||this.method||(p ? "POST" : "GET");
11780
11781             if(method == 'GET' && (this.disableCaching && o.disableCaching !== false) || o.disableCaching === true){
11782                 url += (url.indexOf('?') != -1 ? '&' : '?') + '_dc=' + (new Date().getTime());
11783             }
11784
11785             if(typeof o.autoAbort == 'boolean'){ // options gets top priority
11786                 if(o.autoAbort){
11787                     this.abort();
11788                 }
11789             }else if(this.autoAbort !== false){
11790                 this.abort();
11791             }
11792
11793             if((method == 'GET' && p) || o.xmlData){
11794                 url += (url.indexOf('?') != -1 ? '&' : '?') + p;
11795                 p = '';
11796             }
11797             Roo.lib.Ajax.useDefaultHeader = typeof(o.headers) == 'undefined' || typeof(o.headers['Content-Type']) == 'undefined';
11798             this.transId = Roo.lib.Ajax.request(method, url, cb, p, o);
11799             Roo.lib.Ajax.useDefaultHeader == true;
11800             return this.transId;
11801         }else{
11802             Roo.callback(o.callback, o.scope, [o, null, null]);
11803             return null;
11804         }
11805     },
11806
11807     /**
11808      * Determine whether this object has a request outstanding.
11809      * @param {Number} transactionId (Optional) defaults to the last transaction
11810      * @return {Boolean} True if there is an outstanding request.
11811      */
11812     isLoading : function(transId){
11813         if(transId){
11814             return Roo.lib.Ajax.isCallInProgress(transId);
11815         }else{
11816             return this.transId ? true : false;
11817         }
11818     },
11819
11820     /**
11821      * Aborts any outstanding request.
11822      * @param {Number} transactionId (Optional) defaults to the last transaction
11823      */
11824     abort : function(transId){
11825         if(transId || this.isLoading()){
11826             Roo.lib.Ajax.abort(transId || this.transId);
11827         }
11828     },
11829
11830     // private
11831     handleResponse : function(response){
11832         this.transId = false;
11833         var options = response.argument.options;
11834         response.argument = options ? options.argument : null;
11835         this.fireEvent("requestcomplete", this, response, options);
11836         Roo.callback(options.success, options.scope, [response, options]);
11837         Roo.callback(options.callback, options.scope, [options, true, response]);
11838     },
11839
11840     // private
11841     handleFailure : function(response, e){
11842         this.transId = false;
11843         var options = response.argument.options;
11844         response.argument = options ? options.argument : null;
11845         this.fireEvent("requestexception", this, response, options, e);
11846         Roo.callback(options.failure, options.scope, [response, options]);
11847         Roo.callback(options.callback, options.scope, [options, false, response]);
11848     },
11849
11850     // private
11851     doFormUpload : function(o, ps, url){
11852         var id = Roo.id();
11853         var frame = document.createElement('iframe');
11854         frame.id = id;
11855         frame.name = id;
11856         frame.className = 'x-hidden';
11857         if(Roo.isIE){
11858             frame.src = Roo.SSL_SECURE_URL;
11859         }
11860         document.body.appendChild(frame);
11861
11862         if(Roo.isIE){
11863            document.frames[id].name = id;
11864         }
11865
11866         var form = Roo.getDom(o.form);
11867         form.target = id;
11868         form.method = 'POST';
11869         form.enctype = form.encoding = 'multipart/form-data';
11870         if(url){
11871             form.action = url;
11872         }
11873
11874         var hiddens, hd;
11875         if(ps){ // add dynamic params
11876             hiddens = [];
11877             ps = Roo.urlDecode(ps, false);
11878             for(var k in ps){
11879                 if(ps.hasOwnProperty(k)){
11880                     hd = document.createElement('input');
11881                     hd.type = 'hidden';
11882                     hd.name = k;
11883                     hd.value = ps[k];
11884                     form.appendChild(hd);
11885                     hiddens.push(hd);
11886                 }
11887             }
11888         }
11889
11890         function cb(){
11891             var r = {  // bogus response object
11892                 responseText : '',
11893                 responseXML : null
11894             };
11895
11896             r.argument = o ? o.argument : null;
11897
11898             try { //
11899                 var doc;
11900                 if(Roo.isIE){
11901                     doc = frame.contentWindow.document;
11902                 }else {
11903                     doc = (frame.contentDocument || window.frames[id].document);
11904                 }
11905                 if(doc && doc.body){
11906                     r.responseText = doc.body.innerHTML;
11907                 }
11908                 if(doc && doc.XMLDocument){
11909                     r.responseXML = doc.XMLDocument;
11910                 }else {
11911                     r.responseXML = doc;
11912                 }
11913             }
11914             catch(e) {
11915                 // ignore
11916             }
11917
11918             Roo.EventManager.removeListener(frame, 'load', cb, this);
11919
11920             this.fireEvent("requestcomplete", this, r, o);
11921             Roo.callback(o.success, o.scope, [r, o]);
11922             Roo.callback(o.callback, o.scope, [o, true, r]);
11923
11924             setTimeout(function(){document.body.removeChild(frame);}, 100);
11925         }
11926
11927         Roo.EventManager.on(frame, 'load', cb, this);
11928         form.submit();
11929
11930         if(hiddens){ // remove dynamic params
11931             for(var i = 0, len = hiddens.length; i < len; i++){
11932                 form.removeChild(hiddens[i]);
11933             }
11934         }
11935     },
11936     // this is a 'formdata version???'
11937     
11938     
11939     doFormDataUpload : function(o,  url)
11940     {
11941         var formData;
11942         if (o.form) {
11943             var form =  Roo.getDom(o.form);
11944             form.enctype = form.encoding = 'multipart/form-data';
11945             formData = o.formData === true ? new FormData(form) : o.formData;
11946         } else {
11947             formData = o.formData === true ? new FormData() : o.formData;
11948         }
11949         
11950       
11951         var cb = {
11952             success: this.handleResponse,
11953             failure: this.handleFailure,
11954             scope: this,
11955             argument: {options: o},
11956             timeout : o.timeout || this.timeout
11957         };
11958  
11959         if(typeof o.autoAbort == 'boolean'){ // options gets top priority
11960             if(o.autoAbort){
11961                 this.abort();
11962             }
11963         }else if(this.autoAbort !== false){
11964             this.abort();
11965         }
11966
11967         //Roo.lib.Ajax.defaultPostHeader = null;
11968         Roo.lib.Ajax.useDefaultHeader = false;
11969         this.transId = Roo.lib.Ajax.request( "POST", url, cb,  formData, o);
11970         Roo.lib.Ajax.useDefaultHeader = true;
11971  
11972          
11973     }
11974     
11975 });
11976 /*
11977  * Based on:
11978  * Ext JS Library 1.1.1
11979  * Copyright(c) 2006-2007, Ext JS, LLC.
11980  *
11981  * Originally Released Under LGPL - original licence link has changed is not relivant.
11982  *
11983  * Fork - LGPL
11984  * <script type="text/javascript">
11985  */
11986  
11987 /**
11988  * Global Ajax request class.
11989  * 
11990  * @class Roo.Ajax
11991  * @extends Roo.data.Connection
11992  * @static
11993  * 
11994  * @cfg {String} url  The default URL to be used for requests to the server. (defaults to undefined)
11995  * @cfg {Object} extraParams  An object containing properties which are used as extra parameters to each request made by this object. (defaults to undefined)
11996  * @cfg {Object} defaultHeaders  An object containing request headers which are added to each request made by this object. (defaults to undefined)
11997  * @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)
11998  * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
11999  * @cfg {Boolean} autoAbort (Optional) Whether a new request should abort any pending requests. (defaults to false)
12000  * @cfg {Boolean} disableCaching (Optional)   True to add a unique cache-buster param to GET requests. (defaults to true)
12001  */
12002 Roo.Ajax = new Roo.data.Connection({
12003     // fix up the docs
12004     /**
12005      * @scope Roo.Ajax
12006      * @type {Boolear} 
12007      */
12008     autoAbort : false,
12009
12010     /**
12011      * Serialize the passed form into a url encoded string
12012      * @scope Roo.Ajax
12013      * @param {String/HTMLElement} form
12014      * @return {String}
12015      */
12016     serializeForm : function(form){
12017         return Roo.lib.Ajax.serializeForm(form);
12018     }
12019 });/*
12020  * Based on:
12021  * Ext JS Library 1.1.1
12022  * Copyright(c) 2006-2007, Ext JS, LLC.
12023  *
12024  * Originally Released Under LGPL - original licence link has changed is not relivant.
12025  *
12026  * Fork - LGPL
12027  * <script type="text/javascript">
12028  */
12029
12030  
12031 /**
12032  * @class Roo.UpdateManager
12033  * @extends Roo.util.Observable
12034  * Provides AJAX-style update for Element object.<br><br>
12035  * Usage:<br>
12036  * <pre><code>
12037  * // Get it from a Roo.Element object
12038  * var el = Roo.get("foo");
12039  * var mgr = el.getUpdateManager();
12040  * mgr.update("http://myserver.com/index.php", "param1=1&amp;param2=2");
12041  * ...
12042  * mgr.formUpdate("myFormId", "http://myserver.com/index.php");
12043  * <br>
12044  * // or directly (returns the same UpdateManager instance)
12045  * var mgr = new Roo.UpdateManager("myElementId");
12046  * mgr.startAutoRefresh(60, "http://myserver.com/index.php");
12047  * mgr.on("update", myFcnNeedsToKnow);
12048  * <br>
12049    // short handed call directly from the element object
12050    Roo.get("foo").load({
12051         url: "bar.php",
12052         scripts:true,
12053         params: "for=bar",
12054         text: "Loading Foo..."
12055    });
12056  * </code></pre>
12057  * @constructor
12058  * Create new UpdateManager directly.
12059  * @param {String/HTMLElement/Roo.Element} el The element to update
12060  * @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).
12061  */
12062 Roo.UpdateManager = function(el, forceNew){
12063     el = Roo.get(el);
12064     if(!forceNew && el.updateManager){
12065         return el.updateManager;
12066     }
12067     /**
12068      * The Element object
12069      * @type Roo.Element
12070      */
12071     this.el = el;
12072     /**
12073      * Cached url to use for refreshes. Overwritten every time update() is called unless "discardUrl" param is set to true.
12074      * @type String
12075      */
12076     this.defaultUrl = null;
12077
12078     this.addEvents({
12079         /**
12080          * @event beforeupdate
12081          * Fired before an update is made, return false from your handler and the update is cancelled.
12082          * @param {Roo.Element} el
12083          * @param {String/Object/Function} url
12084          * @param {String/Object} params
12085          */
12086         "beforeupdate": true,
12087         /**
12088          * @event update
12089          * Fired after successful update is made.
12090          * @param {Roo.Element} el
12091          * @param {Object} oResponseObject The response Object
12092          */
12093         "update": true,
12094         /**
12095          * @event failure
12096          * Fired on update failure.
12097          * @param {Roo.Element} el
12098          * @param {Object} oResponseObject The response Object
12099          */
12100         "failure": true
12101     });
12102     var d = Roo.UpdateManager.defaults;
12103     /**
12104      * Blank page URL to use with SSL file uploads (Defaults to Roo.UpdateManager.defaults.sslBlankUrl or "about:blank").
12105      * @type String
12106      */
12107     this.sslBlankUrl = d.sslBlankUrl;
12108     /**
12109      * Whether to append unique parameter on get request to disable caching (Defaults to Roo.UpdateManager.defaults.disableCaching or false).
12110      * @type Boolean
12111      */
12112     this.disableCaching = d.disableCaching;
12113     /**
12114      * Text for loading indicator (Defaults to Roo.UpdateManager.defaults.indicatorText or '&lt;div class="loading-indicator"&gt;Loading...&lt;/div&gt;').
12115      * @type String
12116      */
12117     this.indicatorText = d.indicatorText;
12118     /**
12119      * Whether to show indicatorText when loading (Defaults to Roo.UpdateManager.defaults.showLoadIndicator or true).
12120      * @type String
12121      */
12122     this.showLoadIndicator = d.showLoadIndicator;
12123     /**
12124      * Timeout for requests or form posts in seconds (Defaults to Roo.UpdateManager.defaults.timeout or 30 seconds).
12125      * @type Number
12126      */
12127     this.timeout = d.timeout;
12128
12129     /**
12130      * True to process scripts in the output (Defaults to Roo.UpdateManager.defaults.loadScripts (false)).
12131      * @type Boolean
12132      */
12133     this.loadScripts = d.loadScripts;
12134
12135     /**
12136      * Transaction object of current executing transaction
12137      */
12138     this.transaction = null;
12139
12140     /**
12141      * @private
12142      */
12143     this.autoRefreshProcId = null;
12144     /**
12145      * Delegate for refresh() prebound to "this", use myUpdater.refreshDelegate.createCallback(arg1, arg2) to bind arguments
12146      * @type Function
12147      */
12148     this.refreshDelegate = this.refresh.createDelegate(this);
12149     /**
12150      * Delegate for update() prebound to "this", use myUpdater.updateDelegate.createCallback(arg1, arg2) to bind arguments
12151      * @type Function
12152      */
12153     this.updateDelegate = this.update.createDelegate(this);
12154     /**
12155      * Delegate for formUpdate() prebound to "this", use myUpdater.formUpdateDelegate.createCallback(arg1, arg2) to bind arguments
12156      * @type Function
12157      */
12158     this.formUpdateDelegate = this.formUpdate.createDelegate(this);
12159     /**
12160      * @private
12161      */
12162     this.successDelegate = this.processSuccess.createDelegate(this);
12163     /**
12164      * @private
12165      */
12166     this.failureDelegate = this.processFailure.createDelegate(this);
12167
12168     if(!this.renderer){
12169      /**
12170       * The renderer for this UpdateManager. Defaults to {@link Roo.UpdateManager.BasicRenderer}.
12171       */
12172     this.renderer = new Roo.UpdateManager.BasicRenderer();
12173     }
12174     
12175     Roo.UpdateManager.superclass.constructor.call(this);
12176 };
12177
12178 Roo.extend(Roo.UpdateManager, Roo.util.Observable, {
12179     /**
12180      * Get the Element this UpdateManager is bound to
12181      * @return {Roo.Element} The element
12182      */
12183     getEl : function(){
12184         return this.el;
12185     },
12186     /**
12187      * Performs an async request, updating this element with the response. If params are specified it uses POST, otherwise it uses GET.
12188      * @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:
12189 <pre><code>
12190 um.update({<br/>
12191     url: "your-url.php",<br/>
12192     params: {param1: "foo", param2: "bar"}, // or a URL encoded string<br/>
12193     callback: yourFunction,<br/>
12194     scope: yourObject, //(optional scope)  <br/>
12195     discardUrl: false, <br/>
12196     nocache: false,<br/>
12197     text: "Loading...",<br/>
12198     timeout: 30,<br/>
12199     scripts: false<br/>
12200 });
12201 </code></pre>
12202      * The only required property is url. The optional properties nocache, text and scripts
12203      * are shorthand for disableCaching, indicatorText and loadScripts and are used to set their associated property on this UpdateManager instance.
12204      * @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}
12205      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess, oResponse)
12206      * @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.
12207      */
12208     update : function(url, params, callback, discardUrl){
12209         if(this.fireEvent("beforeupdate", this.el, url, params) !== false){
12210             var method = this.method,
12211                 cfg;
12212             if(typeof url == "object"){ // must be config object
12213                 cfg = url;
12214                 url = cfg.url;
12215                 params = params || cfg.params;
12216                 callback = callback || cfg.callback;
12217                 discardUrl = discardUrl || cfg.discardUrl;
12218                 if(callback && cfg.scope){
12219                     callback = callback.createDelegate(cfg.scope);
12220                 }
12221                 if(typeof cfg.method != "undefined"){method = cfg.method;};
12222                 if(typeof cfg.nocache != "undefined"){this.disableCaching = cfg.nocache;};
12223                 if(typeof cfg.text != "undefined"){this.indicatorText = '<div class="loading-indicator">'+cfg.text+"</div>";};
12224                 if(typeof cfg.scripts != "undefined"){this.loadScripts = cfg.scripts;};
12225                 if(typeof cfg.timeout != "undefined"){this.timeout = cfg.timeout;};
12226             }
12227             this.showLoading();
12228             if(!discardUrl){
12229                 this.defaultUrl = url;
12230             }
12231             if(typeof url == "function"){
12232                 url = url.call(this);
12233             }
12234
12235             method = method || (params ? "POST" : "GET");
12236             if(method == "GET"){
12237                 url = this.prepareUrl(url);
12238             }
12239
12240             var o = Roo.apply(cfg ||{}, {
12241                 url : url,
12242                 params: params,
12243                 success: this.successDelegate,
12244                 failure: this.failureDelegate,
12245                 callback: undefined,
12246                 timeout: (this.timeout*1000),
12247                 argument: {"url": url, "form": null, "callback": callback, "params": params}
12248             });
12249             Roo.log("updated manager called with timeout of " + o.timeout);
12250             this.transaction = Roo.Ajax.request(o);
12251         }
12252     },
12253
12254     /**
12255      * 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.
12256      * Uses this.sslBlankUrl for SSL file uploads to prevent IE security warning.
12257      * @param {String/HTMLElement} form The form Id or form element
12258      * @param {String} url (optional) The url to pass the form to. If omitted the action attribute on the form will be used.
12259      * @param {Boolean} reset (optional) Whether to try to reset the form after the update
12260      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess, oResponse)
12261      */
12262     formUpdate : function(form, url, reset, callback){
12263         if(this.fireEvent("beforeupdate", this.el, form, url) !== false){
12264             if(typeof url == "function"){
12265                 url = url.call(this);
12266             }
12267             form = Roo.getDom(form);
12268             this.transaction = Roo.Ajax.request({
12269                 form: form,
12270                 url:url,
12271                 success: this.successDelegate,
12272                 failure: this.failureDelegate,
12273                 timeout: (this.timeout*1000),
12274                 argument: {"url": url, "form": form, "callback": callback, "reset": reset}
12275             });
12276             this.showLoading.defer(1, this);
12277         }
12278     },
12279
12280     /**
12281      * Refresh the element with the last used url or defaultUrl. If there is no url, it returns immediately
12282      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
12283      */
12284     refresh : function(callback){
12285         if(this.defaultUrl == null){
12286             return;
12287         }
12288         this.update(this.defaultUrl, null, callback, true);
12289     },
12290
12291     /**
12292      * Set this element to auto refresh.
12293      * @param {Number} interval How often to update (in seconds).
12294      * @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)
12295      * @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}
12296      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
12297      * @param {Boolean} refreshNow (optional) Whether to execute the refresh now, or wait the interval
12298      */
12299     startAutoRefresh : function(interval, url, params, callback, refreshNow){
12300         if(refreshNow){
12301             this.update(url || this.defaultUrl, params, callback, true);
12302         }
12303         if(this.autoRefreshProcId){
12304             clearInterval(this.autoRefreshProcId);
12305         }
12306         this.autoRefreshProcId = setInterval(this.update.createDelegate(this, [url || this.defaultUrl, params, callback, true]), interval*1000);
12307     },
12308
12309     /**
12310      * Stop auto refresh on this element.
12311      */
12312      stopAutoRefresh : function(){
12313         if(this.autoRefreshProcId){
12314             clearInterval(this.autoRefreshProcId);
12315             delete this.autoRefreshProcId;
12316         }
12317     },
12318
12319     isAutoRefreshing : function(){
12320        return this.autoRefreshProcId ? true : false;
12321     },
12322     /**
12323      * Called to update the element to "Loading" state. Override to perform custom action.
12324      */
12325     showLoading : function(){
12326         if(this.showLoadIndicator){
12327             this.el.update(this.indicatorText);
12328         }
12329     },
12330
12331     /**
12332      * Adds unique parameter to query string if disableCaching = true
12333      * @private
12334      */
12335     prepareUrl : function(url){
12336         if(this.disableCaching){
12337             var append = "_dc=" + (new Date().getTime());
12338             if(url.indexOf("?") !== -1){
12339                 url += "&" + append;
12340             }else{
12341                 url += "?" + append;
12342             }
12343         }
12344         return url;
12345     },
12346
12347     /**
12348      * @private
12349      */
12350     processSuccess : function(response){
12351         this.transaction = null;
12352         if(response.argument.form && response.argument.reset){
12353             try{ // put in try/catch since some older FF releases had problems with this
12354                 response.argument.form.reset();
12355             }catch(e){}
12356         }
12357         if(this.loadScripts){
12358             this.renderer.render(this.el, response, this,
12359                 this.updateComplete.createDelegate(this, [response]));
12360         }else{
12361             this.renderer.render(this.el, response, this);
12362             this.updateComplete(response);
12363         }
12364     },
12365
12366     updateComplete : function(response){
12367         this.fireEvent("update", this.el, response);
12368         if(typeof response.argument.callback == "function"){
12369             response.argument.callback(this.el, true, response);
12370         }
12371     },
12372
12373     /**
12374      * @private
12375      */
12376     processFailure : function(response){
12377         this.transaction = null;
12378         this.fireEvent("failure", this.el, response);
12379         if(typeof response.argument.callback == "function"){
12380             response.argument.callback(this.el, false, response);
12381         }
12382     },
12383
12384     /**
12385      * Set the content renderer for this UpdateManager. See {@link Roo.UpdateManager.BasicRenderer#render} for more details.
12386      * @param {Object} renderer The object implementing the render() method
12387      */
12388     setRenderer : function(renderer){
12389         this.renderer = renderer;
12390     },
12391
12392     getRenderer : function(){
12393        return this.renderer;
12394     },
12395
12396     /**
12397      * Set the defaultUrl used for updates
12398      * @param {String/Function} defaultUrl The url or a function to call to get the url
12399      */
12400     setDefaultUrl : function(defaultUrl){
12401         this.defaultUrl = defaultUrl;
12402     },
12403
12404     /**
12405      * Aborts the executing transaction
12406      */
12407     abort : function(){
12408         if(this.transaction){
12409             Roo.Ajax.abort(this.transaction);
12410         }
12411     },
12412
12413     /**
12414      * Returns true if an update is in progress
12415      * @return {Boolean}
12416      */
12417     isUpdating : function(){
12418         if(this.transaction){
12419             return Roo.Ajax.isLoading(this.transaction);
12420         }
12421         return false;
12422     }
12423 });
12424
12425 /**
12426  * @class Roo.UpdateManager.defaults
12427  * @static (not really - but it helps the doc tool)
12428  * The defaults collection enables customizing the default properties of UpdateManager
12429  */
12430    Roo.UpdateManager.defaults = {
12431        /**
12432          * Timeout for requests or form posts in seconds (Defaults 30 seconds).
12433          * @type Number
12434          */
12435          timeout : 30,
12436
12437          /**
12438          * True to process scripts by default (Defaults to false).
12439          * @type Boolean
12440          */
12441         loadScripts : false,
12442
12443         /**
12444         * Blank page URL to use with SSL file uploads (Defaults to "javascript:false").
12445         * @type String
12446         */
12447         sslBlankUrl : (Roo.SSL_SECURE_URL || "javascript:false"),
12448         /**
12449          * Whether to append unique parameter on get request to disable caching (Defaults to false).
12450          * @type Boolean
12451          */
12452         disableCaching : false,
12453         /**
12454          * Whether to show indicatorText when loading (Defaults to true).
12455          * @type Boolean
12456          */
12457         showLoadIndicator : true,
12458         /**
12459          * Text for loading indicator (Defaults to '&lt;div class="loading-indicator"&gt;Loading...&lt;/div&gt;').
12460          * @type String
12461          */
12462         indicatorText : '<div class="loading-indicator">Loading...</div>'
12463    };
12464
12465 /**
12466  * Static convenience method. This method is deprecated in favor of el.load({url:'foo.php', ...}).
12467  *Usage:
12468  * <pre><code>Roo.UpdateManager.updateElement("my-div", "stuff.php");</code></pre>
12469  * @param {String/HTMLElement/Roo.Element} el The element to update
12470  * @param {String} url The url
12471  * @param {String/Object} params (optional) Url encoded param string or an object of name/value pairs
12472  * @param {Object} options (optional) A config object with any of the UpdateManager properties you want to set - for example: {disableCaching:true, indicatorText: "Loading data..."}
12473  * @static
12474  * @deprecated
12475  * @member Roo.UpdateManager
12476  */
12477 Roo.UpdateManager.updateElement = function(el, url, params, options){
12478     var um = Roo.get(el, true).getUpdateManager();
12479     Roo.apply(um, options);
12480     um.update(url, params, options ? options.callback : null);
12481 };
12482 // alias for backwards compat
12483 Roo.UpdateManager.update = Roo.UpdateManager.updateElement;
12484 /**
12485  * @class Roo.UpdateManager.BasicRenderer
12486  * Default Content renderer. Updates the elements innerHTML with the responseText.
12487  */
12488 Roo.UpdateManager.BasicRenderer = function(){};
12489
12490 Roo.UpdateManager.BasicRenderer.prototype = {
12491     /**
12492      * This is called when the transaction is completed and it's time to update the element - The BasicRenderer
12493      * updates the elements innerHTML with the responseText - To perform a custom render (i.e. XML or JSON processing),
12494      * create an object with a "render(el, response)" method and pass it to setRenderer on the UpdateManager.
12495      * @param {Roo.Element} el The element being rendered
12496      * @param {Object} response The YUI Connect response object
12497      * @param {UpdateManager} updateManager The calling update manager
12498      * @param {Function} callback A callback that will need to be called if loadScripts is true on the UpdateManager
12499      */
12500      render : function(el, response, updateManager, callback){
12501         el.update(response.responseText, updateManager.loadScripts, callback);
12502     }
12503 };
12504 /*
12505  * Based on:
12506  * Roo JS
12507  * (c)) Alan Knowles
12508  * Licence : LGPL
12509  */
12510
12511
12512 /**
12513  * @class Roo.DomTemplate
12514  * @extends Roo.Template
12515  * An effort at a dom based template engine..
12516  *
12517  * Similar to XTemplate, except it uses dom parsing to create the template..
12518  *
12519  * Supported features:
12520  *
12521  *  Tags:
12522
12523 <pre><code>
12524       {a_variable} - output encoded.
12525       {a_variable.format:("Y-m-d")} - call a method on the variable
12526       {a_variable:raw} - unencoded output
12527       {a_variable:toFixed(1,2)} - Roo.util.Format."toFixed"
12528       {a_variable:this.method_on_template(...)} - call a method on the template object.
12529  
12530 </code></pre>
12531  *  The tpl tag:
12532 <pre><code>
12533         &lt;div roo-for="a_variable or condition.."&gt;&lt;/div&gt;
12534         &lt;div roo-if="a_variable or condition"&gt;&lt;/div&gt;
12535         &lt;div roo-exec="some javascript"&gt;&lt;/div&gt;
12536         &lt;div roo-name="named_template"&gt;&lt;/div&gt; 
12537   
12538 </code></pre>
12539  *      
12540  */
12541 Roo.DomTemplate = function()
12542 {
12543      Roo.DomTemplate.superclass.constructor.apply(this, arguments);
12544      if (this.html) {
12545         this.compile();
12546      }
12547 };
12548
12549
12550 Roo.extend(Roo.DomTemplate, Roo.Template, {
12551     /**
12552      * id counter for sub templates.
12553      */
12554     id : 0,
12555     /**
12556      * flag to indicate if dom parser is inside a pre,
12557      * it will strip whitespace if not.
12558      */
12559     inPre : false,
12560     
12561     /**
12562      * The various sub templates
12563      */
12564     tpls : false,
12565     
12566     
12567     
12568     /**
12569      *
12570      * basic tag replacing syntax
12571      * WORD:WORD()
12572      *
12573      * // you can fake an object call by doing this
12574      *  x.t:(test,tesT) 
12575      * 
12576      */
12577     re : /(\{|\%7B)([\w-\.]+)(?:\:([\w\.]*)(?:\(([^)]*?)?\))?)?(\}|\%7D)/g,
12578     //re : /\{([\w-\.]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
12579     
12580     iterChild : function (node, method) {
12581         
12582         var oldPre = this.inPre;
12583         if (node.tagName == 'PRE') {
12584             this.inPre = true;
12585         }
12586         for( var i = 0; i < node.childNodes.length; i++) {
12587             method.call(this, node.childNodes[i]);
12588         }
12589         this.inPre = oldPre;
12590     },
12591     
12592     
12593     
12594     /**
12595      * compile the template
12596      *
12597      * This is not recursive, so I'm not sure how nested templates are really going to be handled..
12598      *
12599      */
12600     compile: function()
12601     {
12602         var s = this.html;
12603         
12604         // covert the html into DOM...
12605         var doc = false;
12606         var div =false;
12607         try {
12608             doc = document.implementation.createHTMLDocument("");
12609             doc.documentElement.innerHTML =   this.html  ;
12610             div = doc.documentElement;
12611         } catch (e) {
12612             // old IE... - nasty -- it causes all sorts of issues.. with
12613             // images getting pulled from server..
12614             div = document.createElement('div');
12615             div.innerHTML = this.html;
12616         }
12617         //doc.documentElement.innerHTML = htmlBody
12618          
12619         
12620         
12621         this.tpls = [];
12622         var _t = this;
12623         this.iterChild(div, function(n) {_t.compileNode(n, true); });
12624         
12625         var tpls = this.tpls;
12626         
12627         // create a top level template from the snippet..
12628         
12629         //Roo.log(div.innerHTML);
12630         
12631         var tpl = {
12632             uid : 'master',
12633             id : this.id++,
12634             attr : false,
12635             value : false,
12636             body : div.innerHTML,
12637             
12638             forCall : false,
12639             execCall : false,
12640             dom : div,
12641             isTop : true
12642             
12643         };
12644         tpls.unshift(tpl);
12645         
12646         
12647         // compile them...
12648         this.tpls = [];
12649         Roo.each(tpls, function(tp){
12650             this.compileTpl(tp);
12651             this.tpls[tp.id] = tp;
12652         }, this);
12653         
12654         this.master = tpls[0];
12655         return this;
12656         
12657         
12658     },
12659     
12660     compileNode : function(node, istop) {
12661         // test for
12662         //Roo.log(node);
12663         
12664         
12665         // skip anything not a tag..
12666         if (node.nodeType != 1) {
12667             if (node.nodeType == 3 && !this.inPre) {
12668                 // reduce white space..
12669                 node.nodeValue = node.nodeValue.replace(/\s+/g, ' '); 
12670                 
12671             }
12672             return;
12673         }
12674         
12675         var tpl = {
12676             uid : false,
12677             id : false,
12678             attr : false,
12679             value : false,
12680             body : '',
12681             
12682             forCall : false,
12683             execCall : false,
12684             dom : false,
12685             isTop : istop
12686             
12687             
12688         };
12689         
12690         
12691         switch(true) {
12692             case (node.hasAttribute('roo-for')): tpl.attr = 'for'; break;
12693             case (node.hasAttribute('roo-if')): tpl.attr = 'if'; break;
12694             case (node.hasAttribute('roo-name')): tpl.attr = 'name'; break;
12695             case (node.hasAttribute('roo-exec')): tpl.attr = 'exec'; break;
12696             // no default..
12697         }
12698         
12699         
12700         if (!tpl.attr) {
12701             // just itterate children..
12702             this.iterChild(node,this.compileNode);
12703             return;
12704         }
12705         tpl.uid = this.id++;
12706         tpl.value = node.getAttribute('roo-' +  tpl.attr);
12707         node.removeAttribute('roo-'+ tpl.attr);
12708         if (tpl.attr != 'name') {
12709             var placeholder = document.createTextNode('{domtpl' + tpl.uid + '}');
12710             node.parentNode.replaceChild(placeholder,  node);
12711         } else {
12712             
12713             var placeholder =  document.createElement('span');
12714             placeholder.className = 'roo-tpl-' + tpl.value;
12715             node.parentNode.replaceChild(placeholder,  node);
12716         }
12717         
12718         // parent now sees '{domtplXXXX}
12719         this.iterChild(node,this.compileNode);
12720         
12721         // we should now have node body...
12722         var div = document.createElement('div');
12723         div.appendChild(node);
12724         tpl.dom = node;
12725         // this has the unfortunate side effect of converting tagged attributes
12726         // eg. href="{...}" into %7C...%7D
12727         // this has been fixed by searching for those combo's although it's a bit hacky..
12728         
12729         
12730         tpl.body = div.innerHTML;
12731         
12732         
12733          
12734         tpl.id = tpl.uid;
12735         switch(tpl.attr) {
12736             case 'for' :
12737                 switch (tpl.value) {
12738                     case '.':  tpl.forCall = new Function('values', 'parent', 'with(values){ return values; }'); break;
12739                     case '..': tpl.forCall= new Function('values', 'parent', 'with(values){ return parent; }'); break;
12740                     default:   tpl.forCall= new Function('values', 'parent', 'with(values){ return '+tpl.value+'; }');
12741                 }
12742                 break;
12743             
12744             case 'exec':
12745                 tpl.execCall = new Function('values', 'parent', 'with(values){ '+(Roo.util.Format.htmlDecode(tpl.value))+'; }');
12746                 break;
12747             
12748             case 'if':     
12749                 tpl.ifCall = new Function('values', 'parent', 'with(values){ return '+(Roo.util.Format.htmlDecode(tpl.value))+'; }');
12750                 break;
12751             
12752             case 'name':
12753                 tpl.id  = tpl.value; // replace non characters???
12754                 break;
12755             
12756         }
12757         
12758         
12759         this.tpls.push(tpl);
12760         
12761         
12762         
12763     },
12764     
12765     
12766     
12767     
12768     /**
12769      * Compile a segment of the template into a 'sub-template'
12770      *
12771      * 
12772      * 
12773      *
12774      */
12775     compileTpl : function(tpl)
12776     {
12777         var fm = Roo.util.Format;
12778         var useF = this.disableFormats !== true;
12779         
12780         var sep = Roo.isGecko ? "+\n" : ",\n";
12781         
12782         var undef = function(str) {
12783             Roo.debug && Roo.log("Property not found :"  + str);
12784             return '';
12785         };
12786           
12787         //Roo.log(tpl.body);
12788         
12789         
12790         
12791         var fn = function(m, lbrace, name, format, args)
12792         {
12793             //Roo.log("ARGS");
12794             //Roo.log(arguments);
12795             args = args ? args.replace(/\\'/g,"'") : args;
12796             //["{TEST:(a,b,c)}", "TEST", "", "a,b,c", 0, "{TEST:(a,b,c)}"]
12797             if (typeof(format) == 'undefined') {
12798                 format =  'htmlEncode'; 
12799             }
12800             if (format == 'raw' ) {
12801                 format = false;
12802             }
12803             
12804             if(name.substr(0, 6) == 'domtpl'){
12805                 return "'"+ sep +'this.applySubTemplate('+name.substr(6)+', values, parent)'+sep+"'";
12806             }
12807             
12808             // build an array of options to determine if value is undefined..
12809             
12810             // basically get 'xxxx.yyyy' then do
12811             // (typeof(xxxx) == 'undefined' || typeof(xxx.yyyy) == 'undefined') ?
12812             //    (function () { Roo.log("Property not found"); return ''; })() :
12813             //    ......
12814             
12815             var udef_ar = [];
12816             var lookfor = '';
12817             Roo.each(name.split('.'), function(st) {
12818                 lookfor += (lookfor.length ? '.': '') + st;
12819                 udef_ar.push(  "(typeof(" + lookfor + ") == 'undefined')"  );
12820             });
12821             
12822             var udef_st = '((' + udef_ar.join(" || ") +") ? undef('" + name + "') : "; // .. needs )
12823             
12824             
12825             if(format && useF){
12826                 
12827                 args = args ? ',' + args : "";
12828                  
12829                 if(format.substr(0, 5) != "this."){
12830                     format = "fm." + format + '(';
12831                 }else{
12832                     format = 'this.call("'+ format.substr(5) + '", ';
12833                     args = ", values";
12834                 }
12835                 
12836                 return "'"+ sep +   udef_st   +    format + name + args + "))"+sep+"'";
12837             }
12838              
12839             if (args && args.length) {
12840                 // called with xxyx.yuu:(test,test)
12841                 // change to ()
12842                 return "'"+ sep + udef_st  + name + '(' +  args + "))"+sep+"'";
12843             }
12844             // raw.. - :raw modifier..
12845             return "'"+ sep + udef_st  + name + ")"+sep+"'";
12846             
12847         };
12848         var body;
12849         // branched to use + in gecko and [].join() in others
12850         if(Roo.isGecko){
12851             body = "tpl.compiled = function(values, parent){  with(values) { return '" +
12852                    tpl.body.replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
12853                     "';};};";
12854         }else{
12855             body = ["tpl.compiled = function(values, parent){  with (values) { return ['"];
12856             body.push(tpl.body.replace(/(\r\n|\n)/g,
12857                             '\\n').replace(/'/g, "\\'").replace(this.re, fn));
12858             body.push("'].join('');};};");
12859             body = body.join('');
12860         }
12861         
12862         Roo.debug && Roo.log(body.replace(/\\n/,'\n'));
12863        
12864         /** eval:var:tpl eval:var:fm eval:var:useF eval:var:undef  */
12865         eval(body);
12866         
12867         return this;
12868     },
12869      
12870     /**
12871      * same as applyTemplate, except it's done to one of the subTemplates
12872      * when using named templates, you can do:
12873      *
12874      * var str = pl.applySubTemplate('your-name', values);
12875      *
12876      * 
12877      * @param {Number} id of the template
12878      * @param {Object} values to apply to template
12879      * @param {Object} parent (normaly the instance of this object)
12880      */
12881     applySubTemplate : function(id, values, parent)
12882     {
12883         
12884         
12885         var t = this.tpls[id];
12886         
12887         
12888         try { 
12889             if(t.ifCall && !t.ifCall.call(this, values, parent)){
12890                 Roo.debug && Roo.log('if call on ' + t.value + ' return false');
12891                 return '';
12892             }
12893         } catch(e) {
12894             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-if="' + t.value + '" - ' + e.toString());
12895             Roo.log(values);
12896           
12897             return '';
12898         }
12899         try { 
12900             
12901             if(t.execCall && t.execCall.call(this, values, parent)){
12902                 return '';
12903             }
12904         } catch(e) {
12905             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-for="' + t.value + '" - ' + e.toString());
12906             Roo.log(values);
12907             return '';
12908         }
12909         
12910         try {
12911             var vs = t.forCall ? t.forCall.call(this, values, parent) : values;
12912             parent = t.target ? values : parent;
12913             if(t.forCall && vs instanceof Array){
12914                 var buf = [];
12915                 for(var i = 0, len = vs.length; i < len; i++){
12916                     try {
12917                         buf[buf.length] = t.compiled.call(this, vs[i], parent);
12918                     } catch (e) {
12919                         Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on body="' + t.value + '" - ' + e.toString());
12920                         Roo.log(e.body);
12921                         //Roo.log(t.compiled);
12922                         Roo.log(vs[i]);
12923                     }   
12924                 }
12925                 return buf.join('');
12926             }
12927         } catch (e) {
12928             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-for="' + t.value + '" - ' + e.toString());
12929             Roo.log(values);
12930             return '';
12931         }
12932         try {
12933             return t.compiled.call(this, vs, parent);
12934         } catch (e) {
12935             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on body="' + t.value + '" - ' + e.toString());
12936             Roo.log(e.body);
12937             //Roo.log(t.compiled);
12938             Roo.log(values);
12939             return '';
12940         }
12941     },
12942
12943    
12944
12945     applyTemplate : function(values){
12946         return this.master.compiled.call(this, values, {});
12947         //var s = this.subs;
12948     },
12949
12950     apply : function(){
12951         return this.applyTemplate.apply(this, arguments);
12952     }
12953
12954  });
12955
12956 Roo.DomTemplate.from = function(el){
12957     el = Roo.getDom(el);
12958     return new Roo.Domtemplate(el.value || el.innerHTML);
12959 };/*
12960  * Based on:
12961  * Ext JS Library 1.1.1
12962  * Copyright(c) 2006-2007, Ext JS, LLC.
12963  *
12964  * Originally Released Under LGPL - original licence link has changed is not relivant.
12965  *
12966  * Fork - LGPL
12967  * <script type="text/javascript">
12968  */
12969
12970 /**
12971  * @class Roo.util.DelayedTask
12972  * Provides a convenient method of performing setTimeout where a new
12973  * timeout cancels the old timeout. An example would be performing validation on a keypress.
12974  * You can use this class to buffer
12975  * the keypress events for a certain number of milliseconds, and perform only if they stop
12976  * for that amount of time.
12977  * @constructor The parameters to this constructor serve as defaults and are not required.
12978  * @param {Function} fn (optional) The default function to timeout
12979  * @param {Object} scope (optional) The default scope of that timeout
12980  * @param {Array} args (optional) The default Array of arguments
12981  */
12982 Roo.util.DelayedTask = function(fn, scope, args){
12983     var id = null, d, t;
12984
12985     var call = function(){
12986         var now = new Date().getTime();
12987         if(now - t >= d){
12988             clearInterval(id);
12989             id = null;
12990             fn.apply(scope, args || []);
12991         }
12992     };
12993     /**
12994      * Cancels any pending timeout and queues a new one
12995      * @param {Number} delay The milliseconds to delay
12996      * @param {Function} newFn (optional) Overrides function passed to constructor
12997      * @param {Object} newScope (optional) Overrides scope passed to constructor
12998      * @param {Array} newArgs (optional) Overrides args passed to constructor
12999      */
13000     this.delay = function(delay, newFn, newScope, newArgs){
13001         if(id && delay != d){
13002             this.cancel();
13003         }
13004         d = delay;
13005         t = new Date().getTime();
13006         fn = newFn || fn;
13007         scope = newScope || scope;
13008         args = newArgs || args;
13009         if(!id){
13010             id = setInterval(call, d);
13011         }
13012     };
13013
13014     /**
13015      * Cancel the last queued timeout
13016      */
13017     this.cancel = function(){
13018         if(id){
13019             clearInterval(id);
13020             id = null;
13021         }
13022     };
13023 };/*
13024  * Based on:
13025  * Ext JS Library 1.1.1
13026  * Copyright(c) 2006-2007, Ext JS, LLC.
13027  *
13028  * Originally Released Under LGPL - original licence link has changed is not relivant.
13029  *
13030  * Fork - LGPL
13031  * <script type="text/javascript">
13032  */
13033  
13034  
13035 Roo.util.TaskRunner = function(interval){
13036     interval = interval || 10;
13037     var tasks = [], removeQueue = [];
13038     var id = 0;
13039     var running = false;
13040
13041     var stopThread = function(){
13042         running = false;
13043         clearInterval(id);
13044         id = 0;
13045     };
13046
13047     var startThread = function(){
13048         if(!running){
13049             running = true;
13050             id = setInterval(runTasks, interval);
13051         }
13052     };
13053
13054     var removeTask = function(task){
13055         removeQueue.push(task);
13056         if(task.onStop){
13057             task.onStop();
13058         }
13059     };
13060
13061     var runTasks = function(){
13062         if(removeQueue.length > 0){
13063             for(var i = 0, len = removeQueue.length; i < len; i++){
13064                 tasks.remove(removeQueue[i]);
13065             }
13066             removeQueue = [];
13067             if(tasks.length < 1){
13068                 stopThread();
13069                 return;
13070             }
13071         }
13072         var now = new Date().getTime();
13073         for(var i = 0, len = tasks.length; i < len; ++i){
13074             var t = tasks[i];
13075             var itime = now - t.taskRunTime;
13076             if(t.interval <= itime){
13077                 var rt = t.run.apply(t.scope || t, t.args || [++t.taskRunCount]);
13078                 t.taskRunTime = now;
13079                 if(rt === false || t.taskRunCount === t.repeat){
13080                     removeTask(t);
13081                     return;
13082                 }
13083             }
13084             if(t.duration && t.duration <= (now - t.taskStartTime)){
13085                 removeTask(t);
13086             }
13087         }
13088     };
13089
13090     /**
13091      * Queues a new task.
13092      * @param {Object} task
13093      */
13094     this.start = function(task){
13095         tasks.push(task);
13096         task.taskStartTime = new Date().getTime();
13097         task.taskRunTime = 0;
13098         task.taskRunCount = 0;
13099         startThread();
13100         return task;
13101     };
13102
13103     this.stop = function(task){
13104         removeTask(task);
13105         return task;
13106     };
13107
13108     this.stopAll = function(){
13109         stopThread();
13110         for(var i = 0, len = tasks.length; i < len; i++){
13111             if(tasks[i].onStop){
13112                 tasks[i].onStop();
13113             }
13114         }
13115         tasks = [];
13116         removeQueue = [];
13117     };
13118 };
13119
13120 Roo.TaskMgr = new Roo.util.TaskRunner();/*
13121  * Based on:
13122  * Ext JS Library 1.1.1
13123  * Copyright(c) 2006-2007, Ext JS, LLC.
13124  *
13125  * Originally Released Under LGPL - original licence link has changed is not relivant.
13126  *
13127  * Fork - LGPL
13128  * <script type="text/javascript">
13129  */
13130
13131  
13132 /**
13133  * @class Roo.util.MixedCollection
13134  * @extends Roo.util.Observable
13135  * A Collection class that maintains both numeric indexes and keys and exposes events.
13136  * @constructor
13137  * @param {Boolean} allowFunctions True if the addAll function should add function references to the
13138  * collection (defaults to false)
13139  * @param {Function} keyFn A function that can accept an item of the type(s) stored in this MixedCollection
13140  * and return the key value for that item.  This is used when available to look up the key on items that
13141  * were passed without an explicit key parameter to a MixedCollection method.  Passing this parameter is
13142  * equivalent to providing an implementation for the {@link #getKey} method.
13143  */
13144 Roo.util.MixedCollection = function(allowFunctions, keyFn){
13145     this.items = [];
13146     this.map = {};
13147     this.keys = [];
13148     this.length = 0;
13149     this.addEvents({
13150         /**
13151          * @event clear
13152          * Fires when the collection is cleared.
13153          */
13154         "clear" : true,
13155         /**
13156          * @event add
13157          * Fires when an item is added to the collection.
13158          * @param {Number} index The index at which the item was added.
13159          * @param {Object} o The item added.
13160          * @param {String} key The key associated with the added item.
13161          */
13162         "add" : true,
13163         /**
13164          * @event replace
13165          * Fires when an item is replaced in the collection.
13166          * @param {String} key he key associated with the new added.
13167          * @param {Object} old The item being replaced.
13168          * @param {Object} new The new item.
13169          */
13170         "replace" : true,
13171         /**
13172          * @event remove
13173          * Fires when an item is removed from the collection.
13174          * @param {Object} o The item being removed.
13175          * @param {String} key (optional) The key associated with the removed item.
13176          */
13177         "remove" : true,
13178         "sort" : true
13179     });
13180     this.allowFunctions = allowFunctions === true;
13181     if(keyFn){
13182         this.getKey = keyFn;
13183     }
13184     Roo.util.MixedCollection.superclass.constructor.call(this);
13185 };
13186
13187 Roo.extend(Roo.util.MixedCollection, Roo.util.Observable, {
13188     allowFunctions : false,
13189     
13190 /**
13191  * Adds an item to the collection.
13192  * @param {String} key The key to associate with the item
13193  * @param {Object} o The item to add.
13194  * @return {Object} The item added.
13195  */
13196     add : function(key, o){
13197         if(arguments.length == 1){
13198             o = arguments[0];
13199             key = this.getKey(o);
13200         }
13201         if(typeof key == "undefined" || key === null){
13202             this.length++;
13203             this.items.push(o);
13204             this.keys.push(null);
13205         }else{
13206             var old = this.map[key];
13207             if(old){
13208                 return this.replace(key, o);
13209             }
13210             this.length++;
13211             this.items.push(o);
13212             this.map[key] = o;
13213             this.keys.push(key);
13214         }
13215         this.fireEvent("add", this.length-1, o, key);
13216         return o;
13217     },
13218        
13219 /**
13220   * MixedCollection has a generic way to fetch keys if you implement getKey.
13221 <pre><code>
13222 // normal way
13223 var mc = new Roo.util.MixedCollection();
13224 mc.add(someEl.dom.id, someEl);
13225 mc.add(otherEl.dom.id, otherEl);
13226 //and so on
13227
13228 // using getKey
13229 var mc = new Roo.util.MixedCollection();
13230 mc.getKey = function(el){
13231    return el.dom.id;
13232 };
13233 mc.add(someEl);
13234 mc.add(otherEl);
13235
13236 // or via the constructor
13237 var mc = new Roo.util.MixedCollection(false, function(el){
13238    return el.dom.id;
13239 });
13240 mc.add(someEl);
13241 mc.add(otherEl);
13242 </code></pre>
13243  * @param o {Object} The item for which to find the key.
13244  * @return {Object} The key for the passed item.
13245  */
13246     getKey : function(o){
13247          return o.id; 
13248     },
13249    
13250 /**
13251  * Replaces an item in the collection.
13252  * @param {String} key The key associated with the item to replace, or the item to replace.
13253  * @param o {Object} o (optional) If the first parameter passed was a key, the item to associate with that key.
13254  * @return {Object}  The new item.
13255  */
13256     replace : function(key, o){
13257         if(arguments.length == 1){
13258             o = arguments[0];
13259             key = this.getKey(o);
13260         }
13261         var old = this.item(key);
13262         if(typeof key == "undefined" || key === null || typeof old == "undefined"){
13263              return this.add(key, o);
13264         }
13265         var index = this.indexOfKey(key);
13266         this.items[index] = o;
13267         this.map[key] = o;
13268         this.fireEvent("replace", key, old, o);
13269         return o;
13270     },
13271    
13272 /**
13273  * Adds all elements of an Array or an Object to the collection.
13274  * @param {Object/Array} objs An Object containing properties which will be added to the collection, or
13275  * an Array of values, each of which are added to the collection.
13276  */
13277     addAll : function(objs){
13278         if(arguments.length > 1 || objs instanceof Array){
13279             var args = arguments.length > 1 ? arguments : objs;
13280             for(var i = 0, len = args.length; i < len; i++){
13281                 this.add(args[i]);
13282             }
13283         }else{
13284             for(var key in objs){
13285                 if(this.allowFunctions || typeof objs[key] != "function"){
13286                     this.add(key, objs[key]);
13287                 }
13288             }
13289         }
13290     },
13291    
13292 /**
13293  * Executes the specified function once for every item in the collection, passing each
13294  * item as the first and only parameter. returning false from the function will stop the iteration.
13295  * @param {Function} fn The function to execute for each item.
13296  * @param {Object} scope (optional) The scope in which to execute the function.
13297  */
13298     each : function(fn, scope){
13299         var items = [].concat(this.items); // each safe for removal
13300         for(var i = 0, len = items.length; i < len; i++){
13301             if(fn.call(scope || items[i], items[i], i, len) === false){
13302                 break;
13303             }
13304         }
13305     },
13306    
13307 /**
13308  * Executes the specified function once for every key in the collection, passing each
13309  * key, and its associated item as the first two parameters.
13310  * @param {Function} fn The function to execute for each item.
13311  * @param {Object} scope (optional) The scope in which to execute the function.
13312  */
13313     eachKey : function(fn, scope){
13314         for(var i = 0, len = this.keys.length; i < len; i++){
13315             fn.call(scope || window, this.keys[i], this.items[i], i, len);
13316         }
13317     },
13318    
13319 /**
13320  * Returns the first item in the collection which elicits a true return value from the
13321  * passed selection function.
13322  * @param {Function} fn The selection function to execute for each item.
13323  * @param {Object} scope (optional) The scope in which to execute the function.
13324  * @return {Object} The first item in the collection which returned true from the selection function.
13325  */
13326     find : function(fn, scope){
13327         for(var i = 0, len = this.items.length; i < len; i++){
13328             if(fn.call(scope || window, this.items[i], this.keys[i])){
13329                 return this.items[i];
13330             }
13331         }
13332         return null;
13333     },
13334    
13335 /**
13336  * Inserts an item at the specified index in the collection.
13337  * @param {Number} index The index to insert the item at.
13338  * @param {String} key The key to associate with the new item, or the item itself.
13339  * @param {Object} o  (optional) If the second parameter was a key, the new item.
13340  * @return {Object} The item inserted.
13341  */
13342     insert : function(index, key, o){
13343         if(arguments.length == 2){
13344             o = arguments[1];
13345             key = this.getKey(o);
13346         }
13347         if(index >= this.length){
13348             return this.add(key, o);
13349         }
13350         this.length++;
13351         this.items.splice(index, 0, o);
13352         if(typeof key != "undefined" && key != null){
13353             this.map[key] = o;
13354         }
13355         this.keys.splice(index, 0, key);
13356         this.fireEvent("add", index, o, key);
13357         return o;
13358     },
13359    
13360 /**
13361  * Removed an item from the collection.
13362  * @param {Object} o The item to remove.
13363  * @return {Object} The item removed.
13364  */
13365     remove : function(o){
13366         return this.removeAt(this.indexOf(o));
13367     },
13368    
13369 /**
13370  * Remove an item from a specified index in the collection.
13371  * @param {Number} index The index within the collection of the item to remove.
13372  */
13373     removeAt : function(index){
13374         if(index < this.length && index >= 0){
13375             this.length--;
13376             var o = this.items[index];
13377             this.items.splice(index, 1);
13378             var key = this.keys[index];
13379             if(typeof key != "undefined"){
13380                 delete this.map[key];
13381             }
13382             this.keys.splice(index, 1);
13383             this.fireEvent("remove", o, key);
13384         }
13385     },
13386    
13387 /**
13388  * Removed an item associated with the passed key fom the collection.
13389  * @param {String} key The key of the item to remove.
13390  */
13391     removeKey : function(key){
13392         return this.removeAt(this.indexOfKey(key));
13393     },
13394    
13395 /**
13396  * Returns the number of items in the collection.
13397  * @return {Number} the number of items in the collection.
13398  */
13399     getCount : function(){
13400         return this.length; 
13401     },
13402    
13403 /**
13404  * Returns index within the collection of the passed Object.
13405  * @param {Object} o The item to find the index of.
13406  * @return {Number} index of the item.
13407  */
13408     indexOf : function(o){
13409         if(!this.items.indexOf){
13410             for(var i = 0, len = this.items.length; i < len; i++){
13411                 if(this.items[i] == o) {
13412                     return i;
13413                 }
13414             }
13415             return -1;
13416         }else{
13417             return this.items.indexOf(o);
13418         }
13419     },
13420    
13421 /**
13422  * Returns index within the collection of the passed key.
13423  * @param {String} key The key to find the index of.
13424  * @return {Number} index of the key.
13425  */
13426     indexOfKey : function(key){
13427         if(!this.keys.indexOf){
13428             for(var i = 0, len = this.keys.length; i < len; i++){
13429                 if(this.keys[i] == key) {
13430                     return i;
13431                 }
13432             }
13433             return -1;
13434         }else{
13435             return this.keys.indexOf(key);
13436         }
13437     },
13438    
13439 /**
13440  * Returns the item associated with the passed key OR index. Key has priority over index.
13441  * @param {String/Number} key The key or index of the item.
13442  * @return {Object} The item associated with the passed key.
13443  */
13444     item : function(key){
13445         if (key === 'length') {
13446             return null;
13447         }
13448         var item = typeof this.map[key] != "undefined" ? this.map[key] : this.items[key];
13449         return typeof item != 'function' || this.allowFunctions ? item : null; // for prototype!
13450     },
13451     
13452 /**
13453  * Returns the item at the specified index.
13454  * @param {Number} index The index of the item.
13455  * @return {Object}
13456  */
13457     itemAt : function(index){
13458         return this.items[index];
13459     },
13460     
13461 /**
13462  * Returns the item associated with the passed key.
13463  * @param {String/Number} key The key of the item.
13464  * @return {Object} The item associated with the passed key.
13465  */
13466     key : function(key){
13467         return this.map[key];
13468     },
13469    
13470 /**
13471  * Returns true if the collection contains the passed Object as an item.
13472  * @param {Object} o  The Object to look for in the collection.
13473  * @return {Boolean} True if the collection contains the Object as an item.
13474  */
13475     contains : function(o){
13476         return this.indexOf(o) != -1;
13477     },
13478    
13479 /**
13480  * Returns true if the collection contains the passed Object as a key.
13481  * @param {String} key The key to look for in the collection.
13482  * @return {Boolean} True if the collection contains the Object as a key.
13483  */
13484     containsKey : function(key){
13485         return typeof this.map[key] != "undefined";
13486     },
13487    
13488 /**
13489  * Removes all items from the collection.
13490  */
13491     clear : function(){
13492         this.length = 0;
13493         this.items = [];
13494         this.keys = [];
13495         this.map = {};
13496         this.fireEvent("clear");
13497     },
13498    
13499 /**
13500  * Returns the first item in the collection.
13501  * @return {Object} the first item in the collection..
13502  */
13503     first : function(){
13504         return this.items[0]; 
13505     },
13506    
13507 /**
13508  * Returns the last item in the collection.
13509  * @return {Object} the last item in the collection..
13510  */
13511     last : function(){
13512         return this.items[this.length-1];   
13513     },
13514     
13515     _sort : function(property, dir, fn){
13516         var dsc = String(dir).toUpperCase() == "DESC" ? -1 : 1;
13517         fn = fn || function(a, b){
13518             return a-b;
13519         };
13520         var c = [], k = this.keys, items = this.items;
13521         for(var i = 0, len = items.length; i < len; i++){
13522             c[c.length] = {key: k[i], value: items[i], index: i};
13523         }
13524         c.sort(function(a, b){
13525             var v = fn(a[property], b[property]) * dsc;
13526             if(v == 0){
13527                 v = (a.index < b.index ? -1 : 1);
13528             }
13529             return v;
13530         });
13531         for(var i = 0, len = c.length; i < len; i++){
13532             items[i] = c[i].value;
13533             k[i] = c[i].key;
13534         }
13535         this.fireEvent("sort", this);
13536     },
13537     
13538     /**
13539      * Sorts this collection with the passed comparison function
13540      * @param {String} direction (optional) "ASC" or "DESC"
13541      * @param {Function} fn (optional) comparison function
13542      */
13543     sort : function(dir, fn){
13544         this._sort("value", dir, fn);
13545     },
13546     
13547     /**
13548      * Sorts this collection by keys
13549      * @param {String} direction (optional) "ASC" or "DESC"
13550      * @param {Function} fn (optional) a comparison function (defaults to case insensitive string)
13551      */
13552     keySort : function(dir, fn){
13553         this._sort("key", dir, fn || function(a, b){
13554             return String(a).toUpperCase()-String(b).toUpperCase();
13555         });
13556     },
13557     
13558     /**
13559      * Returns a range of items in this collection
13560      * @param {Number} startIndex (optional) defaults to 0
13561      * @param {Number} endIndex (optional) default to the last item
13562      * @return {Array} An array of items
13563      */
13564     getRange : function(start, end){
13565         var items = this.items;
13566         if(items.length < 1){
13567             return [];
13568         }
13569         start = start || 0;
13570         end = Math.min(typeof end == "undefined" ? this.length-1 : end, this.length-1);
13571         var r = [];
13572         if(start <= end){
13573             for(var i = start; i <= end; i++) {
13574                     r[r.length] = items[i];
13575             }
13576         }else{
13577             for(var i = start; i >= end; i--) {
13578                     r[r.length] = items[i];
13579             }
13580         }
13581         return r;
13582     },
13583         
13584     /**
13585      * Filter the <i>objects</i> in this collection by a specific property. 
13586      * Returns a new collection that has been filtered.
13587      * @param {String} property A property on your objects
13588      * @param {String/RegExp} value Either string that the property values 
13589      * should start with or a RegExp to test against the property
13590      * @return {MixedCollection} The new filtered collection
13591      */
13592     filter : function(property, value){
13593         if(!value.exec){ // not a regex
13594             value = String(value);
13595             if(value.length == 0){
13596                 return this.clone();
13597             }
13598             value = new RegExp("^" + Roo.escapeRe(value), "i");
13599         }
13600         return this.filterBy(function(o){
13601             return o && value.test(o[property]);
13602         });
13603         },
13604     
13605     /**
13606      * Filter by a function. * Returns a new collection that has been filtered.
13607      * The passed function will be called with each 
13608      * object in the collection. If the function returns true, the value is included 
13609      * otherwise it is filtered.
13610      * @param {Function} fn The function to be called, it will receive the args o (the object), k (the key)
13611      * @param {Object} scope (optional) The scope of the function (defaults to this) 
13612      * @return {MixedCollection} The new filtered collection
13613      */
13614     filterBy : function(fn, scope){
13615         var r = new Roo.util.MixedCollection();
13616         r.getKey = this.getKey;
13617         var k = this.keys, it = this.items;
13618         for(var i = 0, len = it.length; i < len; i++){
13619             if(fn.call(scope||this, it[i], k[i])){
13620                                 r.add(k[i], it[i]);
13621                         }
13622         }
13623         return r;
13624     },
13625     
13626     /**
13627      * Creates a duplicate of this collection
13628      * @return {MixedCollection}
13629      */
13630     clone : function(){
13631         var r = new Roo.util.MixedCollection();
13632         var k = this.keys, it = this.items;
13633         for(var i = 0, len = it.length; i < len; i++){
13634             r.add(k[i], it[i]);
13635         }
13636         r.getKey = this.getKey;
13637         return r;
13638     }
13639 });
13640 /**
13641  * Returns the item associated with the passed key or index.
13642  * @method
13643  * @param {String/Number} key The key or index of the item.
13644  * @return {Object} The item associated with the passed key.
13645  */
13646 Roo.util.MixedCollection.prototype.get = Roo.util.MixedCollection.prototype.item;/*
13647  * Based on:
13648  * Ext JS Library 1.1.1
13649  * Copyright(c) 2006-2007, Ext JS, LLC.
13650  *
13651  * Originally Released Under LGPL - original licence link has changed is not relivant.
13652  *
13653  * Fork - LGPL
13654  * <script type="text/javascript">
13655  */
13656 /**
13657  * @class Roo.util.JSON
13658  * Modified version of Douglas Crockford"s json.js that doesn"t
13659  * mess with the Object prototype 
13660  * http://www.json.org/js.html
13661  * @singleton
13662  */
13663 Roo.util.JSON = new (function(){
13664     var useHasOwn = {}.hasOwnProperty ? true : false;
13665     
13666     // crashes Safari in some instances
13667     //var validRE = /^("(\\.|[^"\\\n\r])*?"|[,:{}\[\]0-9.\-+Eaeflnr-u \n\r\t])+?$/;
13668     
13669     var pad = function(n) {
13670         return n < 10 ? "0" + n : n;
13671     };
13672     
13673     var m = {
13674         "\b": '\\b',
13675         "\t": '\\t',
13676         "\n": '\\n',
13677         "\f": '\\f',
13678         "\r": '\\r',
13679         '"' : '\\"',
13680         "\\": '\\\\'
13681     };
13682
13683     var encodeString = function(s){
13684         if (/["\\\x00-\x1f]/.test(s)) {
13685             return '"' + s.replace(/([\x00-\x1f\\"])/g, function(a, b) {
13686                 var c = m[b];
13687                 if(c){
13688                     return c;
13689                 }
13690                 c = b.charCodeAt();
13691                 return "\\u00" +
13692                     Math.floor(c / 16).toString(16) +
13693                     (c % 16).toString(16);
13694             }) + '"';
13695         }
13696         return '"' + s + '"';
13697     };
13698     
13699     var encodeArray = function(o){
13700         var a = ["["], b, i, l = o.length, v;
13701             for (i = 0; i < l; i += 1) {
13702                 v = o[i];
13703                 switch (typeof v) {
13704                     case "undefined":
13705                     case "function":
13706                     case "unknown":
13707                         break;
13708                     default:
13709                         if (b) {
13710                             a.push(',');
13711                         }
13712                         a.push(v === null ? "null" : Roo.util.JSON.encode(v));
13713                         b = true;
13714                 }
13715             }
13716             a.push("]");
13717             return a.join("");
13718     };
13719     
13720     var encodeDate = function(o){
13721         return '"' + o.getFullYear() + "-" +
13722                 pad(o.getMonth() + 1) + "-" +
13723                 pad(o.getDate()) + "T" +
13724                 pad(o.getHours()) + ":" +
13725                 pad(o.getMinutes()) + ":" +
13726                 pad(o.getSeconds()) + '"';
13727     };
13728     
13729     /**
13730      * Encodes an Object, Array or other value
13731      * @param {Mixed} o The variable to encode
13732      * @return {String} The JSON string
13733      */
13734     this.encode = function(o)
13735     {
13736         // should this be extended to fully wrap stringify..
13737         
13738         if(typeof o == "undefined" || o === null){
13739             return "null";
13740         }else if(o instanceof Array){
13741             return encodeArray(o);
13742         }else if(o instanceof Date){
13743             return encodeDate(o);
13744         }else if(typeof o == "string"){
13745             return encodeString(o);
13746         }else if(typeof o == "number"){
13747             return isFinite(o) ? String(o) : "null";
13748         }else if(typeof o == "boolean"){
13749             return String(o);
13750         }else {
13751             var a = ["{"], b, i, v;
13752             for (i in o) {
13753                 if(!useHasOwn || o.hasOwnProperty(i)) {
13754                     v = o[i];
13755                     switch (typeof v) {
13756                     case "undefined":
13757                     case "function":
13758                     case "unknown":
13759                         break;
13760                     default:
13761                         if(b){
13762                             a.push(',');
13763                         }
13764                         a.push(this.encode(i), ":",
13765                                 v === null ? "null" : this.encode(v));
13766                         b = true;
13767                     }
13768                 }
13769             }
13770             a.push("}");
13771             return a.join("");
13772         }
13773     };
13774     
13775     /**
13776      * Decodes (parses) a JSON string to an object. If the JSON is invalid, this function throws a SyntaxError.
13777      * @param {String} json The JSON string
13778      * @return {Object} The resulting object
13779      */
13780     this.decode = function(json){
13781         
13782         return  /** eval:var:json */ eval("(" + json + ')');
13783     };
13784 })();
13785 /** 
13786  * Shorthand for {@link Roo.util.JSON#encode}
13787  * @member Roo encode 
13788  * @method */
13789 Roo.encode = typeof(JSON) != 'undefined' && JSON.stringify ? JSON.stringify : Roo.util.JSON.encode;
13790 /** 
13791  * Shorthand for {@link Roo.util.JSON#decode}
13792  * @member Roo decode 
13793  * @method */
13794 Roo.decode = typeof(JSON) != 'undefined' && JSON.parse ? JSON.parse : Roo.util.JSON.decode;
13795 /*
13796  * Based on:
13797  * Ext JS Library 1.1.1
13798  * Copyright(c) 2006-2007, Ext JS, LLC.
13799  *
13800  * Originally Released Under LGPL - original licence link has changed is not relivant.
13801  *
13802  * Fork - LGPL
13803  * <script type="text/javascript">
13804  */
13805  
13806 /**
13807  * @class Roo.util.Format
13808  * Reusable data formatting functions
13809  * @singleton
13810  */
13811 Roo.util.Format = function(){
13812     var trimRe = /^\s+|\s+$/g;
13813     return {
13814         /**
13815          * Truncate a string and add an ellipsis ('...') to the end if it exceeds the specified length
13816          * @param {String} value The string to truncate
13817          * @param {Number} length The maximum length to allow before truncating
13818          * @return {String} The converted text
13819          */
13820         ellipsis : function(value, len){
13821             if(value && value.length > len){
13822                 return value.substr(0, len-3)+"...";
13823             }
13824             return value;
13825         },
13826
13827         /**
13828          * Checks a reference and converts it to empty string if it is undefined
13829          * @param {Mixed} value Reference to check
13830          * @return {Mixed} Empty string if converted, otherwise the original value
13831          */
13832         undef : function(value){
13833             return typeof value != "undefined" ? value : "";
13834         },
13835
13836         /**
13837          * Convert certain characters (&, <, >, and ') to their HTML character equivalents for literal display in web pages.
13838          * @param {String} value The string to encode
13839          * @return {String} The encoded text
13840          */
13841         htmlEncode : function(value){
13842             return !value ? value : String(value).replace(/&/g, "&amp;").replace(/>/g, "&gt;").replace(/</g, "&lt;").replace(/"/g, "&quot;");
13843         },
13844
13845         /**
13846          * Convert certain characters (&, <, >, and ') from their HTML character equivalents.
13847          * @param {String} value The string to decode
13848          * @return {String} The decoded text
13849          */
13850         htmlDecode : function(value){
13851             return !value ? value : String(value).replace(/&amp;/g, "&").replace(/&gt;/g, ">").replace(/&lt;/g, "<").replace(/&quot;/g, '"');
13852         },
13853
13854         /**
13855          * Trims any whitespace from either side of a string
13856          * @param {String} value The text to trim
13857          * @return {String} The trimmed text
13858          */
13859         trim : function(value){
13860             return String(value).replace(trimRe, "");
13861         },
13862
13863         /**
13864          * Returns a substring from within an original string
13865          * @param {String} value The original text
13866          * @param {Number} start The start index of the substring
13867          * @param {Number} length The length of the substring
13868          * @return {String} The substring
13869          */
13870         substr : function(value, start, length){
13871             return String(value).substr(start, length);
13872         },
13873
13874         /**
13875          * Converts a string to all lower case letters
13876          * @param {String} value The text to convert
13877          * @return {String} The converted text
13878          */
13879         lowercase : function(value){
13880             return String(value).toLowerCase();
13881         },
13882
13883         /**
13884          * Converts a string to all upper case letters
13885          * @param {String} value The text to convert
13886          * @return {String} The converted text
13887          */
13888         uppercase : function(value){
13889             return String(value).toUpperCase();
13890         },
13891
13892         /**
13893          * Converts the first character only of a string to upper case
13894          * @param {String} value The text to convert
13895          * @return {String} The converted text
13896          */
13897         capitalize : function(value){
13898             return !value ? value : value.charAt(0).toUpperCase() + value.substr(1).toLowerCase();
13899         },
13900
13901         // private
13902         call : function(value, fn){
13903             if(arguments.length > 2){
13904                 var args = Array.prototype.slice.call(arguments, 2);
13905                 args.unshift(value);
13906                  
13907                 return /** eval:var:value */  eval(fn).apply(window, args);
13908             }else{
13909                 /** eval:var:value */
13910                 return /** eval:var:value */ eval(fn).call(window, value);
13911             }
13912         },
13913
13914        
13915         /**
13916          * safer version of Math.toFixed..??/
13917          * @param {Number/String} value The numeric value to format
13918          * @param {Number/String} value Decimal places 
13919          * @return {String} The formatted currency string
13920          */
13921         toFixed : function(v, n)
13922         {
13923             // why not use to fixed - precision is buggered???
13924             if (!n) {
13925                 return Math.round(v-0);
13926             }
13927             var fact = Math.pow(10,n+1);
13928             v = (Math.round((v-0)*fact))/fact;
13929             var z = (''+fact).substring(2);
13930             if (v == Math.floor(v)) {
13931                 return Math.floor(v) + '.' + z;
13932             }
13933             
13934             // now just padd decimals..
13935             var ps = String(v).split('.');
13936             var fd = (ps[1] + z);
13937             var r = fd.substring(0,n); 
13938             var rm = fd.substring(n); 
13939             if (rm < 5) {
13940                 return ps[0] + '.' + r;
13941             }
13942             r*=1; // turn it into a number;
13943             r++;
13944             if (String(r).length != n) {
13945                 ps[0]*=1;
13946                 ps[0]++;
13947                 r = String(r).substring(1); // chop the end off.
13948             }
13949             
13950             return ps[0] + '.' + r;
13951              
13952         },
13953         
13954         /**
13955          * Format a number as US currency
13956          * @param {Number/String} value The numeric value to format
13957          * @return {String} The formatted currency string
13958          */
13959         usMoney : function(v){
13960             return '$' + Roo.util.Format.number(v);
13961         },
13962         
13963         /**
13964          * Format a number
13965          * eventually this should probably emulate php's number_format
13966          * @param {Number/String} value The numeric value to format
13967          * @param {Number} decimals number of decimal places
13968          * @param {String} delimiter for thousands (default comma)
13969          * @return {String} The formatted currency string
13970          */
13971         number : function(v, decimals, thousandsDelimiter)
13972         {
13973             // multiply and round.
13974             decimals = typeof(decimals) == 'undefined' ? 2 : decimals;
13975             thousandsDelimiter = typeof(thousandsDelimiter) == 'undefined' ? ',' : thousandsDelimiter;
13976             
13977             var mul = Math.pow(10, decimals);
13978             var zero = String(mul).substring(1);
13979             v = (Math.round((v-0)*mul))/mul;
13980             
13981             // if it's '0' number.. then
13982             
13983             //v = (v == Math.floor(v)) ? v + "." + zero : ((v*10 == Math.floor(v*10)) ? v + "0" : v);
13984             v = String(v);
13985             var ps = v.split('.');
13986             var whole = ps[0];
13987             
13988             var r = /(\d+)(\d{3})/;
13989             // add comma's
13990             
13991             if(thousandsDelimiter.length != 0) {
13992                 whole = whole.replace(/\B(?=(\d{3})+(?!\d))/g, thousandsDelimiter );
13993             } 
13994             
13995             var sub = ps[1] ?
13996                     // has decimals..
13997                     (decimals ?  ('.'+ ps[1] + zero.substring(ps[1].length)) : '') :
13998                     // does not have decimals
13999                     (decimals ? ('.' + zero) : '');
14000             
14001             
14002             return whole + sub ;
14003         },
14004         
14005         /**
14006          * Parse a value into a formatted date using the specified format pattern.
14007          * @param {Mixed} value The value to format
14008          * @param {String} format (optional) Any valid date format string (defaults to 'm/d/Y')
14009          * @return {String} The formatted date string
14010          */
14011         date : function(v, format){
14012             if(!v){
14013                 return "";
14014             }
14015             if(!(v instanceof Date)){
14016                 v = new Date(Date.parse(v));
14017             }
14018             return v.dateFormat(format || Roo.util.Format.defaults.date);
14019         },
14020
14021         /**
14022          * Returns a date rendering function that can be reused to apply a date format multiple times efficiently
14023          * @param {String} format Any valid date format string
14024          * @return {Function} The date formatting function
14025          */
14026         dateRenderer : function(format){
14027             return function(v){
14028                 return Roo.util.Format.date(v, format);  
14029             };
14030         },
14031
14032         // private
14033         stripTagsRE : /<\/?[^>]+>/gi,
14034         
14035         /**
14036          * Strips all HTML tags
14037          * @param {Mixed} value The text from which to strip tags
14038          * @return {String} The stripped text
14039          */
14040         stripTags : function(v){
14041             return !v ? v : String(v).replace(this.stripTagsRE, "");
14042         },
14043         
14044         /**
14045          * Size in Mb,Gb etc.
14046          * @param {Number} value The number to be formated
14047          * @param {number} decimals how many decimal places
14048          * @return {String} the formated string
14049          */
14050         size : function(value, decimals)
14051         {
14052             var sizes = ['b', 'k', 'M', 'G', 'T'];
14053             if (value == 0) {
14054                 return 0;
14055             }
14056             var i = parseInt(Math.floor(Math.log(value) / Math.log(1024)));
14057             return Roo.util.Format.number(value/ Math.pow(1024, i) ,decimals)   + sizes[i];
14058         }
14059         
14060         
14061         
14062     };
14063 }();
14064 Roo.util.Format.defaults = {
14065     date : 'd/M/Y'
14066 };/*
14067  * Based on:
14068  * Ext JS Library 1.1.1
14069  * Copyright(c) 2006-2007, Ext JS, LLC.
14070  *
14071  * Originally Released Under LGPL - original licence link has changed is not relivant.
14072  *
14073  * Fork - LGPL
14074  * <script type="text/javascript">
14075  */
14076
14077
14078  
14079
14080 /**
14081  * @class Roo.MasterTemplate
14082  * @extends Roo.Template
14083  * Provides a template that can have child templates. The syntax is:
14084 <pre><code>
14085 var t = new Roo.MasterTemplate(
14086         '&lt;select name="{name}"&gt;',
14087                 '&lt;tpl name="options"&gt;&lt;option value="{value:trim}"&gt;{text:ellipsis(10)}&lt;/option&gt;&lt;/tpl&gt;',
14088         '&lt;/select&gt;'
14089 );
14090 t.add('options', {value: 'foo', text: 'bar'});
14091 // or you can add multiple child elements in one shot
14092 t.addAll('options', [
14093     {value: 'foo', text: 'bar'},
14094     {value: 'foo2', text: 'bar2'},
14095     {value: 'foo3', text: 'bar3'}
14096 ]);
14097 // then append, applying the master template values
14098 t.append('my-form', {name: 'my-select'});
14099 </code></pre>
14100 * A name attribute for the child template is not required if you have only one child
14101 * template or you want to refer to them by index.
14102  */
14103 Roo.MasterTemplate = function(){
14104     Roo.MasterTemplate.superclass.constructor.apply(this, arguments);
14105     this.originalHtml = this.html;
14106     var st = {};
14107     var m, re = this.subTemplateRe;
14108     re.lastIndex = 0;
14109     var subIndex = 0;
14110     while(m = re.exec(this.html)){
14111         var name = m[1], content = m[2];
14112         st[subIndex] = {
14113             name: name,
14114             index: subIndex,
14115             buffer: [],
14116             tpl : new Roo.Template(content)
14117         };
14118         if(name){
14119             st[name] = st[subIndex];
14120         }
14121         st[subIndex].tpl.compile();
14122         st[subIndex].tpl.call = this.call.createDelegate(this);
14123         subIndex++;
14124     }
14125     this.subCount = subIndex;
14126     this.subs = st;
14127 };
14128 Roo.extend(Roo.MasterTemplate, Roo.Template, {
14129     /**
14130     * The regular expression used to match sub templates
14131     * @type RegExp
14132     * @property
14133     */
14134     subTemplateRe : /<tpl(?:\sname="([\w-]+)")?>((?:.|\n)*?)<\/tpl>/gi,
14135
14136     /**
14137      * Applies the passed values to a child template.
14138      * @param {String/Number} name (optional) The name or index of the child template
14139      * @param {Array/Object} values The values to be applied to the template
14140      * @return {MasterTemplate} this
14141      */
14142      add : function(name, values){
14143         if(arguments.length == 1){
14144             values = arguments[0];
14145             name = 0;
14146         }
14147         var s = this.subs[name];
14148         s.buffer[s.buffer.length] = s.tpl.apply(values);
14149         return this;
14150     },
14151
14152     /**
14153      * Applies all the passed values to a child template.
14154      * @param {String/Number} name (optional) The name or index of the child template
14155      * @param {Array} values The values to be applied to the template, this should be an array of objects.
14156      * @param {Boolean} reset (optional) True to reset the template first
14157      * @return {MasterTemplate} this
14158      */
14159     fill : function(name, values, reset){
14160         var a = arguments;
14161         if(a.length == 1 || (a.length == 2 && typeof a[1] == "boolean")){
14162             values = a[0];
14163             name = 0;
14164             reset = a[1];
14165         }
14166         if(reset){
14167             this.reset();
14168         }
14169         for(var i = 0, len = values.length; i < len; i++){
14170             this.add(name, values[i]);
14171         }
14172         return this;
14173     },
14174
14175     /**
14176      * Resets the template for reuse
14177      * @return {MasterTemplate} this
14178      */
14179      reset : function(){
14180         var s = this.subs;
14181         for(var i = 0; i < this.subCount; i++){
14182             s[i].buffer = [];
14183         }
14184         return this;
14185     },
14186
14187     applyTemplate : function(values){
14188         var s = this.subs;
14189         var replaceIndex = -1;
14190         this.html = this.originalHtml.replace(this.subTemplateRe, function(m, name){
14191             return s[++replaceIndex].buffer.join("");
14192         });
14193         return Roo.MasterTemplate.superclass.applyTemplate.call(this, values);
14194     },
14195
14196     apply : function(){
14197         return this.applyTemplate.apply(this, arguments);
14198     },
14199
14200     compile : function(){return this;}
14201 });
14202
14203 /**
14204  * Alias for fill().
14205  * @method
14206  */
14207 Roo.MasterTemplate.prototype.addAll = Roo.MasterTemplate.prototype.fill;
14208  /**
14209  * Creates a template from the passed element's value (display:none textarea, preferred) or innerHTML. e.g.
14210  * var tpl = Roo.MasterTemplate.from('element-id');
14211  * @param {String/HTMLElement} el
14212  * @param {Object} config
14213  * @static
14214  */
14215 Roo.MasterTemplate.from = function(el, config){
14216     el = Roo.getDom(el);
14217     return new Roo.MasterTemplate(el.value || el.innerHTML, config || '');
14218 };/*
14219  * Based on:
14220  * Ext JS Library 1.1.1
14221  * Copyright(c) 2006-2007, Ext JS, LLC.
14222  *
14223  * Originally Released Under LGPL - original licence link has changed is not relivant.
14224  *
14225  * Fork - LGPL
14226  * <script type="text/javascript">
14227  */
14228
14229  
14230 /**
14231  * @class Roo.util.CSS
14232  * Utility class for manipulating CSS rules
14233  * @singleton
14234  */
14235 Roo.util.CSS = function(){
14236         var rules = null;
14237         var doc = document;
14238
14239     var camelRe = /(-[a-z])/gi;
14240     var camelFn = function(m, a){ return a.charAt(1).toUpperCase(); };
14241
14242    return {
14243    /**
14244     * Very simple dynamic creation of stylesheets from a text blob of rules.  The text will wrapped in a style
14245     * tag and appended to the HEAD of the document.
14246     * @param {String|Object} cssText The text containing the css rules
14247     * @param {String} id An id to add to the stylesheet for later removal
14248     * @return {StyleSheet}
14249     */
14250     createStyleSheet : function(cssText, id){
14251         var ss;
14252         var head = doc.getElementsByTagName("head")[0];
14253         var nrules = doc.createElement("style");
14254         nrules.setAttribute("type", "text/css");
14255         if(id){
14256             nrules.setAttribute("id", id);
14257         }
14258         if (typeof(cssText) != 'string') {
14259             // support object maps..
14260             // not sure if this a good idea.. 
14261             // perhaps it should be merged with the general css handling
14262             // and handle js style props.
14263             var cssTextNew = [];
14264             for(var n in cssText) {
14265                 var citems = [];
14266                 for(var k in cssText[n]) {
14267                     citems.push( k + ' : ' +cssText[n][k] + ';' );
14268                 }
14269                 cssTextNew.push( n + ' { ' + citems.join(' ') + '} ');
14270                 
14271             }
14272             cssText = cssTextNew.join("\n");
14273             
14274         }
14275        
14276        
14277        if(Roo.isIE){
14278            head.appendChild(nrules);
14279            ss = nrules.styleSheet;
14280            ss.cssText = cssText;
14281        }else{
14282            try{
14283                 nrules.appendChild(doc.createTextNode(cssText));
14284            }catch(e){
14285                nrules.cssText = cssText; 
14286            }
14287            head.appendChild(nrules);
14288            ss = nrules.styleSheet ? nrules.styleSheet : (nrules.sheet || doc.styleSheets[doc.styleSheets.length-1]);
14289        }
14290        this.cacheStyleSheet(ss);
14291        return ss;
14292    },
14293
14294    /**
14295     * Removes a style or link tag by id
14296     * @param {String} id The id of the tag
14297     */
14298    removeStyleSheet : function(id){
14299        var existing = doc.getElementById(id);
14300        if(existing){
14301            existing.parentNode.removeChild(existing);
14302        }
14303    },
14304
14305    /**
14306     * Dynamically swaps an existing stylesheet reference for a new one
14307     * @param {String} id The id of an existing link tag to remove
14308     * @param {String} url The href of the new stylesheet to include
14309     */
14310    swapStyleSheet : function(id, url){
14311        this.removeStyleSheet(id);
14312        var ss = doc.createElement("link");
14313        ss.setAttribute("rel", "stylesheet");
14314        ss.setAttribute("type", "text/css");
14315        ss.setAttribute("id", id);
14316        ss.setAttribute("href", url);
14317        doc.getElementsByTagName("head")[0].appendChild(ss);
14318    },
14319    
14320    /**
14321     * Refresh the rule cache if you have dynamically added stylesheets
14322     * @return {Object} An object (hash) of rules indexed by selector
14323     */
14324    refreshCache : function(){
14325        return this.getRules(true);
14326    },
14327
14328    // private
14329    cacheStyleSheet : function(stylesheet){
14330        if(!rules){
14331            rules = {};
14332        }
14333        try{// try catch for cross domain access issue
14334            var ssRules = stylesheet.cssRules || stylesheet.rules;
14335            for(var j = ssRules.length-1; j >= 0; --j){
14336                rules[ssRules[j].selectorText] = ssRules[j];
14337            }
14338        }catch(e){}
14339    },
14340    
14341    /**
14342     * Gets all css rules for the document
14343     * @param {Boolean} refreshCache true to refresh the internal cache
14344     * @return {Object} An object (hash) of rules indexed by selector
14345     */
14346    getRules : function(refreshCache){
14347                 if(rules == null || refreshCache){
14348                         rules = {};
14349                         var ds = doc.styleSheets;
14350                         for(var i =0, len = ds.length; i < len; i++){
14351                             try{
14352                         this.cacheStyleSheet(ds[i]);
14353                     }catch(e){} 
14354                 }
14355                 }
14356                 return rules;
14357         },
14358         
14359         /**
14360     * Gets an an individual CSS rule by selector(s)
14361     * @param {String/Array} selector The CSS selector or an array of selectors to try. The first selector that is found is returned.
14362     * @param {Boolean} refreshCache true to refresh the internal cache if you have recently updated any rules or added styles dynamically
14363     * @return {CSSRule} The CSS rule or null if one is not found
14364     */
14365    getRule : function(selector, refreshCache){
14366                 var rs = this.getRules(refreshCache);
14367                 if(!(selector instanceof Array)){
14368                     return rs[selector];
14369                 }
14370                 for(var i = 0; i < selector.length; i++){
14371                         if(rs[selector[i]]){
14372                                 return rs[selector[i]];
14373                         }
14374                 }
14375                 return null;
14376         },
14377         
14378         
14379         /**
14380     * Updates a rule property
14381     * @param {String/Array} selector If it's an array it tries each selector until it finds one. Stops immediately once one is found.
14382     * @param {String} property The css property
14383     * @param {String} value The new value for the property
14384     * @return {Boolean} true If a rule was found and updated
14385     */
14386    updateRule : function(selector, property, value){
14387                 if(!(selector instanceof Array)){
14388                         var rule = this.getRule(selector);
14389                         if(rule){
14390                                 rule.style[property.replace(camelRe, camelFn)] = value;
14391                                 return true;
14392                         }
14393                 }else{
14394                         for(var i = 0; i < selector.length; i++){
14395                                 if(this.updateRule(selector[i], property, value)){
14396                                         return true;
14397                                 }
14398                         }
14399                 }
14400                 return false;
14401         }
14402    };   
14403 }();/*
14404  * Based on:
14405  * Ext JS Library 1.1.1
14406  * Copyright(c) 2006-2007, Ext JS, LLC.
14407  *
14408  * Originally Released Under LGPL - original licence link has changed is not relivant.
14409  *
14410  * Fork - LGPL
14411  * <script type="text/javascript">
14412  */
14413
14414  
14415
14416 /**
14417  * @class Roo.util.ClickRepeater
14418  * @extends Roo.util.Observable
14419  * 
14420  * A wrapper class which can be applied to any element. Fires a "click" event while the
14421  * mouse is pressed. The interval between firings may be specified in the config but
14422  * defaults to 10 milliseconds.
14423  * 
14424  * Optionally, a CSS class may be applied to the element during the time it is pressed.
14425  * 
14426  * @cfg {String/HTMLElement/Element} el The element to act as a button.
14427  * @cfg {Number} delay The initial delay before the repeating event begins firing.
14428  * Similar to an autorepeat key delay.
14429  * @cfg {Number} interval The interval between firings of the "click" event. Default 10 ms.
14430  * @cfg {String} pressClass A CSS class name to be applied to the element while pressed.
14431  * @cfg {Boolean} accelerate True if autorepeating should start slowly and accelerate.
14432  *           "interval" and "delay" are ignored. "immediate" is honored.
14433  * @cfg {Boolean} preventDefault True to prevent the default click event
14434  * @cfg {Boolean} stopDefault True to stop the default click event
14435  * 
14436  * @history
14437  *     2007-02-02 jvs Original code contributed by Nige "Animal" White
14438  *     2007-02-02 jvs Renamed to ClickRepeater
14439  *   2007-02-03 jvs Modifications for FF Mac and Safari 
14440  *
14441  *  @constructor
14442  * @param {String/HTMLElement/Element} el The element to listen on
14443  * @param {Object} config
14444  **/
14445 Roo.util.ClickRepeater = function(el, config)
14446 {
14447     this.el = Roo.get(el);
14448     this.el.unselectable();
14449
14450     Roo.apply(this, config);
14451
14452     this.addEvents({
14453     /**
14454      * @event mousedown
14455      * Fires when the mouse button is depressed.
14456      * @param {Roo.util.ClickRepeater} this
14457      */
14458         "mousedown" : true,
14459     /**
14460      * @event click
14461      * Fires on a specified interval during the time the element is pressed.
14462      * @param {Roo.util.ClickRepeater} this
14463      */
14464         "click" : true,
14465     /**
14466      * @event mouseup
14467      * Fires when the mouse key is released.
14468      * @param {Roo.util.ClickRepeater} this
14469      */
14470         "mouseup" : true
14471     });
14472
14473     this.el.on("mousedown", this.handleMouseDown, this);
14474     if(this.preventDefault || this.stopDefault){
14475         this.el.on("click", function(e){
14476             if(this.preventDefault){
14477                 e.preventDefault();
14478             }
14479             if(this.stopDefault){
14480                 e.stopEvent();
14481             }
14482         }, this);
14483     }
14484
14485     // allow inline handler
14486     if(this.handler){
14487         this.on("click", this.handler,  this.scope || this);
14488     }
14489
14490     Roo.util.ClickRepeater.superclass.constructor.call(this);
14491 };
14492
14493 Roo.extend(Roo.util.ClickRepeater, Roo.util.Observable, {
14494     interval : 20,
14495     delay: 250,
14496     preventDefault : true,
14497     stopDefault : false,
14498     timer : 0,
14499
14500     // private
14501     handleMouseDown : function(){
14502         clearTimeout(this.timer);
14503         this.el.blur();
14504         if(this.pressClass){
14505             this.el.addClass(this.pressClass);
14506         }
14507         this.mousedownTime = new Date();
14508
14509         Roo.get(document).on("mouseup", this.handleMouseUp, this);
14510         this.el.on("mouseout", this.handleMouseOut, this);
14511
14512         this.fireEvent("mousedown", this);
14513         this.fireEvent("click", this);
14514         
14515         this.timer = this.click.defer(this.delay || this.interval, this);
14516     },
14517
14518     // private
14519     click : function(){
14520         this.fireEvent("click", this);
14521         this.timer = this.click.defer(this.getInterval(), this);
14522     },
14523
14524     // private
14525     getInterval: function(){
14526         if(!this.accelerate){
14527             return this.interval;
14528         }
14529         var pressTime = this.mousedownTime.getElapsed();
14530         if(pressTime < 500){
14531             return 400;
14532         }else if(pressTime < 1700){
14533             return 320;
14534         }else if(pressTime < 2600){
14535             return 250;
14536         }else if(pressTime < 3500){
14537             return 180;
14538         }else if(pressTime < 4400){
14539             return 140;
14540         }else if(pressTime < 5300){
14541             return 80;
14542         }else if(pressTime < 6200){
14543             return 50;
14544         }else{
14545             return 10;
14546         }
14547     },
14548
14549     // private
14550     handleMouseOut : function(){
14551         clearTimeout(this.timer);
14552         if(this.pressClass){
14553             this.el.removeClass(this.pressClass);
14554         }
14555         this.el.on("mouseover", this.handleMouseReturn, this);
14556     },
14557
14558     // private
14559     handleMouseReturn : function(){
14560         this.el.un("mouseover", this.handleMouseReturn);
14561         if(this.pressClass){
14562             this.el.addClass(this.pressClass);
14563         }
14564         this.click();
14565     },
14566
14567     // private
14568     handleMouseUp : function(){
14569         clearTimeout(this.timer);
14570         this.el.un("mouseover", this.handleMouseReturn);
14571         this.el.un("mouseout", this.handleMouseOut);
14572         Roo.get(document).un("mouseup", this.handleMouseUp);
14573         this.el.removeClass(this.pressClass);
14574         this.fireEvent("mouseup", this);
14575     }
14576 });/**
14577  * @class Roo.util.Clipboard
14578  * @static
14579  * 
14580  * Clipboard UTILS
14581  * 
14582  **/
14583 Roo.util.Clipboard = {
14584     /**
14585      * Writes a string to the clipboard - using the Clipboard API if https, otherwise using text area.
14586      * @param {String} text to copy to clipboard
14587      */
14588     write : function(text) {
14589         // navigator clipboard api needs a secure context (https)
14590         if (navigator.clipboard && window.isSecureContext) {
14591             // navigator clipboard api method'
14592             navigator.clipboard.writeText(text);
14593             return ;
14594         } 
14595         // text area method
14596         var ta = document.createElement("textarea");
14597         ta.value = text;
14598         // make the textarea out of viewport
14599         ta.style.position = "fixed";
14600         ta.style.left = "-999999px";
14601         ta.style.top = "-999999px";
14602         document.body.appendChild(ta);
14603         ta.focus();
14604         ta.select();
14605         document.execCommand('copy');
14606         (function() {
14607             ta.remove();
14608         }).defer(100);
14609         
14610     }
14611         
14612 }
14613     /*
14614  * Based on:
14615  * Ext JS Library 1.1.1
14616  * Copyright(c) 2006-2007, Ext JS, LLC.
14617  *
14618  * Originally Released Under LGPL - original licence link has changed is not relivant.
14619  *
14620  * Fork - LGPL
14621  * <script type="text/javascript">
14622  */
14623
14624  
14625 /**
14626  * @class Roo.KeyNav
14627  * <p>Provides a convenient wrapper for normalized keyboard navigation.  KeyNav allows you to bind
14628  * navigation keys to function calls that will get called when the keys are pressed, providing an easy
14629  * way to implement custom navigation schemes for any UI component.</p>
14630  * <p>The following are all of the possible keys that can be implemented: enter, left, right, up, down, tab, esc,
14631  * pageUp, pageDown, del, home, end.  Usage:</p>
14632  <pre><code>
14633 var nav = new Roo.KeyNav("my-element", {
14634     "left" : function(e){
14635         this.moveLeft(e.ctrlKey);
14636     },
14637     "right" : function(e){
14638         this.moveRight(e.ctrlKey);
14639     },
14640     "enter" : function(e){
14641         this.save();
14642     },
14643     scope : this
14644 });
14645 </code></pre>
14646  * @constructor
14647  * @param {String/HTMLElement/Roo.Element} el The element to bind to
14648  * @param {Object} config The config
14649  */
14650 Roo.KeyNav = function(el, config){
14651     this.el = Roo.get(el);
14652     Roo.apply(this, config);
14653     if(!this.disabled){
14654         this.disabled = true;
14655         this.enable();
14656     }
14657 };
14658
14659 Roo.KeyNav.prototype = {
14660     /**
14661      * @cfg {Boolean} disabled
14662      * True to disable this KeyNav instance (defaults to false)
14663      */
14664     disabled : false,
14665     /**
14666      * @cfg {String} defaultEventAction
14667      * The method to call on the {@link Roo.EventObject} after this KeyNav intercepts a key.  Valid values are
14668      * {@link Roo.EventObject#stopEvent}, {@link Roo.EventObject#preventDefault} and
14669      * {@link Roo.EventObject#stopPropagation} (defaults to 'stopEvent')
14670      */
14671     defaultEventAction: "stopEvent",
14672     /**
14673      * @cfg {Boolean} forceKeyDown
14674      * Handle the keydown event instead of keypress (defaults to false).  KeyNav automatically does this for IE since
14675      * IE does not propagate special keys on keypress, but setting this to true will force other browsers to also
14676      * handle keydown instead of keypress.
14677      */
14678     forceKeyDown : false,
14679
14680     // private
14681     prepareEvent : function(e){
14682         var k = e.getKey();
14683         var h = this.keyToHandler[k];
14684         //if(h && this[h]){
14685         //    e.stopPropagation();
14686         //}
14687         if(Roo.isSafari && h && k >= 37 && k <= 40){
14688             e.stopEvent();
14689         }
14690     },
14691
14692     // private
14693     relay : function(e){
14694         var k = e.getKey();
14695         var h = this.keyToHandler[k];
14696         if(h && this[h]){
14697             if(this.doRelay(e, this[h], h) !== true){
14698                 e[this.defaultEventAction]();
14699             }
14700         }
14701     },
14702
14703     // private
14704     doRelay : function(e, h, hname){
14705         return h.call(this.scope || this, e);
14706     },
14707
14708     // possible handlers
14709     enter : false,
14710     left : false,
14711     right : false,
14712     up : false,
14713     down : false,
14714     tab : false,
14715     esc : false,
14716     pageUp : false,
14717     pageDown : false,
14718     del : false,
14719     home : false,
14720     end : false,
14721
14722     // quick lookup hash
14723     keyToHandler : {
14724         37 : "left",
14725         39 : "right",
14726         38 : "up",
14727         40 : "down",
14728         33 : "pageUp",
14729         34 : "pageDown",
14730         46 : "del",
14731         36 : "home",
14732         35 : "end",
14733         13 : "enter",
14734         27 : "esc",
14735         9  : "tab"
14736     },
14737
14738         /**
14739          * Enable this KeyNav
14740          */
14741         enable: function(){
14742                 if(this.disabled){
14743             // ie won't do special keys on keypress, no one else will repeat keys with keydown
14744             // the EventObject will normalize Safari automatically
14745             if(this.forceKeyDown || Roo.isIE || Roo.isAir){
14746                 this.el.on("keydown", this.relay,  this);
14747             }else{
14748                 this.el.on("keydown", this.prepareEvent,  this);
14749                 this.el.on("keypress", this.relay,  this);
14750             }
14751                     this.disabled = false;
14752                 }
14753         },
14754
14755         /**
14756          * Disable this KeyNav
14757          */
14758         disable: function(){
14759                 if(!this.disabled){
14760                     if(this.forceKeyDown || Roo.isIE || Roo.isAir){
14761                 this.el.un("keydown", this.relay);
14762             }else{
14763                 this.el.un("keydown", this.prepareEvent);
14764                 this.el.un("keypress", this.relay);
14765             }
14766                     this.disabled = true;
14767                 }
14768         }
14769 };/*
14770  * Based on:
14771  * Ext JS Library 1.1.1
14772  * Copyright(c) 2006-2007, Ext JS, LLC.
14773  *
14774  * Originally Released Under LGPL - original licence link has changed is not relivant.
14775  *
14776  * Fork - LGPL
14777  * <script type="text/javascript">
14778  */
14779
14780  
14781 /**
14782  * @class Roo.KeyMap
14783  * Handles mapping keys to actions for an element. One key map can be used for multiple actions.
14784  * The constructor accepts the same config object as defined by {@link #addBinding}.
14785  * If you bind a callback function to a KeyMap, anytime the KeyMap handles an expected key
14786  * combination it will call the function with this signature (if the match is a multi-key
14787  * combination the callback will still be called only once): (String key, Roo.EventObject e)
14788  * A KeyMap can also handle a string representation of keys.<br />
14789  * Usage:
14790  <pre><code>
14791 // map one key by key code
14792 var map = new Roo.KeyMap("my-element", {
14793     key: 13, // or Roo.EventObject.ENTER
14794     fn: myHandler,
14795     scope: myObject
14796 });
14797
14798 // map multiple keys to one action by string
14799 var map = new Roo.KeyMap("my-element", {
14800     key: "a\r\n\t",
14801     fn: myHandler,
14802     scope: myObject
14803 });
14804
14805 // map multiple keys to multiple actions by strings and array of codes
14806 var map = new Roo.KeyMap("my-element", [
14807     {
14808         key: [10,13],
14809         fn: function(){ alert("Return was pressed"); }
14810     }, {
14811         key: "abc",
14812         fn: function(){ alert('a, b or c was pressed'); }
14813     }, {
14814         key: "\t",
14815         ctrl:true,
14816         shift:true,
14817         fn: function(){ alert('Control + shift + tab was pressed.'); }
14818     }
14819 ]);
14820 </code></pre>
14821  * <b>Note: A KeyMap starts enabled</b>
14822  * @constructor
14823  * @param {String/HTMLElement/Roo.Element} el The element to bind to
14824  * @param {Object} config The config (see {@link #addBinding})
14825  * @param {String} eventName (optional) The event to bind to (defaults to "keydown")
14826  */
14827 Roo.KeyMap = function(el, config, eventName){
14828     this.el  = Roo.get(el);
14829     this.eventName = eventName || "keydown";
14830     this.bindings = [];
14831     if(config){
14832         this.addBinding(config);
14833     }
14834     this.enable();
14835 };
14836
14837 Roo.KeyMap.prototype = {
14838     /**
14839      * True to stop the event from bubbling and prevent the default browser action if the
14840      * key was handled by the KeyMap (defaults to false)
14841      * @type Boolean
14842      */
14843     stopEvent : false,
14844
14845     /**
14846      * Add a new binding to this KeyMap. The following config object properties are supported:
14847      * <pre>
14848 Property    Type             Description
14849 ----------  ---------------  ----------------------------------------------------------------------
14850 key         String/Array     A single keycode or an array of keycodes to handle
14851 shift       Boolean          True to handle key only when shift is pressed (defaults to false)
14852 ctrl        Boolean          True to handle key only when ctrl is pressed (defaults to false)
14853 alt         Boolean          True to handle key only when alt is pressed (defaults to false)
14854 fn          Function         The function to call when KeyMap finds the expected key combination
14855 scope       Object           The scope of the callback function
14856 </pre>
14857      *
14858      * Usage:
14859      * <pre><code>
14860 // Create a KeyMap
14861 var map = new Roo.KeyMap(document, {
14862     key: Roo.EventObject.ENTER,
14863     fn: handleKey,
14864     scope: this
14865 });
14866
14867 //Add a new binding to the existing KeyMap later
14868 map.addBinding({
14869     key: 'abc',
14870     shift: true,
14871     fn: handleKey,
14872     scope: this
14873 });
14874 </code></pre>
14875      * @param {Object/Array} config A single KeyMap config or an array of configs
14876      */
14877         addBinding : function(config){
14878         if(config instanceof Array){
14879             for(var i = 0, len = config.length; i < len; i++){
14880                 this.addBinding(config[i]);
14881             }
14882             return;
14883         }
14884         var keyCode = config.key,
14885             shift = config.shift, 
14886             ctrl = config.ctrl, 
14887             alt = config.alt,
14888             fn = config.fn,
14889             scope = config.scope;
14890         if(typeof keyCode == "string"){
14891             var ks = [];
14892             var keyString = keyCode.toUpperCase();
14893             for(var j = 0, len = keyString.length; j < len; j++){
14894                 ks.push(keyString.charCodeAt(j));
14895             }
14896             keyCode = ks;
14897         }
14898         var keyArray = keyCode instanceof Array;
14899         var handler = function(e){
14900             if((!shift || e.shiftKey) && (!ctrl || e.ctrlKey) &&  (!alt || e.altKey)){
14901                 var k = e.getKey();
14902                 if(keyArray){
14903                     for(var i = 0, len = keyCode.length; i < len; i++){
14904                         if(keyCode[i] == k){
14905                           if(this.stopEvent){
14906                               e.stopEvent();
14907                           }
14908                           fn.call(scope || window, k, e);
14909                           return;
14910                         }
14911                     }
14912                 }else{
14913                     if(k == keyCode){
14914                         if(this.stopEvent){
14915                            e.stopEvent();
14916                         }
14917                         fn.call(scope || window, k, e);
14918                     }
14919                 }
14920             }
14921         };
14922         this.bindings.push(handler);  
14923         },
14924
14925     /**
14926      * Shorthand for adding a single key listener
14927      * @param {Number/Array/Object} key Either the numeric key code, array of key codes or an object with the
14928      * following options:
14929      * {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
14930      * @param {Function} fn The function to call
14931      * @param {Object} scope (optional) The scope of the function
14932      */
14933     on : function(key, fn, scope){
14934         var keyCode, shift, ctrl, alt;
14935         if(typeof key == "object" && !(key instanceof Array)){
14936             keyCode = key.key;
14937             shift = key.shift;
14938             ctrl = key.ctrl;
14939             alt = key.alt;
14940         }else{
14941             keyCode = key;
14942         }
14943         this.addBinding({
14944             key: keyCode,
14945             shift: shift,
14946             ctrl: ctrl,
14947             alt: alt,
14948             fn: fn,
14949             scope: scope
14950         })
14951     },
14952
14953     // private
14954     handleKeyDown : function(e){
14955             if(this.enabled){ //just in case
14956             var b = this.bindings;
14957             for(var i = 0, len = b.length; i < len; i++){
14958                 b[i].call(this, e);
14959             }
14960             }
14961         },
14962         
14963         /**
14964          * Returns true if this KeyMap is enabled
14965          * @return {Boolean} 
14966          */
14967         isEnabled : function(){
14968             return this.enabled;  
14969         },
14970         
14971         /**
14972          * Enables this KeyMap
14973          */
14974         enable: function(){
14975                 if(!this.enabled){
14976                     this.el.on(this.eventName, this.handleKeyDown, this);
14977                     this.enabled = true;
14978                 }
14979         },
14980
14981         /**
14982          * Disable this KeyMap
14983          */
14984         disable: function(){
14985                 if(this.enabled){
14986                     this.el.removeListener(this.eventName, this.handleKeyDown, this);
14987                     this.enabled = false;
14988                 }
14989         }
14990 };/*
14991  * Based on:
14992  * Ext JS Library 1.1.1
14993  * Copyright(c) 2006-2007, Ext JS, LLC.
14994  *
14995  * Originally Released Under LGPL - original licence link has changed is not relivant.
14996  *
14997  * Fork - LGPL
14998  * <script type="text/javascript">
14999  */
15000
15001  
15002 /**
15003  * @class Roo.util.TextMetrics
15004  * Provides precise pixel measurements for blocks of text so that you can determine exactly how high and
15005  * wide, in pixels, a given block of text will be.
15006  * @singleton
15007  */
15008 Roo.util.TextMetrics = function(){
15009     var shared;
15010     return {
15011         /**
15012          * Measures the size of the specified text
15013          * @param {String/HTMLElement} el The element, dom node or id from which to copy existing CSS styles
15014          * that can affect the size of the rendered text
15015          * @param {String} text The text to measure
15016          * @param {Number} fixedWidth (optional) If the text will be multiline, you have to set a fixed width
15017          * in order to accurately measure the text height
15018          * @return {Object} An object containing the text's size {width: (width), height: (height)}
15019          */
15020         measure : function(el, text, fixedWidth){
15021             if(!shared){
15022                 shared = Roo.util.TextMetrics.Instance(el, fixedWidth);
15023             }
15024             shared.bind(el);
15025             shared.setFixedWidth(fixedWidth || 'auto');
15026             return shared.getSize(text);
15027         },
15028
15029         /**
15030          * Return a unique TextMetrics instance that can be bound directly to an element and reused.  This reduces
15031          * the overhead of multiple calls to initialize the style properties on each measurement.
15032          * @param {String/HTMLElement} el The element, dom node or id that the instance will be bound to
15033          * @param {Number} fixedWidth (optional) If the text will be multiline, you have to set a fixed width
15034          * in order to accurately measure the text height
15035          * @return {Roo.util.TextMetrics.Instance} instance The new instance
15036          */
15037         createInstance : function(el, fixedWidth){
15038             return Roo.util.TextMetrics.Instance(el, fixedWidth);
15039         }
15040     };
15041 }();
15042
15043  
15044
15045 Roo.util.TextMetrics.Instance = function(bindTo, fixedWidth){
15046     var ml = new Roo.Element(document.createElement('div'));
15047     document.body.appendChild(ml.dom);
15048     ml.position('absolute');
15049     ml.setLeftTop(-1000, -1000);
15050     ml.hide();
15051
15052     if(fixedWidth){
15053         ml.setWidth(fixedWidth);
15054     }
15055      
15056     var instance = {
15057         /**
15058          * Returns the size of the specified text based on the internal element's style and width properties
15059          * @memberOf Roo.util.TextMetrics.Instance#
15060          * @param {String} text The text to measure
15061          * @return {Object} An object containing the text's size {width: (width), height: (height)}
15062          */
15063         getSize : function(text){
15064             ml.update(text);
15065             var s = ml.getSize();
15066             ml.update('');
15067             return s;
15068         },
15069
15070         /**
15071          * Binds this TextMetrics instance to an element from which to copy existing CSS styles
15072          * that can affect the size of the rendered text
15073          * @memberOf Roo.util.TextMetrics.Instance#
15074          * @param {String/HTMLElement} el The element, dom node or id
15075          */
15076         bind : function(el){
15077             ml.setStyle(
15078                 Roo.fly(el).getStyles('font-size','font-style', 'font-weight', 'font-family','line-height')
15079             );
15080         },
15081
15082         /**
15083          * Sets a fixed width on the internal measurement element.  If the text will be multiline, you have
15084          * to set a fixed width in order to accurately measure the text height.
15085          * @memberOf Roo.util.TextMetrics.Instance#
15086          * @param {Number} width The width to set on the element
15087          */
15088         setFixedWidth : function(width){
15089             ml.setWidth(width);
15090         },
15091
15092         /**
15093          * Returns the measured width of the specified text
15094          * @memberOf Roo.util.TextMetrics.Instance#
15095          * @param {String} text The text to measure
15096          * @return {Number} width The width in pixels
15097          */
15098         getWidth : function(text){
15099             ml.dom.style.width = 'auto';
15100             return this.getSize(text).width;
15101         },
15102
15103         /**
15104          * Returns the measured height of the specified text.  For multiline text, be sure to call
15105          * {@link #setFixedWidth} if necessary.
15106          * @memberOf Roo.util.TextMetrics.Instance#
15107          * @param {String} text The text to measure
15108          * @return {Number} height The height in pixels
15109          */
15110         getHeight : function(text){
15111             return this.getSize(text).height;
15112         }
15113     };
15114
15115     instance.bind(bindTo);
15116
15117     return instance;
15118 };
15119
15120 // backwards compat
15121 Roo.Element.measureText = Roo.util.TextMetrics.measure;/*
15122  * Based on:
15123  * Ext JS Library 1.1.1
15124  * Copyright(c) 2006-2007, Ext JS, LLC.
15125  *
15126  * Originally Released Under LGPL - original licence link has changed is not relivant.
15127  *
15128  * Fork - LGPL
15129  * <script type="text/javascript">
15130  */
15131
15132 /**
15133  * @class Roo.state.Provider
15134  * Abstract base class for state provider implementations. This class provides methods
15135  * for encoding and decoding <b>typed</b> variables including dates and defines the 
15136  * Provider interface.
15137  */
15138 Roo.state.Provider = function(){
15139     /**
15140      * @event statechange
15141      * Fires when a state change occurs.
15142      * @param {Provider} this This state provider
15143      * @param {String} key The state key which was changed
15144      * @param {String} value The encoded value for the state
15145      */
15146     this.addEvents({
15147         "statechange": true
15148     });
15149     this.state = {};
15150     Roo.state.Provider.superclass.constructor.call(this);
15151 };
15152 Roo.extend(Roo.state.Provider, Roo.util.Observable, {
15153     /**
15154      * Returns the current value for a key
15155      * @param {String} name The key name
15156      * @param {Mixed} defaultValue A default value to return if the key's value is not found
15157      * @return {Mixed} The state data
15158      */
15159     get : function(name, defaultValue){
15160         return typeof this.state[name] == "undefined" ?
15161             defaultValue : this.state[name];
15162     },
15163     
15164     /**
15165      * Clears a value from the state
15166      * @param {String} name The key name
15167      */
15168     clear : function(name){
15169         delete this.state[name];
15170         this.fireEvent("statechange", this, name, null);
15171     },
15172     
15173     /**
15174      * Sets the value for a key
15175      * @param {String} name The key name
15176      * @param {Mixed} value The value to set
15177      */
15178     set : function(name, value){
15179         this.state[name] = value;
15180         this.fireEvent("statechange", this, name, value);
15181     },
15182     
15183     /**
15184      * Decodes a string previously encoded with {@link #encodeValue}.
15185      * @param {String} value The value to decode
15186      * @return {Mixed} The decoded value
15187      */
15188     decodeValue : function(cookie){
15189         var re = /^(a|n|d|b|s|o)\:(.*)$/;
15190         var matches = re.exec(unescape(cookie));
15191         if(!matches || !matches[1]) {
15192             return; // non state cookie
15193         }
15194         var type = matches[1];
15195         var v = matches[2];
15196         switch(type){
15197             case "n":
15198                 return parseFloat(v);
15199             case "d":
15200                 return new Date(Date.parse(v));
15201             case "b":
15202                 return (v == "1");
15203             case "a":
15204                 var all = [];
15205                 var values = v.split("^");
15206                 for(var i = 0, len = values.length; i < len; i++){
15207                     all.push(this.decodeValue(values[i]));
15208                 }
15209                 return all;
15210            case "o":
15211                 var all = {};
15212                 var values = v.split("^");
15213                 for(var i = 0, len = values.length; i < len; i++){
15214                     var kv = values[i].split("=");
15215                     all[kv[0]] = this.decodeValue(kv[1]);
15216                 }
15217                 return all;
15218            default:
15219                 return v;
15220         }
15221     },
15222     
15223     /**
15224      * Encodes a value including type information.  Decode with {@link #decodeValue}.
15225      * @param {Mixed} value The value to encode
15226      * @return {String} The encoded value
15227      */
15228     encodeValue : function(v){
15229         var enc;
15230         if(typeof v == "number"){
15231             enc = "n:" + v;
15232         }else if(typeof v == "boolean"){
15233             enc = "b:" + (v ? "1" : "0");
15234         }else if(v instanceof Date){
15235             enc = "d:" + v.toGMTString();
15236         }else if(v instanceof Array){
15237             var flat = "";
15238             for(var i = 0, len = v.length; i < len; i++){
15239                 flat += this.encodeValue(v[i]);
15240                 if(i != len-1) {
15241                     flat += "^";
15242                 }
15243             }
15244             enc = "a:" + flat;
15245         }else if(typeof v == "object"){
15246             var flat = "";
15247             for(var key in v){
15248                 if(typeof v[key] != "function"){
15249                     flat += key + "=" + this.encodeValue(v[key]) + "^";
15250                 }
15251             }
15252             enc = "o:" + flat.substring(0, flat.length-1);
15253         }else{
15254             enc = "s:" + v;
15255         }
15256         return escape(enc);        
15257     }
15258 });
15259
15260 /*
15261  * Based on:
15262  * Ext JS Library 1.1.1
15263  * Copyright(c) 2006-2007, Ext JS, LLC.
15264  *
15265  * Originally Released Under LGPL - original licence link has changed is not relivant.
15266  *
15267  * Fork - LGPL
15268  * <script type="text/javascript">
15269  */
15270 /**
15271  * @class Roo.state.Manager
15272  * This is the global state manager. By default all components that are "state aware" check this class
15273  * for state information if you don't pass them a custom state provider. In order for this class
15274  * to be useful, it must be initialized with a provider when your application initializes.
15275  <pre><code>
15276 // in your initialization function
15277 init : function(){
15278    Roo.state.Manager.setProvider(new Roo.state.CookieProvider());
15279    ...
15280    // supposed you have a {@link Roo.BorderLayout}
15281    var layout = new Roo.BorderLayout(...);
15282    layout.restoreState();
15283    // or a {Roo.BasicDialog}
15284    var dialog = new Roo.BasicDialog(...);
15285    dialog.restoreState();
15286  </code></pre>
15287  * @singleton
15288  */
15289 Roo.state.Manager = function(){
15290     var provider = new Roo.state.Provider();
15291     
15292     return {
15293         /**
15294          * Configures the default state provider for your application
15295          * @param {Provider} stateProvider The state provider to set
15296          */
15297         setProvider : function(stateProvider){
15298             provider = stateProvider;
15299         },
15300         
15301         /**
15302          * Returns the current value for a key
15303          * @param {String} name The key name
15304          * @param {Mixed} defaultValue The default value to return if the key lookup does not match
15305          * @return {Mixed} The state data
15306          */
15307         get : function(key, defaultValue){
15308             return provider.get(key, defaultValue);
15309         },
15310         
15311         /**
15312          * Sets the value for a key
15313          * @param {String} name The key name
15314          * @param {Mixed} value The state data
15315          */
15316          set : function(key, value){
15317             provider.set(key, value);
15318         },
15319         
15320         /**
15321          * Clears a value from the state
15322          * @param {String} name The key name
15323          */
15324         clear : function(key){
15325             provider.clear(key);
15326         },
15327         
15328         /**
15329          * Gets the currently configured state provider
15330          * @return {Provider} The state provider
15331          */
15332         getProvider : function(){
15333             return provider;
15334         }
15335     };
15336 }();
15337 /*
15338  * Based on:
15339  * Ext JS Library 1.1.1
15340  * Copyright(c) 2006-2007, Ext JS, LLC.
15341  *
15342  * Originally Released Under LGPL - original licence link has changed is not relivant.
15343  *
15344  * Fork - LGPL
15345  * <script type="text/javascript">
15346  */
15347 /**
15348  * @class Roo.state.CookieProvider
15349  * @extends Roo.state.Provider
15350  * The default Provider implementation which saves state via cookies.
15351  * <br />Usage:
15352  <pre><code>
15353    var cp = new Roo.state.CookieProvider({
15354        path: "/cgi-bin/",
15355        expires: new Date(new Date().getTime()+(1000*60*60*24*30)); //30 days
15356        domain: "roojs.com"
15357    })
15358    Roo.state.Manager.setProvider(cp);
15359  </code></pre>
15360  * @cfg {String} path The path for which the cookie is active (defaults to root '/' which makes it active for all pages in the site)
15361  * @cfg {Date} expires The cookie expiration date (defaults to 7 days from now)
15362  * @cfg {String} domain The domain to save the cookie for.  Note that you cannot specify a different domain than
15363  * your page is on, but you can specify a sub-domain, or simply the domain itself like 'roojs.com' to include
15364  * all sub-domains if you need to access cookies across different sub-domains (defaults to null which uses the same
15365  * domain the page is running on including the 'www' like 'www.roojs.com')
15366  * @cfg {Boolean} secure True if the site is using SSL (defaults to false)
15367  * @constructor
15368  * Create a new CookieProvider
15369  * @param {Object} config The configuration object
15370  */
15371 Roo.state.CookieProvider = function(config){
15372     Roo.state.CookieProvider.superclass.constructor.call(this);
15373     this.path = "/";
15374     this.expires = new Date(new Date().getTime()+(1000*60*60*24*7)); //7 days
15375     this.domain = null;
15376     this.secure = false;
15377     Roo.apply(this, config);
15378     this.state = this.readCookies();
15379 };
15380
15381 Roo.extend(Roo.state.CookieProvider, Roo.state.Provider, {
15382     // private
15383     set : function(name, value){
15384         if(typeof value == "undefined" || value === null){
15385             this.clear(name);
15386             return;
15387         }
15388         this.setCookie(name, value);
15389         Roo.state.CookieProvider.superclass.set.call(this, name, value);
15390     },
15391
15392     // private
15393     clear : function(name){
15394         this.clearCookie(name);
15395         Roo.state.CookieProvider.superclass.clear.call(this, name);
15396     },
15397
15398     // private
15399     readCookies : function(){
15400         var cookies = {};
15401         var c = document.cookie + ";";
15402         var re = /\s?(.*?)=(.*?);/g;
15403         var matches;
15404         while((matches = re.exec(c)) != null){
15405             var name = matches[1];
15406             var value = matches[2];
15407             if(name && name.substring(0,3) == "ys-"){
15408                 cookies[name.substr(3)] = this.decodeValue(value);
15409             }
15410         }
15411         return cookies;
15412     },
15413
15414     // private
15415     setCookie : function(name, value){
15416         document.cookie = "ys-"+ name + "=" + this.encodeValue(value) +
15417            ((this.expires == null) ? "" : ("; expires=" + this.expires.toGMTString())) +
15418            ((this.path == null) ? "" : ("; path=" + this.path)) +
15419            ((this.domain == null) ? "" : ("; domain=" + this.domain)) +
15420            ((this.secure == true) ? "; secure" : "");
15421     },
15422
15423     // private
15424     clearCookie : function(name){
15425         document.cookie = "ys-" + name + "=null; expires=Thu, 01-Jan-70 00:00:01 GMT" +
15426            ((this.path == null) ? "" : ("; path=" + this.path)) +
15427            ((this.domain == null) ? "" : ("; domain=" + this.domain)) +
15428            ((this.secure == true) ? "; secure" : "");
15429     }
15430 });/*
15431  * Based on:
15432  * Ext JS Library 1.1.1
15433  * Copyright(c) 2006-2007, Ext JS, LLC.
15434  *
15435  * Originally Released Under LGPL - original licence link has changed is not relivant.
15436  *
15437  * Fork - LGPL
15438  * <script type="text/javascript">
15439  */
15440  
15441
15442 /**
15443  * @class Roo.ComponentMgr
15444  * Provides a common registry of all components on a page so that they can be easily accessed by component id (see {@link Roo.getCmp}).
15445  * @singleton
15446  */
15447 Roo.ComponentMgr = function(){
15448     var all = new Roo.util.MixedCollection();
15449
15450     return {
15451         /**
15452          * Registers a component.
15453          * @param {Roo.Component} c The component
15454          */
15455         register : function(c){
15456             all.add(c);
15457         },
15458
15459         /**
15460          * Unregisters a component.
15461          * @param {Roo.Component} c The component
15462          */
15463         unregister : function(c){
15464             all.remove(c);
15465         },
15466
15467         /**
15468          * Returns a component by id
15469          * @param {String} id The component id
15470          */
15471         get : function(id){
15472             return all.get(id);
15473         },
15474
15475         /**
15476          * Registers a function that will be called when a specified component is added to ComponentMgr
15477          * @param {String} id The component id
15478          * @param {Funtction} fn The callback function
15479          * @param {Object} scope The scope of the callback
15480          */
15481         onAvailable : function(id, fn, scope){
15482             all.on("add", function(index, o){
15483                 if(o.id == id){
15484                     fn.call(scope || o, o);
15485                     all.un("add", fn, scope);
15486                 }
15487             });
15488         }
15489     };
15490 }();/*
15491  * Based on:
15492  * Ext JS Library 1.1.1
15493  * Copyright(c) 2006-2007, Ext JS, LLC.
15494  *
15495  * Originally Released Under LGPL - original licence link has changed is not relivant.
15496  *
15497  * Fork - LGPL
15498  * <script type="text/javascript">
15499  */
15500  
15501 /**
15502  * @class Roo.Component
15503  * @extends Roo.util.Observable
15504  * Base class for all major Roo components.  All subclasses of Component can automatically participate in the standard
15505  * Roo component lifecycle of creation, rendering and destruction.  They also have automatic support for basic hide/show
15506  * and enable/disable behavior.  Component allows any subclass to be lazy-rendered into any {@link Roo.Container} and
15507  * to be automatically registered with the {@link Roo.ComponentMgr} so that it can be referenced at any time via {@link Roo.getCmp}.
15508  * All visual components (widgets) that require rendering into a layout should subclass Component.
15509  * @constructor
15510  * @param {Roo.Element/String/Object} config The configuration options.  If an element is passed, it is set as the internal
15511  * 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
15512  * and is used as the component id.  Otherwise, it is assumed to be a standard config object and is applied to the component.
15513  */
15514 Roo.Component = function(config){
15515     config = config || {};
15516     if(config.tagName || config.dom || typeof config == "string"){ // element object
15517         config = {el: config, id: config.id || config};
15518     }
15519     this.initialConfig = config;
15520
15521     Roo.apply(this, config);
15522     this.addEvents({
15523         /**
15524          * @event disable
15525          * Fires after the component is disabled.
15526              * @param {Roo.Component} this
15527              */
15528         disable : true,
15529         /**
15530          * @event enable
15531          * Fires after the component is enabled.
15532              * @param {Roo.Component} this
15533              */
15534         enable : true,
15535         /**
15536          * @event beforeshow
15537          * Fires before the component is shown.  Return false to stop the show.
15538              * @param {Roo.Component} this
15539              */
15540         beforeshow : true,
15541         /**
15542          * @event show
15543          * Fires after the component is shown.
15544              * @param {Roo.Component} this
15545              */
15546         show : true,
15547         /**
15548          * @event beforehide
15549          * Fires before the component is hidden. Return false to stop the hide.
15550              * @param {Roo.Component} this
15551              */
15552         beforehide : true,
15553         /**
15554          * @event hide
15555          * Fires after the component is hidden.
15556              * @param {Roo.Component} this
15557              */
15558         hide : true,
15559         /**
15560          * @event beforerender
15561          * Fires before the component is rendered. Return false to stop the render.
15562              * @param {Roo.Component} this
15563              */
15564         beforerender : true,
15565         /**
15566          * @event render
15567          * Fires after the component is rendered.
15568              * @param {Roo.Component} this
15569              */
15570         render : true,
15571         /**
15572          * @event beforedestroy
15573          * Fires before the component is destroyed. Return false to stop the destroy.
15574              * @param {Roo.Component} this
15575              */
15576         beforedestroy : true,
15577         /**
15578          * @event destroy
15579          * Fires after the component is destroyed.
15580              * @param {Roo.Component} this
15581              */
15582         destroy : true
15583     });
15584     if(!this.id){
15585         this.id = "roo-comp-" + (++Roo.Component.AUTO_ID);
15586     }
15587     Roo.ComponentMgr.register(this);
15588     Roo.Component.superclass.constructor.call(this);
15589     this.initComponent();
15590     if(this.renderTo){ // not supported by all components yet. use at your own risk!
15591         this.render(this.renderTo);
15592         delete this.renderTo;
15593     }
15594 };
15595
15596 /** @private */
15597 Roo.Component.AUTO_ID = 1000;
15598
15599 Roo.extend(Roo.Component, Roo.util.Observable, {
15600     /**
15601      * @scope Roo.Component.prototype
15602      * @type {Boolean}
15603      * true if this component is hidden. Read-only.
15604      */
15605     hidden : false,
15606     /**
15607      * @type {Boolean}
15608      * true if this component is disabled. Read-only.
15609      */
15610     disabled : false,
15611     /**
15612      * @type {Boolean}
15613      * true if this component has been rendered. Read-only.
15614      */
15615     rendered : false,
15616     
15617     /** @cfg {String} disableClass
15618      * CSS class added to the component when it is disabled (defaults to "x-item-disabled").
15619      */
15620     disabledClass : "x-item-disabled",
15621         /** @cfg {Boolean} allowDomMove
15622          * Whether the component can move the Dom node when rendering (defaults to true).
15623          */
15624     allowDomMove : true,
15625     /** @cfg {String} hideMode (display|visibility)
15626      * How this component should hidden. Supported values are
15627      * "visibility" (css visibility), "offsets" (negative offset position) and
15628      * "display" (css display) - defaults to "display".
15629      */
15630     hideMode: 'display',
15631
15632     /** @private */
15633     ctype : "Roo.Component",
15634
15635     /**
15636      * @cfg {String} actionMode 
15637      * which property holds the element that used for  hide() / show() / disable() / enable()
15638      * default is 'el' for forms you probably want to set this to fieldEl 
15639      */
15640     actionMode : "el",
15641
15642     /** @private */
15643     getActionEl : function(){
15644         return this[this.actionMode];
15645     },
15646
15647     initComponent : Roo.emptyFn,
15648     /**
15649      * If this is a lazy rendering component, render it to its container element.
15650      * @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.
15651      */
15652     render : function(container, position){
15653         
15654         if(this.rendered){
15655             return this;
15656         }
15657         
15658         if(this.fireEvent("beforerender", this) === false){
15659             return false;
15660         }
15661         
15662         if(!container && this.el){
15663             this.el = Roo.get(this.el);
15664             container = this.el.dom.parentNode;
15665             this.allowDomMove = false;
15666         }
15667         this.container = Roo.get(container);
15668         this.rendered = true;
15669         if(position !== undefined){
15670             if(typeof position == 'number'){
15671                 position = this.container.dom.childNodes[position];
15672             }else{
15673                 position = Roo.getDom(position);
15674             }
15675         }
15676         this.onRender(this.container, position || null);
15677         if(this.cls){
15678             this.el.addClass(this.cls);
15679             delete this.cls;
15680         }
15681         if(this.style){
15682             this.el.applyStyles(this.style);
15683             delete this.style;
15684         }
15685         this.fireEvent("render", this);
15686         this.afterRender(this.container);
15687         if(this.hidden){
15688             this.hide();
15689         }
15690         if(this.disabled){
15691             this.disable();
15692         }
15693
15694         return this;
15695         
15696     },
15697
15698     /** @private */
15699     // default function is not really useful
15700     onRender : function(ct, position){
15701         if(this.el){
15702             this.el = Roo.get(this.el);
15703             if(this.allowDomMove !== false){
15704                 ct.dom.insertBefore(this.el.dom, position);
15705             }
15706         }
15707     },
15708
15709     /** @private */
15710     getAutoCreate : function(){
15711         var cfg = typeof this.autoCreate == "object" ?
15712                       this.autoCreate : Roo.apply({}, this.defaultAutoCreate);
15713         if(this.id && !cfg.id){
15714             cfg.id = this.id;
15715         }
15716         return cfg;
15717     },
15718
15719     /** @private */
15720     afterRender : Roo.emptyFn,
15721
15722     /**
15723      * Destroys this component by purging any event listeners, removing the component's element from the DOM,
15724      * removing the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}.
15725      */
15726     destroy : function(){
15727         if(this.fireEvent("beforedestroy", this) !== false){
15728             this.purgeListeners();
15729             this.beforeDestroy();
15730             if(this.rendered){
15731                 this.el.removeAllListeners();
15732                 this.el.remove();
15733                 if(this.actionMode == "container"){
15734                     this.container.remove();
15735                 }
15736             }
15737             this.onDestroy();
15738             Roo.ComponentMgr.unregister(this);
15739             this.fireEvent("destroy", this);
15740         }
15741     },
15742
15743         /** @private */
15744     beforeDestroy : function(){
15745
15746     },
15747
15748         /** @private */
15749         onDestroy : function(){
15750
15751     },
15752
15753     /**
15754      * Returns the underlying {@link Roo.Element}.
15755      * @return {Roo.Element} The element
15756      */
15757     getEl : function(){
15758         return this.el;
15759     },
15760
15761     /**
15762      * Returns the id of this component.
15763      * @return {String}
15764      */
15765     getId : function(){
15766         return this.id;
15767     },
15768
15769     /**
15770      * Try to focus this component.
15771      * @param {Boolean} selectText True to also select the text in this component (if applicable)
15772      * @return {Roo.Component} this
15773      */
15774     focus : function(selectText){
15775         if(this.rendered){
15776             this.el.focus();
15777             if(selectText === true){
15778                 this.el.dom.select();
15779             }
15780         }
15781         return this;
15782     },
15783
15784     /** @private */
15785     blur : function(){
15786         if(this.rendered){
15787             this.el.blur();
15788         }
15789         return this;
15790     },
15791
15792     /**
15793      * Disable this component.
15794      * @return {Roo.Component} this
15795      */
15796     disable : function(){
15797         if(this.rendered){
15798             this.onDisable();
15799         }
15800         this.disabled = true;
15801         this.fireEvent("disable", this);
15802         return this;
15803     },
15804
15805         // private
15806     onDisable : function(){
15807         this.getActionEl().addClass(this.disabledClass);
15808         this.el.dom.disabled = true;
15809     },
15810
15811     /**
15812      * Enable this component.
15813      * @return {Roo.Component} this
15814      */
15815     enable : function(){
15816         if(this.rendered){
15817             this.onEnable();
15818         }
15819         this.disabled = false;
15820         this.fireEvent("enable", this);
15821         return this;
15822     },
15823
15824         // private
15825     onEnable : function(){
15826         this.getActionEl().removeClass(this.disabledClass);
15827         this.el.dom.disabled = false;
15828     },
15829
15830     /**
15831      * Convenience function for setting disabled/enabled by boolean.
15832      * @param {Boolean} disabled
15833      */
15834     setDisabled : function(disabled){
15835         this[disabled ? "disable" : "enable"]();
15836     },
15837
15838     /**
15839      * Show this component.
15840      * @return {Roo.Component} this
15841      */
15842     show: function(){
15843         if(this.fireEvent("beforeshow", this) !== false){
15844             this.hidden = false;
15845             if(this.rendered){
15846                 this.onShow();
15847             }
15848             this.fireEvent("show", this);
15849         }
15850         return this;
15851     },
15852
15853     // private
15854     onShow : function(){
15855         var ae = this.getActionEl();
15856         if(this.hideMode == 'visibility'){
15857             ae.dom.style.visibility = "visible";
15858         }else if(this.hideMode == 'offsets'){
15859             ae.removeClass('x-hidden');
15860         }else{
15861             ae.dom.style.display = "";
15862         }
15863     },
15864
15865     /**
15866      * Hide this component.
15867      * @return {Roo.Component} this
15868      */
15869     hide: function(){
15870         if(this.fireEvent("beforehide", this) !== false){
15871             this.hidden = true;
15872             if(this.rendered){
15873                 this.onHide();
15874             }
15875             this.fireEvent("hide", this);
15876         }
15877         return this;
15878     },
15879
15880     // private
15881     onHide : function(){
15882         var ae = this.getActionEl();
15883         if(this.hideMode == 'visibility'){
15884             ae.dom.style.visibility = "hidden";
15885         }else if(this.hideMode == 'offsets'){
15886             ae.addClass('x-hidden');
15887         }else{
15888             ae.dom.style.display = "none";
15889         }
15890     },
15891
15892     /**
15893      * Convenience function to hide or show this component by boolean.
15894      * @param {Boolean} visible True to show, false to hide
15895      * @return {Roo.Component} this
15896      */
15897     setVisible: function(visible){
15898         if(visible) {
15899             this.show();
15900         }else{
15901             this.hide();
15902         }
15903         return this;
15904     },
15905
15906     /**
15907      * Returns true if this component is visible.
15908      */
15909     isVisible : function(){
15910         return this.getActionEl().isVisible();
15911     },
15912
15913     cloneConfig : function(overrides){
15914         overrides = overrides || {};
15915         var id = overrides.id || Roo.id();
15916         var cfg = Roo.applyIf(overrides, this.initialConfig);
15917         cfg.id = id; // prevent dup id
15918         return new this.constructor(cfg);
15919     }
15920 });/*
15921  * Based on:
15922  * Ext JS Library 1.1.1
15923  * Copyright(c) 2006-2007, Ext JS, LLC.
15924  *
15925  * Originally Released Under LGPL - original licence link has changed is not relivant.
15926  *
15927  * Fork - LGPL
15928  * <script type="text/javascript">
15929  */
15930
15931 /**
15932  * @class Roo.BoxComponent
15933  * @extends Roo.Component
15934  * Base class for any visual {@link Roo.Component} that uses a box container.  BoxComponent provides automatic box
15935  * model adjustments for sizing and positioning and will work correctly withnin the Component rendering model.  All
15936  * container classes should subclass BoxComponent so that they will work consistently when nested within other Roo
15937  * layout containers.
15938  * @constructor
15939  * @param {Roo.Element/String/Object} config The configuration options.
15940  */
15941 Roo.BoxComponent = function(config){
15942     Roo.Component.call(this, config);
15943     this.addEvents({
15944         /**
15945          * @event resize
15946          * Fires after the component is resized.
15947              * @param {Roo.Component} this
15948              * @param {Number} adjWidth The box-adjusted width that was set
15949              * @param {Number} adjHeight The box-adjusted height that was set
15950              * @param {Number} rawWidth The width that was originally specified
15951              * @param {Number} rawHeight The height that was originally specified
15952              */
15953         resize : true,
15954         /**
15955          * @event move
15956          * Fires after the component is moved.
15957              * @param {Roo.Component} this
15958              * @param {Number} x The new x position
15959              * @param {Number} y The new y position
15960              */
15961         move : true
15962     });
15963 };
15964
15965 Roo.extend(Roo.BoxComponent, Roo.Component, {
15966     // private, set in afterRender to signify that the component has been rendered
15967     boxReady : false,
15968     // private, used to defer height settings to subclasses
15969     deferHeight: false,
15970     /** @cfg {Number} width
15971      * width (optional) size of component
15972      */
15973      /** @cfg {Number} height
15974      * height (optional) size of component
15975      */
15976      
15977     /**
15978      * Sets the width and height of the component.  This method fires the resize event.  This method can accept
15979      * either width and height as separate numeric arguments, or you can pass a size object like {width:10, height:20}.
15980      * @param {Number/Object} width The new width to set, or a size object in the format {width, height}
15981      * @param {Number} height The new height to set (not required if a size object is passed as the first arg)
15982      * @return {Roo.BoxComponent} this
15983      */
15984     setSize : function(w, h){
15985         // support for standard size objects
15986         if(typeof w == 'object'){
15987             h = w.height;
15988             w = w.width;
15989         }
15990         // not rendered
15991         if(!this.boxReady){
15992             this.width = w;
15993             this.height = h;
15994             return this;
15995         }
15996
15997         // prevent recalcs when not needed
15998         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
15999             return this;
16000         }
16001         this.lastSize = {width: w, height: h};
16002
16003         var adj = this.adjustSize(w, h);
16004         var aw = adj.width, ah = adj.height;
16005         if(aw !== undefined || ah !== undefined){ // this code is nasty but performs better with floaters
16006             var rz = this.getResizeEl();
16007             if(!this.deferHeight && aw !== undefined && ah !== undefined){
16008                 rz.setSize(aw, ah);
16009             }else if(!this.deferHeight && ah !== undefined){
16010                 rz.setHeight(ah);
16011             }else if(aw !== undefined){
16012                 rz.setWidth(aw);
16013             }
16014             this.onResize(aw, ah, w, h);
16015             this.fireEvent('resize', this, aw, ah, w, h);
16016         }
16017         return this;
16018     },
16019
16020     /**
16021      * Gets the current size of the component's underlying element.
16022      * @return {Object} An object containing the element's size {width: (element width), height: (element height)}
16023      */
16024     getSize : function(){
16025         return this.el.getSize();
16026     },
16027
16028     /**
16029      * Gets the current XY position of the component's underlying element.
16030      * @param {Boolean} local (optional) If true the element's left and top are returned instead of page XY (defaults to false)
16031      * @return {Array} The XY position of the element (e.g., [100, 200])
16032      */
16033     getPosition : function(local){
16034         if(local === true){
16035             return [this.el.getLeft(true), this.el.getTop(true)];
16036         }
16037         return this.xy || this.el.getXY();
16038     },
16039
16040     /**
16041      * Gets the current box measurements of the component's underlying element.
16042      * @param {Boolean} local (optional) If true the element's left and top are returned instead of page XY (defaults to false)
16043      * @returns {Object} box An object in the format {x, y, width, height}
16044      */
16045     getBox : function(local){
16046         var s = this.el.getSize();
16047         if(local){
16048             s.x = this.el.getLeft(true);
16049             s.y = this.el.getTop(true);
16050         }else{
16051             var xy = this.xy || this.el.getXY();
16052             s.x = xy[0];
16053             s.y = xy[1];
16054         }
16055         return s;
16056     },
16057
16058     /**
16059      * Sets the current box measurements of the component's underlying element.
16060      * @param {Object} box An object in the format {x, y, width, height}
16061      * @returns {Roo.BoxComponent} this
16062      */
16063     updateBox : function(box){
16064         this.setSize(box.width, box.height);
16065         this.setPagePosition(box.x, box.y);
16066         return this;
16067     },
16068
16069     // protected
16070     getResizeEl : function(){
16071         return this.resizeEl || this.el;
16072     },
16073
16074     // protected
16075     getPositionEl : function(){
16076         return this.positionEl || this.el;
16077     },
16078
16079     /**
16080      * Sets the left and top of the component.  To set the page XY position instead, use {@link #setPagePosition}.
16081      * This method fires the move event.
16082      * @param {Number} left The new left
16083      * @param {Number} top The new top
16084      * @returns {Roo.BoxComponent} this
16085      */
16086     setPosition : function(x, y){
16087         this.x = x;
16088         this.y = y;
16089         if(!this.boxReady){
16090             return this;
16091         }
16092         var adj = this.adjustPosition(x, y);
16093         var ax = adj.x, ay = adj.y;
16094
16095         var el = this.getPositionEl();
16096         if(ax !== undefined || ay !== undefined){
16097             if(ax !== undefined && ay !== undefined){
16098                 el.setLeftTop(ax, ay);
16099             }else if(ax !== undefined){
16100                 el.setLeft(ax);
16101             }else if(ay !== undefined){
16102                 el.setTop(ay);
16103             }
16104             this.onPosition(ax, ay);
16105             this.fireEvent('move', this, ax, ay);
16106         }
16107         return this;
16108     },
16109
16110     /**
16111      * Sets the page XY position of the component.  To set the left and top instead, use {@link #setPosition}.
16112      * This method fires the move event.
16113      * @param {Number} x The new x position
16114      * @param {Number} y The new y position
16115      * @returns {Roo.BoxComponent} this
16116      */
16117     setPagePosition : function(x, y){
16118         this.pageX = x;
16119         this.pageY = y;
16120         if(!this.boxReady){
16121             return;
16122         }
16123         if(x === undefined || y === undefined){ // cannot translate undefined points
16124             return;
16125         }
16126         var p = this.el.translatePoints(x, y);
16127         this.setPosition(p.left, p.top);
16128         return this;
16129     },
16130
16131     // private
16132     onRender : function(ct, position){
16133         Roo.BoxComponent.superclass.onRender.call(this, ct, position);
16134         if(this.resizeEl){
16135             this.resizeEl = Roo.get(this.resizeEl);
16136         }
16137         if(this.positionEl){
16138             this.positionEl = Roo.get(this.positionEl);
16139         }
16140     },
16141
16142     // private
16143     afterRender : function(){
16144         Roo.BoxComponent.superclass.afterRender.call(this);
16145         this.boxReady = true;
16146         this.setSize(this.width, this.height);
16147         if(this.x || this.y){
16148             this.setPosition(this.x, this.y);
16149         }
16150         if(this.pageX || this.pageY){
16151             this.setPagePosition(this.pageX, this.pageY);
16152         }
16153     },
16154
16155     /**
16156      * Force the component's size to recalculate based on the underlying element's current height and width.
16157      * @returns {Roo.BoxComponent} this
16158      */
16159     syncSize : function(){
16160         delete this.lastSize;
16161         this.setSize(this.el.getWidth(), this.el.getHeight());
16162         return this;
16163     },
16164
16165     /**
16166      * Called after the component is resized, this method is empty by default but can be implemented by any
16167      * subclass that needs to perform custom logic after a resize occurs.
16168      * @param {Number} adjWidth The box-adjusted width that was set
16169      * @param {Number} adjHeight The box-adjusted height that was set
16170      * @param {Number} rawWidth The width that was originally specified
16171      * @param {Number} rawHeight The height that was originally specified
16172      */
16173     onResize : function(adjWidth, adjHeight, rawWidth, rawHeight){
16174
16175     },
16176
16177     /**
16178      * Called after the component is moved, this method is empty by default but can be implemented by any
16179      * subclass that needs to perform custom logic after a move occurs.
16180      * @param {Number} x The new x position
16181      * @param {Number} y The new y position
16182      */
16183     onPosition : function(x, y){
16184
16185     },
16186
16187     // private
16188     adjustSize : function(w, h){
16189         if(this.autoWidth){
16190             w = 'auto';
16191         }
16192         if(this.autoHeight){
16193             h = 'auto';
16194         }
16195         return {width : w, height: h};
16196     },
16197
16198     // private
16199     adjustPosition : function(x, y){
16200         return {x : x, y: y};
16201     }
16202 });/*
16203  * Based on:
16204  * Ext JS Library 1.1.1
16205  * Copyright(c) 2006-2007, Ext JS, LLC.
16206  *
16207  * Originally Released Under LGPL - original licence link has changed is not relivant.
16208  *
16209  * Fork - LGPL
16210  * <script type="text/javascript">
16211  */
16212  (function(){ 
16213 /**
16214  * @class Roo.Layer
16215  * @extends Roo.Element
16216  * An extended {@link Roo.Element} object that supports a shadow and shim, constrain to viewport and
16217  * automatic maintaining of shadow/shim positions.
16218  * @cfg {Boolean} shim False to disable the iframe shim in browsers which need one (defaults to true)
16219  * @cfg {String/Boolean} shadow True to create a shadow element with default class "x-layer-shadow", or
16220  * you can pass a string with a CSS class name. False turns off the shadow.
16221  * @cfg {Object} dh DomHelper object config to create element with (defaults to {tag: "div", cls: "x-layer"}).
16222  * @cfg {Boolean} constrain False to disable constrain to viewport (defaults to true)
16223  * @cfg {String} cls CSS class to add to the element
16224  * @cfg {Number} zindex Starting z-index (defaults to 11000)
16225  * @cfg {Number} shadowOffset Number of pixels to offset the shadow (defaults to 3)
16226  * @constructor
16227  * @param {Object} config An object with config options.
16228  * @param {String/HTMLElement} existingEl (optional) Uses an existing DOM element. If the element is not found it creates it.
16229  */
16230
16231 Roo.Layer = function(config, existingEl){
16232     config = config || {};
16233     var dh = Roo.DomHelper;
16234     var cp = config.parentEl, pel = cp ? Roo.getDom(cp) : document.body;
16235     if(existingEl){
16236         this.dom = Roo.getDom(existingEl);
16237     }
16238     if(!this.dom){
16239         var o = config.dh || {tag: "div", cls: "x-layer"};
16240         this.dom = dh.append(pel, o);
16241     }
16242     if(config.cls){
16243         this.addClass(config.cls);
16244     }
16245     this.constrain = config.constrain !== false;
16246     this.visibilityMode = Roo.Element.VISIBILITY;
16247     if(config.id){
16248         this.id = this.dom.id = config.id;
16249     }else{
16250         this.id = Roo.id(this.dom);
16251     }
16252     this.zindex = config.zindex || this.getZIndex();
16253     this.position("absolute", this.zindex);
16254     if(config.shadow){
16255         this.shadowOffset = config.shadowOffset || 4;
16256         this.shadow = new Roo.Shadow({
16257             offset : this.shadowOffset,
16258             mode : config.shadow
16259         });
16260     }else{
16261         this.shadowOffset = 0;
16262     }
16263     this.useShim = config.shim !== false && Roo.useShims;
16264     this.useDisplay = config.useDisplay;
16265     this.hide();
16266 };
16267
16268 var supr = Roo.Element.prototype;
16269
16270 // shims are shared among layer to keep from having 100 iframes
16271 var shims = [];
16272
16273 Roo.extend(Roo.Layer, Roo.Element, {
16274
16275     getZIndex : function(){
16276         return this.zindex || parseInt(this.getStyle("z-index"), 10) || 11000;
16277     },
16278
16279     getShim : function(){
16280         if(!this.useShim){
16281             return null;
16282         }
16283         if(this.shim){
16284             return this.shim;
16285         }
16286         var shim = shims.shift();
16287         if(!shim){
16288             shim = this.createShim();
16289             shim.enableDisplayMode('block');
16290             shim.dom.style.display = 'none';
16291             shim.dom.style.visibility = 'visible';
16292         }
16293         var pn = this.dom.parentNode;
16294         if(shim.dom.parentNode != pn){
16295             pn.insertBefore(shim.dom, this.dom);
16296         }
16297         shim.setStyle('z-index', this.getZIndex()-2);
16298         this.shim = shim;
16299         return shim;
16300     },
16301
16302     hideShim : function(){
16303         if(this.shim){
16304             this.shim.setDisplayed(false);
16305             shims.push(this.shim);
16306             delete this.shim;
16307         }
16308     },
16309
16310     disableShadow : function(){
16311         if(this.shadow){
16312             this.shadowDisabled = true;
16313             this.shadow.hide();
16314             this.lastShadowOffset = this.shadowOffset;
16315             this.shadowOffset = 0;
16316         }
16317     },
16318
16319     enableShadow : function(show){
16320         if(this.shadow){
16321             this.shadowDisabled = false;
16322             this.shadowOffset = this.lastShadowOffset;
16323             delete this.lastShadowOffset;
16324             if(show){
16325                 this.sync(true);
16326             }
16327         }
16328     },
16329
16330     // private
16331     // this code can execute repeatedly in milliseconds (i.e. during a drag) so
16332     // code size was sacrificed for effeciency (e.g. no getBox/setBox, no XY calls)
16333     sync : function(doShow){
16334         var sw = this.shadow;
16335         if(!this.updating && this.isVisible() && (sw || this.useShim)){
16336             var sh = this.getShim();
16337
16338             var w = this.getWidth(),
16339                 h = this.getHeight();
16340
16341             var l = this.getLeft(true),
16342                 t = this.getTop(true);
16343
16344             if(sw && !this.shadowDisabled){
16345                 if(doShow && !sw.isVisible()){
16346                     sw.show(this);
16347                 }else{
16348                     sw.realign(l, t, w, h);
16349                 }
16350                 if(sh){
16351                     if(doShow){
16352                        sh.show();
16353                     }
16354                     // fit the shim behind the shadow, so it is shimmed too
16355                     var a = sw.adjusts, s = sh.dom.style;
16356                     s.left = (Math.min(l, l+a.l))+"px";
16357                     s.top = (Math.min(t, t+a.t))+"px";
16358                     s.width = (w+a.w)+"px";
16359                     s.height = (h+a.h)+"px";
16360                 }
16361             }else if(sh){
16362                 if(doShow){
16363                    sh.show();
16364                 }
16365                 sh.setSize(w, h);
16366                 sh.setLeftTop(l, t);
16367             }
16368             
16369         }
16370     },
16371
16372     // private
16373     destroy : function(){
16374         this.hideShim();
16375         if(this.shadow){
16376             this.shadow.hide();
16377         }
16378         this.removeAllListeners();
16379         var pn = this.dom.parentNode;
16380         if(pn){
16381             pn.removeChild(this.dom);
16382         }
16383         Roo.Element.uncache(this.id);
16384     },
16385
16386     remove : function(){
16387         this.destroy();
16388     },
16389
16390     // private
16391     beginUpdate : function(){
16392         this.updating = true;
16393     },
16394
16395     // private
16396     endUpdate : function(){
16397         this.updating = false;
16398         this.sync(true);
16399     },
16400
16401     // private
16402     hideUnders : function(negOffset){
16403         if(this.shadow){
16404             this.shadow.hide();
16405         }
16406         this.hideShim();
16407     },
16408
16409     // private
16410     constrainXY : function(){
16411         if(this.constrain){
16412             var vw = Roo.lib.Dom.getViewWidth(),
16413                 vh = Roo.lib.Dom.getViewHeight();
16414             var s = Roo.get(document).getScroll();
16415
16416             var xy = this.getXY();
16417             var x = xy[0], y = xy[1];   
16418             var w = this.dom.offsetWidth+this.shadowOffset, h = this.dom.offsetHeight+this.shadowOffset;
16419             // only move it if it needs it
16420             var moved = false;
16421             // first validate right/bottom
16422             if((x + w) > vw+s.left){
16423                 x = vw - w - this.shadowOffset;
16424                 moved = true;
16425             }
16426             if((y + h) > vh+s.top){
16427                 y = vh - h - this.shadowOffset;
16428                 moved = true;
16429             }
16430             // then make sure top/left isn't negative
16431             if(x < s.left){
16432                 x = s.left;
16433                 moved = true;
16434             }
16435             if(y < s.top){
16436                 y = s.top;
16437                 moved = true;
16438             }
16439             if(moved){
16440                 if(this.avoidY){
16441                     var ay = this.avoidY;
16442                     if(y <= ay && (y+h) >= ay){
16443                         y = ay-h-5;   
16444                     }
16445                 }
16446                 xy = [x, y];
16447                 this.storeXY(xy);
16448                 supr.setXY.call(this, xy);
16449                 this.sync();
16450             }
16451         }
16452     },
16453
16454     isVisible : function(){
16455         return this.visible;    
16456     },
16457
16458     // private
16459     showAction : function(){
16460         this.visible = true; // track visibility to prevent getStyle calls
16461         if(this.useDisplay === true){
16462             this.setDisplayed("");
16463         }else if(this.lastXY){
16464             supr.setXY.call(this, this.lastXY);
16465         }else if(this.lastLT){
16466             supr.setLeftTop.call(this, this.lastLT[0], this.lastLT[1]);
16467         }
16468     },
16469
16470     // private
16471     hideAction : function(){
16472         this.visible = false;
16473         if(this.useDisplay === true){
16474             this.setDisplayed(false);
16475         }else{
16476             this.setLeftTop(-10000,-10000);
16477         }
16478     },
16479
16480     // overridden Element method
16481     setVisible : function(v, a, d, c, e){
16482         if(v){
16483             this.showAction();
16484         }
16485         if(a && v){
16486             var cb = function(){
16487                 this.sync(true);
16488                 if(c){
16489                     c();
16490                 }
16491             }.createDelegate(this);
16492             supr.setVisible.call(this, true, true, d, cb, e);
16493         }else{
16494             if(!v){
16495                 this.hideUnders(true);
16496             }
16497             var cb = c;
16498             if(a){
16499                 cb = function(){
16500                     this.hideAction();
16501                     if(c){
16502                         c();
16503                     }
16504                 }.createDelegate(this);
16505             }
16506             supr.setVisible.call(this, v, a, d, cb, e);
16507             if(v){
16508                 this.sync(true);
16509             }else if(!a){
16510                 this.hideAction();
16511             }
16512         }
16513     },
16514
16515     storeXY : function(xy){
16516         delete this.lastLT;
16517         this.lastXY = xy;
16518     },
16519
16520     storeLeftTop : function(left, top){
16521         delete this.lastXY;
16522         this.lastLT = [left, top];
16523     },
16524
16525     // private
16526     beforeFx : function(){
16527         this.beforeAction();
16528         return Roo.Layer.superclass.beforeFx.apply(this, arguments);
16529     },
16530
16531     // private
16532     afterFx : function(){
16533         Roo.Layer.superclass.afterFx.apply(this, arguments);
16534         this.sync(this.isVisible());
16535     },
16536
16537     // private
16538     beforeAction : function(){
16539         if(!this.updating && this.shadow){
16540             this.shadow.hide();
16541         }
16542     },
16543
16544     // overridden Element method
16545     setLeft : function(left){
16546         this.storeLeftTop(left, this.getTop(true));
16547         supr.setLeft.apply(this, arguments);
16548         this.sync();
16549     },
16550
16551     setTop : function(top){
16552         this.storeLeftTop(this.getLeft(true), top);
16553         supr.setTop.apply(this, arguments);
16554         this.sync();
16555     },
16556
16557     setLeftTop : function(left, top){
16558         this.storeLeftTop(left, top);
16559         supr.setLeftTop.apply(this, arguments);
16560         this.sync();
16561     },
16562
16563     setXY : function(xy, a, d, c, e){
16564         this.fixDisplay();
16565         this.beforeAction();
16566         this.storeXY(xy);
16567         var cb = this.createCB(c);
16568         supr.setXY.call(this, xy, a, d, cb, e);
16569         if(!a){
16570             cb();
16571         }
16572     },
16573
16574     // private
16575     createCB : function(c){
16576         var el = this;
16577         return function(){
16578             el.constrainXY();
16579             el.sync(true);
16580             if(c){
16581                 c();
16582             }
16583         };
16584     },
16585
16586     // overridden Element method
16587     setX : function(x, a, d, c, e){
16588         this.setXY([x, this.getY()], a, d, c, e);
16589     },
16590
16591     // overridden Element method
16592     setY : function(y, a, d, c, e){
16593         this.setXY([this.getX(), y], a, d, c, e);
16594     },
16595
16596     // overridden Element method
16597     setSize : function(w, h, a, d, c, e){
16598         this.beforeAction();
16599         var cb = this.createCB(c);
16600         supr.setSize.call(this, w, h, a, d, cb, e);
16601         if(!a){
16602             cb();
16603         }
16604     },
16605
16606     // overridden Element method
16607     setWidth : function(w, a, d, c, e){
16608         this.beforeAction();
16609         var cb = this.createCB(c);
16610         supr.setWidth.call(this, w, a, d, cb, e);
16611         if(!a){
16612             cb();
16613         }
16614     },
16615
16616     // overridden Element method
16617     setHeight : function(h, a, d, c, e){
16618         this.beforeAction();
16619         var cb = this.createCB(c);
16620         supr.setHeight.call(this, h, a, d, cb, e);
16621         if(!a){
16622             cb();
16623         }
16624     },
16625
16626     // overridden Element method
16627     setBounds : function(x, y, w, h, a, d, c, e){
16628         this.beforeAction();
16629         var cb = this.createCB(c);
16630         if(!a){
16631             this.storeXY([x, y]);
16632             supr.setXY.call(this, [x, y]);
16633             supr.setSize.call(this, w, h, a, d, cb, e);
16634             cb();
16635         }else{
16636             supr.setBounds.call(this, x, y, w, h, a, d, cb, e);
16637         }
16638         return this;
16639     },
16640     
16641     /**
16642      * Sets the z-index of this layer and adjusts any shadow and shim z-indexes. The layer z-index is automatically
16643      * incremented by two more than the value passed in so that it always shows above any shadow or shim (the shadow
16644      * element, if any, will be assigned z-index + 1, and the shim element, if any, will be assigned the unmodified z-index).
16645      * @param {Number} zindex The new z-index to set
16646      * @return {this} The Layer
16647      */
16648     setZIndex : function(zindex){
16649         this.zindex = zindex;
16650         this.setStyle("z-index", zindex + 2);
16651         if(this.shadow){
16652             this.shadow.setZIndex(zindex + 1);
16653         }
16654         if(this.shim){
16655             this.shim.setStyle("z-index", zindex);
16656         }
16657     }
16658 });
16659 })();/*
16660  * Original code for Roojs - LGPL
16661  * <script type="text/javascript">
16662  */
16663  
16664 /**
16665  * @class Roo.XComponent
16666  * A delayed Element creator...
16667  * Or a way to group chunks of interface together.
16668  * technically this is a wrapper around a tree of Roo elements (which defines a 'module'),
16669  *  used in conjunction with XComponent.build() it will create an instance of each element,
16670  *  then call addxtype() to build the User interface.
16671  * 
16672  * Mypart.xyx = new Roo.XComponent({
16673
16674     parent : 'Mypart.xyz', // empty == document.element.!!
16675     order : '001',
16676     name : 'xxxx'
16677     region : 'xxxx'
16678     disabled : function() {} 
16679      
16680     tree : function() { // return an tree of xtype declared components
16681         var MODULE = this;
16682         return 
16683         {
16684             xtype : 'NestedLayoutPanel',
16685             // technicall
16686         }
16687      ]
16688  *})
16689  *
16690  *
16691  * It can be used to build a big heiracy, with parent etc.
16692  * or you can just use this to render a single compoent to a dom element
16693  * MYPART.render(Roo.Element | String(id) | dom_element )
16694  *
16695  *
16696  * Usage patterns.
16697  *
16698  * Classic Roo
16699  *
16700  * Roo is designed primarily as a single page application, so the UI build for a standard interface will
16701  * expect a single 'TOP' level module normally indicated by the 'parent' of the XComponent definition being defined as false.
16702  *
16703  * Each sub module is expected to have a parent pointing to the class name of it's parent module.
16704  *
16705  * When the top level is false, a 'Roo.BorderLayout' is created and the element is flagged as 'topModule'
16706  * - if mulitple topModules exist, the last one is defined as the top module.
16707  *
16708  * Embeded Roo
16709  * 
16710  * When the top level or multiple modules are to embedded into a existing HTML page,
16711  * the parent element can container '#id' of the element where the module will be drawn.
16712  *
16713  * Bootstrap Roo
16714  *
16715  * Unlike classic Roo, the bootstrap tends not to be used as a single page.
16716  * it relies more on a include mechanism, where sub modules are included into an outer page.
16717  * This is normally managed by the builder tools using Roo.apply( options, Included.Sub.Module )
16718  * 
16719  * Bootstrap Roo Included elements
16720  *
16721  * Our builder application needs the ability to preview these sub compoennts. They will normally have parent=false set,
16722  * hence confusing the component builder as it thinks there are multiple top level elements. 
16723  *
16724  * String Over-ride & Translations
16725  *
16726  * Our builder application writes all the strings as _strings and _named_strings. This is to enable the translation of elements,
16727  * and also the 'overlaying of string values - needed when different versions of the same application with different text content
16728  * are needed. @see Roo.XComponent.overlayString  
16729  * 
16730  * 
16731  * 
16732  * @extends Roo.util.Observable
16733  * @constructor
16734  * @param cfg {Object} configuration of component
16735  * 
16736  */
16737 Roo.XComponent = function(cfg) {
16738     Roo.apply(this, cfg);
16739     this.addEvents({ 
16740         /**
16741              * @event built
16742              * Fires when this the componnt is built
16743              * @param {Roo.XComponent} c the component
16744              */
16745         'built' : true
16746         
16747     });
16748     this.region = this.region || 'center'; // default..
16749     Roo.XComponent.register(this);
16750     this.modules = false;
16751     this.el = false; // where the layout goes..
16752     
16753     
16754 }
16755 Roo.extend(Roo.XComponent, Roo.util.Observable, {
16756     /**
16757      * @property el
16758      * The created element (with Roo.factory())
16759      * @type {Roo.Layout}
16760      */
16761     el  : false,
16762     
16763     /**
16764      * @property el
16765      * for BC  - use el in new code
16766      * @type {Roo.Layout}
16767      */
16768     panel : false,
16769     
16770     /**
16771      * @property layout
16772      * for BC  - use el in new code
16773      * @type {Roo.Layout}
16774      */
16775     layout : false,
16776     
16777      /**
16778      * @cfg {Function|boolean} disabled
16779      * If this module is disabled by some rule, return true from the funtion
16780      */
16781     disabled : false,
16782     
16783     /**
16784      * @cfg {String} parent 
16785      * Name of parent element which it get xtype added to..
16786      */
16787     parent: false,
16788     
16789     /**
16790      * @cfg {String} order
16791      * Used to set the order in which elements are created (usefull for multiple tabs)
16792      */
16793     
16794     order : false,
16795     /**
16796      * @cfg {String} name
16797      * String to display while loading.
16798      */
16799     name : false,
16800     /**
16801      * @cfg {String} region
16802      * Region to render component to (defaults to center)
16803      */
16804     region : 'center',
16805     
16806     /**
16807      * @cfg {Array} items
16808      * A single item array - the first element is the root of the tree..
16809      * It's done this way to stay compatible with the Xtype system...
16810      */
16811     items : false,
16812     
16813     /**
16814      * @property _tree
16815      * The method that retuns the tree of parts that make up this compoennt 
16816      * @type {function}
16817      */
16818     _tree  : false,
16819     
16820      /**
16821      * render
16822      * render element to dom or tree
16823      * @param {Roo.Element|String|DomElement} optional render to if parent is not set.
16824      */
16825     
16826     render : function(el)
16827     {
16828         
16829         el = el || false;
16830         var hp = this.parent ? 1 : 0;
16831         Roo.debug &&  Roo.log(this);
16832         
16833         var tree = this._tree ? this._tree() : this.tree();
16834
16835         
16836         if (!el && typeof(this.parent) == 'string' && this.parent.substring(0,1) == '#') {
16837             // if parent is a '#.....' string, then let's use that..
16838             var ename = this.parent.substr(1);
16839             this.parent = false;
16840             Roo.debug && Roo.log(ename);
16841             switch (ename) {
16842                 case 'bootstrap-body':
16843                     if (typeof(tree.el) != 'undefined' && tree.el == document.body)  {
16844                         // this is the BorderLayout standard?
16845                        this.parent = { el : true };
16846                        break;
16847                     }
16848                     if (["Nest", "Content", "Grid", "Tree"].indexOf(tree.xtype)  > -1)  {
16849                         // need to insert stuff...
16850                         this.parent =  {
16851                              el : new Roo.bootstrap.layout.Border({
16852                                  el : document.body, 
16853                      
16854                                  center: {
16855                                     titlebar: false,
16856                                     autoScroll:false,
16857                                     closeOnTab: true,
16858                                     tabPosition: 'top',
16859                                       //resizeTabs: true,
16860                                     alwaysShowTabs: true,
16861                                     hideTabs: false
16862                                      //minTabWidth: 140
16863                                  }
16864                              })
16865                         
16866                          };
16867                          break;
16868                     }
16869                          
16870                     if (typeof(Roo.bootstrap.Body) != 'undefined' ) {
16871                         this.parent = { el :  new  Roo.bootstrap.Body() };
16872                         Roo.debug && Roo.log("setting el to doc body");
16873                          
16874                     } else {
16875                         throw "Container is bootstrap body, but Roo.bootstrap.Body is not defined";
16876                     }
16877                     break;
16878                 case 'bootstrap':
16879                     this.parent = { el : true};
16880                     // fall through
16881                 default:
16882                     el = Roo.get(ename);
16883                     if (typeof(Roo.bootstrap) != 'undefined' && tree['|xns'] == 'Roo.bootstrap') {
16884                         this.parent = { el : true};
16885                     }
16886                     
16887                     break;
16888             }
16889                 
16890             
16891             if (!el && !this.parent) {
16892                 Roo.debug && Roo.log("Warning - element can not be found :#" + ename );
16893                 return;
16894             }
16895         }
16896         
16897         Roo.debug && Roo.log("EL:");
16898         Roo.debug && Roo.log(el);
16899         Roo.debug && Roo.log("this.parent.el:");
16900         Roo.debug && Roo.log(this.parent.el);
16901         
16902
16903         // altertive root elements ??? - we need a better way to indicate these.
16904         var is_alt = Roo.XComponent.is_alt ||
16905                     (typeof(tree.el) != 'undefined' && tree.el == document.body) ||
16906                     (typeof(Roo.bootstrap) != 'undefined' && tree.xns == Roo.bootstrap) ||
16907                     (typeof(Roo.mailer) != 'undefined' && tree.xns == Roo.mailer) ;
16908         
16909         
16910         
16911         if (!this.parent && is_alt) {
16912             //el = Roo.get(document.body);
16913             this.parent = { el : true };
16914         }
16915             
16916             
16917         
16918         if (!this.parent) {
16919             
16920             Roo.debug && Roo.log("no parent - creating one");
16921             
16922             el = el ? Roo.get(el) : false;      
16923             
16924             if (typeof(Roo.BorderLayout) == 'undefined' ) {
16925                 
16926                 this.parent =  {
16927                     el : new Roo.bootstrap.layout.Border({
16928                         el: el || document.body,
16929                     
16930                         center: {
16931                             titlebar: false,
16932                             autoScroll:false,
16933                             closeOnTab: true,
16934                             tabPosition: 'top',
16935                              //resizeTabs: true,
16936                             alwaysShowTabs: false,
16937                             hideTabs: true,
16938                             minTabWidth: 140,
16939                             overflow: 'visible'
16940                          }
16941                      })
16942                 };
16943             } else {
16944             
16945                 // it's a top level one..
16946                 this.parent =  {
16947                     el : new Roo.BorderLayout(el || document.body, {
16948                         center: {
16949                             titlebar: false,
16950                             autoScroll:false,
16951                             closeOnTab: true,
16952                             tabPosition: 'top',
16953                              //resizeTabs: true,
16954                             alwaysShowTabs: el && hp? false :  true,
16955                             hideTabs: el || !hp ? true :  false,
16956                             minTabWidth: 140
16957                          }
16958                     })
16959                 };
16960             }
16961         }
16962         
16963         if (!this.parent.el) {
16964                 // probably an old style ctor, which has been disabled.
16965                 return;
16966
16967         }
16968                 // The 'tree' method is  '_tree now' 
16969             
16970         tree.region = tree.region || this.region;
16971         var is_body = false;
16972         if (this.parent.el === true) {
16973             // bootstrap... - body..
16974             if (el) {
16975                 tree.el = el;
16976             }
16977             this.parent.el = Roo.factory(tree);
16978             is_body = true;
16979         }
16980         
16981         this.el = this.parent.el.addxtype(tree, undefined, is_body);
16982         this.fireEvent('built', this);
16983         
16984         this.panel = this.el;
16985         this.layout = this.panel.layout;
16986         this.parentLayout = this.parent.layout  || false;  
16987          
16988     }
16989     
16990 });
16991
16992 Roo.apply(Roo.XComponent, {
16993     /**
16994      * @property  hideProgress
16995      * true to disable the building progress bar.. usefull on single page renders.
16996      * @type Boolean
16997      */
16998     hideProgress : false,
16999     /**
17000      * @property  buildCompleted
17001      * True when the builder has completed building the interface.
17002      * @type Boolean
17003      */
17004     buildCompleted : false,
17005      
17006     /**
17007      * @property  topModule
17008      * the upper most module - uses document.element as it's constructor.
17009      * @type Object
17010      */
17011      
17012     topModule  : false,
17013       
17014     /**
17015      * @property  modules
17016      * array of modules to be created by registration system.
17017      * @type {Array} of Roo.XComponent
17018      */
17019     
17020     modules : [],
17021     /**
17022      * @property  elmodules
17023      * array of modules to be created by which use #ID 
17024      * @type {Array} of Roo.XComponent
17025      */
17026      
17027     elmodules : [],
17028
17029      /**
17030      * @property  is_alt
17031      * Is an alternative Root - normally used by bootstrap or other systems,
17032      *    where the top element in the tree can wrap 'body' 
17033      * @type {boolean}  (default false)
17034      */
17035      
17036     is_alt : false,
17037     /**
17038      * @property  build_from_html
17039      * Build elements from html - used by bootstrap HTML stuff 
17040      *    - this is cleared after build is completed
17041      * @type {boolean}    (default false)
17042      */
17043      
17044     build_from_html : false,
17045     /**
17046      * Register components to be built later.
17047      *
17048      * This solves the following issues
17049      * - Building is not done on page load, but after an authentication process has occured.
17050      * - Interface elements are registered on page load
17051      * - Parent Interface elements may not be loaded before child, so this handles that..
17052      * 
17053      *
17054      * example:
17055      * 
17056      * MyApp.register({
17057           order : '000001',
17058           module : 'Pman.Tab.projectMgr',
17059           region : 'center',
17060           parent : 'Pman.layout',
17061           disabled : false,  // or use a function..
17062         })
17063      
17064      * * @param {Object} details about module
17065      */
17066     register : function(obj) {
17067                 
17068         Roo.XComponent.event.fireEvent('register', obj);
17069         switch(typeof(obj.disabled) ) {
17070                 
17071             case 'undefined':
17072                 break;
17073             
17074             case 'function':
17075                 if ( obj.disabled() ) {
17076                         return;
17077                 }
17078                 break;
17079             
17080             default:
17081                 if (obj.disabled || obj.region == '#disabled') {
17082                         return;
17083                 }
17084                 break;
17085         }
17086                 
17087         this.modules.push(obj);
17088          
17089     },
17090     /**
17091      * convert a string to an object..
17092      * eg. 'AAA.BBB' -> finds AAA.BBB
17093
17094      */
17095     
17096     toObject : function(str)
17097     {
17098         if (!str || typeof(str) == 'object') {
17099             return str;
17100         }
17101         if (str.substring(0,1) == '#') {
17102             return str;
17103         }
17104
17105         var ar = str.split('.');
17106         var rt, o;
17107         rt = ar.shift();
17108             /** eval:var:o */
17109         try {
17110             eval('if (typeof ' + rt + ' == "undefined"){ o = false;} o = ' + rt + ';');
17111         } catch (e) {
17112             throw "Module not found : " + str;
17113         }
17114         
17115         if (o === false) {
17116             throw "Module not found : " + str;
17117         }
17118         Roo.each(ar, function(e) {
17119             if (typeof(o[e]) == 'undefined') {
17120                 throw "Module not found : " + str;
17121             }
17122             o = o[e];
17123         });
17124         
17125         return o;
17126         
17127     },
17128     
17129     
17130     /**
17131      * move modules into their correct place in the tree..
17132      * 
17133      */
17134     preBuild : function ()
17135     {
17136         var _t = this;
17137         Roo.each(this.modules , function (obj)
17138         {
17139             Roo.XComponent.event.fireEvent('beforebuild', obj);
17140             
17141             var opar = obj.parent;
17142             try { 
17143                 obj.parent = this.toObject(opar);
17144             } catch(e) {
17145                 Roo.debug && Roo.log("parent:toObject failed: " + e.toString());
17146                 return;
17147             }
17148             
17149             if (!obj.parent) {
17150                 Roo.debug && Roo.log("GOT top level module");
17151                 Roo.debug && Roo.log(obj);
17152                 obj.modules = new Roo.util.MixedCollection(false, 
17153                     function(o) { return o.order + '' }
17154                 );
17155                 this.topModule = obj;
17156                 return;
17157             }
17158                         // parent is a string (usually a dom element name..)
17159             if (typeof(obj.parent) == 'string') {
17160                 this.elmodules.push(obj);
17161                 return;
17162             }
17163             if (obj.parent.constructor != Roo.XComponent) {
17164                 Roo.debug && Roo.log("Warning : Object Parent is not instance of XComponent:" + obj.name)
17165             }
17166             if (!obj.parent.modules) {
17167                 obj.parent.modules = new Roo.util.MixedCollection(false, 
17168                     function(o) { return o.order + '' }
17169                 );
17170             }
17171             if (obj.parent.disabled) {
17172                 obj.disabled = true;
17173             }
17174             obj.parent.modules.add(obj);
17175         }, this);
17176     },
17177     
17178      /**
17179      * make a list of modules to build.
17180      * @return {Array} list of modules. 
17181      */ 
17182     
17183     buildOrder : function()
17184     {
17185         var _this = this;
17186         var cmp = function(a,b) {   
17187             return String(a).toUpperCase() > String(b).toUpperCase() ? 1 : -1;
17188         };
17189         if ((!this.topModule || !this.topModule.modules) && !this.elmodules.length) {
17190             throw "No top level modules to build";
17191         }
17192         
17193         // make a flat list in order of modules to build.
17194         var mods = this.topModule ? [ this.topModule ] : [];
17195                 
17196         
17197         // elmodules (is a list of DOM based modules )
17198         Roo.each(this.elmodules, function(e) {
17199             mods.push(e);
17200             if (!this.topModule &&
17201                 typeof(e.parent) == 'string' &&
17202                 e.parent.substring(0,1) == '#' &&
17203                 Roo.get(e.parent.substr(1))
17204                ) {
17205                 
17206                 _this.topModule = e;
17207             }
17208             
17209         });
17210
17211         
17212         // add modules to their parents..
17213         var addMod = function(m) {
17214             Roo.debug && Roo.log("build Order: add: " + m.name);
17215                 
17216             mods.push(m);
17217             if (m.modules && !m.disabled) {
17218                 Roo.debug && Roo.log("build Order: " + m.modules.length + " child modules");
17219                 m.modules.keySort('ASC',  cmp );
17220                 Roo.debug && Roo.log("build Order: " + m.modules.length + " child modules (after sort)");
17221     
17222                 m.modules.each(addMod);
17223             } else {
17224                 Roo.debug && Roo.log("build Order: no child modules");
17225             }
17226             // not sure if this is used any more..
17227             if (m.finalize) {
17228                 m.finalize.name = m.name + " (clean up) ";
17229                 mods.push(m.finalize);
17230             }
17231             
17232         }
17233         if (this.topModule && this.topModule.modules) { 
17234             this.topModule.modules.keySort('ASC',  cmp );
17235             this.topModule.modules.each(addMod);
17236         } 
17237         return mods;
17238     },
17239     
17240      /**
17241      * Build the registered modules.
17242      * @param {Object} parent element.
17243      * @param {Function} optional method to call after module has been added.
17244      * 
17245      */ 
17246    
17247     build : function(opts) 
17248     {
17249         
17250         if (typeof(opts) != 'undefined') {
17251             Roo.apply(this,opts);
17252         }
17253         
17254         this.preBuild();
17255         var mods = this.buildOrder();
17256       
17257         //this.allmods = mods;
17258         //Roo.debug && Roo.log(mods);
17259         //return;
17260         if (!mods.length) { // should not happen
17261             throw "NO modules!!!";
17262         }
17263         
17264         
17265         var msg = "Building Interface...";
17266         // flash it up as modal - so we store the mask!?
17267         if (!this.hideProgress && Roo.MessageBox) {
17268             Roo.MessageBox.show({ title: 'loading' });
17269             Roo.MessageBox.show({
17270                title: "Please wait...",
17271                msg: msg,
17272                width:450,
17273                progress:true,
17274                buttons : false,
17275                closable:false,
17276                modal: false
17277               
17278             });
17279         }
17280         var total = mods.length;
17281         
17282         var _this = this;
17283         var progressRun = function() {
17284             if (!mods.length) {
17285                 Roo.debug && Roo.log('hide?');
17286                 if (!this.hideProgress && Roo.MessageBox) {
17287                     Roo.MessageBox.hide();
17288                 }
17289                 Roo.XComponent.build_from_html = false; // reset, so dialogs will be build from javascript
17290                 
17291                 Roo.XComponent.event.fireEvent('buildcomplete', _this.topModule);
17292                 
17293                 // THE END...
17294                 return false;   
17295             }
17296             
17297             var m = mods.shift();
17298             
17299             
17300             Roo.debug && Roo.log(m);
17301             // not sure if this is supported any more.. - modules that are are just function
17302             if (typeof(m) == 'function') { 
17303                 m.call(this);
17304                 return progressRun.defer(10, _this);
17305             } 
17306             
17307             
17308             msg = "Building Interface " + (total  - mods.length) + 
17309                     " of " + total + 
17310                     (m.name ? (' - ' + m.name) : '');
17311                         Roo.debug && Roo.log(msg);
17312             if (!_this.hideProgress &&  Roo.MessageBox) { 
17313                 Roo.MessageBox.updateProgress(  (total  - mods.length)/total, msg  );
17314             }
17315             
17316          
17317             // is the module disabled?
17318             var disabled = (typeof(m.disabled) == 'function') ?
17319                 m.disabled.call(m.module.disabled) : m.disabled;    
17320             
17321             
17322             if (disabled) {
17323                 return progressRun(); // we do not update the display!
17324             }
17325             
17326             // now build 
17327             
17328                         
17329                         
17330             m.render();
17331             // it's 10 on top level, and 1 on others??? why...
17332             return progressRun.defer(10, _this);
17333              
17334         }
17335         progressRun.defer(1, _this);
17336      
17337         
17338         
17339     },
17340     /**
17341      * Overlay a set of modified strings onto a component
17342      * This is dependant on our builder exporting the strings and 'named strings' elements.
17343      * 
17344      * @param {Object} element to overlay on - eg. Pman.Dialog.Login
17345      * @param {Object} associative array of 'named' string and it's new value.
17346      * 
17347      */
17348         overlayStrings : function( component, strings )
17349     {
17350         if (typeof(component['_named_strings']) == 'undefined') {
17351             throw "ERROR: component does not have _named_strings";
17352         }
17353         for ( var k in strings ) {
17354             var md = typeof(component['_named_strings'][k]) == 'undefined' ? false : component['_named_strings'][k];
17355             if (md !== false) {
17356                 component['_strings'][md] = strings[k];
17357             } else {
17358                 Roo.log('could not find named string: ' + k + ' in');
17359                 Roo.log(component);
17360             }
17361             
17362         }
17363         
17364     },
17365     
17366         
17367         /**
17368          * Event Object.
17369          *
17370          *
17371          */
17372         event: false, 
17373     /**
17374          * wrapper for event.on - aliased later..  
17375          * Typically use to register a event handler for register:
17376          *
17377          * eg. Roo.XComponent.on('register', function(comp) { comp.disable = true } );
17378          *
17379          */
17380     on : false
17381    
17382     
17383     
17384 });
17385
17386 Roo.XComponent.event = new Roo.util.Observable({
17387                 events : { 
17388                         /**
17389                          * @event register
17390                          * Fires when an Component is registered,
17391                          * set the disable property on the Component to stop registration.
17392                          * @param {Roo.XComponent} c the component being registerd.
17393                          * 
17394                          */
17395                         'register' : true,
17396             /**
17397                          * @event beforebuild
17398                          * Fires before each Component is built
17399                          * can be used to apply permissions.
17400                          * @param {Roo.XComponent} c the component being registerd.
17401                          * 
17402                          */
17403                         'beforebuild' : true,
17404                         /**
17405                          * @event buildcomplete
17406                          * Fires on the top level element when all elements have been built
17407                          * @param {Roo.XComponent} the top level component.
17408                          */
17409                         'buildcomplete' : true
17410                         
17411                 }
17412 });
17413
17414 Roo.XComponent.on = Roo.XComponent.event.on.createDelegate(Roo.XComponent.event); 
17415  //
17416  /**
17417  * marked - a markdown parser
17418  * Copyright (c) 2011-2014, Christopher Jeffrey. (MIT Licensed)
17419  * https://github.com/chjj/marked
17420  */
17421
17422
17423 /**
17424  *
17425  * Roo.Markdown - is a very crude wrapper around marked..
17426  *
17427  * usage:
17428  * 
17429  * alert( Roo.Markdown.toHtml("Markdown *rocks*.") );
17430  * 
17431  * Note: move the sample code to the bottom of this
17432  * file before uncommenting it.
17433  *
17434  */
17435
17436 Roo.Markdown = {};
17437 Roo.Markdown.toHtml = function(text) {
17438     
17439     var c = new Roo.Markdown.marked.setOptions({
17440             renderer: new Roo.Markdown.marked.Renderer(),
17441             gfm: true,
17442             tables: true,
17443             breaks: false,
17444             pedantic: false,
17445             sanitize: false,
17446             smartLists: true,
17447             smartypants: false
17448           });
17449     // A FEW HACKS!!?
17450     
17451     text = text.replace(/\\\n/g,' ');
17452     return Roo.Markdown.marked(text);
17453 };
17454 //
17455 // converter
17456 //
17457 // Wraps all "globals" so that the only thing
17458 // exposed is makeHtml().
17459 //
17460 (function() {
17461     
17462      /**
17463          * eval:var:escape
17464          * eval:var:unescape
17465          * eval:var:replace
17466          */
17467       
17468     /**
17469      * Helpers
17470      */
17471     
17472     var escape = function (html, encode) {
17473       return html
17474         .replace(!encode ? /&(?!#?\w+;)/g : /&/g, '&amp;')
17475         .replace(/</g, '&lt;')
17476         .replace(/>/g, '&gt;')
17477         .replace(/"/g, '&quot;')
17478         .replace(/'/g, '&#39;');
17479     }
17480     
17481     var unescape = function (html) {
17482         // explicitly match decimal, hex, and named HTML entities 
17483       return html.replace(/&(#(?:\d+)|(?:#x[0-9A-Fa-f]+)|(?:\w+));?/g, function(_, n) {
17484         n = n.toLowerCase();
17485         if (n === 'colon') { return ':'; }
17486         if (n.charAt(0) === '#') {
17487           return n.charAt(1) === 'x'
17488             ? String.fromCharCode(parseInt(n.substring(2), 16))
17489             : String.fromCharCode(+n.substring(1));
17490         }
17491         return '';
17492       });
17493     }
17494     
17495     var replace = function (regex, opt) {
17496       regex = regex.source;
17497       opt = opt || '';
17498       return function self(name, val) {
17499         if (!name) { return new RegExp(regex, opt); }
17500         val = val.source || val;
17501         val = val.replace(/(^|[^\[])\^/g, '$1');
17502         regex = regex.replace(name, val);
17503         return self;
17504       };
17505     }
17506
17507
17508          /**
17509          * eval:var:noop
17510     */
17511     var noop = function () {}
17512     noop.exec = noop;
17513     
17514          /**
17515          * eval:var:merge
17516     */
17517     var merge = function (obj) {
17518       var i = 1
17519         , target
17520         , key;
17521     
17522       for (; i < arguments.length; i++) {
17523         target = arguments[i];
17524         for (key in target) {
17525           if (Object.prototype.hasOwnProperty.call(target, key)) {
17526             obj[key] = target[key];
17527           }
17528         }
17529       }
17530     
17531       return obj;
17532     }
17533     
17534     
17535     /**
17536      * Block-Level Grammar
17537      */
17538     
17539     
17540     
17541     
17542     var block = {
17543       newline: /^\n+/,
17544       code: /^( {4}[^\n]+\n*)+/,
17545       fences: noop,
17546       hr: /^( *[-*_]){3,} *(?:\n+|$)/,
17547       heading: /^ *(#{1,6}) *([^\n]+?) *#* *(?:\n+|$)/,
17548       nptable: noop,
17549       lheading: /^([^\n]+)\n *(=|-){2,} *(?:\n+|$)/,
17550       blockquote: /^( *>[^\n]+(\n(?!def)[^\n]+)*\n*)+/,
17551       list: /^( *)(bull) [\s\S]+?(?:hr|def|\n{2,}(?! )(?!\1bull )\n*|\s*$)/,
17552       html: /^ *(?:comment *(?:\n|\s*$)|closed *(?:\n{2,}|\s*$)|closing *(?:\n{2,}|\s*$))/,
17553       def: /^ *\[([^\]]+)\]: *<?([^\s>]+)>?(?: +["(]([^\n]+)[")])? *(?:\n+|$)/,
17554       table: noop,
17555       paragraph: /^((?:[^\n]+\n?(?!hr|heading|lheading|blockquote|tag|def))+)\n*/,
17556       text: /^[^\n]+/
17557     };
17558     
17559     block.bullet = /(?:[*+-]|\d+\.)/;
17560     block.item = /^( *)(bull) [^\n]*(?:\n(?!\1bull )[^\n]*)*/;
17561     block.item = replace(block.item, 'gm')
17562       (/bull/g, block.bullet)
17563       ();
17564     
17565     block.list = replace(block.list)
17566       (/bull/g, block.bullet)
17567       ('hr', '\\n+(?=\\1?(?:[-*_] *){3,}(?:\\n+|$))')
17568       ('def', '\\n+(?=' + block.def.source + ')')
17569       ();
17570     
17571     block.blockquote = replace(block.blockquote)
17572       ('def', block.def)
17573       ();
17574     
17575     block._tag = '(?!(?:'
17576       + 'a|em|strong|small|s|cite|q|dfn|abbr|data|time|code'
17577       + '|var|samp|kbd|sub|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo'
17578       + '|span|br|wbr|ins|del|img)\\b)\\w+(?!:/|[^\\w\\s@]*@)\\b';
17579     
17580     block.html = replace(block.html)
17581       ('comment', /<!--[\s\S]*?-->/)
17582       ('closed', /<(tag)[\s\S]+?<\/\1>/)
17583       ('closing', /<tag(?:"[^"]*"|'[^']*'|[^'">])*?>/)
17584       (/tag/g, block._tag)
17585       ();
17586     
17587     block.paragraph = replace(block.paragraph)
17588       ('hr', block.hr)
17589       ('heading', block.heading)
17590       ('lheading', block.lheading)
17591       ('blockquote', block.blockquote)
17592       ('tag', '<' + block._tag)
17593       ('def', block.def)
17594       ();
17595     
17596     /**
17597      * Normal Block Grammar
17598      */
17599     
17600     block.normal = merge({}, block);
17601     
17602     /**
17603      * GFM Block Grammar
17604      */
17605     
17606     block.gfm = merge({}, block.normal, {
17607       fences: /^ *(`{3,}|~{3,})[ \.]*(\S+)? *\n([\s\S]*?)\s*\1 *(?:\n+|$)/,
17608       paragraph: /^/,
17609       heading: /^ *(#{1,6}) +([^\n]+?) *#* *(?:\n+|$)/
17610     });
17611     
17612     block.gfm.paragraph = replace(block.paragraph)
17613       ('(?!', '(?!'
17614         + block.gfm.fences.source.replace('\\1', '\\2') + '|'
17615         + block.list.source.replace('\\1', '\\3') + '|')
17616       ();
17617     
17618     /**
17619      * GFM + Tables Block Grammar
17620      */
17621     
17622     block.tables = merge({}, block.gfm, {
17623       nptable: /^ *(\S.*\|.*)\n *([-:]+ *\|[-| :]*)\n((?:.*\|.*(?:\n|$))*)\n*/,
17624       table: /^ *\|(.+)\n *\|( *[-:]+[-| :]*)\n((?: *\|.*(?:\n|$))*)\n*/
17625     });
17626     
17627     /**
17628      * Block Lexer
17629      */
17630     
17631     var Lexer = function (options) {
17632       this.tokens = [];
17633       this.tokens.links = {};
17634       this.options = options || marked.defaults;
17635       this.rules = block.normal;
17636     
17637       if (this.options.gfm) {
17638         if (this.options.tables) {
17639           this.rules = block.tables;
17640         } else {
17641           this.rules = block.gfm;
17642         }
17643       }
17644     }
17645     
17646     /**
17647      * Expose Block Rules
17648      */
17649     
17650     Lexer.rules = block;
17651     
17652     /**
17653      * Static Lex Method
17654      */
17655     
17656     Lexer.lex = function(src, options) {
17657       var lexer = new Lexer(options);
17658       return lexer.lex(src);
17659     };
17660     
17661     /**
17662      * Preprocessing
17663      */
17664     
17665     Lexer.prototype.lex = function(src) {
17666       src = src
17667         .replace(/\r\n|\r/g, '\n')
17668         .replace(/\t/g, '    ')
17669         .replace(/\u00a0/g, ' ')
17670         .replace(/\u2424/g, '\n');
17671     
17672       return this.token(src, true);
17673     };
17674     
17675     /**
17676      * Lexing
17677      */
17678     
17679     Lexer.prototype.token = function(src, top, bq) {
17680       var src = src.replace(/^ +$/gm, '')
17681         , next
17682         , loose
17683         , cap
17684         , bull
17685         , b
17686         , item
17687         , space
17688         , i
17689         , l;
17690     
17691       while (src) {
17692         // newline
17693         if (cap = this.rules.newline.exec(src)) {
17694           src = src.substring(cap[0].length);
17695           if (cap[0].length > 1) {
17696             this.tokens.push({
17697               type: 'space'
17698             });
17699           }
17700         }
17701     
17702         // code
17703         if (cap = this.rules.code.exec(src)) {
17704           src = src.substring(cap[0].length);
17705           cap = cap[0].replace(/^ {4}/gm, '');
17706           this.tokens.push({
17707             type: 'code',
17708             text: !this.options.pedantic
17709               ? cap.replace(/\n+$/, '')
17710               : cap
17711           });
17712           continue;
17713         }
17714     
17715         // fences (gfm)
17716         if (cap = this.rules.fences.exec(src)) {
17717           src = src.substring(cap[0].length);
17718           this.tokens.push({
17719             type: 'code',
17720             lang: cap[2],
17721             text: cap[3] || ''
17722           });
17723           continue;
17724         }
17725     
17726         // heading
17727         if (cap = this.rules.heading.exec(src)) {
17728           src = src.substring(cap[0].length);
17729           this.tokens.push({
17730             type: 'heading',
17731             depth: cap[1].length,
17732             text: cap[2]
17733           });
17734           continue;
17735         }
17736     
17737         // table no leading pipe (gfm)
17738         if (top && (cap = this.rules.nptable.exec(src))) {
17739           src = src.substring(cap[0].length);
17740     
17741           item = {
17742             type: 'table',
17743             header: cap[1].replace(/^ *| *\| *$/g, '').split(/ *\| */),
17744             align: cap[2].replace(/^ *|\| *$/g, '').split(/ *\| */),
17745             cells: cap[3].replace(/\n$/, '').split('\n')
17746           };
17747     
17748           for (i = 0; i < item.align.length; i++) {
17749             if (/^ *-+: *$/.test(item.align[i])) {
17750               item.align[i] = 'right';
17751             } else if (/^ *:-+: *$/.test(item.align[i])) {
17752               item.align[i] = 'center';
17753             } else if (/^ *:-+ *$/.test(item.align[i])) {
17754               item.align[i] = 'left';
17755             } else {
17756               item.align[i] = null;
17757             }
17758           }
17759     
17760           for (i = 0; i < item.cells.length; i++) {
17761             item.cells[i] = item.cells[i].split(/ *\| */);
17762           }
17763     
17764           this.tokens.push(item);
17765     
17766           continue;
17767         }
17768     
17769         // lheading
17770         if (cap = this.rules.lheading.exec(src)) {
17771           src = src.substring(cap[0].length);
17772           this.tokens.push({
17773             type: 'heading',
17774             depth: cap[2] === '=' ? 1 : 2,
17775             text: cap[1]
17776           });
17777           continue;
17778         }
17779     
17780         // hr
17781         if (cap = this.rules.hr.exec(src)) {
17782           src = src.substring(cap[0].length);
17783           this.tokens.push({
17784             type: 'hr'
17785           });
17786           continue;
17787         }
17788     
17789         // blockquote
17790         if (cap = this.rules.blockquote.exec(src)) {
17791           src = src.substring(cap[0].length);
17792     
17793           this.tokens.push({
17794             type: 'blockquote_start'
17795           });
17796     
17797           cap = cap[0].replace(/^ *> ?/gm, '');
17798     
17799           // Pass `top` to keep the current
17800           // "toplevel" state. This is exactly
17801           // how markdown.pl works.
17802           this.token(cap, top, true);
17803     
17804           this.tokens.push({
17805             type: 'blockquote_end'
17806           });
17807     
17808           continue;
17809         }
17810     
17811         // list
17812         if (cap = this.rules.list.exec(src)) {
17813           src = src.substring(cap[0].length);
17814           bull = cap[2];
17815     
17816           this.tokens.push({
17817             type: 'list_start',
17818             ordered: bull.length > 1
17819           });
17820     
17821           // Get each top-level item.
17822           cap = cap[0].match(this.rules.item);
17823     
17824           next = false;
17825           l = cap.length;
17826           i = 0;
17827     
17828           for (; i < l; i++) {
17829             item = cap[i];
17830     
17831             // Remove the list item's bullet
17832             // so it is seen as the next token.
17833             space = item.length;
17834             item = item.replace(/^ *([*+-]|\d+\.) +/, '');
17835     
17836             // Outdent whatever the
17837             // list item contains. Hacky.
17838             if (~item.indexOf('\n ')) {
17839               space -= item.length;
17840               item = !this.options.pedantic
17841                 ? item.replace(new RegExp('^ {1,' + space + '}', 'gm'), '')
17842                 : item.replace(/^ {1,4}/gm, '');
17843             }
17844     
17845             // Determine whether the next list item belongs here.
17846             // Backpedal if it does not belong in this list.
17847             if (this.options.smartLists && i !== l - 1) {
17848               b = block.bullet.exec(cap[i + 1])[0];
17849               if (bull !== b && !(bull.length > 1 && b.length > 1)) {
17850                 src = cap.slice(i + 1).join('\n') + src;
17851                 i = l - 1;
17852               }
17853             }
17854     
17855             // Determine whether item is loose or not.
17856             // Use: /(^|\n)(?! )[^\n]+\n\n(?!\s*$)/
17857             // for discount behavior.
17858             loose = next || /\n\n(?!\s*$)/.test(item);
17859             if (i !== l - 1) {
17860               next = item.charAt(item.length - 1) === '\n';
17861               if (!loose) { loose = next; }
17862             }
17863     
17864             this.tokens.push({
17865               type: loose
17866                 ? 'loose_item_start'
17867                 : 'list_item_start'
17868             });
17869     
17870             // Recurse.
17871             this.token(item, false, bq);
17872     
17873             this.tokens.push({
17874               type: 'list_item_end'
17875             });
17876           }
17877     
17878           this.tokens.push({
17879             type: 'list_end'
17880           });
17881     
17882           continue;
17883         }
17884     
17885         // html
17886         if (cap = this.rules.html.exec(src)) {
17887           src = src.substring(cap[0].length);
17888           this.tokens.push({
17889             type: this.options.sanitize
17890               ? 'paragraph'
17891               : 'html',
17892             pre: !this.options.sanitizer
17893               && (cap[1] === 'pre' || cap[1] === 'script' || cap[1] === 'style'),
17894             text: cap[0]
17895           });
17896           continue;
17897         }
17898     
17899         // def
17900         if ((!bq && top) && (cap = this.rules.def.exec(src))) {
17901           src = src.substring(cap[0].length);
17902           this.tokens.links[cap[1].toLowerCase()] = {
17903             href: cap[2],
17904             title: cap[3]
17905           };
17906           continue;
17907         }
17908     
17909         // table (gfm)
17910         if (top && (cap = this.rules.table.exec(src))) {
17911           src = src.substring(cap[0].length);
17912     
17913           item = {
17914             type: 'table',
17915             header: cap[1].replace(/^ *| *\| *$/g, '').split(/ *\| */),
17916             align: cap[2].replace(/^ *|\| *$/g, '').split(/ *\| */),
17917             cells: cap[3].replace(/(?: *\| *)?\n$/, '').split('\n')
17918           };
17919     
17920           for (i = 0; i < item.align.length; i++) {
17921             if (/^ *-+: *$/.test(item.align[i])) {
17922               item.align[i] = 'right';
17923             } else if (/^ *:-+: *$/.test(item.align[i])) {
17924               item.align[i] = 'center';
17925             } else if (/^ *:-+ *$/.test(item.align[i])) {
17926               item.align[i] = 'left';
17927             } else {
17928               item.align[i] = null;
17929             }
17930           }
17931     
17932           for (i = 0; i < item.cells.length; i++) {
17933             item.cells[i] = item.cells[i]
17934               .replace(/^ *\| *| *\| *$/g, '')
17935               .split(/ *\| */);
17936           }
17937     
17938           this.tokens.push(item);
17939     
17940           continue;
17941         }
17942     
17943         // top-level paragraph
17944         if (top && (cap = this.rules.paragraph.exec(src))) {
17945           src = src.substring(cap[0].length);
17946           this.tokens.push({
17947             type: 'paragraph',
17948             text: cap[1].charAt(cap[1].length - 1) === '\n'
17949               ? cap[1].slice(0, -1)
17950               : cap[1]
17951           });
17952           continue;
17953         }
17954     
17955         // text
17956         if (cap = this.rules.text.exec(src)) {
17957           // Top-level should never reach here.
17958           src = src.substring(cap[0].length);
17959           this.tokens.push({
17960             type: 'text',
17961             text: cap[0]
17962           });
17963           continue;
17964         }
17965     
17966         if (src) {
17967           throw new
17968             Error('Infinite loop on byte: ' + src.charCodeAt(0));
17969         }
17970       }
17971     
17972       return this.tokens;
17973     };
17974     
17975     /**
17976      * Inline-Level Grammar
17977      */
17978     
17979     var inline = {
17980       escape: /^\\([\\`*{}\[\]()#+\-.!_>])/,
17981       autolink: /^<([^ >]+(@|:\/)[^ >]+)>/,
17982       url: noop,
17983       tag: /^<!--[\s\S]*?-->|^<\/?\w+(?:"[^"]*"|'[^']*'|[^'">])*?>/,
17984       link: /^!?\[(inside)\]\(href\)/,
17985       reflink: /^!?\[(inside)\]\s*\[([^\]]*)\]/,
17986       nolink: /^!?\[((?:\[[^\]]*\]|[^\[\]])*)\]/,
17987       strong: /^__([\s\S]+?)__(?!_)|^\*\*([\s\S]+?)\*\*(?!\*)/,
17988       em: /^\b_((?:[^_]|__)+?)_\b|^\*((?:\*\*|[\s\S])+?)\*(?!\*)/,
17989       code: /^(`+)\s*([\s\S]*?[^`])\s*\1(?!`)/,
17990       br: /^ {2,}\n(?!\s*$)/,
17991       del: noop,
17992       text: /^[\s\S]+?(?=[\\<!\[_*`]| {2,}\n|$)/
17993     };
17994     
17995     inline._inside = /(?:\[[^\]]*\]|[^\[\]]|\](?=[^\[]*\]))*/;
17996     inline._href = /\s*<?([\s\S]*?)>?(?:\s+['"]([\s\S]*?)['"])?\s*/;
17997     
17998     inline.link = replace(inline.link)
17999       ('inside', inline._inside)
18000       ('href', inline._href)
18001       ();
18002     
18003     inline.reflink = replace(inline.reflink)
18004       ('inside', inline._inside)
18005       ();
18006     
18007     /**
18008      * Normal Inline Grammar
18009      */
18010     
18011     inline.normal = merge({}, inline);
18012     
18013     /**
18014      * Pedantic Inline Grammar
18015      */
18016     
18017     inline.pedantic = merge({}, inline.normal, {
18018       strong: /^__(?=\S)([\s\S]*?\S)__(?!_)|^\*\*(?=\S)([\s\S]*?\S)\*\*(?!\*)/,
18019       em: /^_(?=\S)([\s\S]*?\S)_(?!_)|^\*(?=\S)([\s\S]*?\S)\*(?!\*)/
18020     });
18021     
18022     /**
18023      * GFM Inline Grammar
18024      */
18025     
18026     inline.gfm = merge({}, inline.normal, {
18027       escape: replace(inline.escape)('])', '~|])')(),
18028       url: /^(https?:\/\/[^\s<]+[^<.,:;"')\]\s])/,
18029       del: /^~~(?=\S)([\s\S]*?\S)~~/,
18030       text: replace(inline.text)
18031         (']|', '~]|')
18032         ('|', '|https?://|')
18033         ()
18034     });
18035     
18036     /**
18037      * GFM + Line Breaks Inline Grammar
18038      */
18039     
18040     inline.breaks = merge({}, inline.gfm, {
18041       br: replace(inline.br)('{2,}', '*')(),
18042       text: replace(inline.gfm.text)('{2,}', '*')()
18043     });
18044     
18045     /**
18046      * Inline Lexer & Compiler
18047      */
18048     
18049     var InlineLexer  = function (links, options) {
18050       this.options = options || marked.defaults;
18051       this.links = links;
18052       this.rules = inline.normal;
18053       this.renderer = this.options.renderer || new Renderer;
18054       this.renderer.options = this.options;
18055     
18056       if (!this.links) {
18057         throw new
18058           Error('Tokens array requires a `links` property.');
18059       }
18060     
18061       if (this.options.gfm) {
18062         if (this.options.breaks) {
18063           this.rules = inline.breaks;
18064         } else {
18065           this.rules = inline.gfm;
18066         }
18067       } else if (this.options.pedantic) {
18068         this.rules = inline.pedantic;
18069       }
18070     }
18071     
18072     /**
18073      * Expose Inline Rules
18074      */
18075     
18076     InlineLexer.rules = inline;
18077     
18078     /**
18079      * Static Lexing/Compiling Method
18080      */
18081     
18082     InlineLexer.output = function(src, links, options) {
18083       var inline = new InlineLexer(links, options);
18084       return inline.output(src);
18085     };
18086     
18087     /**
18088      * Lexing/Compiling
18089      */
18090     
18091     InlineLexer.prototype.output = function(src) {
18092       var out = ''
18093         , link
18094         , text
18095         , href
18096         , cap;
18097     
18098       while (src) {
18099         // escape
18100         if (cap = this.rules.escape.exec(src)) {
18101           src = src.substring(cap[0].length);
18102           out += cap[1];
18103           continue;
18104         }
18105     
18106         // autolink
18107         if (cap = this.rules.autolink.exec(src)) {
18108           src = src.substring(cap[0].length);
18109           if (cap[2] === '@') {
18110             text = cap[1].charAt(6) === ':'
18111               ? this.mangle(cap[1].substring(7))
18112               : this.mangle(cap[1]);
18113             href = this.mangle('mailto:') + text;
18114           } else {
18115             text = escape(cap[1]);
18116             href = text;
18117           }
18118           out += this.renderer.link(href, null, text);
18119           continue;
18120         }
18121     
18122         // url (gfm)
18123         if (!this.inLink && (cap = this.rules.url.exec(src))) {
18124           src = src.substring(cap[0].length);
18125           text = escape(cap[1]);
18126           href = text;
18127           out += this.renderer.link(href, null, text);
18128           continue;
18129         }
18130     
18131         // tag
18132         if (cap = this.rules.tag.exec(src)) {
18133           if (!this.inLink && /^<a /i.test(cap[0])) {
18134             this.inLink = true;
18135           } else if (this.inLink && /^<\/a>/i.test(cap[0])) {
18136             this.inLink = false;
18137           }
18138           src = src.substring(cap[0].length);
18139           out += this.options.sanitize
18140             ? this.options.sanitizer
18141               ? this.options.sanitizer(cap[0])
18142               : escape(cap[0])
18143             : cap[0];
18144           continue;
18145         }
18146     
18147         // link
18148         if (cap = this.rules.link.exec(src)) {
18149           src = src.substring(cap[0].length);
18150           this.inLink = true;
18151           out += this.outputLink(cap, {
18152             href: cap[2],
18153             title: cap[3]
18154           });
18155           this.inLink = false;
18156           continue;
18157         }
18158     
18159         // reflink, nolink
18160         if ((cap = this.rules.reflink.exec(src))
18161             || (cap = this.rules.nolink.exec(src))) {
18162           src = src.substring(cap[0].length);
18163           link = (cap[2] || cap[1]).replace(/\s+/g, ' ');
18164           link = this.links[link.toLowerCase()];
18165           if (!link || !link.href) {
18166             out += cap[0].charAt(0);
18167             src = cap[0].substring(1) + src;
18168             continue;
18169           }
18170           this.inLink = true;
18171           out += this.outputLink(cap, link);
18172           this.inLink = false;
18173           continue;
18174         }
18175     
18176         // strong
18177         if (cap = this.rules.strong.exec(src)) {
18178           src = src.substring(cap[0].length);
18179           out += this.renderer.strong(this.output(cap[2] || cap[1]));
18180           continue;
18181         }
18182     
18183         // em
18184         if (cap = this.rules.em.exec(src)) {
18185           src = src.substring(cap[0].length);
18186           out += this.renderer.em(this.output(cap[2] || cap[1]));
18187           continue;
18188         }
18189     
18190         // code
18191         if (cap = this.rules.code.exec(src)) {
18192           src = src.substring(cap[0].length);
18193           out += this.renderer.codespan(escape(cap[2], true));
18194           continue;
18195         }
18196     
18197         // br
18198         if (cap = this.rules.br.exec(src)) {
18199           src = src.substring(cap[0].length);
18200           out += this.renderer.br();
18201           continue;
18202         }
18203     
18204         // del (gfm)
18205         if (cap = this.rules.del.exec(src)) {
18206           src = src.substring(cap[0].length);
18207           out += this.renderer.del(this.output(cap[1]));
18208           continue;
18209         }
18210     
18211         // text
18212         if (cap = this.rules.text.exec(src)) {
18213           src = src.substring(cap[0].length);
18214           out += this.renderer.text(escape(this.smartypants(cap[0])));
18215           continue;
18216         }
18217     
18218         if (src) {
18219           throw new
18220             Error('Infinite loop on byte: ' + src.charCodeAt(0));
18221         }
18222       }
18223     
18224       return out;
18225     };
18226     
18227     /**
18228      * Compile Link
18229      */
18230     
18231     InlineLexer.prototype.outputLink = function(cap, link) {
18232       var href = escape(link.href)
18233         , title = link.title ? escape(link.title) : null;
18234     
18235       return cap[0].charAt(0) !== '!'
18236         ? this.renderer.link(href, title, this.output(cap[1]))
18237         : this.renderer.image(href, title, escape(cap[1]));
18238     };
18239     
18240     /**
18241      * Smartypants Transformations
18242      */
18243     
18244     InlineLexer.prototype.smartypants = function(text) {
18245       if (!this.options.smartypants)  { return text; }
18246       return text
18247         // em-dashes
18248         .replace(/---/g, '\u2014')
18249         // en-dashes
18250         .replace(/--/g, '\u2013')
18251         // opening singles
18252         .replace(/(^|[-\u2014/(\[{"\s])'/g, '$1\u2018')
18253         // closing singles & apostrophes
18254         .replace(/'/g, '\u2019')
18255         // opening doubles
18256         .replace(/(^|[-\u2014/(\[{\u2018\s])"/g, '$1\u201c')
18257         // closing doubles
18258         .replace(/"/g, '\u201d')
18259         // ellipses
18260         .replace(/\.{3}/g, '\u2026');
18261     };
18262     
18263     /**
18264      * Mangle Links
18265      */
18266     
18267     InlineLexer.prototype.mangle = function(text) {
18268       if (!this.options.mangle) { return text; }
18269       var out = ''
18270         , l = text.length
18271         , i = 0
18272         , ch;
18273     
18274       for (; i < l; i++) {
18275         ch = text.charCodeAt(i);
18276         if (Math.random() > 0.5) {
18277           ch = 'x' + ch.toString(16);
18278         }
18279         out += '&#' + ch + ';';
18280       }
18281     
18282       return out;
18283     };
18284     
18285     /**
18286      * Renderer
18287      */
18288     
18289      /**
18290          * eval:var:Renderer
18291     */
18292     
18293     var Renderer   = function (options) {
18294       this.options = options || {};
18295     }
18296     
18297     Renderer.prototype.code = function(code, lang, escaped) {
18298       if (this.options.highlight) {
18299         var out = this.options.highlight(code, lang);
18300         if (out != null && out !== code) {
18301           escaped = true;
18302           code = out;
18303         }
18304       } else {
18305             // hack!!! - it's already escapeD?
18306             escaped = true;
18307       }
18308     
18309       if (!lang) {
18310         return '<pre><code>'
18311           + (escaped ? code : escape(code, true))
18312           + '\n</code></pre>';
18313       }
18314     
18315       return '<pre><code class="'
18316         + this.options.langPrefix
18317         + escape(lang, true)
18318         + '">'
18319         + (escaped ? code : escape(code, true))
18320         + '\n</code></pre>\n';
18321     };
18322     
18323     Renderer.prototype.blockquote = function(quote) {
18324       return '<blockquote>\n' + quote + '</blockquote>\n';
18325     };
18326     
18327     Renderer.prototype.html = function(html) {
18328       return html;
18329     };
18330     
18331     Renderer.prototype.heading = function(text, level, raw) {
18332       return '<h'
18333         + level
18334         + ' id="'
18335         + this.options.headerPrefix
18336         + raw.toLowerCase().replace(/[^\w]+/g, '-')
18337         + '">'
18338         + text
18339         + '</h'
18340         + level
18341         + '>\n';
18342     };
18343     
18344     Renderer.prototype.hr = function() {
18345       return this.options.xhtml ? '<hr/>\n' : '<hr>\n';
18346     };
18347     
18348     Renderer.prototype.list = function(body, ordered) {
18349       var type = ordered ? 'ol' : 'ul';
18350       return '<' + type + '>\n' + body + '</' + type + '>\n';
18351     };
18352     
18353     Renderer.prototype.listitem = function(text) {
18354       return '<li>' + text + '</li>\n';
18355     };
18356     
18357     Renderer.prototype.paragraph = function(text) {
18358       return '<p>' + text + '</p>\n';
18359     };
18360     
18361     Renderer.prototype.table = function(header, body) {
18362       return '<table class="table table-striped">\n'
18363         + '<thead>\n'
18364         + header
18365         + '</thead>\n'
18366         + '<tbody>\n'
18367         + body
18368         + '</tbody>\n'
18369         + '</table>\n';
18370     };
18371     
18372     Renderer.prototype.tablerow = function(content) {
18373       return '<tr>\n' + content + '</tr>\n';
18374     };
18375     
18376     Renderer.prototype.tablecell = function(content, flags) {
18377       var type = flags.header ? 'th' : 'td';
18378       var tag = flags.align
18379         ? '<' + type + ' style="text-align:' + flags.align + '">'
18380         : '<' + type + '>';
18381       return tag + content + '</' + type + '>\n';
18382     };
18383     
18384     // span level renderer
18385     Renderer.prototype.strong = function(text) {
18386       return '<strong>' + text + '</strong>';
18387     };
18388     
18389     Renderer.prototype.em = function(text) {
18390       return '<em>' + text + '</em>';
18391     };
18392     
18393     Renderer.prototype.codespan = function(text) {
18394       return '<code>' + text + '</code>';
18395     };
18396     
18397     Renderer.prototype.br = function() {
18398       return this.options.xhtml ? '<br/>' : '<br>';
18399     };
18400     
18401     Renderer.prototype.del = function(text) {
18402       return '<del>' + text + '</del>';
18403     };
18404     
18405     Renderer.prototype.link = function(href, title, text) {
18406       if (this.options.sanitize) {
18407         try {
18408           var prot = decodeURIComponent(unescape(href))
18409             .replace(/[^\w:]/g, '')
18410             .toLowerCase();
18411         } catch (e) {
18412           return '';
18413         }
18414         if (prot.indexOf('javascript:') === 0 || prot.indexOf('vbscript:') === 0) {
18415           return '';
18416         }
18417       }
18418       var out = '<a href="' + href + '"';
18419       if (title) {
18420         out += ' title="' + title + '"';
18421       }
18422       out += '>' + text + '</a>';
18423       return out;
18424     };
18425     
18426     Renderer.prototype.image = function(href, title, text) {
18427       var out = '<img src="' + href + '" alt="' + text + '"';
18428       if (title) {
18429         out += ' title="' + title + '"';
18430       }
18431       out += this.options.xhtml ? '/>' : '>';
18432       return out;
18433     };
18434     
18435     Renderer.prototype.text = function(text) {
18436       return text;
18437     };
18438     
18439     /**
18440      * Parsing & Compiling
18441      */
18442          /**
18443          * eval:var:Parser
18444     */
18445     
18446     var Parser= function (options) {
18447       this.tokens = [];
18448       this.token = null;
18449       this.options = options || marked.defaults;
18450       this.options.renderer = this.options.renderer || new Renderer;
18451       this.renderer = this.options.renderer;
18452       this.renderer.options = this.options;
18453     }
18454     
18455     /**
18456      * Static Parse Method
18457      */
18458     
18459     Parser.parse = function(src, options, renderer) {
18460       var parser = new Parser(options, renderer);
18461       return parser.parse(src);
18462     };
18463     
18464     /**
18465      * Parse Loop
18466      */
18467     
18468     Parser.prototype.parse = function(src) {
18469       this.inline = new InlineLexer(src.links, this.options, this.renderer);
18470       this.tokens = src.reverse();
18471     
18472       var out = '';
18473       while (this.next()) {
18474         out += this.tok();
18475       }
18476     
18477       return out;
18478     };
18479     
18480     /**
18481      * Next Token
18482      */
18483     
18484     Parser.prototype.next = function() {
18485       return this.token = this.tokens.pop();
18486     };
18487     
18488     /**
18489      * Preview Next Token
18490      */
18491     
18492     Parser.prototype.peek = function() {
18493       return this.tokens[this.tokens.length - 1] || 0;
18494     };
18495     
18496     /**
18497      * Parse Text Tokens
18498      */
18499     
18500     Parser.prototype.parseText = function() {
18501       var body = this.token.text;
18502     
18503       while (this.peek().type === 'text') {
18504         body += '\n' + this.next().text;
18505       }
18506     
18507       return this.inline.output(body);
18508     };
18509     
18510     /**
18511      * Parse Current Token
18512      */
18513     
18514     Parser.prototype.tok = function() {
18515       switch (this.token.type) {
18516         case 'space': {
18517           return '';
18518         }
18519         case 'hr': {
18520           return this.renderer.hr();
18521         }
18522         case 'heading': {
18523           return this.renderer.heading(
18524             this.inline.output(this.token.text),
18525             this.token.depth,
18526             this.token.text);
18527         }
18528         case 'code': {
18529           return this.renderer.code(this.token.text,
18530             this.token.lang,
18531             this.token.escaped);
18532         }
18533         case 'table': {
18534           var header = ''
18535             , body = ''
18536             , i
18537             , row
18538             , cell
18539             , flags
18540             , j;
18541     
18542           // header
18543           cell = '';
18544           for (i = 0; i < this.token.header.length; i++) {
18545             flags = { header: true, align: this.token.align[i] };
18546             cell += this.renderer.tablecell(
18547               this.inline.output(this.token.header[i]),
18548               { header: true, align: this.token.align[i] }
18549             );
18550           }
18551           header += this.renderer.tablerow(cell);
18552     
18553           for (i = 0; i < this.token.cells.length; i++) {
18554             row = this.token.cells[i];
18555     
18556             cell = '';
18557             for (j = 0; j < row.length; j++) {
18558               cell += this.renderer.tablecell(
18559                 this.inline.output(row[j]),
18560                 { header: false, align: this.token.align[j] }
18561               );
18562             }
18563     
18564             body += this.renderer.tablerow(cell);
18565           }
18566           return this.renderer.table(header, body);
18567         }
18568         case 'blockquote_start': {
18569           var body = '';
18570     
18571           while (this.next().type !== 'blockquote_end') {
18572             body += this.tok();
18573           }
18574     
18575           return this.renderer.blockquote(body);
18576         }
18577         case 'list_start': {
18578           var body = ''
18579             , ordered = this.token.ordered;
18580     
18581           while (this.next().type !== 'list_end') {
18582             body += this.tok();
18583           }
18584     
18585           return this.renderer.list(body, ordered);
18586         }
18587         case 'list_item_start': {
18588           var body = '';
18589     
18590           while (this.next().type !== 'list_item_end') {
18591             body += this.token.type === 'text'
18592               ? this.parseText()
18593               : this.tok();
18594           }
18595     
18596           return this.renderer.listitem(body);
18597         }
18598         case 'loose_item_start': {
18599           var body = '';
18600     
18601           while (this.next().type !== 'list_item_end') {
18602             body += this.tok();
18603           }
18604     
18605           return this.renderer.listitem(body);
18606         }
18607         case 'html': {
18608           var html = !this.token.pre && !this.options.pedantic
18609             ? this.inline.output(this.token.text)
18610             : this.token.text;
18611           return this.renderer.html(html);
18612         }
18613         case 'paragraph': {
18614           return this.renderer.paragraph(this.inline.output(this.token.text));
18615         }
18616         case 'text': {
18617           return this.renderer.paragraph(this.parseText());
18618         }
18619       }
18620     };
18621   
18622     
18623     /**
18624      * Marked
18625      */
18626          /**
18627          * eval:var:marked
18628     */
18629     var marked = function (src, opt, callback) {
18630       if (callback || typeof opt === 'function') {
18631         if (!callback) {
18632           callback = opt;
18633           opt = null;
18634         }
18635     
18636         opt = merge({}, marked.defaults, opt || {});
18637     
18638         var highlight = opt.highlight
18639           , tokens
18640           , pending
18641           , i = 0;
18642     
18643         try {
18644           tokens = Lexer.lex(src, opt)
18645         } catch (e) {
18646           return callback(e);
18647         }
18648     
18649         pending = tokens.length;
18650          /**
18651          * eval:var:done
18652     */
18653         var done = function(err) {
18654           if (err) {
18655             opt.highlight = highlight;
18656             return callback(err);
18657           }
18658     
18659           var out;
18660     
18661           try {
18662             out = Parser.parse(tokens, opt);
18663           } catch (e) {
18664             err = e;
18665           }
18666     
18667           opt.highlight = highlight;
18668     
18669           return err
18670             ? callback(err)
18671             : callback(null, out);
18672         };
18673     
18674         if (!highlight || highlight.length < 3) {
18675           return done();
18676         }
18677     
18678         delete opt.highlight;
18679     
18680         if (!pending) { return done(); }
18681     
18682         for (; i < tokens.length; i++) {
18683           (function(token) {
18684             if (token.type !== 'code') {
18685               return --pending || done();
18686             }
18687             return highlight(token.text, token.lang, function(err, code) {
18688               if (err) { return done(err); }
18689               if (code == null || code === token.text) {
18690                 return --pending || done();
18691               }
18692               token.text = code;
18693               token.escaped = true;
18694               --pending || done();
18695             });
18696           })(tokens[i]);
18697         }
18698     
18699         return;
18700       }
18701       try {
18702         if (opt) { opt = merge({}, marked.defaults, opt); }
18703         return Parser.parse(Lexer.lex(src, opt), opt);
18704       } catch (e) {
18705         e.message += '\nPlease report this to https://github.com/chjj/marked.';
18706         if ((opt || marked.defaults).silent) {
18707           return '<p>An error occured:</p><pre>'
18708             + escape(e.message + '', true)
18709             + '</pre>';
18710         }
18711         throw e;
18712       }
18713     }
18714     
18715     /**
18716      * Options
18717      */
18718     
18719     marked.options =
18720     marked.setOptions = function(opt) {
18721       merge(marked.defaults, opt);
18722       return marked;
18723     };
18724     
18725     marked.defaults = {
18726       gfm: true,
18727       tables: true,
18728       breaks: false,
18729       pedantic: false,
18730       sanitize: false,
18731       sanitizer: null,
18732       mangle: true,
18733       smartLists: false,
18734       silent: false,
18735       highlight: null,
18736       langPrefix: 'lang-',
18737       smartypants: false,
18738       headerPrefix: '',
18739       renderer: new Renderer,
18740       xhtml: false
18741     };
18742     
18743     /**
18744      * Expose
18745      */
18746     
18747     marked.Parser = Parser;
18748     marked.parser = Parser.parse;
18749     
18750     marked.Renderer = Renderer;
18751     
18752     marked.Lexer = Lexer;
18753     marked.lexer = Lexer.lex;
18754     
18755     marked.InlineLexer = InlineLexer;
18756     marked.inlineLexer = InlineLexer.output;
18757     
18758     marked.parse = marked;
18759     
18760     Roo.Markdown.marked = marked;
18761
18762 })();/*
18763  * Based on:
18764  * Ext JS Library 1.1.1
18765  * Copyright(c) 2006-2007, Ext JS, LLC.
18766  *
18767  * Originally Released Under LGPL - original licence link has changed is not relivant.
18768  *
18769  * Fork - LGPL
18770  * <script type="text/javascript">
18771  */
18772
18773
18774
18775 /*
18776  * These classes are derivatives of the similarly named classes in the YUI Library.
18777  * The original license:
18778  * Copyright (c) 2006, Yahoo! Inc. All rights reserved.
18779  * Code licensed under the BSD License:
18780  * http://developer.yahoo.net/yui/license.txt
18781  */
18782
18783 (function() {
18784
18785 var Event=Roo.EventManager;
18786 var Dom=Roo.lib.Dom;
18787
18788 /**
18789  * @class Roo.dd.DragDrop
18790  * @extends Roo.util.Observable
18791  * Defines the interface and base operation of items that that can be
18792  * dragged or can be drop targets.  It was designed to be extended, overriding
18793  * the event handlers for startDrag, onDrag, onDragOver and onDragOut.
18794  * Up to three html elements can be associated with a DragDrop instance:
18795  * <ul>
18796  * <li>linked element: the element that is passed into the constructor.
18797  * This is the element which defines the boundaries for interaction with
18798  * other DragDrop objects.</li>
18799  * <li>handle element(s): The drag operation only occurs if the element that
18800  * was clicked matches a handle element.  By default this is the linked
18801  * element, but there are times that you will want only a portion of the
18802  * linked element to initiate the drag operation, and the setHandleElId()
18803  * method provides a way to define this.</li>
18804  * <li>drag element: this represents the element that would be moved along
18805  * with the cursor during a drag operation.  By default, this is the linked
18806  * element itself as in {@link Roo.dd.DD}.  setDragElId() lets you define
18807  * a separate element that would be moved, as in {@link Roo.dd.DDProxy}.
18808  * </li>
18809  * </ul>
18810  * This class should not be instantiated until the onload event to ensure that
18811  * the associated elements are available.
18812  * The following would define a DragDrop obj that would interact with any
18813  * other DragDrop obj in the "group1" group:
18814  * <pre>
18815  *  dd = new Roo.dd.DragDrop("div1", "group1");
18816  * </pre>
18817  * Since none of the event handlers have been implemented, nothing would
18818  * actually happen if you were to run the code above.  Normally you would
18819  * override this class or one of the default implementations, but you can
18820  * also override the methods you want on an instance of the class...
18821  * <pre>
18822  *  dd.onDragDrop = function(e, id) {
18823  *  &nbsp;&nbsp;alert("dd was dropped on " + id);
18824  *  }
18825  * </pre>
18826  * @constructor
18827  * @param {String} id of the element that is linked to this instance
18828  * @param {String} sGroup the group of related DragDrop objects
18829  * @param {object} config an object containing configurable attributes
18830  *                Valid properties for DragDrop:
18831  *                    padding, isTarget, maintainOffset, primaryButtonOnly
18832  */
18833 Roo.dd.DragDrop = function(id, sGroup, config) {
18834     if (id) {
18835         this.init(id, sGroup, config);
18836     }
18837     
18838 };
18839
18840 Roo.extend(Roo.dd.DragDrop, Roo.util.Observable , {
18841
18842     /**
18843      * The id of the element associated with this object.  This is what we
18844      * refer to as the "linked element" because the size and position of
18845      * this element is used to determine when the drag and drop objects have
18846      * interacted.
18847      * @property id
18848      * @type String
18849      */
18850     id: null,
18851
18852     /**
18853      * Configuration attributes passed into the constructor
18854      * @property config
18855      * @type object
18856      */
18857     config: null,
18858
18859     /**
18860      * The id of the element that will be dragged.  By default this is same
18861      * as the linked element , but could be changed to another element. Ex:
18862      * Roo.dd.DDProxy
18863      * @property dragElId
18864      * @type String
18865      * @private
18866      */
18867     dragElId: null,
18868
18869     /**
18870      * the id of the element that initiates the drag operation.  By default
18871      * this is the linked element, but could be changed to be a child of this
18872      * element.  This lets us do things like only starting the drag when the
18873      * header element within the linked html element is clicked.
18874      * @property handleElId
18875      * @type String
18876      * @private
18877      */
18878     handleElId: null,
18879
18880     /**
18881      * An associative array of HTML tags that will be ignored if clicked.
18882      * @property invalidHandleTypes
18883      * @type {string: string}
18884      */
18885     invalidHandleTypes: null,
18886
18887     /**
18888      * An associative array of ids for elements that will be ignored if clicked
18889      * @property invalidHandleIds
18890      * @type {string: string}
18891      */
18892     invalidHandleIds: null,
18893
18894     /**
18895      * An indexted array of css class names for elements that will be ignored
18896      * if clicked.
18897      * @property invalidHandleClasses
18898      * @type string[]
18899      */
18900     invalidHandleClasses: null,
18901
18902     /**
18903      * The linked element's absolute X position at the time the drag was
18904      * started
18905      * @property startPageX
18906      * @type int
18907      * @private
18908      */
18909     startPageX: 0,
18910
18911     /**
18912      * The linked element's absolute X position at the time the drag was
18913      * started
18914      * @property startPageY
18915      * @type int
18916      * @private
18917      */
18918     startPageY: 0,
18919
18920     /**
18921      * The group defines a logical collection of DragDrop objects that are
18922      * related.  Instances only get events when interacting with other
18923      * DragDrop object in the same group.  This lets us define multiple
18924      * groups using a single DragDrop subclass if we want.
18925      * @property groups
18926      * @type {string: string}
18927      */
18928     groups: null,
18929
18930     /**
18931      * Individual drag/drop instances can be locked.  This will prevent
18932      * onmousedown start drag.
18933      * @property locked
18934      * @type boolean
18935      * @private
18936      */
18937     locked: false,
18938
18939     /**
18940      * Lock this instance
18941      * @method lock
18942      */
18943     lock: function() { this.locked = true; },
18944
18945     /**
18946      * Unlock this instace
18947      * @method unlock
18948      */
18949     unlock: function() { this.locked = false; },
18950
18951     /**
18952      * By default, all insances can be a drop target.  This can be disabled by
18953      * setting isTarget to false.
18954      * @method isTarget
18955      * @type boolean
18956      */
18957     isTarget: true,
18958
18959     /**
18960      * The padding configured for this drag and drop object for calculating
18961      * the drop zone intersection with this object.
18962      * @method padding
18963      * @type int[]
18964      */
18965     padding: null,
18966
18967     /**
18968      * Cached reference to the linked element
18969      * @property _domRef
18970      * @private
18971      */
18972     _domRef: null,
18973
18974     /**
18975      * Internal typeof flag
18976      * @property __ygDragDrop
18977      * @private
18978      */
18979     __ygDragDrop: true,
18980
18981     /**
18982      * Set to true when horizontal contraints are applied
18983      * @property constrainX
18984      * @type boolean
18985      * @private
18986      */
18987     constrainX: false,
18988
18989     /**
18990      * Set to true when vertical contraints are applied
18991      * @property constrainY
18992      * @type boolean
18993      * @private
18994      */
18995     constrainY: false,
18996
18997     /**
18998      * The left constraint
18999      * @property minX
19000      * @type int
19001      * @private
19002      */
19003     minX: 0,
19004
19005     /**
19006      * The right constraint
19007      * @property maxX
19008      * @type int
19009      * @private
19010      */
19011     maxX: 0,
19012
19013     /**
19014      * The up constraint
19015      * @property minY
19016      * @type int
19017      * @type int
19018      * @private
19019      */
19020     minY: 0,
19021
19022     /**
19023      * The down constraint
19024      * @property maxY
19025      * @type int
19026      * @private
19027      */
19028     maxY: 0,
19029
19030     /**
19031      * Maintain offsets when we resetconstraints.  Set to true when you want
19032      * the position of the element relative to its parent to stay the same
19033      * when the page changes
19034      *
19035      * @property maintainOffset
19036      * @type boolean
19037      */
19038     maintainOffset: false,
19039
19040     /**
19041      * Array of pixel locations the element will snap to if we specified a
19042      * horizontal graduation/interval.  This array is generated automatically
19043      * when you define a tick interval.
19044      * @property xTicks
19045      * @type int[]
19046      */
19047     xTicks: null,
19048
19049     /**
19050      * Array of pixel locations the element will snap to if we specified a
19051      * vertical graduation/interval.  This array is generated automatically
19052      * when you define a tick interval.
19053      * @property yTicks
19054      * @type int[]
19055      */
19056     yTicks: null,
19057
19058     /**
19059      * By default the drag and drop instance will only respond to the primary
19060      * button click (left button for a right-handed mouse).  Set to true to
19061      * allow drag and drop to start with any mouse click that is propogated
19062      * by the browser
19063      * @property primaryButtonOnly
19064      * @type boolean
19065      */
19066     primaryButtonOnly: true,
19067
19068     /**
19069      * The availabe property is false until the linked dom element is accessible.
19070      * @property available
19071      * @type boolean
19072      */
19073     available: false,
19074
19075     /**
19076      * By default, drags can only be initiated if the mousedown occurs in the
19077      * region the linked element is.  This is done in part to work around a
19078      * bug in some browsers that mis-report the mousedown if the previous
19079      * mouseup happened outside of the window.  This property is set to true
19080      * if outer handles are defined.
19081      *
19082      * @property hasOuterHandles
19083      * @type boolean
19084      * @default false
19085      */
19086     hasOuterHandles: false,
19087
19088     /**
19089      * Code that executes immediately before the startDrag event
19090      * @method b4StartDrag
19091      * @private
19092      */
19093     b4StartDrag: function(x, y) { },
19094
19095     /**
19096      * Abstract method called after a drag/drop object is clicked
19097      * and the drag or mousedown time thresholds have beeen met.
19098      * @method startDrag
19099      * @param {int} X click location
19100      * @param {int} Y click location
19101      */
19102     startDrag: function(x, y) { /* override this */ },
19103
19104     /**
19105      * Code that executes immediately before the onDrag event
19106      * @method b4Drag
19107      * @private
19108      */
19109     b4Drag: function(e) { },
19110
19111     /**
19112      * Abstract method called during the onMouseMove event while dragging an
19113      * object.
19114      * @method onDrag
19115      * @param {Event} e the mousemove event
19116      */
19117     onDrag: function(e) { /* override this */ },
19118
19119     /**
19120      * Abstract method called when this element fist begins hovering over
19121      * another DragDrop obj
19122      * @method onDragEnter
19123      * @param {Event} e the mousemove event
19124      * @param {String|DragDrop[]} id In POINT mode, the element
19125      * id this is hovering over.  In INTERSECT mode, an array of one or more
19126      * dragdrop items being hovered over.
19127      */
19128     onDragEnter: function(e, id) { /* override this */ },
19129
19130     /**
19131      * Code that executes immediately before the onDragOver event
19132      * @method b4DragOver
19133      * @private
19134      */
19135     b4DragOver: function(e) { },
19136
19137     /**
19138      * Abstract method called when this element is hovering over another
19139      * DragDrop obj
19140      * @method onDragOver
19141      * @param {Event} e the mousemove event
19142      * @param {String|DragDrop[]} id In POINT mode, the element
19143      * id this is hovering over.  In INTERSECT mode, an array of dd items
19144      * being hovered over.
19145      */
19146     onDragOver: function(e, id) { /* override this */ },
19147
19148     /**
19149      * Code that executes immediately before the onDragOut event
19150      * @method b4DragOut
19151      * @private
19152      */
19153     b4DragOut: function(e) { },
19154
19155     /**
19156      * Abstract method called when we are no longer hovering over an element
19157      * @method onDragOut
19158      * @param {Event} e the mousemove event
19159      * @param {String|DragDrop[]} id In POINT mode, the element
19160      * id this was hovering over.  In INTERSECT mode, an array of dd items
19161      * that the mouse is no longer over.
19162      */
19163     onDragOut: function(e, id) { /* override this */ },
19164
19165     /**
19166      * Code that executes immediately before the onDragDrop event
19167      * @method b4DragDrop
19168      * @private
19169      */
19170     b4DragDrop: function(e) { },
19171
19172     /**
19173      * Abstract method called when this item is dropped on another DragDrop
19174      * obj
19175      * @method onDragDrop
19176      * @param {Event} e the mouseup event
19177      * @param {String|DragDrop[]} id In POINT mode, the element
19178      * id this was dropped on.  In INTERSECT mode, an array of dd items this
19179      * was dropped on.
19180      */
19181     onDragDrop: function(e, id) { /* override this */ },
19182
19183     /**
19184      * Abstract method called when this item is dropped on an area with no
19185      * drop target
19186      * @method onInvalidDrop
19187      * @param {Event} e the mouseup event
19188      */
19189     onInvalidDrop: function(e) { /* override this */ },
19190
19191     /**
19192      * Code that executes immediately before the endDrag event
19193      * @method b4EndDrag
19194      * @private
19195      */
19196     b4EndDrag: function(e) { },
19197
19198     /**
19199      * Fired when we are done dragging the object
19200      * @method endDrag
19201      * @param {Event} e the mouseup event
19202      */
19203     endDrag: function(e) { /* override this */ },
19204
19205     /**
19206      * Code executed immediately before the onMouseDown event
19207      * @method b4MouseDown
19208      * @param {Event} e the mousedown event
19209      * @private
19210      */
19211     b4MouseDown: function(e) {  },
19212
19213     /**
19214      * Event handler that fires when a drag/drop obj gets a mousedown
19215      * @method onMouseDown
19216      * @param {Event} e the mousedown event
19217      */
19218     onMouseDown: function(e) { /* override this */ },
19219
19220     /**
19221      * Event handler that fires when a drag/drop obj gets a mouseup
19222      * @method onMouseUp
19223      * @param {Event} e the mouseup event
19224      */
19225     onMouseUp: function(e) { /* override this */ },
19226
19227     /**
19228      * Override the onAvailable method to do what is needed after the initial
19229      * position was determined.
19230      * @method onAvailable
19231      */
19232     onAvailable: function () {
19233     },
19234
19235     /*
19236      * Provides default constraint padding to "constrainTo" elements (defaults to {left: 0, right:0, top:0, bottom:0}).
19237      * @type Object
19238      */
19239     defaultPadding : {left:0, right:0, top:0, bottom:0},
19240
19241     /*
19242      * Initializes the drag drop object's constraints to restrict movement to a certain element.
19243  *
19244  * Usage:
19245  <pre><code>
19246  var dd = new Roo.dd.DDProxy("dragDiv1", "proxytest",
19247                 { dragElId: "existingProxyDiv" });
19248  dd.startDrag = function(){
19249      this.constrainTo("parent-id");
19250  };
19251  </code></pre>
19252  * Or you can initalize it using the {@link Roo.Element} object:
19253  <pre><code>
19254  Roo.get("dragDiv1").initDDProxy("proxytest", {dragElId: "existingProxyDiv"}, {
19255      startDrag : function(){
19256          this.constrainTo("parent-id");
19257      }
19258  });
19259  </code></pre>
19260      * @param {String/HTMLElement/Element} constrainTo The element to constrain to.
19261      * @param {Object/Number} pad (optional) Pad provides a way to specify "padding" of the constraints,
19262      * and can be either a number for symmetrical padding (4 would be equal to {left:4, right:4, top:4, bottom:4}) or
19263      * an object containing the sides to pad. For example: {right:10, bottom:10}
19264      * @param {Boolean} inContent (optional) Constrain the draggable in the content box of the element (inside padding and borders)
19265      */
19266     constrainTo : function(constrainTo, pad, inContent){
19267         if(typeof pad == "number"){
19268             pad = {left: pad, right:pad, top:pad, bottom:pad};
19269         }
19270         pad = pad || this.defaultPadding;
19271         var b = Roo.get(this.getEl()).getBox();
19272         var ce = Roo.get(constrainTo);
19273         var s = ce.getScroll();
19274         var c, cd = ce.dom;
19275         if(cd == document.body){
19276             c = { x: s.left, y: s.top, width: Roo.lib.Dom.getViewWidth(), height: Roo.lib.Dom.getViewHeight()};
19277         }else{
19278             xy = ce.getXY();
19279             c = {x : xy[0]+s.left, y: xy[1]+s.top, width: cd.clientWidth, height: cd.clientHeight};
19280         }
19281
19282
19283         var topSpace = b.y - c.y;
19284         var leftSpace = b.x - c.x;
19285
19286         this.resetConstraints();
19287         this.setXConstraint(leftSpace - (pad.left||0), // left
19288                 c.width - leftSpace - b.width - (pad.right||0) //right
19289         );
19290         this.setYConstraint(topSpace - (pad.top||0), //top
19291                 c.height - topSpace - b.height - (pad.bottom||0) //bottom
19292         );
19293     },
19294
19295     /**
19296      * Returns a reference to the linked element
19297      * @method getEl
19298      * @return {HTMLElement} the html element
19299      */
19300     getEl: function() {
19301         if (!this._domRef) {
19302             this._domRef = Roo.getDom(this.id);
19303         }
19304
19305         return this._domRef;
19306     },
19307
19308     /**
19309      * Returns a reference to the actual element to drag.  By default this is
19310      * the same as the html element, but it can be assigned to another
19311      * element. An example of this can be found in Roo.dd.DDProxy
19312      * @method getDragEl
19313      * @return {HTMLElement} the html element
19314      */
19315     getDragEl: function() {
19316         return Roo.getDom(this.dragElId);
19317     },
19318
19319     /**
19320      * Sets up the DragDrop object.  Must be called in the constructor of any
19321      * Roo.dd.DragDrop subclass
19322      * @method init
19323      * @param id the id of the linked element
19324      * @param {String} sGroup the group of related items
19325      * @param {object} config configuration attributes
19326      */
19327     init: function(id, sGroup, config) {
19328         this.initTarget(id, sGroup, config);
19329         if (!Roo.isTouch) {
19330             Event.on(this.id, "mousedown", this.handleMouseDown, this);
19331         }
19332         Event.on(this.id, "touchstart", this.handleMouseDown, this);
19333         // Event.on(this.id, "selectstart", Event.preventDefault);
19334     },
19335
19336     /**
19337      * Initializes Targeting functionality only... the object does not
19338      * get a mousedown handler.
19339      * @method initTarget
19340      * @param id the id of the linked element
19341      * @param {String} sGroup the group of related items
19342      * @param {object} config configuration attributes
19343      */
19344     initTarget: function(id, sGroup, config) {
19345
19346         // configuration attributes
19347         this.config = config || {};
19348
19349         // create a local reference to the drag and drop manager
19350         this.DDM = Roo.dd.DDM;
19351         // initialize the groups array
19352         this.groups = {};
19353
19354         // assume that we have an element reference instead of an id if the
19355         // parameter is not a string
19356         if (typeof id !== "string") {
19357             id = Roo.id(id);
19358         }
19359
19360         // set the id
19361         this.id = id;
19362
19363         // add to an interaction group
19364         this.addToGroup((sGroup) ? sGroup : "default");
19365
19366         // We don't want to register this as the handle with the manager
19367         // so we just set the id rather than calling the setter.
19368         this.handleElId = id;
19369
19370         // the linked element is the element that gets dragged by default
19371         this.setDragElId(id);
19372
19373         // by default, clicked anchors will not start drag operations.
19374         this.invalidHandleTypes = { A: "A" };
19375         this.invalidHandleIds = {};
19376         this.invalidHandleClasses = [];
19377
19378         this.applyConfig();
19379
19380         this.handleOnAvailable();
19381     },
19382
19383     /**
19384      * Applies the configuration parameters that were passed into the constructor.
19385      * This is supposed to happen at each level through the inheritance chain.  So
19386      * a DDProxy implentation will execute apply config on DDProxy, DD, and
19387      * DragDrop in order to get all of the parameters that are available in
19388      * each object.
19389      * @method applyConfig
19390      */
19391     applyConfig: function() {
19392
19393         // configurable properties:
19394         //    padding, isTarget, maintainOffset, primaryButtonOnly
19395         this.padding           = this.config.padding || [0, 0, 0, 0];
19396         this.isTarget          = (this.config.isTarget !== false);
19397         this.maintainOffset    = (this.config.maintainOffset);
19398         this.primaryButtonOnly = (this.config.primaryButtonOnly !== false);
19399
19400     },
19401
19402     /**
19403      * Executed when the linked element is available
19404      * @method handleOnAvailable
19405      * @private
19406      */
19407     handleOnAvailable: function() {
19408         this.available = true;
19409         this.resetConstraints();
19410         this.onAvailable();
19411     },
19412
19413      /**
19414      * Configures the padding for the target zone in px.  Effectively expands
19415      * (or reduces) the virtual object size for targeting calculations.
19416      * Supports css-style shorthand; if only one parameter is passed, all sides
19417      * will have that padding, and if only two are passed, the top and bottom
19418      * will have the first param, the left and right the second.
19419      * @method setPadding
19420      * @param {int} iTop    Top pad
19421      * @param {int} iRight  Right pad
19422      * @param {int} iBot    Bot pad
19423      * @param {int} iLeft   Left pad
19424      */
19425     setPadding: function(iTop, iRight, iBot, iLeft) {
19426         // this.padding = [iLeft, iRight, iTop, iBot];
19427         if (!iRight && 0 !== iRight) {
19428             this.padding = [iTop, iTop, iTop, iTop];
19429         } else if (!iBot && 0 !== iBot) {
19430             this.padding = [iTop, iRight, iTop, iRight];
19431         } else {
19432             this.padding = [iTop, iRight, iBot, iLeft];
19433         }
19434     },
19435
19436     /**
19437      * Stores the initial placement of the linked element.
19438      * @method setInitialPosition
19439      * @param {int} diffX   the X offset, default 0
19440      * @param {int} diffY   the Y offset, default 0
19441      */
19442     setInitPosition: function(diffX, diffY) {
19443         var el = this.getEl();
19444
19445         if (!this.DDM.verifyEl(el)) {
19446             return;
19447         }
19448
19449         var dx = diffX || 0;
19450         var dy = diffY || 0;
19451
19452         var p = Dom.getXY( el );
19453
19454         this.initPageX = p[0] - dx;
19455         this.initPageY = p[1] - dy;
19456
19457         this.lastPageX = p[0];
19458         this.lastPageY = p[1];
19459
19460
19461         this.setStartPosition(p);
19462     },
19463
19464     /**
19465      * Sets the start position of the element.  This is set when the obj
19466      * is initialized, the reset when a drag is started.
19467      * @method setStartPosition
19468      * @param pos current position (from previous lookup)
19469      * @private
19470      */
19471     setStartPosition: function(pos) {
19472         var p = pos || Dom.getXY( this.getEl() );
19473         this.deltaSetXY = null;
19474
19475         this.startPageX = p[0];
19476         this.startPageY = p[1];
19477     },
19478
19479     /**
19480      * Add this instance to a group of related drag/drop objects.  All
19481      * instances belong to at least one group, and can belong to as many
19482      * groups as needed.
19483      * @method addToGroup
19484      * @param sGroup {string} the name of the group
19485      */
19486     addToGroup: function(sGroup) {
19487         this.groups[sGroup] = true;
19488         this.DDM.regDragDrop(this, sGroup);
19489     },
19490
19491     /**
19492      * Remove's this instance from the supplied interaction group
19493      * @method removeFromGroup
19494      * @param {string}  sGroup  The group to drop
19495      */
19496     removeFromGroup: function(sGroup) {
19497         if (this.groups[sGroup]) {
19498             delete this.groups[sGroup];
19499         }
19500
19501         this.DDM.removeDDFromGroup(this, sGroup);
19502     },
19503
19504     /**
19505      * Allows you to specify that an element other than the linked element
19506      * will be moved with the cursor during a drag
19507      * @method setDragElId
19508      * @param id {string} the id of the element that will be used to initiate the drag
19509      */
19510     setDragElId: function(id) {
19511         this.dragElId = id;
19512     },
19513
19514     /**
19515      * Allows you to specify a child of the linked element that should be
19516      * used to initiate the drag operation.  An example of this would be if
19517      * you have a content div with text and links.  Clicking anywhere in the
19518      * content area would normally start the drag operation.  Use this method
19519      * to specify that an element inside of the content div is the element
19520      * that starts the drag operation.
19521      * @method setHandleElId
19522      * @param id {string} the id of the element that will be used to
19523      * initiate the drag.
19524      */
19525     setHandleElId: function(id) {
19526         if (typeof id !== "string") {
19527             id = Roo.id(id);
19528         }
19529         this.handleElId = id;
19530         this.DDM.regHandle(this.id, id);
19531     },
19532
19533     /**
19534      * Allows you to set an element outside of the linked element as a drag
19535      * handle
19536      * @method setOuterHandleElId
19537      * @param id the id of the element that will be used to initiate the drag
19538      */
19539     setOuterHandleElId: function(id) {
19540         if (typeof id !== "string") {
19541             id = Roo.id(id);
19542         }
19543         Event.on(id, "mousedown",
19544                 this.handleMouseDown, this);
19545         this.setHandleElId(id);
19546
19547         this.hasOuterHandles = true;
19548     },
19549
19550     /**
19551      * Remove all drag and drop hooks for this element
19552      * @method unreg
19553      */
19554     unreg: function() {
19555         Event.un(this.id, "mousedown",
19556                 this.handleMouseDown);
19557         Event.un(this.id, "touchstart",
19558                 this.handleMouseDown);
19559         this._domRef = null;
19560         this.DDM._remove(this);
19561     },
19562
19563     destroy : function(){
19564         this.unreg();
19565     },
19566
19567     /**
19568      * Returns true if this instance is locked, or the drag drop mgr is locked
19569      * (meaning that all drag/drop is disabled on the page.)
19570      * @method isLocked
19571      * @return {boolean} true if this obj or all drag/drop is locked, else
19572      * false
19573      */
19574     isLocked: function() {
19575         return (this.DDM.isLocked() || this.locked);
19576     },
19577
19578     /**
19579      * Fired when this object is clicked
19580      * @method handleMouseDown
19581      * @param {Event} e
19582      * @param {Roo.dd.DragDrop} oDD the clicked dd object (this dd obj)
19583      * @private
19584      */
19585     handleMouseDown: function(e, oDD){
19586      
19587         if (!Roo.isTouch && this.primaryButtonOnly && e.button != 0) {
19588             //Roo.log('not touch/ button !=0');
19589             return;
19590         }
19591         if (e.browserEvent.touches && e.browserEvent.touches.length != 1) {
19592             return; // double touch..
19593         }
19594         
19595
19596         if (this.isLocked()) {
19597             //Roo.log('locked');
19598             return;
19599         }
19600
19601         this.DDM.refreshCache(this.groups);
19602 //        Roo.log([Roo.lib.Event.getPageX(e), Roo.lib.Event.getPageY(e)]);
19603         var pt = new Roo.lib.Point(Roo.lib.Event.getPageX(e), Roo.lib.Event.getPageY(e));
19604         if (!this.hasOuterHandles && !this.DDM.isOverTarget(pt, this) )  {
19605             //Roo.log('no outer handes or not over target');
19606                 // do nothing.
19607         } else {
19608 //            Roo.log('check validator');
19609             if (this.clickValidator(e)) {
19610 //                Roo.log('validate success');
19611                 // set the initial element position
19612                 this.setStartPosition();
19613
19614
19615                 this.b4MouseDown(e);
19616                 this.onMouseDown(e);
19617
19618                 this.DDM.handleMouseDown(e, this);
19619
19620                 this.DDM.stopEvent(e);
19621             } else {
19622
19623
19624             }
19625         }
19626     },
19627
19628     clickValidator: function(e) {
19629         var target = e.getTarget();
19630         return ( this.isValidHandleChild(target) &&
19631                     (this.id == this.handleElId ||
19632                         this.DDM.handleWasClicked(target, this.id)) );
19633     },
19634
19635     /**
19636      * Allows you to specify a tag name that should not start a drag operation
19637      * when clicked.  This is designed to facilitate embedding links within a
19638      * drag handle that do something other than start the drag.
19639      * @method addInvalidHandleType
19640      * @param {string} tagName the type of element to exclude
19641      */
19642     addInvalidHandleType: function(tagName) {
19643         var type = tagName.toUpperCase();
19644         this.invalidHandleTypes[type] = type;
19645     },
19646
19647     /**
19648      * Lets you to specify an element id for a child of a drag handle
19649      * that should not initiate a drag
19650      * @method addInvalidHandleId
19651      * @param {string} id the element id of the element you wish to ignore
19652      */
19653     addInvalidHandleId: function(id) {
19654         if (typeof id !== "string") {
19655             id = Roo.id(id);
19656         }
19657         this.invalidHandleIds[id] = id;
19658     },
19659
19660     /**
19661      * Lets you specify a css class of elements that will not initiate a drag
19662      * @method addInvalidHandleClass
19663      * @param {string} cssClass the class of the elements you wish to ignore
19664      */
19665     addInvalidHandleClass: function(cssClass) {
19666         this.invalidHandleClasses.push(cssClass);
19667     },
19668
19669     /**
19670      * Unsets an excluded tag name set by addInvalidHandleType
19671      * @method removeInvalidHandleType
19672      * @param {string} tagName the type of element to unexclude
19673      */
19674     removeInvalidHandleType: function(tagName) {
19675         var type = tagName.toUpperCase();
19676         // this.invalidHandleTypes[type] = null;
19677         delete this.invalidHandleTypes[type];
19678     },
19679
19680     /**
19681      * Unsets an invalid handle id
19682      * @method removeInvalidHandleId
19683      * @param {string} id the id of the element to re-enable
19684      */
19685     removeInvalidHandleId: function(id) {
19686         if (typeof id !== "string") {
19687             id = Roo.id(id);
19688         }
19689         delete this.invalidHandleIds[id];
19690     },
19691
19692     /**
19693      * Unsets an invalid css class
19694      * @method removeInvalidHandleClass
19695      * @param {string} cssClass the class of the element(s) you wish to
19696      * re-enable
19697      */
19698     removeInvalidHandleClass: function(cssClass) {
19699         for (var i=0, len=this.invalidHandleClasses.length; i<len; ++i) {
19700             if (this.invalidHandleClasses[i] == cssClass) {
19701                 delete this.invalidHandleClasses[i];
19702             }
19703         }
19704     },
19705
19706     /**
19707      * Checks the tag exclusion list to see if this click should be ignored
19708      * @method isValidHandleChild
19709      * @param {HTMLElement} node the HTMLElement to evaluate
19710      * @return {boolean} true if this is a valid tag type, false if not
19711      */
19712     isValidHandleChild: function(node) {
19713
19714         var valid = true;
19715         // var n = (node.nodeName == "#text") ? node.parentNode : node;
19716         var nodeName;
19717         try {
19718             nodeName = node.nodeName.toUpperCase();
19719         } catch(e) {
19720             nodeName = node.nodeName;
19721         }
19722         valid = valid && !this.invalidHandleTypes[nodeName];
19723         valid = valid && !this.invalidHandleIds[node.id];
19724
19725         for (var i=0, len=this.invalidHandleClasses.length; valid && i<len; ++i) {
19726             valid = !Dom.hasClass(node, this.invalidHandleClasses[i]);
19727         }
19728
19729
19730         return valid;
19731
19732     },
19733
19734     /**
19735      * Create the array of horizontal tick marks if an interval was specified
19736      * in setXConstraint().
19737      * @method setXTicks
19738      * @private
19739      */
19740     setXTicks: function(iStartX, iTickSize) {
19741         this.xTicks = [];
19742         this.xTickSize = iTickSize;
19743
19744         var tickMap = {};
19745
19746         for (var i = this.initPageX; i >= this.minX; i = i - iTickSize) {
19747             if (!tickMap[i]) {
19748                 this.xTicks[this.xTicks.length] = i;
19749                 tickMap[i] = true;
19750             }
19751         }
19752
19753         for (i = this.initPageX; i <= this.maxX; i = i + iTickSize) {
19754             if (!tickMap[i]) {
19755                 this.xTicks[this.xTicks.length] = i;
19756                 tickMap[i] = true;
19757             }
19758         }
19759
19760         this.xTicks.sort(this.DDM.numericSort) ;
19761     },
19762
19763     /**
19764      * Create the array of vertical tick marks if an interval was specified in
19765      * setYConstraint().
19766      * @method setYTicks
19767      * @private
19768      */
19769     setYTicks: function(iStartY, iTickSize) {
19770         this.yTicks = [];
19771         this.yTickSize = iTickSize;
19772
19773         var tickMap = {};
19774
19775         for (var i = this.initPageY; i >= this.minY; i = i - iTickSize) {
19776             if (!tickMap[i]) {
19777                 this.yTicks[this.yTicks.length] = i;
19778                 tickMap[i] = true;
19779             }
19780         }
19781
19782         for (i = this.initPageY; i <= this.maxY; i = i + iTickSize) {
19783             if (!tickMap[i]) {
19784                 this.yTicks[this.yTicks.length] = i;
19785                 tickMap[i] = true;
19786             }
19787         }
19788
19789         this.yTicks.sort(this.DDM.numericSort) ;
19790     },
19791
19792     /**
19793      * By default, the element can be dragged any place on the screen.  Use
19794      * this method to limit the horizontal travel of the element.  Pass in
19795      * 0,0 for the parameters if you want to lock the drag to the y axis.
19796      * @method setXConstraint
19797      * @param {int} iLeft the number of pixels the element can move to the left
19798      * @param {int} iRight the number of pixels the element can move to the
19799      * right
19800      * @param {int} iTickSize optional parameter for specifying that the
19801      * element
19802      * should move iTickSize pixels at a time.
19803      */
19804     setXConstraint: function(iLeft, iRight, iTickSize) {
19805         this.leftConstraint = iLeft;
19806         this.rightConstraint = iRight;
19807
19808         this.minX = this.initPageX - iLeft;
19809         this.maxX = this.initPageX + iRight;
19810         if (iTickSize) { this.setXTicks(this.initPageX, iTickSize); }
19811
19812         this.constrainX = true;
19813     },
19814
19815     /**
19816      * Clears any constraints applied to this instance.  Also clears ticks
19817      * since they can't exist independent of a constraint at this time.
19818      * @method clearConstraints
19819      */
19820     clearConstraints: function() {
19821         this.constrainX = false;
19822         this.constrainY = false;
19823         this.clearTicks();
19824     },
19825
19826     /**
19827      * Clears any tick interval defined for this instance
19828      * @method clearTicks
19829      */
19830     clearTicks: function() {
19831         this.xTicks = null;
19832         this.yTicks = null;
19833         this.xTickSize = 0;
19834         this.yTickSize = 0;
19835     },
19836
19837     /**
19838      * By default, the element can be dragged any place on the screen.  Set
19839      * this to limit the vertical travel of the element.  Pass in 0,0 for the
19840      * parameters if you want to lock the drag to the x axis.
19841      * @method setYConstraint
19842      * @param {int} iUp the number of pixels the element can move up
19843      * @param {int} iDown the number of pixels the element can move down
19844      * @param {int} iTickSize optional parameter for specifying that the
19845      * element should move iTickSize pixels at a time.
19846      */
19847     setYConstraint: function(iUp, iDown, iTickSize) {
19848         this.topConstraint = iUp;
19849         this.bottomConstraint = iDown;
19850
19851         this.minY = this.initPageY - iUp;
19852         this.maxY = this.initPageY + iDown;
19853         if (iTickSize) { this.setYTicks(this.initPageY, iTickSize); }
19854
19855         this.constrainY = true;
19856
19857     },
19858
19859     /**
19860      * resetConstraints must be called if you manually reposition a dd element.
19861      * @method resetConstraints
19862      * @param {boolean} maintainOffset
19863      */
19864     resetConstraints: function() {
19865
19866
19867         // Maintain offsets if necessary
19868         if (this.initPageX || this.initPageX === 0) {
19869             // figure out how much this thing has moved
19870             var dx = (this.maintainOffset) ? this.lastPageX - this.initPageX : 0;
19871             var dy = (this.maintainOffset) ? this.lastPageY - this.initPageY : 0;
19872
19873             this.setInitPosition(dx, dy);
19874
19875         // This is the first time we have detected the element's position
19876         } else {
19877             this.setInitPosition();
19878         }
19879
19880         if (this.constrainX) {
19881             this.setXConstraint( this.leftConstraint,
19882                                  this.rightConstraint,
19883                                  this.xTickSize        );
19884         }
19885
19886         if (this.constrainY) {
19887             this.setYConstraint( this.topConstraint,
19888                                  this.bottomConstraint,
19889                                  this.yTickSize         );
19890         }
19891     },
19892
19893     /**
19894      * Normally the drag element is moved pixel by pixel, but we can specify
19895      * that it move a number of pixels at a time.  This method resolves the
19896      * location when we have it set up like this.
19897      * @method getTick
19898      * @param {int} val where we want to place the object
19899      * @param {int[]} tickArray sorted array of valid points
19900      * @return {int} the closest tick
19901      * @private
19902      */
19903     getTick: function(val, tickArray) {
19904
19905         if (!tickArray) {
19906             // If tick interval is not defined, it is effectively 1 pixel,
19907             // so we return the value passed to us.
19908             return val;
19909         } else if (tickArray[0] >= val) {
19910             // The value is lower than the first tick, so we return the first
19911             // tick.
19912             return tickArray[0];
19913         } else {
19914             for (var i=0, len=tickArray.length; i<len; ++i) {
19915                 var next = i + 1;
19916                 if (tickArray[next] && tickArray[next] >= val) {
19917                     var diff1 = val - tickArray[i];
19918                     var diff2 = tickArray[next] - val;
19919                     return (diff2 > diff1) ? tickArray[i] : tickArray[next];
19920                 }
19921             }
19922
19923             // The value is larger than the last tick, so we return the last
19924             // tick.
19925             return tickArray[tickArray.length - 1];
19926         }
19927     },
19928
19929     /**
19930      * toString method
19931      * @method toString
19932      * @return {string} string representation of the dd obj
19933      */
19934     toString: function() {
19935         return ("DragDrop " + this.id);
19936     }
19937
19938 });
19939
19940 })();
19941 /*
19942  * Based on:
19943  * Ext JS Library 1.1.1
19944  * Copyright(c) 2006-2007, Ext JS, LLC.
19945  *
19946  * Originally Released Under LGPL - original licence link has changed is not relivant.
19947  *
19948  * Fork - LGPL
19949  * <script type="text/javascript">
19950  */
19951
19952
19953 /**
19954  * The drag and drop utility provides a framework for building drag and drop
19955  * applications.  In addition to enabling drag and drop for specific elements,
19956  * the drag and drop elements are tracked by the manager class, and the
19957  * interactions between the various elements are tracked during the drag and
19958  * the implementing code is notified about these important moments.
19959  */
19960
19961 // Only load the library once.  Rewriting the manager class would orphan
19962 // existing drag and drop instances.
19963 if (!Roo.dd.DragDropMgr) {
19964
19965 /**
19966  * @class Roo.dd.DragDropMgr
19967  * DragDropMgr is a singleton that tracks the element interaction for
19968  * all DragDrop items in the window.  Generally, you will not call
19969  * this class directly, but it does have helper methods that could
19970  * be useful in your DragDrop implementations.
19971  * @singleton
19972  */
19973 Roo.dd.DragDropMgr = function() {
19974
19975     var Event = Roo.EventManager;
19976
19977     return {
19978
19979         /**
19980          * Two dimensional Array of registered DragDrop objects.  The first
19981          * dimension is the DragDrop item group, the second the DragDrop
19982          * object.
19983          * @property ids
19984          * @type {string: string}
19985          * @private
19986          * @static
19987          */
19988         ids: {},
19989
19990         /**
19991          * Array of element ids defined as drag handles.  Used to determine
19992          * if the element that generated the mousedown event is actually the
19993          * handle and not the html element itself.
19994          * @property handleIds
19995          * @type {string: string}
19996          * @private
19997          * @static
19998          */
19999         handleIds: {},
20000
20001         /**
20002          * the DragDrop object that is currently being dragged
20003          * @property dragCurrent
20004          * @type DragDrop
20005          * @private
20006          * @static
20007          **/
20008         dragCurrent: null,
20009
20010         /**
20011          * the DragDrop object(s) that are being hovered over
20012          * @property dragOvers
20013          * @type Array
20014          * @private
20015          * @static
20016          */
20017         dragOvers: {},
20018
20019         /**
20020          * the X distance between the cursor and the object being dragged
20021          * @property deltaX
20022          * @type int
20023          * @private
20024          * @static
20025          */
20026         deltaX: 0,
20027
20028         /**
20029          * the Y distance between the cursor and the object being dragged
20030          * @property deltaY
20031          * @type int
20032          * @private
20033          * @static
20034          */
20035         deltaY: 0,
20036
20037         /**
20038          * Flag to determine if we should prevent the default behavior of the
20039          * events we define. By default this is true, but this can be set to
20040          * false if you need the default behavior (not recommended)
20041          * @property preventDefault
20042          * @type boolean
20043          * @static
20044          */
20045         preventDefault: true,
20046
20047         /**
20048          * Flag to determine if we should stop the propagation of the events
20049          * we generate. This is true by default but you may want to set it to
20050          * false if the html element contains other features that require the
20051          * mouse click.
20052          * @property stopPropagation
20053          * @type boolean
20054          * @static
20055          */
20056         stopPropagation: true,
20057
20058         /**
20059          * Internal flag that is set to true when drag and drop has been
20060          * intialized
20061          * @property initialized
20062          * @private
20063          * @static
20064          */
20065         initalized: false,
20066
20067         /**
20068          * All drag and drop can be disabled.
20069          * @property locked
20070          * @private
20071          * @static
20072          */
20073         locked: false,
20074
20075         /**
20076          * Called the first time an element is registered.
20077          * @method init
20078          * @private
20079          * @static
20080          */
20081         init: function() {
20082             this.initialized = true;
20083         },
20084
20085         /**
20086          * In point mode, drag and drop interaction is defined by the
20087          * location of the cursor during the drag/drop
20088          * @property POINT
20089          * @type int
20090          * @static
20091          */
20092         POINT: 0,
20093
20094         /**
20095          * In intersect mode, drag and drop interactio nis defined by the
20096          * overlap of two or more drag and drop objects.
20097          * @property INTERSECT
20098          * @type int
20099          * @static
20100          */
20101         INTERSECT: 1,
20102
20103         /**
20104          * The current drag and drop mode.  Default: POINT
20105          * @property mode
20106          * @type int
20107          * @static
20108          */
20109         mode: 0,
20110
20111         /**
20112          * Runs method on all drag and drop objects
20113          * @method _execOnAll
20114          * @private
20115          * @static
20116          */
20117         _execOnAll: function(sMethod, args) {
20118             for (var i in this.ids) {
20119                 for (var j in this.ids[i]) {
20120                     var oDD = this.ids[i][j];
20121                     if (! this.isTypeOfDD(oDD)) {
20122                         continue;
20123                     }
20124                     oDD[sMethod].apply(oDD, args);
20125                 }
20126             }
20127         },
20128
20129         /**
20130          * Drag and drop initialization.  Sets up the global event handlers
20131          * @method _onLoad
20132          * @private
20133          * @static
20134          */
20135         _onLoad: function() {
20136
20137             this.init();
20138
20139             if (!Roo.isTouch) {
20140                 Event.on(document, "mouseup",   this.handleMouseUp, this, true);
20141                 Event.on(document, "mousemove", this.handleMouseMove, this, true);
20142             }
20143             Event.on(document, "touchend",   this.handleMouseUp, this, true);
20144             Event.on(document, "touchmove", this.handleMouseMove, this, true);
20145             
20146             Event.on(window,   "unload",    this._onUnload, this, true);
20147             Event.on(window,   "resize",    this._onResize, this, true);
20148             // Event.on(window,   "mouseout",    this._test);
20149
20150         },
20151
20152         /**
20153          * Reset constraints on all drag and drop objs
20154          * @method _onResize
20155          * @private
20156          * @static
20157          */
20158         _onResize: function(e) {
20159             this._execOnAll("resetConstraints", []);
20160         },
20161
20162         /**
20163          * Lock all drag and drop functionality
20164          * @method lock
20165          * @static
20166          */
20167         lock: function() { this.locked = true; },
20168
20169         /**
20170          * Unlock all drag and drop functionality
20171          * @method unlock
20172          * @static
20173          */
20174         unlock: function() { this.locked = false; },
20175
20176         /**
20177          * Is drag and drop locked?
20178          * @method isLocked
20179          * @return {boolean} True if drag and drop is locked, false otherwise.
20180          * @static
20181          */
20182         isLocked: function() { return this.locked; },
20183
20184         /**
20185          * Location cache that is set for all drag drop objects when a drag is
20186          * initiated, cleared when the drag is finished.
20187          * @property locationCache
20188          * @private
20189          * @static
20190          */
20191         locationCache: {},
20192
20193         /**
20194          * Set useCache to false if you want to force object the lookup of each
20195          * drag and drop linked element constantly during a drag.
20196          * @property useCache
20197          * @type boolean
20198          * @static
20199          */
20200         useCache: true,
20201
20202         /**
20203          * The number of pixels that the mouse needs to move after the
20204          * mousedown before the drag is initiated.  Default=3;
20205          * @property clickPixelThresh
20206          * @type int
20207          * @static
20208          */
20209         clickPixelThresh: 3,
20210
20211         /**
20212          * The number of milliseconds after the mousedown event to initiate the
20213          * drag if we don't get a mouseup event. Default=1000
20214          * @property clickTimeThresh
20215          * @type int
20216          * @static
20217          */
20218         clickTimeThresh: 350,
20219
20220         /**
20221          * Flag that indicates that either the drag pixel threshold or the
20222          * mousdown time threshold has been met
20223          * @property dragThreshMet
20224          * @type boolean
20225          * @private
20226          * @static
20227          */
20228         dragThreshMet: false,
20229
20230         /**
20231          * Timeout used for the click time threshold
20232          * @property clickTimeout
20233          * @type Object
20234          * @private
20235          * @static
20236          */
20237         clickTimeout: null,
20238
20239         /**
20240          * The X position of the mousedown event stored for later use when a
20241          * drag threshold is met.
20242          * @property startX
20243          * @type int
20244          * @private
20245          * @static
20246          */
20247         startX: 0,
20248
20249         /**
20250          * The Y position of the mousedown event stored for later use when a
20251          * drag threshold is met.
20252          * @property startY
20253          * @type int
20254          * @private
20255          * @static
20256          */
20257         startY: 0,
20258
20259         /**
20260          * Each DragDrop instance must be registered with the DragDropMgr.
20261          * This is executed in DragDrop.init()
20262          * @method regDragDrop
20263          * @param {DragDrop} oDD the DragDrop object to register
20264          * @param {String} sGroup the name of the group this element belongs to
20265          * @static
20266          */
20267         regDragDrop: function(oDD, sGroup) {
20268             if (!this.initialized) { this.init(); }
20269
20270             if (!this.ids[sGroup]) {
20271                 this.ids[sGroup] = {};
20272             }
20273             this.ids[sGroup][oDD.id] = oDD;
20274         },
20275
20276         /**
20277          * Removes the supplied dd instance from the supplied group. Executed
20278          * by DragDrop.removeFromGroup, so don't call this function directly.
20279          * @method removeDDFromGroup
20280          * @private
20281          * @static
20282          */
20283         removeDDFromGroup: function(oDD, sGroup) {
20284             if (!this.ids[sGroup]) {
20285                 this.ids[sGroup] = {};
20286             }
20287
20288             var obj = this.ids[sGroup];
20289             if (obj && obj[oDD.id]) {
20290                 delete obj[oDD.id];
20291             }
20292         },
20293
20294         /**
20295          * Unregisters a drag and drop item.  This is executed in
20296          * DragDrop.unreg, use that method instead of calling this directly.
20297          * @method _remove
20298          * @private
20299          * @static
20300          */
20301         _remove: function(oDD) {
20302             for (var g in oDD.groups) {
20303                 if (g && this.ids[g][oDD.id]) {
20304                     delete this.ids[g][oDD.id];
20305                 }
20306             }
20307             delete this.handleIds[oDD.id];
20308         },
20309
20310         /**
20311          * Each DragDrop handle element must be registered.  This is done
20312          * automatically when executing DragDrop.setHandleElId()
20313          * @method regHandle
20314          * @param {String} sDDId the DragDrop id this element is a handle for
20315          * @param {String} sHandleId the id of the element that is the drag
20316          * handle
20317          * @static
20318          */
20319         regHandle: function(sDDId, sHandleId) {
20320             if (!this.handleIds[sDDId]) {
20321                 this.handleIds[sDDId] = {};
20322             }
20323             this.handleIds[sDDId][sHandleId] = sHandleId;
20324         },
20325
20326         /**
20327          * Utility function to determine if a given element has been
20328          * registered as a drag drop item.
20329          * @method isDragDrop
20330          * @param {String} id the element id to check
20331          * @return {boolean} true if this element is a DragDrop item,
20332          * false otherwise
20333          * @static
20334          */
20335         isDragDrop: function(id) {
20336             return ( this.getDDById(id) ) ? true : false;
20337         },
20338
20339         /**
20340          * Returns the drag and drop instances that are in all groups the
20341          * passed in instance belongs to.
20342          * @method getRelated
20343          * @param {DragDrop} p_oDD the obj to get related data for
20344          * @param {boolean} bTargetsOnly if true, only return targetable objs
20345          * @return {DragDrop[]} the related instances
20346          * @static
20347          */
20348         getRelated: function(p_oDD, bTargetsOnly) {
20349             var oDDs = [];
20350             for (var i in p_oDD.groups) {
20351                 for (j in this.ids[i]) {
20352                     var dd = this.ids[i][j];
20353                     if (! this.isTypeOfDD(dd)) {
20354                         continue;
20355                     }
20356                     if (!bTargetsOnly || dd.isTarget) {
20357                         oDDs[oDDs.length] = dd;
20358                     }
20359                 }
20360             }
20361
20362             return oDDs;
20363         },
20364
20365         /**
20366          * Returns true if the specified dd target is a legal target for
20367          * the specifice drag obj
20368          * @method isLegalTarget
20369          * @param {DragDrop} the drag obj
20370          * @param {DragDrop} the target
20371          * @return {boolean} true if the target is a legal target for the
20372          * dd obj
20373          * @static
20374          */
20375         isLegalTarget: function (oDD, oTargetDD) {
20376             var targets = this.getRelated(oDD, true);
20377             for (var i=0, len=targets.length;i<len;++i) {
20378                 if (targets[i].id == oTargetDD.id) {
20379                     return true;
20380                 }
20381             }
20382
20383             return false;
20384         },
20385
20386         /**
20387          * My goal is to be able to transparently determine if an object is
20388          * typeof DragDrop, and the exact subclass of DragDrop.  typeof
20389          * returns "object", oDD.constructor.toString() always returns
20390          * "DragDrop" and not the name of the subclass.  So for now it just
20391          * evaluates a well-known variable in DragDrop.
20392          * @method isTypeOfDD
20393          * @param {Object} the object to evaluate
20394          * @return {boolean} true if typeof oDD = DragDrop
20395          * @static
20396          */
20397         isTypeOfDD: function (oDD) {
20398             return (oDD && oDD.__ygDragDrop);
20399         },
20400
20401         /**
20402          * Utility function to determine if a given element has been
20403          * registered as a drag drop handle for the given Drag Drop object.
20404          * @method isHandle
20405          * @param {String} id the element id to check
20406          * @return {boolean} true if this element is a DragDrop handle, false
20407          * otherwise
20408          * @static
20409          */
20410         isHandle: function(sDDId, sHandleId) {
20411             return ( this.handleIds[sDDId] &&
20412                             this.handleIds[sDDId][sHandleId] );
20413         },
20414
20415         /**
20416          * Returns the DragDrop instance for a given id
20417          * @method getDDById
20418          * @param {String} id the id of the DragDrop object
20419          * @return {DragDrop} the drag drop object, null if it is not found
20420          * @static
20421          */
20422         getDDById: function(id) {
20423             for (var i in this.ids) {
20424                 if (this.ids[i][id]) {
20425                     return this.ids[i][id];
20426                 }
20427             }
20428             return null;
20429         },
20430
20431         /**
20432          * Fired after a registered DragDrop object gets the mousedown event.
20433          * Sets up the events required to track the object being dragged
20434          * @method handleMouseDown
20435          * @param {Event} e the event
20436          * @param oDD the DragDrop object being dragged
20437          * @private
20438          * @static
20439          */
20440         handleMouseDown: function(e, oDD) {
20441             if(Roo.QuickTips){
20442                 Roo.QuickTips.disable();
20443             }
20444             this.currentTarget = e.getTarget();
20445
20446             this.dragCurrent = oDD;
20447
20448             var el = oDD.getEl();
20449
20450             // track start position
20451             this.startX = e.getPageX();
20452             this.startY = e.getPageY();
20453
20454             this.deltaX = this.startX - el.offsetLeft;
20455             this.deltaY = this.startY - el.offsetTop;
20456
20457             this.dragThreshMet = false;
20458
20459             this.clickTimeout = setTimeout(
20460                     function() {
20461                         var DDM = Roo.dd.DDM;
20462                         DDM.startDrag(DDM.startX, DDM.startY);
20463                     },
20464                     this.clickTimeThresh );
20465         },
20466
20467         /**
20468          * Fired when either the drag pixel threshol or the mousedown hold
20469          * time threshold has been met.
20470          * @method startDrag
20471          * @param x {int} the X position of the original mousedown
20472          * @param y {int} the Y position of the original mousedown
20473          * @static
20474          */
20475         startDrag: function(x, y) {
20476             clearTimeout(this.clickTimeout);
20477             if (this.dragCurrent) {
20478                 this.dragCurrent.b4StartDrag(x, y);
20479                 this.dragCurrent.startDrag(x, y);
20480             }
20481             this.dragThreshMet = true;
20482         },
20483
20484         /**
20485          * Internal function to handle the mouseup event.  Will be invoked
20486          * from the context of the document.
20487          * @method handleMouseUp
20488          * @param {Event} e the event
20489          * @private
20490          * @static
20491          */
20492         handleMouseUp: function(e) {
20493
20494             if(Roo.QuickTips){
20495                 Roo.QuickTips.enable();
20496             }
20497             if (! this.dragCurrent) {
20498                 return;
20499             }
20500
20501             clearTimeout(this.clickTimeout);
20502
20503             if (this.dragThreshMet) {
20504                 this.fireEvents(e, true);
20505             } else {
20506             }
20507
20508             this.stopDrag(e);
20509
20510             this.stopEvent(e);
20511         },
20512
20513         /**
20514          * Utility to stop event propagation and event default, if these
20515          * features are turned on.
20516          * @method stopEvent
20517          * @param {Event} e the event as returned by this.getEvent()
20518          * @static
20519          */
20520         stopEvent: function(e){
20521             if(this.stopPropagation) {
20522                 e.stopPropagation();
20523             }
20524
20525             if (this.preventDefault) {
20526                 e.preventDefault();
20527             }
20528         },
20529
20530         /**
20531          * Internal function to clean up event handlers after the drag
20532          * operation is complete
20533          * @method stopDrag
20534          * @param {Event} e the event
20535          * @private
20536          * @static
20537          */
20538         stopDrag: function(e) {
20539             // Fire the drag end event for the item that was dragged
20540             if (this.dragCurrent) {
20541                 if (this.dragThreshMet) {
20542                     this.dragCurrent.b4EndDrag(e);
20543                     this.dragCurrent.endDrag(e);
20544                 }
20545
20546                 this.dragCurrent.onMouseUp(e);
20547             }
20548
20549             this.dragCurrent = null;
20550             this.dragOvers = {};
20551         },
20552
20553         /**
20554          * Internal function to handle the mousemove event.  Will be invoked
20555          * from the context of the html element.
20556          *
20557          * @TODO figure out what we can do about mouse events lost when the
20558          * user drags objects beyond the window boundary.  Currently we can
20559          * detect this in internet explorer by verifying that the mouse is
20560          * down during the mousemove event.  Firefox doesn't give us the
20561          * button state on the mousemove event.
20562          * @method handleMouseMove
20563          * @param {Event} e the event
20564          * @private
20565          * @static
20566          */
20567         handleMouseMove: function(e) {
20568             if (! this.dragCurrent) {
20569                 return true;
20570             }
20571
20572             // var button = e.which || e.button;
20573
20574             // check for IE mouseup outside of page boundary
20575             if (Roo.isIE && (e.button !== 0 && e.button !== 1 && e.button !== 2)) {
20576                 this.stopEvent(e);
20577                 return this.handleMouseUp(e);
20578             }
20579
20580             if (!this.dragThreshMet) {
20581                 var diffX = Math.abs(this.startX - e.getPageX());
20582                 var diffY = Math.abs(this.startY - e.getPageY());
20583                 if (diffX > this.clickPixelThresh ||
20584                             diffY > this.clickPixelThresh) {
20585                     this.startDrag(this.startX, this.startY);
20586                 }
20587             }
20588
20589             if (this.dragThreshMet) {
20590                 this.dragCurrent.b4Drag(e);
20591                 this.dragCurrent.onDrag(e);
20592                 if(!this.dragCurrent.moveOnly){
20593                     this.fireEvents(e, false);
20594                 }
20595             }
20596
20597             this.stopEvent(e);
20598
20599             return true;
20600         },
20601
20602         /**
20603          * Iterates over all of the DragDrop elements to find ones we are
20604          * hovering over or dropping on
20605          * @method fireEvents
20606          * @param {Event} e the event
20607          * @param {boolean} isDrop is this a drop op or a mouseover op?
20608          * @private
20609          * @static
20610          */
20611         fireEvents: function(e, isDrop) {
20612             var dc = this.dragCurrent;
20613
20614             // If the user did the mouse up outside of the window, we could
20615             // get here even though we have ended the drag.
20616             if (!dc || dc.isLocked()) {
20617                 return;
20618             }
20619
20620             var pt = e.getPoint();
20621
20622             // cache the previous dragOver array
20623             var oldOvers = [];
20624
20625             var outEvts   = [];
20626             var overEvts  = [];
20627             var dropEvts  = [];
20628             var enterEvts = [];
20629
20630             // Check to see if the object(s) we were hovering over is no longer
20631             // being hovered over so we can fire the onDragOut event
20632             for (var i in this.dragOvers) {
20633
20634                 var ddo = this.dragOvers[i];
20635
20636                 if (! this.isTypeOfDD(ddo)) {
20637                     continue;
20638                 }
20639
20640                 if (! this.isOverTarget(pt, ddo, this.mode)) {
20641                     outEvts.push( ddo );
20642                 }
20643
20644                 oldOvers[i] = true;
20645                 delete this.dragOvers[i];
20646             }
20647
20648             for (var sGroup in dc.groups) {
20649
20650                 if ("string" != typeof sGroup) {
20651                     continue;
20652                 }
20653
20654                 for (i in this.ids[sGroup]) {
20655                     var oDD = this.ids[sGroup][i];
20656                     if (! this.isTypeOfDD(oDD)) {
20657                         continue;
20658                     }
20659
20660                     if (oDD.isTarget && !oDD.isLocked() && oDD != dc) {
20661                         if (this.isOverTarget(pt, oDD, this.mode)) {
20662                             // look for drop interactions
20663                             if (isDrop) {
20664                                 dropEvts.push( oDD );
20665                             // look for drag enter and drag over interactions
20666                             } else {
20667
20668                                 // initial drag over: dragEnter fires
20669                                 if (!oldOvers[oDD.id]) {
20670                                     enterEvts.push( oDD );
20671                                 // subsequent drag overs: dragOver fires
20672                                 } else {
20673                                     overEvts.push( oDD );
20674                                 }
20675
20676                                 this.dragOvers[oDD.id] = oDD;
20677                             }
20678                         }
20679                     }
20680                 }
20681             }
20682
20683             if (this.mode) {
20684                 if (outEvts.length) {
20685                     dc.b4DragOut(e, outEvts);
20686                     dc.onDragOut(e, outEvts);
20687                 }
20688
20689                 if (enterEvts.length) {
20690                     dc.onDragEnter(e, enterEvts);
20691                 }
20692
20693                 if (overEvts.length) {
20694                     dc.b4DragOver(e, overEvts);
20695                     dc.onDragOver(e, overEvts);
20696                 }
20697
20698                 if (dropEvts.length) {
20699                     dc.b4DragDrop(e, dropEvts);
20700                     dc.onDragDrop(e, dropEvts);
20701                 }
20702
20703             } else {
20704                 // fire dragout events
20705                 var len = 0;
20706                 for (i=0, len=outEvts.length; i<len; ++i) {
20707                     dc.b4DragOut(e, outEvts[i].id);
20708                     dc.onDragOut(e, outEvts[i].id);
20709                 }
20710
20711                 // fire enter events
20712                 for (i=0,len=enterEvts.length; i<len; ++i) {
20713                     // dc.b4DragEnter(e, oDD.id);
20714                     dc.onDragEnter(e, enterEvts[i].id);
20715                 }
20716
20717                 // fire over events
20718                 for (i=0,len=overEvts.length; i<len; ++i) {
20719                     dc.b4DragOver(e, overEvts[i].id);
20720                     dc.onDragOver(e, overEvts[i].id);
20721                 }
20722
20723                 // fire drop events
20724                 for (i=0, len=dropEvts.length; i<len; ++i) {
20725                     dc.b4DragDrop(e, dropEvts[i].id);
20726                     dc.onDragDrop(e, dropEvts[i].id);
20727                 }
20728
20729             }
20730
20731             // notify about a drop that did not find a target
20732             if (isDrop && !dropEvts.length) {
20733                 dc.onInvalidDrop(e);
20734             }
20735
20736         },
20737
20738         /**
20739          * Helper function for getting the best match from the list of drag
20740          * and drop objects returned by the drag and drop events when we are
20741          * in INTERSECT mode.  It returns either the first object that the
20742          * cursor is over, or the object that has the greatest overlap with
20743          * the dragged element.
20744          * @method getBestMatch
20745          * @param  {DragDrop[]} dds The array of drag and drop objects
20746          * targeted
20747          * @return {DragDrop}       The best single match
20748          * @static
20749          */
20750         getBestMatch: function(dds) {
20751             var winner = null;
20752             // Return null if the input is not what we expect
20753             //if (!dds || !dds.length || dds.length == 0) {
20754                // winner = null;
20755             // If there is only one item, it wins
20756             //} else if (dds.length == 1) {
20757
20758             var len = dds.length;
20759
20760             if (len == 1) {
20761                 winner = dds[0];
20762             } else {
20763                 // Loop through the targeted items
20764                 for (var i=0; i<len; ++i) {
20765                     var dd = dds[i];
20766                     // If the cursor is over the object, it wins.  If the
20767                     // cursor is over multiple matches, the first one we come
20768                     // to wins.
20769                     if (dd.cursorIsOver) {
20770                         winner = dd;
20771                         break;
20772                     // Otherwise the object with the most overlap wins
20773                     } else {
20774                         if (!winner ||
20775                             winner.overlap.getArea() < dd.overlap.getArea()) {
20776                             winner = dd;
20777                         }
20778                     }
20779                 }
20780             }
20781
20782             return winner;
20783         },
20784
20785         /**
20786          * Refreshes the cache of the top-left and bottom-right points of the
20787          * drag and drop objects in the specified group(s).  This is in the
20788          * format that is stored in the drag and drop instance, so typical
20789          * usage is:
20790          * <code>
20791          * Roo.dd.DragDropMgr.refreshCache(ddinstance.groups);
20792          * </code>
20793          * Alternatively:
20794          * <code>
20795          * Roo.dd.DragDropMgr.refreshCache({group1:true, group2:true});
20796          * </code>
20797          * @TODO this really should be an indexed array.  Alternatively this
20798          * method could accept both.
20799          * @method refreshCache
20800          * @param {Object} groups an associative array of groups to refresh
20801          * @static
20802          */
20803         refreshCache: function(groups) {
20804             for (var sGroup in groups) {
20805                 if ("string" != typeof sGroup) {
20806                     continue;
20807                 }
20808                 for (var i in this.ids[sGroup]) {
20809                     var oDD = this.ids[sGroup][i];
20810
20811                     if (this.isTypeOfDD(oDD)) {
20812                     // if (this.isTypeOfDD(oDD) && oDD.isTarget) {
20813                         var loc = this.getLocation(oDD);
20814                         if (loc) {
20815                             this.locationCache[oDD.id] = loc;
20816                         } else {
20817                             delete this.locationCache[oDD.id];
20818                             // this will unregister the drag and drop object if
20819                             // the element is not in a usable state
20820                             // oDD.unreg();
20821                         }
20822                     }
20823                 }
20824             }
20825         },
20826
20827         /**
20828          * This checks to make sure an element exists and is in the DOM.  The
20829          * main purpose is to handle cases where innerHTML is used to remove
20830          * drag and drop objects from the DOM.  IE provides an 'unspecified
20831          * error' when trying to access the offsetParent of such an element
20832          * @method verifyEl
20833          * @param {HTMLElement} el the element to check
20834          * @return {boolean} true if the element looks usable
20835          * @static
20836          */
20837         verifyEl: function(el) {
20838             if (el) {
20839                 var parent;
20840                 if(Roo.isIE){
20841                     try{
20842                         parent = el.offsetParent;
20843                     }catch(e){}
20844                 }else{
20845                     parent = el.offsetParent;
20846                 }
20847                 if (parent) {
20848                     return true;
20849                 }
20850             }
20851
20852             return false;
20853         },
20854
20855         /**
20856          * Returns a Region object containing the drag and drop element's position
20857          * and size, including the padding configured for it
20858          * @method getLocation
20859          * @param {DragDrop} oDD the drag and drop object to get the
20860          *                       location for
20861          * @return {Roo.lib.Region} a Region object representing the total area
20862          *                             the element occupies, including any padding
20863          *                             the instance is configured for.
20864          * @static
20865          */
20866         getLocation: function(oDD) {
20867             if (! this.isTypeOfDD(oDD)) {
20868                 return null;
20869             }
20870
20871             var el = oDD.getEl(), pos, x1, x2, y1, y2, t, r, b, l;
20872
20873             try {
20874                 pos= Roo.lib.Dom.getXY(el);
20875             } catch (e) { }
20876
20877             if (!pos) {
20878                 return null;
20879             }
20880
20881             x1 = pos[0];
20882             x2 = x1 + el.offsetWidth;
20883             y1 = pos[1];
20884             y2 = y1 + el.offsetHeight;
20885
20886             t = y1 - oDD.padding[0];
20887             r = x2 + oDD.padding[1];
20888             b = y2 + oDD.padding[2];
20889             l = x1 - oDD.padding[3];
20890
20891             return new Roo.lib.Region( t, r, b, l );
20892         },
20893
20894         /**
20895          * Checks the cursor location to see if it over the target
20896          * @method isOverTarget
20897          * @param {Roo.lib.Point} pt The point to evaluate
20898          * @param {DragDrop} oTarget the DragDrop object we are inspecting
20899          * @return {boolean} true if the mouse is over the target
20900          * @private
20901          * @static
20902          */
20903         isOverTarget: function(pt, oTarget, intersect) {
20904             // use cache if available
20905             var loc = this.locationCache[oTarget.id];
20906             if (!loc || !this.useCache) {
20907                 loc = this.getLocation(oTarget);
20908                 this.locationCache[oTarget.id] = loc;
20909
20910             }
20911
20912             if (!loc) {
20913                 return false;
20914             }
20915
20916             oTarget.cursorIsOver = loc.contains( pt );
20917
20918             // DragDrop is using this as a sanity check for the initial mousedown
20919             // in this case we are done.  In POINT mode, if the drag obj has no
20920             // contraints, we are also done. Otherwise we need to evaluate the
20921             // location of the target as related to the actual location of the
20922             // dragged element.
20923             var dc = this.dragCurrent;
20924             if (!dc || !dc.getTargetCoord ||
20925                     (!intersect && !dc.constrainX && !dc.constrainY)) {
20926                 return oTarget.cursorIsOver;
20927             }
20928
20929             oTarget.overlap = null;
20930
20931             // Get the current location of the drag element, this is the
20932             // location of the mouse event less the delta that represents
20933             // where the original mousedown happened on the element.  We
20934             // need to consider constraints and ticks as well.
20935             var pos = dc.getTargetCoord(pt.x, pt.y);
20936
20937             var el = dc.getDragEl();
20938             var curRegion = new Roo.lib.Region( pos.y,
20939                                                    pos.x + el.offsetWidth,
20940                                                    pos.y + el.offsetHeight,
20941                                                    pos.x );
20942
20943             var overlap = curRegion.intersect(loc);
20944
20945             if (overlap) {
20946                 oTarget.overlap = overlap;
20947                 return (intersect) ? true : oTarget.cursorIsOver;
20948             } else {
20949                 return false;
20950             }
20951         },
20952
20953         /**
20954          * unload event handler
20955          * @method _onUnload
20956          * @private
20957          * @static
20958          */
20959         _onUnload: function(e, me) {
20960             Roo.dd.DragDropMgr.unregAll();
20961         },
20962
20963         /**
20964          * Cleans up the drag and drop events and objects.
20965          * @method unregAll
20966          * @private
20967          * @static
20968          */
20969         unregAll: function() {
20970
20971             if (this.dragCurrent) {
20972                 this.stopDrag();
20973                 this.dragCurrent = null;
20974             }
20975
20976             this._execOnAll("unreg", []);
20977
20978             for (i in this.elementCache) {
20979                 delete this.elementCache[i];
20980             }
20981
20982             this.elementCache = {};
20983             this.ids = {};
20984         },
20985
20986         /**
20987          * A cache of DOM elements
20988          * @property elementCache
20989          * @private
20990          * @static
20991          */
20992         elementCache: {},
20993
20994         /**
20995          * Get the wrapper for the DOM element specified
20996          * @method getElWrapper
20997          * @param {String} id the id of the element to get
20998          * @return {Roo.dd.DDM.ElementWrapper} the wrapped element
20999          * @private
21000          * @deprecated This wrapper isn't that useful
21001          * @static
21002          */
21003         getElWrapper: function(id) {
21004             var oWrapper = this.elementCache[id];
21005             if (!oWrapper || !oWrapper.el) {
21006                 oWrapper = this.elementCache[id] =
21007                     new this.ElementWrapper(Roo.getDom(id));
21008             }
21009             return oWrapper;
21010         },
21011
21012         /**
21013          * Returns the actual DOM element
21014          * @method getElement
21015          * @param {String} id the id of the elment to get
21016          * @return {Object} The element
21017          * @deprecated use Roo.getDom instead
21018          * @static
21019          */
21020         getElement: function(id) {
21021             return Roo.getDom(id);
21022         },
21023
21024         /**
21025          * Returns the style property for the DOM element (i.e.,
21026          * document.getElById(id).style)
21027          * @method getCss
21028          * @param {String} id the id of the elment to get
21029          * @return {Object} The style property of the element
21030          * @deprecated use Roo.getDom instead
21031          * @static
21032          */
21033         getCss: function(id) {
21034             var el = Roo.getDom(id);
21035             return (el) ? el.style : null;
21036         },
21037
21038         /**
21039          * Inner class for cached elements
21040          * @class DragDropMgr.ElementWrapper
21041          * @for DragDropMgr
21042          * @private
21043          * @deprecated
21044          */
21045         ElementWrapper: function(el) {
21046                 /**
21047                  * The element
21048                  * @property el
21049                  */
21050                 this.el = el || null;
21051                 /**
21052                  * The element id
21053                  * @property id
21054                  */
21055                 this.id = this.el && el.id;
21056                 /**
21057                  * A reference to the style property
21058                  * @property css
21059                  */
21060                 this.css = this.el && el.style;
21061             },
21062
21063         /**
21064          * Returns the X position of an html element
21065          * @method getPosX
21066          * @param el the element for which to get the position
21067          * @return {int} the X coordinate
21068          * @for DragDropMgr
21069          * @deprecated use Roo.lib.Dom.getX instead
21070          * @static
21071          */
21072         getPosX: function(el) {
21073             return Roo.lib.Dom.getX(el);
21074         },
21075
21076         /**
21077          * Returns the Y position of an html element
21078          * @method getPosY
21079          * @param el the element for which to get the position
21080          * @return {int} the Y coordinate
21081          * @deprecated use Roo.lib.Dom.getY instead
21082          * @static
21083          */
21084         getPosY: function(el) {
21085             return Roo.lib.Dom.getY(el);
21086         },
21087
21088         /**
21089          * Swap two nodes.  In IE, we use the native method, for others we
21090          * emulate the IE behavior
21091          * @method swapNode
21092          * @param n1 the first node to swap
21093          * @param n2 the other node to swap
21094          * @static
21095          */
21096         swapNode: function(n1, n2) {
21097             if (n1.swapNode) {
21098                 n1.swapNode(n2);
21099             } else {
21100                 var p = n2.parentNode;
21101                 var s = n2.nextSibling;
21102
21103                 if (s == n1) {
21104                     p.insertBefore(n1, n2);
21105                 } else if (n2 == n1.nextSibling) {
21106                     p.insertBefore(n2, n1);
21107                 } else {
21108                     n1.parentNode.replaceChild(n2, n1);
21109                     p.insertBefore(n1, s);
21110                 }
21111             }
21112         },
21113
21114         /**
21115          * Returns the current scroll position
21116          * @method getScroll
21117          * @private
21118          * @static
21119          */
21120         getScroll: function () {
21121             var t, l, dde=document.documentElement, db=document.body;
21122             if (dde && (dde.scrollTop || dde.scrollLeft)) {
21123                 t = dde.scrollTop;
21124                 l = dde.scrollLeft;
21125             } else if (db) {
21126                 t = db.scrollTop;
21127                 l = db.scrollLeft;
21128             } else {
21129
21130             }
21131             return { top: t, left: l };
21132         },
21133
21134         /**
21135          * Returns the specified element style property
21136          * @method getStyle
21137          * @param {HTMLElement} el          the element
21138          * @param {string}      styleProp   the style property
21139          * @return {string} The value of the style property
21140          * @deprecated use Roo.lib.Dom.getStyle
21141          * @static
21142          */
21143         getStyle: function(el, styleProp) {
21144             return Roo.fly(el).getStyle(styleProp);
21145         },
21146
21147         /**
21148          * Gets the scrollTop
21149          * @method getScrollTop
21150          * @return {int} the document's scrollTop
21151          * @static
21152          */
21153         getScrollTop: function () { return this.getScroll().top; },
21154
21155         /**
21156          * Gets the scrollLeft
21157          * @method getScrollLeft
21158          * @return {int} the document's scrollTop
21159          * @static
21160          */
21161         getScrollLeft: function () { return this.getScroll().left; },
21162
21163         /**
21164          * Sets the x/y position of an element to the location of the
21165          * target element.
21166          * @method moveToEl
21167          * @param {HTMLElement} moveEl      The element to move
21168          * @param {HTMLElement} targetEl    The position reference element
21169          * @static
21170          */
21171         moveToEl: function (moveEl, targetEl) {
21172             var aCoord = Roo.lib.Dom.getXY(targetEl);
21173             Roo.lib.Dom.setXY(moveEl, aCoord);
21174         },
21175
21176         /**
21177          * Numeric array sort function
21178          * @method numericSort
21179          * @static
21180          */
21181         numericSort: function(a, b) { return (a - b); },
21182
21183         /**
21184          * Internal counter
21185          * @property _timeoutCount
21186          * @private
21187          * @static
21188          */
21189         _timeoutCount: 0,
21190
21191         /**
21192          * Trying to make the load order less important.  Without this we get
21193          * an error if this file is loaded before the Event Utility.
21194          * @method _addListeners
21195          * @private
21196          * @static
21197          */
21198         _addListeners: function() {
21199             var DDM = Roo.dd.DDM;
21200             if ( Roo.lib.Event && document ) {
21201                 DDM._onLoad();
21202             } else {
21203                 if (DDM._timeoutCount > 2000) {
21204                 } else {
21205                     setTimeout(DDM._addListeners, 10);
21206                     if (document && document.body) {
21207                         DDM._timeoutCount += 1;
21208                     }
21209                 }
21210             }
21211         },
21212
21213         /**
21214          * Recursively searches the immediate parent and all child nodes for
21215          * the handle element in order to determine wheter or not it was
21216          * clicked.
21217          * @method handleWasClicked
21218          * @param node the html element to inspect
21219          * @static
21220          */
21221         handleWasClicked: function(node, id) {
21222             if (this.isHandle(id, node.id)) {
21223                 return true;
21224             } else {
21225                 // check to see if this is a text node child of the one we want
21226                 var p = node.parentNode;
21227
21228                 while (p) {
21229                     if (this.isHandle(id, p.id)) {
21230                         return true;
21231                     } else {
21232                         p = p.parentNode;
21233                     }
21234                 }
21235             }
21236
21237             return false;
21238         }
21239
21240     };
21241
21242 }();
21243
21244 // shorter alias, save a few bytes
21245 Roo.dd.DDM = Roo.dd.DragDropMgr;
21246 Roo.dd.DDM._addListeners();
21247
21248 }/*
21249  * Based on:
21250  * Ext JS Library 1.1.1
21251  * Copyright(c) 2006-2007, Ext JS, LLC.
21252  *
21253  * Originally Released Under LGPL - original licence link has changed is not relivant.
21254  *
21255  * Fork - LGPL
21256  * <script type="text/javascript">
21257  */
21258
21259 /**
21260  * @class Roo.dd.DD
21261  * A DragDrop implementation where the linked element follows the
21262  * mouse cursor during a drag.
21263  * @extends Roo.dd.DragDrop
21264  * @constructor
21265  * @param {String} id the id of the linked element
21266  * @param {String} sGroup the group of related DragDrop items
21267  * @param {object} config an object containing configurable attributes
21268  *                Valid properties for DD:
21269  *                    scroll
21270  */
21271 Roo.dd.DD = function(id, sGroup, config) {
21272     if (id) {
21273         this.init(id, sGroup, config);
21274     }
21275 };
21276
21277 Roo.extend(Roo.dd.DD, Roo.dd.DragDrop, {
21278
21279     /**
21280      * When set to true, the utility automatically tries to scroll the browser
21281      * window wehn a drag and drop element is dragged near the viewport boundary.
21282      * Defaults to true.
21283      * @property scroll
21284      * @type boolean
21285      */
21286     scroll: true,
21287
21288     /**
21289      * Sets the pointer offset to the distance between the linked element's top
21290      * left corner and the location the element was clicked
21291      * @method autoOffset
21292      * @param {int} iPageX the X coordinate of the click
21293      * @param {int} iPageY the Y coordinate of the click
21294      */
21295     autoOffset: function(iPageX, iPageY) {
21296         var x = iPageX - this.startPageX;
21297         var y = iPageY - this.startPageY;
21298         this.setDelta(x, y);
21299     },
21300
21301     /**
21302      * Sets the pointer offset.  You can call this directly to force the
21303      * offset to be in a particular location (e.g., pass in 0,0 to set it
21304      * to the center of the object)
21305      * @method setDelta
21306      * @param {int} iDeltaX the distance from the left
21307      * @param {int} iDeltaY the distance from the top
21308      */
21309     setDelta: function(iDeltaX, iDeltaY) {
21310         this.deltaX = iDeltaX;
21311         this.deltaY = iDeltaY;
21312     },
21313
21314     /**
21315      * Sets the drag element to the location of the mousedown or click event,
21316      * maintaining the cursor location relative to the location on the element
21317      * that was clicked.  Override this if you want to place the element in a
21318      * location other than where the cursor is.
21319      * @method setDragElPos
21320      * @param {int} iPageX the X coordinate of the mousedown or drag event
21321      * @param {int} iPageY the Y coordinate of the mousedown or drag event
21322      */
21323     setDragElPos: function(iPageX, iPageY) {
21324         // the first time we do this, we are going to check to make sure
21325         // the element has css positioning
21326
21327         var el = this.getDragEl();
21328         this.alignElWithMouse(el, iPageX, iPageY);
21329     },
21330
21331     /**
21332      * Sets the element to the location of the mousedown or click event,
21333      * maintaining the cursor location relative to the location on the element
21334      * that was clicked.  Override this if you want to place the element in a
21335      * location other than where the cursor is.
21336      * @method alignElWithMouse
21337      * @param {HTMLElement} el the element to move
21338      * @param {int} iPageX the X coordinate of the mousedown or drag event
21339      * @param {int} iPageY the Y coordinate of the mousedown or drag event
21340      */
21341     alignElWithMouse: function(el, iPageX, iPageY) {
21342         var oCoord = this.getTargetCoord(iPageX, iPageY);
21343         var fly = el.dom ? el : Roo.fly(el);
21344         if (!this.deltaSetXY) {
21345             var aCoord = [oCoord.x, oCoord.y];
21346             fly.setXY(aCoord);
21347             var newLeft = fly.getLeft(true);
21348             var newTop  = fly.getTop(true);
21349             this.deltaSetXY = [ newLeft - oCoord.x, newTop - oCoord.y ];
21350         } else {
21351             fly.setLeftTop(oCoord.x + this.deltaSetXY[0], oCoord.y + this.deltaSetXY[1]);
21352         }
21353
21354         this.cachePosition(oCoord.x, oCoord.y);
21355         this.autoScroll(oCoord.x, oCoord.y, el.offsetHeight, el.offsetWidth);
21356         return oCoord;
21357     },
21358
21359     /**
21360      * Saves the most recent position so that we can reset the constraints and
21361      * tick marks on-demand.  We need to know this so that we can calculate the
21362      * number of pixels the element is offset from its original position.
21363      * @method cachePosition
21364      * @param iPageX the current x position (optional, this just makes it so we
21365      * don't have to look it up again)
21366      * @param iPageY the current y position (optional, this just makes it so we
21367      * don't have to look it up again)
21368      */
21369     cachePosition: function(iPageX, iPageY) {
21370         if (iPageX) {
21371             this.lastPageX = iPageX;
21372             this.lastPageY = iPageY;
21373         } else {
21374             var aCoord = Roo.lib.Dom.getXY(this.getEl());
21375             this.lastPageX = aCoord[0];
21376             this.lastPageY = aCoord[1];
21377         }
21378     },
21379
21380     /**
21381      * Auto-scroll the window if the dragged object has been moved beyond the
21382      * visible window boundary.
21383      * @method autoScroll
21384      * @param {int} x the drag element's x position
21385      * @param {int} y the drag element's y position
21386      * @param {int} h the height of the drag element
21387      * @param {int} w the width of the drag element
21388      * @private
21389      */
21390     autoScroll: function(x, y, h, w) {
21391
21392         if (this.scroll) {
21393             // The client height
21394             var clientH = Roo.lib.Dom.getViewWidth();
21395
21396             // The client width
21397             var clientW = Roo.lib.Dom.getViewHeight();
21398
21399             // The amt scrolled down
21400             var st = this.DDM.getScrollTop();
21401
21402             // The amt scrolled right
21403             var sl = this.DDM.getScrollLeft();
21404
21405             // Location of the bottom of the element
21406             var bot = h + y;
21407
21408             // Location of the right of the element
21409             var right = w + x;
21410
21411             // The distance from the cursor to the bottom of the visible area,
21412             // adjusted so that we don't scroll if the cursor is beyond the
21413             // element drag constraints
21414             var toBot = (clientH + st - y - this.deltaY);
21415
21416             // The distance from the cursor to the right of the visible area
21417             var toRight = (clientW + sl - x - this.deltaX);
21418
21419
21420             // How close to the edge the cursor must be before we scroll
21421             // var thresh = (document.all) ? 100 : 40;
21422             var thresh = 40;
21423
21424             // How many pixels to scroll per autoscroll op.  This helps to reduce
21425             // clunky scrolling. IE is more sensitive about this ... it needs this
21426             // value to be higher.
21427             var scrAmt = (document.all) ? 80 : 30;
21428
21429             // Scroll down if we are near the bottom of the visible page and the
21430             // obj extends below the crease
21431             if ( bot > clientH && toBot < thresh ) {
21432                 window.scrollTo(sl, st + scrAmt);
21433             }
21434
21435             // Scroll up if the window is scrolled down and the top of the object
21436             // goes above the top border
21437             if ( y < st && st > 0 && y - st < thresh ) {
21438                 window.scrollTo(sl, st - scrAmt);
21439             }
21440
21441             // Scroll right if the obj is beyond the right border and the cursor is
21442             // near the border.
21443             if ( right > clientW && toRight < thresh ) {
21444                 window.scrollTo(sl + scrAmt, st);
21445             }
21446
21447             // Scroll left if the window has been scrolled to the right and the obj
21448             // extends past the left border
21449             if ( x < sl && sl > 0 && x - sl < thresh ) {
21450                 window.scrollTo(sl - scrAmt, st);
21451             }
21452         }
21453     },
21454
21455     /**
21456      * Finds the location the element should be placed if we want to move
21457      * it to where the mouse location less the click offset would place us.
21458      * @method getTargetCoord
21459      * @param {int} iPageX the X coordinate of the click
21460      * @param {int} iPageY the Y coordinate of the click
21461      * @return an object that contains the coordinates (Object.x and Object.y)
21462      * @private
21463      */
21464     getTargetCoord: function(iPageX, iPageY) {
21465
21466
21467         var x = iPageX - this.deltaX;
21468         var y = iPageY - this.deltaY;
21469
21470         if (this.constrainX) {
21471             if (x < this.minX) { x = this.minX; }
21472             if (x > this.maxX) { x = this.maxX; }
21473         }
21474
21475         if (this.constrainY) {
21476             if (y < this.minY) { y = this.minY; }
21477             if (y > this.maxY) { y = this.maxY; }
21478         }
21479
21480         x = this.getTick(x, this.xTicks);
21481         y = this.getTick(y, this.yTicks);
21482
21483
21484         return {x:x, y:y};
21485     },
21486
21487     /*
21488      * Sets up config options specific to this class. Overrides
21489      * Roo.dd.DragDrop, but all versions of this method through the
21490      * inheritance chain are called
21491      */
21492     applyConfig: function() {
21493         Roo.dd.DD.superclass.applyConfig.call(this);
21494         this.scroll = (this.config.scroll !== false);
21495     },
21496
21497     /*
21498      * Event that fires prior to the onMouseDown event.  Overrides
21499      * Roo.dd.DragDrop.
21500      */
21501     b4MouseDown: function(e) {
21502         // this.resetConstraints();
21503         this.autoOffset(e.getPageX(),
21504                             e.getPageY());
21505     },
21506
21507     /*
21508      * Event that fires prior to the onDrag event.  Overrides
21509      * Roo.dd.DragDrop.
21510      */
21511     b4Drag: function(e) {
21512         this.setDragElPos(e.getPageX(),
21513                             e.getPageY());
21514     },
21515
21516     toString: function() {
21517         return ("DD " + this.id);
21518     }
21519
21520     //////////////////////////////////////////////////////////////////////////
21521     // Debugging ygDragDrop events that can be overridden
21522     //////////////////////////////////////////////////////////////////////////
21523     /*
21524     startDrag: function(x, y) {
21525     },
21526
21527     onDrag: function(e) {
21528     },
21529
21530     onDragEnter: function(e, id) {
21531     },
21532
21533     onDragOver: function(e, id) {
21534     },
21535
21536     onDragOut: function(e, id) {
21537     },
21538
21539     onDragDrop: function(e, id) {
21540     },
21541
21542     endDrag: function(e) {
21543     }
21544
21545     */
21546
21547 });/*
21548  * Based on:
21549  * Ext JS Library 1.1.1
21550  * Copyright(c) 2006-2007, Ext JS, LLC.
21551  *
21552  * Originally Released Under LGPL - original licence link has changed is not relivant.
21553  *
21554  * Fork - LGPL
21555  * <script type="text/javascript">
21556  */
21557
21558 /**
21559  * @class Roo.dd.DDProxy
21560  * A DragDrop implementation that inserts an empty, bordered div into
21561  * the document that follows the cursor during drag operations.  At the time of
21562  * the click, the frame div is resized to the dimensions of the linked html
21563  * element, and moved to the exact location of the linked element.
21564  *
21565  * References to the "frame" element refer to the single proxy element that
21566  * was created to be dragged in place of all DDProxy elements on the
21567  * page.
21568  *
21569  * @extends Roo.dd.DD
21570  * @constructor
21571  * @param {String} id the id of the linked html element
21572  * @param {String} sGroup the group of related DragDrop objects
21573  * @param {object} config an object containing configurable attributes
21574  *                Valid properties for DDProxy in addition to those in DragDrop:
21575  *                   resizeFrame, centerFrame, dragElId
21576  */
21577 Roo.dd.DDProxy = function(id, sGroup, config) {
21578     if (id) {
21579         this.init(id, sGroup, config);
21580         this.initFrame();
21581     }
21582 };
21583
21584 /**
21585  * The default drag frame div id
21586  * @property Roo.dd.DDProxy.dragElId
21587  * @type String
21588  * @static
21589  */
21590 Roo.dd.DDProxy.dragElId = "ygddfdiv";
21591
21592 Roo.extend(Roo.dd.DDProxy, Roo.dd.DD, {
21593
21594     /**
21595      * By default we resize the drag frame to be the same size as the element
21596      * we want to drag (this is to get the frame effect).  We can turn it off
21597      * if we want a different behavior.
21598      * @property resizeFrame
21599      * @type boolean
21600      */
21601     resizeFrame: true,
21602
21603     /**
21604      * By default the frame is positioned exactly where the drag element is, so
21605      * we use the cursor offset provided by Roo.dd.DD.  Another option that works only if
21606      * you do not have constraints on the obj is to have the drag frame centered
21607      * around the cursor.  Set centerFrame to true for this effect.
21608      * @property centerFrame
21609      * @type boolean
21610      */
21611     centerFrame: false,
21612
21613     /**
21614      * Creates the proxy element if it does not yet exist
21615      * @method createFrame
21616      */
21617     createFrame: function() {
21618         var self = this;
21619         var body = document.body;
21620
21621         if (!body || !body.firstChild) {
21622             setTimeout( function() { self.createFrame(); }, 50 );
21623             return;
21624         }
21625
21626         var div = this.getDragEl();
21627
21628         if (!div) {
21629             div    = document.createElement("div");
21630             div.id = this.dragElId;
21631             var s  = div.style;
21632
21633             s.position   = "absolute";
21634             s.visibility = "hidden";
21635             s.cursor     = "move";
21636             s.border     = "2px solid #aaa";
21637             s.zIndex     = 999;
21638
21639             // appendChild can blow up IE if invoked prior to the window load event
21640             // while rendering a table.  It is possible there are other scenarios
21641             // that would cause this to happen as well.
21642             body.insertBefore(div, body.firstChild);
21643         }
21644     },
21645
21646     /**
21647      * Initialization for the drag frame element.  Must be called in the
21648      * constructor of all subclasses
21649      * @method initFrame
21650      */
21651     initFrame: function() {
21652         this.createFrame();
21653     },
21654
21655     applyConfig: function() {
21656         Roo.dd.DDProxy.superclass.applyConfig.call(this);
21657
21658         this.resizeFrame = (this.config.resizeFrame !== false);
21659         this.centerFrame = (this.config.centerFrame);
21660         this.setDragElId(this.config.dragElId || Roo.dd.DDProxy.dragElId);
21661     },
21662
21663     /**
21664      * Resizes the drag frame to the dimensions of the clicked object, positions
21665      * it over the object, and finally displays it
21666      * @method showFrame
21667      * @param {int} iPageX X click position
21668      * @param {int} iPageY Y click position
21669      * @private
21670      */
21671     showFrame: function(iPageX, iPageY) {
21672         var el = this.getEl();
21673         var dragEl = this.getDragEl();
21674         var s = dragEl.style;
21675
21676         this._resizeProxy();
21677
21678         if (this.centerFrame) {
21679             this.setDelta( Math.round(parseInt(s.width,  10)/2),
21680                            Math.round(parseInt(s.height, 10)/2) );
21681         }
21682
21683         this.setDragElPos(iPageX, iPageY);
21684
21685         Roo.fly(dragEl).show();
21686     },
21687
21688     /**
21689      * The proxy is automatically resized to the dimensions of the linked
21690      * element when a drag is initiated, unless resizeFrame is set to false
21691      * @method _resizeProxy
21692      * @private
21693      */
21694     _resizeProxy: function() {
21695         if (this.resizeFrame) {
21696             var el = this.getEl();
21697             Roo.fly(this.getDragEl()).setSize(el.offsetWidth, el.offsetHeight);
21698         }
21699     },
21700
21701     // overrides Roo.dd.DragDrop
21702     b4MouseDown: function(e) {
21703         var x = e.getPageX();
21704         var y = e.getPageY();
21705         this.autoOffset(x, y);
21706         this.setDragElPos(x, y);
21707     },
21708
21709     // overrides Roo.dd.DragDrop
21710     b4StartDrag: function(x, y) {
21711         // show the drag frame
21712         this.showFrame(x, y);
21713     },
21714
21715     // overrides Roo.dd.DragDrop
21716     b4EndDrag: function(e) {
21717         Roo.fly(this.getDragEl()).hide();
21718     },
21719
21720     // overrides Roo.dd.DragDrop
21721     // By default we try to move the element to the last location of the frame.
21722     // This is so that the default behavior mirrors that of Roo.dd.DD.
21723     endDrag: function(e) {
21724
21725         var lel = this.getEl();
21726         var del = this.getDragEl();
21727
21728         // Show the drag frame briefly so we can get its position
21729         del.style.visibility = "";
21730
21731         this.beforeMove();
21732         // Hide the linked element before the move to get around a Safari
21733         // rendering bug.
21734         lel.style.visibility = "hidden";
21735         Roo.dd.DDM.moveToEl(lel, del);
21736         del.style.visibility = "hidden";
21737         lel.style.visibility = "";
21738
21739         this.afterDrag();
21740     },
21741
21742     beforeMove : function(){
21743
21744     },
21745
21746     afterDrag : function(){
21747
21748     },
21749
21750     toString: function() {
21751         return ("DDProxy " + this.id);
21752     }
21753
21754 });
21755 /*
21756  * Based on:
21757  * Ext JS Library 1.1.1
21758  * Copyright(c) 2006-2007, Ext JS, LLC.
21759  *
21760  * Originally Released Under LGPL - original licence link has changed is not relivant.
21761  *
21762  * Fork - LGPL
21763  * <script type="text/javascript">
21764  */
21765
21766  /**
21767  * @class Roo.dd.DDTarget
21768  * A DragDrop implementation that does not move, but can be a drop
21769  * target.  You would get the same result by simply omitting implementation
21770  * for the event callbacks, but this way we reduce the processing cost of the
21771  * event listener and the callbacks.
21772  * @extends Roo.dd.DragDrop
21773  * @constructor
21774  * @param {String} id the id of the element that is a drop target
21775  * @param {String} sGroup the group of related DragDrop objects
21776  * @param {object} config an object containing configurable attributes
21777  *                 Valid properties for DDTarget in addition to those in
21778  *                 DragDrop:
21779  *                    none
21780  */
21781 Roo.dd.DDTarget = function(id, sGroup, config) {
21782     if (id) {
21783         this.initTarget(id, sGroup, config);
21784     }
21785     if (config && (config.listeners || config.events)) { 
21786         Roo.dd.DragDrop.superclass.constructor.call(this,  { 
21787             listeners : config.listeners || {}, 
21788             events : config.events || {} 
21789         });    
21790     }
21791 };
21792
21793 // Roo.dd.DDTarget.prototype = new Roo.dd.DragDrop();
21794 Roo.extend(Roo.dd.DDTarget, Roo.dd.DragDrop, {
21795     toString: function() {
21796         return ("DDTarget " + this.id);
21797     }
21798 });
21799 /*
21800  * Based on:
21801  * Ext JS Library 1.1.1
21802  * Copyright(c) 2006-2007, Ext JS, LLC.
21803  *
21804  * Originally Released Under LGPL - original licence link has changed is not relivant.
21805  *
21806  * Fork - LGPL
21807  * <script type="text/javascript">
21808  */
21809  
21810
21811 /**
21812  * @class Roo.dd.ScrollManager
21813  * Provides automatic scrolling of overflow regions in the page during drag operations.<br><br>
21814  * <b>Note: This class uses "Point Mode" and is untested in "Intersect Mode".</b>
21815  * @singleton
21816  */
21817 Roo.dd.ScrollManager = function(){
21818     var ddm = Roo.dd.DragDropMgr;
21819     var els = {};
21820     var dragEl = null;
21821     var proc = {};
21822     
21823     
21824     
21825     var onStop = function(e){
21826         dragEl = null;
21827         clearProc();
21828     };
21829     
21830     var triggerRefresh = function(){
21831         if(ddm.dragCurrent){
21832              ddm.refreshCache(ddm.dragCurrent.groups);
21833         }
21834     };
21835     
21836     var doScroll = function(){
21837         if(ddm.dragCurrent){
21838             var dds = Roo.dd.ScrollManager;
21839             if(!dds.animate){
21840                 if(proc.el.scroll(proc.dir, dds.increment)){
21841                     triggerRefresh();
21842                 }
21843             }else{
21844                 proc.el.scroll(proc.dir, dds.increment, true, dds.animDuration, triggerRefresh);
21845             }
21846         }
21847     };
21848     
21849     var clearProc = function(){
21850         if(proc.id){
21851             clearInterval(proc.id);
21852         }
21853         proc.id = 0;
21854         proc.el = null;
21855         proc.dir = "";
21856     };
21857     
21858     var startProc = function(el, dir){
21859          Roo.log('scroll startproc');
21860         clearProc();
21861         proc.el = el;
21862         proc.dir = dir;
21863         proc.id = setInterval(doScroll, Roo.dd.ScrollManager.frequency);
21864     };
21865     
21866     var onFire = function(e, isDrop){
21867        
21868         if(isDrop || !ddm.dragCurrent){ return; }
21869         var dds = Roo.dd.ScrollManager;
21870         if(!dragEl || dragEl != ddm.dragCurrent){
21871             dragEl = ddm.dragCurrent;
21872             // refresh regions on drag start
21873             dds.refreshCache();
21874         }
21875         
21876         var xy = Roo.lib.Event.getXY(e);
21877         var pt = new Roo.lib.Point(xy[0], xy[1]);
21878         for(var id in els){
21879             var el = els[id], r = el._region;
21880             if(r && r.contains(pt) && el.isScrollable()){
21881                 if(r.bottom - pt.y <= dds.thresh){
21882                     if(proc.el != el){
21883                         startProc(el, "down");
21884                     }
21885                     return;
21886                 }else if(r.right - pt.x <= dds.thresh){
21887                     if(proc.el != el){
21888                         startProc(el, "left");
21889                     }
21890                     return;
21891                 }else if(pt.y - r.top <= dds.thresh){
21892                     if(proc.el != el){
21893                         startProc(el, "up");
21894                     }
21895                     return;
21896                 }else if(pt.x - r.left <= dds.thresh){
21897                     if(proc.el != el){
21898                         startProc(el, "right");
21899                     }
21900                     return;
21901                 }
21902             }
21903         }
21904         clearProc();
21905     };
21906     
21907     ddm.fireEvents = ddm.fireEvents.createSequence(onFire, ddm);
21908     ddm.stopDrag = ddm.stopDrag.createSequence(onStop, ddm);
21909     
21910     return {
21911         /**
21912          * Registers new overflow element(s) to auto scroll
21913          * @param {String/HTMLElement/Element/Array} el The id of or the element to be scrolled or an array of either
21914          */
21915         register : function(el){
21916             if(el instanceof Array){
21917                 for(var i = 0, len = el.length; i < len; i++) {
21918                         this.register(el[i]);
21919                 }
21920             }else{
21921                 el = Roo.get(el);
21922                 els[el.id] = el;
21923             }
21924             Roo.dd.ScrollManager.els = els;
21925         },
21926         
21927         /**
21928          * Unregisters overflow element(s) so they are no longer scrolled
21929          * @param {String/HTMLElement/Element/Array} el The id of or the element to be removed or an array of either
21930          */
21931         unregister : function(el){
21932             if(el instanceof Array){
21933                 for(var i = 0, len = el.length; i < len; i++) {
21934                         this.unregister(el[i]);
21935                 }
21936             }else{
21937                 el = Roo.get(el);
21938                 delete els[el.id];
21939             }
21940         },
21941         
21942         /**
21943          * The number of pixels from the edge of a container the pointer needs to be to 
21944          * trigger scrolling (defaults to 25)
21945          * @type Number
21946          */
21947         thresh : 25,
21948         
21949         /**
21950          * The number of pixels to scroll in each scroll increment (defaults to 50)
21951          * @type Number
21952          */
21953         increment : 100,
21954         
21955         /**
21956          * The frequency of scrolls in milliseconds (defaults to 500)
21957          * @type Number
21958          */
21959         frequency : 500,
21960         
21961         /**
21962          * True to animate the scroll (defaults to true)
21963          * @type Boolean
21964          */
21965         animate: true,
21966         
21967         /**
21968          * The animation duration in seconds - 
21969          * MUST BE less than Roo.dd.ScrollManager.frequency! (defaults to .4)
21970          * @type Number
21971          */
21972         animDuration: .4,
21973         
21974         /**
21975          * Manually trigger a cache refresh.
21976          */
21977         refreshCache : function(){
21978             for(var id in els){
21979                 if(typeof els[id] == 'object'){ // for people extending the object prototype
21980                     els[id]._region = els[id].getRegion();
21981                 }
21982             }
21983         }
21984     };
21985 }();/*
21986  * Based on:
21987  * Ext JS Library 1.1.1
21988  * Copyright(c) 2006-2007, Ext JS, LLC.
21989  *
21990  * Originally Released Under LGPL - original licence link has changed is not relivant.
21991  *
21992  * Fork - LGPL
21993  * <script type="text/javascript">
21994  */
21995  
21996
21997 /**
21998  * @class Roo.dd.Registry
21999  * Provides easy access to all drag drop components that are registered on a page.  Items can be retrieved either
22000  * directly by DOM node id, or by passing in the drag drop event that occurred and looking up the event target.
22001  * @singleton
22002  */
22003 Roo.dd.Registry = function(){
22004     var elements = {}; 
22005     var handles = {}; 
22006     var autoIdSeed = 0;
22007
22008     var getId = function(el, autogen){
22009         if(typeof el == "string"){
22010             return el;
22011         }
22012         var id = el.id;
22013         if(!id && autogen !== false){
22014             id = "roodd-" + (++autoIdSeed);
22015             el.id = id;
22016         }
22017         return id;
22018     };
22019     
22020     return {
22021     /**
22022      * Register a drag drop element
22023      * @param {String|HTMLElement} element The id or DOM node to register
22024      * @param {Object} data (optional) A custom data object that will be passed between the elements that are involved
22025      * in drag drop operations.  You can populate this object with any arbitrary properties that your own code
22026      * knows how to interpret, plus there are some specific properties known to the Registry that should be
22027      * populated in the data object (if applicable):
22028      * <pre>
22029 Value      Description<br />
22030 ---------  ------------------------------------------<br />
22031 handles    Array of DOM nodes that trigger dragging<br />
22032            for the element being registered<br />
22033 isHandle   True if the element passed in triggers<br />
22034            dragging itself, else false
22035 </pre>
22036      */
22037         register : function(el, data){
22038             data = data || {};
22039             if(typeof el == "string"){
22040                 el = document.getElementById(el);
22041             }
22042             data.ddel = el;
22043             elements[getId(el)] = data;
22044             if(data.isHandle !== false){
22045                 handles[data.ddel.id] = data;
22046             }
22047             if(data.handles){
22048                 var hs = data.handles;
22049                 for(var i = 0, len = hs.length; i < len; i++){
22050                         handles[getId(hs[i])] = data;
22051                 }
22052             }
22053         },
22054
22055     /**
22056      * Unregister a drag drop element
22057      * @param {String|HTMLElement}  element The id or DOM node to unregister
22058      */
22059         unregister : function(el){
22060             var id = getId(el, false);
22061             var data = elements[id];
22062             if(data){
22063                 delete elements[id];
22064                 if(data.handles){
22065                     var hs = data.handles;
22066                     for(var i = 0, len = hs.length; i < len; i++){
22067                         delete handles[getId(hs[i], false)];
22068                     }
22069                 }
22070             }
22071         },
22072
22073     /**
22074      * Returns the handle registered for a DOM Node by id
22075      * @param {String|HTMLElement} id The DOM node or id to look up
22076      * @return {Object} handle The custom handle data
22077      */
22078         getHandle : function(id){
22079             if(typeof id != "string"){ // must be element?
22080                 id = id.id;
22081             }
22082             return handles[id];
22083         },
22084
22085     /**
22086      * Returns the handle that is registered for the DOM node that is the target of the event
22087      * @param {Event} e The event
22088      * @return {Object} handle The custom handle data
22089      */
22090         getHandleFromEvent : function(e){
22091             var t = Roo.lib.Event.getTarget(e);
22092             return t ? handles[t.id] : null;
22093         },
22094
22095     /**
22096      * Returns a custom data object that is registered for a DOM node by id
22097      * @param {String|HTMLElement} id The DOM node or id to look up
22098      * @return {Object} data The custom data
22099      */
22100         getTarget : function(id){
22101             if(typeof id != "string"){ // must be element?
22102                 id = id.id;
22103             }
22104             return elements[id];
22105         },
22106
22107     /**
22108      * Returns a custom data object that is registered for the DOM node that is the target of the event
22109      * @param {Event} e The event
22110      * @return {Object} data The custom data
22111      */
22112         getTargetFromEvent : function(e){
22113             var t = Roo.lib.Event.getTarget(e);
22114             return t ? elements[t.id] || handles[t.id] : null;
22115         }
22116     };
22117 }();/*
22118  * Based on:
22119  * Ext JS Library 1.1.1
22120  * Copyright(c) 2006-2007, Ext JS, LLC.
22121  *
22122  * Originally Released Under LGPL - original licence link has changed is not relivant.
22123  *
22124  * Fork - LGPL
22125  * <script type="text/javascript">
22126  */
22127  
22128
22129 /**
22130  * @class Roo.dd.StatusProxy
22131  * A specialized drag proxy that supports a drop status icon, {@link Roo.Layer} styles and auto-repair.  This is the
22132  * default drag proxy used by all Roo.dd components.
22133  * @constructor
22134  * @param {Object} config
22135  */
22136 Roo.dd.StatusProxy = function(config){
22137     Roo.apply(this, config);
22138     this.id = this.id || Roo.id();
22139     this.el = new Roo.Layer({
22140         dh: {
22141             id: this.id, tag: "div", cls: "x-dd-drag-proxy "+this.dropNotAllowed, children: [
22142                 {tag: "div", cls: "x-dd-drop-icon"},
22143                 {tag: "div", cls: "x-dd-drag-ghost"}
22144             ]
22145         }, 
22146         shadow: !config || config.shadow !== false
22147     });
22148     this.ghost = Roo.get(this.el.dom.childNodes[1]);
22149     this.dropStatus = this.dropNotAllowed;
22150 };
22151
22152 Roo.dd.StatusProxy.prototype = {
22153     /**
22154      * @cfg {String} dropAllowed
22155      * The CSS class to apply to the status element when drop is allowed (defaults to "x-dd-drop-ok").
22156      */
22157     dropAllowed : "x-dd-drop-ok",
22158     /**
22159      * @cfg {String} dropNotAllowed
22160      * The CSS class to apply to the status element when drop is not allowed (defaults to "x-dd-drop-nodrop").
22161      */
22162     dropNotAllowed : "x-dd-drop-nodrop",
22163
22164     /**
22165      * Updates the proxy's visual element to indicate the status of whether or not drop is allowed
22166      * over the current target element.
22167      * @param {String} cssClass The css class for the new drop status indicator image
22168      */
22169     setStatus : function(cssClass){
22170         cssClass = cssClass || this.dropNotAllowed;
22171         if(this.dropStatus != cssClass){
22172             this.el.replaceClass(this.dropStatus, cssClass);
22173             this.dropStatus = cssClass;
22174         }
22175     },
22176
22177     /**
22178      * Resets the status indicator to the default dropNotAllowed value
22179      * @param {Boolean} clearGhost True to also remove all content from the ghost, false to preserve it
22180      */
22181     reset : function(clearGhost){
22182         this.el.dom.className = "x-dd-drag-proxy " + this.dropNotAllowed;
22183         this.dropStatus = this.dropNotAllowed;
22184         if(clearGhost){
22185             this.ghost.update("");
22186         }
22187     },
22188
22189     /**
22190      * Updates the contents of the ghost element
22191      * @param {String} html The html that will replace the current innerHTML of the ghost element
22192      */
22193     update : function(html){
22194         if(typeof html == "string"){
22195             this.ghost.update(html);
22196         }else{
22197             this.ghost.update("");
22198             html.style.margin = "0";
22199             this.ghost.dom.appendChild(html);
22200         }
22201         // ensure float = none set?? cant remember why though.
22202         var el = this.ghost.dom.firstChild;
22203                 if(el){
22204                         Roo.fly(el).setStyle('float', 'none');
22205                 }
22206     },
22207     
22208     /**
22209      * Returns the underlying proxy {@link Roo.Layer}
22210      * @return {Roo.Layer} el
22211     */
22212     getEl : function(){
22213         return this.el;
22214     },
22215
22216     /**
22217      * Returns the ghost element
22218      * @return {Roo.Element} el
22219      */
22220     getGhost : function(){
22221         return this.ghost;
22222     },
22223
22224     /**
22225      * Hides the proxy
22226      * @param {Boolean} clear True to reset the status and clear the ghost contents, false to preserve them
22227      */
22228     hide : function(clear){
22229         this.el.hide();
22230         if(clear){
22231             this.reset(true);
22232         }
22233     },
22234
22235     /**
22236      * Stops the repair animation if it's currently running
22237      */
22238     stop : function(){
22239         if(this.anim && this.anim.isAnimated && this.anim.isAnimated()){
22240             this.anim.stop();
22241         }
22242     },
22243
22244     /**
22245      * Displays this proxy
22246      */
22247     show : function(){
22248         this.el.show();
22249     },
22250
22251     /**
22252      * Force the Layer to sync its shadow and shim positions to the element
22253      */
22254     sync : function(){
22255         this.el.sync();
22256     },
22257
22258     /**
22259      * Causes the proxy to return to its position of origin via an animation.  Should be called after an
22260      * invalid drop operation by the item being dragged.
22261      * @param {Array} xy The XY position of the element ([x, y])
22262      * @param {Function} callback The function to call after the repair is complete
22263      * @param {Object} scope The scope in which to execute the callback
22264      */
22265     repair : function(xy, callback, scope){
22266         this.callback = callback;
22267         this.scope = scope;
22268         if(xy && this.animRepair !== false){
22269             this.el.addClass("x-dd-drag-repair");
22270             this.el.hideUnders(true);
22271             this.anim = this.el.shift({
22272                 duration: this.repairDuration || .5,
22273                 easing: 'easeOut',
22274                 xy: xy,
22275                 stopFx: true,
22276                 callback: this.afterRepair,
22277                 scope: this
22278             });
22279         }else{
22280             this.afterRepair();
22281         }
22282     },
22283
22284     // private
22285     afterRepair : function(){
22286         this.hide(true);
22287         if(typeof this.callback == "function"){
22288             this.callback.call(this.scope || this);
22289         }
22290         this.callback = null;
22291         this.scope = null;
22292     }
22293 };/*
22294  * Based on:
22295  * Ext JS Library 1.1.1
22296  * Copyright(c) 2006-2007, Ext JS, LLC.
22297  *
22298  * Originally Released Under LGPL - original licence link has changed is not relivant.
22299  *
22300  * Fork - LGPL
22301  * <script type="text/javascript">
22302  */
22303
22304 /**
22305  * @class Roo.dd.DragSource
22306  * @extends Roo.dd.DDProxy
22307  * A simple class that provides the basic implementation needed to make any element draggable.
22308  * @constructor
22309  * @param {String/HTMLElement/Element} el The container element
22310  * @param {Object} config
22311  */
22312 Roo.dd.DragSource = function(el, config){
22313     this.el = Roo.get(el);
22314     this.dragData = {};
22315     
22316     Roo.apply(this, config);
22317     
22318     if(!this.proxy){
22319         this.proxy = new Roo.dd.StatusProxy();
22320     }
22321
22322     Roo.dd.DragSource.superclass.constructor.call(this, this.el.dom, this.ddGroup || this.group,
22323           {dragElId : this.proxy.id, resizeFrame: false, isTarget: false, scroll: this.scroll === true});
22324     
22325     this.dragging = false;
22326 };
22327
22328 Roo.extend(Roo.dd.DragSource, Roo.dd.DDProxy, {
22329     /**
22330      * @cfg {String} dropAllowed
22331      * The CSS class returned to the drag source when drop is allowed (defaults to "x-dd-drop-ok").
22332      */
22333     dropAllowed : "x-dd-drop-ok",
22334     /**
22335      * @cfg {String} dropNotAllowed
22336      * The CSS class returned to the drag source when drop is not allowed (defaults to "x-dd-drop-nodrop").
22337      */
22338     dropNotAllowed : "x-dd-drop-nodrop",
22339
22340     /**
22341      * Returns the data object associated with this drag source
22342      * @return {Object} data An object containing arbitrary data
22343      */
22344     getDragData : function(e){
22345         return this.dragData;
22346     },
22347
22348     // private
22349     onDragEnter : function(e, id){
22350         var target = Roo.dd.DragDropMgr.getDDById(id);
22351         this.cachedTarget = target;
22352         if(this.beforeDragEnter(target, e, id) !== false){
22353             if(target.isNotifyTarget){
22354                 var status = target.notifyEnter(this, e, this.dragData);
22355                 this.proxy.setStatus(status);
22356             }else{
22357                 this.proxy.setStatus(this.dropAllowed);
22358             }
22359             
22360             if(this.afterDragEnter){
22361                 /**
22362                  * An empty function by default, but provided so that you can perform a custom action
22363                  * when the dragged item enters the drop target by providing an implementation.
22364                  * @param {Roo.dd.DragDrop} target The drop target
22365                  * @param {Event} e The event object
22366                  * @param {String} id The id of the dragged element
22367                  * @method afterDragEnter
22368                  */
22369                 this.afterDragEnter(target, e, id);
22370             }
22371         }
22372     },
22373
22374     /**
22375      * An empty function by default, but provided so that you can perform a custom action
22376      * before the dragged item enters the drop target and optionally cancel the onDragEnter.
22377      * @param {Roo.dd.DragDrop} target The drop target
22378      * @param {Event} e The event object
22379      * @param {String} id The id of the dragged element
22380      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
22381      */
22382     beforeDragEnter : function(target, e, id){
22383         return true;
22384     },
22385
22386     // private
22387     alignElWithMouse: function() {
22388         Roo.dd.DragSource.superclass.alignElWithMouse.apply(this, arguments);
22389         this.proxy.sync();
22390     },
22391
22392     // private
22393     onDragOver : function(e, id){
22394         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
22395         if(this.beforeDragOver(target, e, id) !== false){
22396             if(target.isNotifyTarget){
22397                 var status = target.notifyOver(this, e, this.dragData);
22398                 this.proxy.setStatus(status);
22399             }
22400
22401             if(this.afterDragOver){
22402                 /**
22403                  * An empty function by default, but provided so that you can perform a custom action
22404                  * while the dragged item is over the drop target by providing an implementation.
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 afterDragOver
22409                  */
22410                 this.afterDragOver(target, e, id);
22411             }
22412         }
22413     },
22414
22415     /**
22416      * An empty function by default, but provided so that you can perform a custom action
22417      * while the dragged item is over the drop target and optionally cancel the onDragOver.
22418      * @param {Roo.dd.DragDrop} target The drop target
22419      * @param {Event} e The event object
22420      * @param {String} id The id of the dragged element
22421      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
22422      */
22423     beforeDragOver : function(target, e, id){
22424         return true;
22425     },
22426
22427     // private
22428     onDragOut : function(e, id){
22429         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
22430         if(this.beforeDragOut(target, e, id) !== false){
22431             if(target.isNotifyTarget){
22432                 target.notifyOut(this, e, this.dragData);
22433             }
22434             this.proxy.reset();
22435             if(this.afterDragOut){
22436                 /**
22437                  * An empty function by default, but provided so that you can perform a custom action
22438                  * after the dragged item is dragged out of the target without dropping.
22439                  * @param {Roo.dd.DragDrop} target The drop target
22440                  * @param {Event} e The event object
22441                  * @param {String} id The id of the dragged element
22442                  * @method afterDragOut
22443                  */
22444                 this.afterDragOut(target, e, id);
22445             }
22446         }
22447         this.cachedTarget = null;
22448     },
22449
22450     /**
22451      * An empty function by default, but provided so that you can perform a custom action before the dragged
22452      * item is dragged out of the target without dropping, and optionally cancel the onDragOut.
22453      * @param {Roo.dd.DragDrop} target The drop target
22454      * @param {Event} e The event object
22455      * @param {String} id The id of the dragged element
22456      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
22457      */
22458     beforeDragOut : function(target, e, id){
22459         return true;
22460     },
22461     
22462     // private
22463     onDragDrop : function(e, id){
22464         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
22465         if(this.beforeDragDrop(target, e, id) !== false){
22466             if(target.isNotifyTarget){
22467                 if(target.notifyDrop(this, e, this.dragData)){ // valid drop?
22468                     this.onValidDrop(target, e, id);
22469                 }else{
22470                     this.onInvalidDrop(target, e, id);
22471                 }
22472             }else{
22473                 this.onValidDrop(target, e, id);
22474             }
22475             
22476             if(this.afterDragDrop){
22477                 /**
22478                  * An empty function by default, but provided so that you can perform a custom action
22479                  * after a valid drag drop has occurred by providing an implementation.
22480                  * @param {Roo.dd.DragDrop} target The drop target
22481                  * @param {Event} e The event object
22482                  * @param {String} id The id of the dropped element
22483                  * @method afterDragDrop
22484                  */
22485                 this.afterDragDrop(target, e, id);
22486             }
22487         }
22488         delete this.cachedTarget;
22489     },
22490
22491     /**
22492      * An empty function by default, but provided so that you can perform a custom action before the dragged
22493      * item is dropped onto the target and optionally cancel the onDragDrop.
22494      * @param {Roo.dd.DragDrop} target The drop target
22495      * @param {Event} e The event object
22496      * @param {String} id The id of the dragged element
22497      * @return {Boolean} isValid True if the drag drop event is valid, else false to cancel
22498      */
22499     beforeDragDrop : function(target, e, id){
22500         return true;
22501     },
22502
22503     // private
22504     onValidDrop : function(target, e, id){
22505         this.hideProxy();
22506         if(this.afterValidDrop){
22507             /**
22508              * An empty function by default, but provided so that you can perform a custom action
22509              * after a valid drop has occurred by providing an implementation.
22510              * @param {Object} target The target DD 
22511              * @param {Event} e The event object
22512              * @param {String} id The id of the dropped element
22513              * @method afterInvalidDrop
22514              */
22515             this.afterValidDrop(target, e, id);
22516         }
22517     },
22518
22519     // private
22520     getRepairXY : function(e, data){
22521         return this.el.getXY();  
22522     },
22523
22524     // private
22525     onInvalidDrop : function(target, e, id){
22526         this.beforeInvalidDrop(target, e, id);
22527         if(this.cachedTarget){
22528             if(this.cachedTarget.isNotifyTarget){
22529                 this.cachedTarget.notifyOut(this, e, this.dragData);
22530             }
22531             this.cacheTarget = null;
22532         }
22533         this.proxy.repair(this.getRepairXY(e, this.dragData), this.afterRepair, this);
22534
22535         if(this.afterInvalidDrop){
22536             /**
22537              * An empty function by default, but provided so that you can perform a custom action
22538              * after an invalid drop has occurred by providing an implementation.
22539              * @param {Event} e The event object
22540              * @param {String} id The id of the dropped element
22541              * @method afterInvalidDrop
22542              */
22543             this.afterInvalidDrop(e, id);
22544         }
22545     },
22546
22547     // private
22548     afterRepair : function(){
22549         if(Roo.enableFx){
22550             this.el.highlight(this.hlColor || "c3daf9");
22551         }
22552         this.dragging = false;
22553     },
22554
22555     /**
22556      * An empty function by default, but provided so that you can perform a custom action after an invalid
22557      * drop has occurred.
22558      * @param {Roo.dd.DragDrop} target The drop target
22559      * @param {Event} e The event object
22560      * @param {String} id The id of the dragged element
22561      * @return {Boolean} isValid True if the invalid drop should proceed, else false to cancel
22562      */
22563     beforeInvalidDrop : function(target, e, id){
22564         return true;
22565     },
22566
22567     // private
22568     handleMouseDown : function(e){
22569         if(this.dragging) {
22570             return;
22571         }
22572         var data = this.getDragData(e);
22573         if(data && this.onBeforeDrag(data, e) !== false){
22574             this.dragData = data;
22575             this.proxy.stop();
22576             Roo.dd.DragSource.superclass.handleMouseDown.apply(this, arguments);
22577         } 
22578     },
22579
22580     /**
22581      * An empty function by default, but provided so that you can perform a custom action before the initial
22582      * drag event begins and optionally cancel it.
22583      * @param {Object} data An object containing arbitrary data to be shared with drop targets
22584      * @param {Event} e The event object
22585      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
22586      */
22587     onBeforeDrag : function(data, e){
22588         return true;
22589     },
22590
22591     /**
22592      * An empty function by default, but provided so that you can perform a custom action once the initial
22593      * drag event has begun.  The drag cannot be canceled from this function.
22594      * @param {Number} x The x position of the click on the dragged object
22595      * @param {Number} y The y position of the click on the dragged object
22596      */
22597     onStartDrag : Roo.emptyFn,
22598
22599     // private - YUI override
22600     startDrag : function(x, y){
22601         this.proxy.reset();
22602         this.dragging = true;
22603         this.proxy.update("");
22604         this.onInitDrag(x, y);
22605         this.proxy.show();
22606     },
22607
22608     // private
22609     onInitDrag : function(x, y){
22610         var clone = this.el.dom.cloneNode(true);
22611         clone.id = Roo.id(); // prevent duplicate ids
22612         this.proxy.update(clone);
22613         this.onStartDrag(x, y);
22614         return true;
22615     },
22616
22617     /**
22618      * Returns the drag source's underlying {@link Roo.dd.StatusProxy}
22619      * @return {Roo.dd.StatusProxy} proxy The StatusProxy
22620      */
22621     getProxy : function(){
22622         return this.proxy;  
22623     },
22624
22625     /**
22626      * Hides the drag source's {@link Roo.dd.StatusProxy}
22627      */
22628     hideProxy : function(){
22629         this.proxy.hide();  
22630         this.proxy.reset(true);
22631         this.dragging = false;
22632     },
22633
22634     // private
22635     triggerCacheRefresh : function(){
22636         Roo.dd.DDM.refreshCache(this.groups);
22637     },
22638
22639     // private - override to prevent hiding
22640     b4EndDrag: function(e) {
22641     },
22642
22643     // private - override to prevent moving
22644     endDrag : function(e){
22645         this.onEndDrag(this.dragData, e);
22646     },
22647
22648     // private
22649     onEndDrag : function(data, e){
22650     },
22651     
22652     // private - pin to cursor
22653     autoOffset : function(x, y) {
22654         this.setDelta(-12, -20);
22655     }    
22656 });/*
22657  * Based on:
22658  * Ext JS Library 1.1.1
22659  * Copyright(c) 2006-2007, Ext JS, LLC.
22660  *
22661  * Originally Released Under LGPL - original licence link has changed is not relivant.
22662  *
22663  * Fork - LGPL
22664  * <script type="text/javascript">
22665  */
22666
22667
22668 /**
22669  * @class Roo.dd.DropTarget
22670  * @extends Roo.dd.DDTarget
22671  * A simple class that provides the basic implementation needed to make any element a drop target that can have
22672  * draggable items dropped onto it.  The drop has no effect until an implementation of notifyDrop is provided.
22673  * @constructor
22674  * @param {String/HTMLElement/Element} el The container element
22675  * @param {Object} config
22676  */
22677 Roo.dd.DropTarget = function(el, config){
22678     this.el = Roo.get(el);
22679     
22680     var listeners = false; ;
22681     if (config && config.listeners) {
22682         listeners= config.listeners;
22683         delete config.listeners;
22684     }
22685     Roo.apply(this, config);
22686     
22687     if(this.containerScroll){
22688         Roo.dd.ScrollManager.register(this.el);
22689     }
22690     this.addEvents( {
22691          /**
22692          * @scope Roo.dd.DropTarget
22693          */
22694          
22695          /**
22696          * @event enter
22697          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the source is now over the
22698          * target.  This default implementation adds the CSS class specified by overClass (if any) to the drop element
22699          * and returns the dropAllowed config value.  This method should be overridden if drop validation is required.
22700          * 
22701          * IMPORTANT : it should set  this.valid to true|false
22702          * 
22703          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
22704          * @param {Event} e The event
22705          * @param {Object} data An object containing arbitrary data supplied by the drag source
22706          */
22707         "enter" : true,
22708         
22709          /**
22710          * @event over
22711          * The function a {@link Roo.dd.DragSource} calls continuously while it is being dragged over the target.
22712          * This method will be called on every mouse movement while the drag source is over the drop target.
22713          * This default implementation simply returns the dropAllowed config value.
22714          * 
22715          * IMPORTANT : it should set  this.valid to true|false
22716          * 
22717          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
22718          * @param {Event} e The event
22719          * @param {Object} data An object containing arbitrary data supplied by the drag source
22720          
22721          */
22722         "over" : true,
22723         /**
22724          * @event out
22725          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the source has been dragged
22726          * out of the target without dropping.  This default implementation simply removes the CSS class specified by
22727          * overClass (if any) from the drop element.
22728          * 
22729          * 
22730          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
22731          * @param {Event} e The event
22732          * @param {Object} data An object containing arbitrary data supplied by the drag source
22733          */
22734          "out" : true,
22735          
22736         /**
22737          * @event drop
22738          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the dragged item has
22739          * been dropped on it.  This method has no default implementation and returns false, so you must provide an
22740          * implementation that does something to process the drop event and returns true so that the drag source's
22741          * repair action does not run.
22742          * 
22743          * IMPORTANT : it should set this.success
22744          * 
22745          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
22746          * @param {Event} e The event
22747          * @param {Object} data An object containing arbitrary data supplied by the drag source
22748         */
22749          "drop" : true
22750     });
22751             
22752      
22753     Roo.dd.DropTarget.superclass.constructor.call(  this, 
22754         this.el.dom, 
22755         this.ddGroup || this.group,
22756         {
22757             isTarget: true,
22758             listeners : listeners || {} 
22759            
22760         
22761         }
22762     );
22763
22764 };
22765
22766 Roo.extend(Roo.dd.DropTarget, Roo.dd.DDTarget, {
22767     /**
22768      * @cfg {String} overClass
22769      * The CSS class applied to the drop target element while the drag source is over it (defaults to "").
22770      */
22771      /**
22772      * @cfg {String} ddGroup
22773      * The drag drop group to handle drop events for
22774      */
22775      
22776     /**
22777      * @cfg {String} dropAllowed
22778      * The CSS class returned to the drag source when drop is allowed (defaults to "x-dd-drop-ok").
22779      */
22780     dropAllowed : "x-dd-drop-ok",
22781     /**
22782      * @cfg {String} dropNotAllowed
22783      * The CSS class returned to the drag source when drop is not allowed (defaults to "x-dd-drop-nodrop").
22784      */
22785     dropNotAllowed : "x-dd-drop-nodrop",
22786     /**
22787      * @cfg {boolean} success
22788      * set this after drop listener.. 
22789      */
22790     success : false,
22791     /**
22792      * @cfg {boolean|String} valid true/false or string (ok-add/ok-sub/ok/nodrop)
22793      * if the drop point is valid for over/enter..
22794      */
22795     valid : false,
22796     // private
22797     isTarget : true,
22798
22799     // private
22800     isNotifyTarget : true,
22801     
22802     /**
22803      * @hide
22804      */
22805     notifyEnter : function(dd, e, data)
22806     {
22807         this.valid = true;
22808         this.fireEvent('enter', dd, e, data);
22809         if(this.overClass){
22810             this.el.addClass(this.overClass);
22811         }
22812         return typeof(this.valid) == 'string' ? 'x-dd-drop-' + this.valid : (
22813             this.valid ? this.dropAllowed : this.dropNotAllowed
22814         );
22815     },
22816
22817     /**
22818      * @hide
22819      */
22820     notifyOver : function(dd, e, data)
22821     {
22822         this.valid = true;
22823         this.fireEvent('over', dd, e, data);
22824         return typeof(this.valid) == 'string' ? 'x-dd-drop-' + this.valid : (
22825             this.valid ? this.dropAllowed : this.dropNotAllowed
22826         );
22827     },
22828
22829     /**
22830      * @hide
22831      */
22832     notifyOut : function(dd, e, data)
22833     {
22834         this.fireEvent('out', dd, e, data);
22835         if(this.overClass){
22836             this.el.removeClass(this.overClass);
22837         }
22838     },
22839
22840     /**
22841      * @hide
22842      */
22843     notifyDrop : function(dd, e, data)
22844     {
22845         this.success = false;
22846         this.fireEvent('drop', dd, e, data);
22847         return this.success;
22848     }
22849 });/*
22850  * Based on:
22851  * Ext JS Library 1.1.1
22852  * Copyright(c) 2006-2007, Ext JS, LLC.
22853  *
22854  * Originally Released Under LGPL - original licence link has changed is not relivant.
22855  *
22856  * Fork - LGPL
22857  * <script type="text/javascript">
22858  */
22859
22860
22861 /**
22862  * @class Roo.dd.DragZone
22863  * @extends Roo.dd.DragSource
22864  * This class provides a container DD instance that proxies for multiple child node sources.<br />
22865  * By default, this class requires that draggable child nodes are registered with {@link Roo.dd.Registry}.
22866  * @constructor
22867  * @param {String/HTMLElement/Element} el The container element
22868  * @param {Object} config
22869  */
22870 Roo.dd.DragZone = function(el, config){
22871     Roo.dd.DragZone.superclass.constructor.call(this, el, config);
22872     if(this.containerScroll){
22873         Roo.dd.ScrollManager.register(this.el);
22874     }
22875 };
22876
22877 Roo.extend(Roo.dd.DragZone, Roo.dd.DragSource, {
22878     /**
22879      * @cfg {Boolean} containerScroll True to register this container with the Scrollmanager
22880      * for auto scrolling during drag operations.
22881      */
22882     /**
22883      * @cfg {String} hlColor The color to use when visually highlighting the drag source in the afterRepair
22884      * method after a failed drop (defaults to "c3daf9" - light blue)
22885      */
22886
22887     /**
22888      * Called when a mousedown occurs in this container. Looks in {@link Roo.dd.Registry}
22889      * for a valid target to drag based on the mouse down. Override this method
22890      * to provide your own lookup logic (e.g. finding a child by class name). Make sure your returned
22891      * object has a "ddel" attribute (with an HTML Element) for other functions to work.
22892      * @param {EventObject} e The mouse down event
22893      * @return {Object} The dragData
22894      */
22895     getDragData : function(e){
22896         return Roo.dd.Registry.getHandleFromEvent(e);
22897     },
22898     
22899     /**
22900      * Called once drag threshold has been reached to initialize the proxy element. By default, it clones the
22901      * this.dragData.ddel
22902      * @param {Number} x The x position of the click on the dragged object
22903      * @param {Number} y The y position of the click on the dragged object
22904      * @return {Boolean} true to continue the drag, false to cancel
22905      */
22906     onInitDrag : function(x, y){
22907         this.proxy.update(this.dragData.ddel.cloneNode(true));
22908         this.onStartDrag(x, y);
22909         return true;
22910     },
22911     
22912     /**
22913      * Called after a repair of an invalid drop. By default, highlights this.dragData.ddel 
22914      */
22915     afterRepair : function(){
22916         if(Roo.enableFx){
22917             Roo.Element.fly(this.dragData.ddel).highlight(this.hlColor || "c3daf9");
22918         }
22919         this.dragging = false;
22920     },
22921
22922     /**
22923      * Called before a repair of an invalid drop to get the XY to animate to. By default returns
22924      * the XY of this.dragData.ddel
22925      * @param {EventObject} e The mouse up event
22926      * @return {Array} The xy location (e.g. [100, 200])
22927      */
22928     getRepairXY : function(e){
22929         return Roo.Element.fly(this.dragData.ddel).getXY();  
22930     }
22931 });/*
22932  * Based on:
22933  * Ext JS Library 1.1.1
22934  * Copyright(c) 2006-2007, Ext JS, LLC.
22935  *
22936  * Originally Released Under LGPL - original licence link has changed is not relivant.
22937  *
22938  * Fork - LGPL
22939  * <script type="text/javascript">
22940  */
22941 /**
22942  * @class Roo.dd.DropZone
22943  * @extends Roo.dd.DropTarget
22944  * This class provides a container DD instance that proxies for multiple child node targets.<br />
22945  * By default, this class requires that child nodes accepting drop are registered with {@link Roo.dd.Registry}.
22946  * @constructor
22947  * @param {String/HTMLElement/Element} el The container element
22948  * @param {Object} config
22949  */
22950 Roo.dd.DropZone = function(el, config){
22951     Roo.dd.DropZone.superclass.constructor.call(this, el, config);
22952 };
22953
22954 Roo.extend(Roo.dd.DropZone, Roo.dd.DropTarget, {
22955     /**
22956      * Returns a custom data object associated with the DOM node that is the target of the event.  By default
22957      * this looks up the event target in the {@link Roo.dd.Registry}, although you can override this method to
22958      * provide your own custom lookup.
22959      * @param {Event} e The event
22960      * @return {Object} data The custom data
22961      */
22962     getTargetFromEvent : function(e){
22963         return Roo.dd.Registry.getTargetFromEvent(e);
22964     },
22965
22966     /**
22967      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has entered a drop node
22968      * that it has registered.  This method has no default implementation and should be overridden to provide
22969      * node-specific processing if necessary.
22970      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from 
22971      * {@link #getTargetFromEvent} for this node)
22972      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22973      * @param {Event} e The event
22974      * @param {Object} data An object containing arbitrary data supplied by the drag source
22975      */
22976     onNodeEnter : function(n, dd, e, data){
22977         
22978     },
22979
22980     /**
22981      * Called internally while the DropZone determines that a {@link Roo.dd.DragSource} is over a drop node
22982      * that it has registered.  The default implementation returns this.dropNotAllowed, so it should be
22983      * overridden to provide the proper feedback.
22984      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
22985      * {@link #getTargetFromEvent} for this node)
22986      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22987      * @param {Event} e The event
22988      * @param {Object} data An object containing arbitrary data supplied by the drag source
22989      * @return {String} status The CSS class that communicates the drop status back to the source so that the
22990      * underlying {@link Roo.dd.StatusProxy} can be updated
22991      */
22992     onNodeOver : function(n, dd, e, data){
22993         return this.dropAllowed;
22994     },
22995
22996     /**
22997      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dragged out of
22998      * the drop node without dropping.  This method has no default implementation and should be overridden to provide
22999      * node-specific processing if necessary.
23000      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
23001      * {@link #getTargetFromEvent} for this node)
23002      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
23003      * @param {Event} e The event
23004      * @param {Object} data An object containing arbitrary data supplied by the drag source
23005      */
23006     onNodeOut : function(n, dd, e, data){
23007         
23008     },
23009
23010     /**
23011      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dropped onto
23012      * the drop node.  The default implementation returns false, so it should be overridden to provide the
23013      * appropriate processing of the drop event and return true so that the drag source's repair action does not run.
23014      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
23015      * {@link #getTargetFromEvent} for this node)
23016      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
23017      * @param {Event} e The event
23018      * @param {Object} data An object containing arbitrary data supplied by the drag source
23019      * @return {Boolean} True if the drop was valid, else false
23020      */
23021     onNodeDrop : function(n, dd, e, data){
23022         return false;
23023     },
23024
23025     /**
23026      * Called internally while the DropZone determines that a {@link Roo.dd.DragSource} is being dragged over it,
23027      * but not over any of its registered drop nodes.  The default implementation returns this.dropNotAllowed, so
23028      * it should be overridden to provide the proper feedback if necessary.
23029      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
23030      * @param {Event} e The event
23031      * @param {Object} data An object containing arbitrary data supplied by the drag source
23032      * @return {String} status The CSS class that communicates the drop status back to the source so that the
23033      * underlying {@link Roo.dd.StatusProxy} can be updated
23034      */
23035     onContainerOver : function(dd, e, data){
23036         return this.dropNotAllowed;
23037     },
23038
23039     /**
23040      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dropped on it,
23041      * but not on any of its registered drop nodes.  The default implementation returns false, so it should be
23042      * overridden to provide the appropriate processing of the drop event if you need the drop zone itself to
23043      * be able to accept drops.  It should return true when valid so that the drag source's repair action does not run.
23044      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
23045      * @param {Event} e The event
23046      * @param {Object} data An object containing arbitrary data supplied by the drag source
23047      * @return {Boolean} True if the drop was valid, else false
23048      */
23049     onContainerDrop : function(dd, e, data){
23050         return false;
23051     },
23052
23053     /**
23054      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the source is now over
23055      * the zone.  The default implementation returns this.dropNotAllowed and expects that only registered drop
23056      * nodes can process drag drop operations, so if you need the drop zone itself to be able to process drops
23057      * you should override this method and provide a custom implementation.
23058      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
23059      * @param {Event} e The event
23060      * @param {Object} data An object containing arbitrary data supplied by the drag source
23061      * @return {String} status The CSS class that communicates the drop status back to the source so that the
23062      * underlying {@link Roo.dd.StatusProxy} can be updated
23063      */
23064     notifyEnter : function(dd, e, data){
23065         return this.dropNotAllowed;
23066     },
23067
23068     /**
23069      * The function a {@link Roo.dd.DragSource} calls continuously while it is being dragged over the drop zone.
23070      * This method will be called on every mouse movement while the drag source is over the drop zone.
23071      * It will call {@link #onNodeOver} while the drag source is over a registered node, and will also automatically
23072      * delegate to the appropriate node-specific methods as necessary when the drag source enters and exits
23073      * registered nodes ({@link #onNodeEnter}, {@link #onNodeOut}). If the drag source is not currently over a
23074      * registered node, it will call {@link #onContainerOver}.
23075      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
23076      * @param {Event} e The event
23077      * @param {Object} data An object containing arbitrary data supplied by the drag source
23078      * @return {String} status The CSS class that communicates the drop status back to the source so that the
23079      * underlying {@link Roo.dd.StatusProxy} can be updated
23080      */
23081     notifyOver : function(dd, e, data){
23082         var n = this.getTargetFromEvent(e);
23083         if(!n){ // not over valid drop target
23084             if(this.lastOverNode){
23085                 this.onNodeOut(this.lastOverNode, dd, e, data);
23086                 this.lastOverNode = null;
23087             }
23088             return this.onContainerOver(dd, e, data);
23089         }
23090         if(this.lastOverNode != n){
23091             if(this.lastOverNode){
23092                 this.onNodeOut(this.lastOverNode, dd, e, data);
23093             }
23094             this.onNodeEnter(n, dd, e, data);
23095             this.lastOverNode = n;
23096         }
23097         return this.onNodeOver(n, dd, e, data);
23098     },
23099
23100     /**
23101      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the source has been dragged
23102      * out of the zone without dropping.  If the drag source is currently over a registered node, the notification
23103      * will be delegated to {@link #onNodeOut} for node-specific handling, otherwise it will be ignored.
23104      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
23105      * @param {Event} e The event
23106      * @param {Object} data An object containing arbitrary data supplied by the drag zone
23107      */
23108     notifyOut : function(dd, e, data){
23109         if(this.lastOverNode){
23110             this.onNodeOut(this.lastOverNode, dd, e, data);
23111             this.lastOverNode = null;
23112         }
23113     },
23114
23115     /**
23116      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the dragged item has
23117      * been dropped on it.  The drag zone will look up the target node based on the event passed in, and if there
23118      * is a node registered for that event, it will delegate to {@link #onNodeDrop} for node-specific handling,
23119      * otherwise it will call {@link #onContainerDrop}.
23120      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
23121      * @param {Event} e The event
23122      * @param {Object} data An object containing arbitrary data supplied by the drag source
23123      * @return {Boolean} True if the drop was valid, else false
23124      */
23125     notifyDrop : function(dd, e, data){
23126         if(this.lastOverNode){
23127             this.onNodeOut(this.lastOverNode, dd, e, data);
23128             this.lastOverNode = null;
23129         }
23130         var n = this.getTargetFromEvent(e);
23131         return n ?
23132             this.onNodeDrop(n, dd, e, data) :
23133             this.onContainerDrop(dd, e, data);
23134     },
23135
23136     // private
23137     triggerCacheRefresh : function(){
23138         Roo.dd.DDM.refreshCache(this.groups);
23139     }  
23140 });/*
23141  * Based on:
23142  * Ext JS Library 1.1.1
23143  * Copyright(c) 2006-2007, Ext JS, LLC.
23144  *
23145  * Originally Released Under LGPL - original licence link has changed is not relivant.
23146  *
23147  * Fork - LGPL
23148  * <script type="text/javascript">
23149  */
23150
23151
23152 /**
23153  * @class Roo.data.SortTypes
23154  * @singleton
23155  * Defines the default sorting (casting?) comparison functions used when sorting data.
23156  */
23157 Roo.data.SortTypes = {
23158     /**
23159      * Default sort that does nothing
23160      * @param {Mixed} s The value being converted
23161      * @return {Mixed} The comparison value
23162      */
23163     none : function(s){
23164         return s;
23165     },
23166     
23167     /**
23168      * The regular expression used to strip tags
23169      * @type {RegExp}
23170      * @property
23171      */
23172     stripTagsRE : /<\/?[^>]+>/gi,
23173     
23174     /**
23175      * Strips all HTML tags to sort on text only
23176      * @param {Mixed} s The value being converted
23177      * @return {String} The comparison value
23178      */
23179     asText : function(s){
23180         return String(s).replace(this.stripTagsRE, "");
23181     },
23182     
23183     /**
23184      * Strips all HTML tags to sort on text only - Case insensitive
23185      * @param {Mixed} s The value being converted
23186      * @return {String} The comparison value
23187      */
23188     asUCText : function(s){
23189         return String(s).toUpperCase().replace(this.stripTagsRE, "");
23190     },
23191     
23192     /**
23193      * Case insensitive string
23194      * @param {Mixed} s The value being converted
23195      * @return {String} The comparison value
23196      */
23197     asUCString : function(s) {
23198         return String(s).toUpperCase();
23199     },
23200     
23201     /**
23202      * Date sorting
23203      * @param {Mixed} s The value being converted
23204      * @return {Number} The comparison value
23205      */
23206     asDate : function(s) {
23207         if(!s){
23208             return 0;
23209         }
23210         if(s instanceof Date){
23211             return s.getTime();
23212         }
23213         return Date.parse(String(s));
23214     },
23215     
23216     /**
23217      * Float sorting
23218      * @param {Mixed} s The value being converted
23219      * @return {Float} The comparison value
23220      */
23221     asFloat : function(s) {
23222         var val = parseFloat(String(s).replace(/,/g, ""));
23223         if(isNaN(val)) {
23224             val = 0;
23225         }
23226         return val;
23227     },
23228     
23229     /**
23230      * Integer sorting
23231      * @param {Mixed} s The value being converted
23232      * @return {Number} The comparison value
23233      */
23234     asInt : function(s) {
23235         var val = parseInt(String(s).replace(/,/g, ""));
23236         if(isNaN(val)) {
23237             val = 0;
23238         }
23239         return val;
23240     }
23241 };/*
23242  * Based on:
23243  * Ext JS Library 1.1.1
23244  * Copyright(c) 2006-2007, Ext JS, LLC.
23245  *
23246  * Originally Released Under LGPL - original licence link has changed is not relivant.
23247  *
23248  * Fork - LGPL
23249  * <script type="text/javascript">
23250  */
23251
23252 /**
23253 * @class Roo.data.Record
23254  * Instances of this class encapsulate both record <em>definition</em> information, and record
23255  * <em>value</em> information for use in {@link Roo.data.Store} objects, or any code which needs
23256  * to access Records cached in an {@link Roo.data.Store} object.<br>
23257  * <p>
23258  * Constructors for this class are generated by passing an Array of field definition objects to {@link #create}.
23259  * Instances are usually only created by {@link Roo.data.Reader} implementations when processing unformatted data
23260  * objects.<br>
23261  * <p>
23262  * Record objects generated by this constructor inherit all the methods of Roo.data.Record listed below.
23263  * @constructor
23264  * This constructor should not be used to create Record objects. Instead, use the constructor generated by
23265  * {@link #create}. The parameters are the same.
23266  * @param {Array} data An associative Array of data values keyed by the field name.
23267  * @param {Object} id (Optional) The id of the record. This id should be unique, and is used by the
23268  * {@link Roo.data.Store} object which owns the Record to index its collection of Records. If
23269  * not specified an integer id is generated.
23270  */
23271 Roo.data.Record = function(data, id){
23272     this.id = (id || id === 0) ? id : ++Roo.data.Record.AUTO_ID;
23273     this.data = data;
23274 };
23275
23276 /**
23277  * Generate a constructor for a specific record layout.
23278  * @param {Array} o An Array of field definition objects which specify field names, and optionally,
23279  * data types, and a mapping for an {@link Roo.data.Reader} to extract the field's value from a data object.
23280  * Each field definition object may contain the following properties: <ul>
23281  * <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,
23282  * for example the <em>dataIndex</em> property in column definition objects passed to {@link Roo.grid.ColumnModel}</p></li>
23283  * <li><b>mapping</b> : String<p style="margin-left:1em">(Optional) A path specification for use by the {@link Roo.data.Reader} implementation
23284  * that is creating the Record to access the data value from the data object. If an {@link Roo.data.JsonReader}
23285  * is being used, then this is a string containing the javascript expression to reference the data relative to 
23286  * the record item's root. If an {@link Roo.data.XmlReader} is being used, this is an {@link Roo.DomQuery} path
23287  * to the data item relative to the record element. If the mapping expression is the same as the field name,
23288  * this may be omitted.</p></li>
23289  * <li><b>type</b> : String<p style="margin-left:1em">(Optional) The data type for conversion to displayable value. Possible values are
23290  * <ul><li>auto (Default, implies no conversion)</li>
23291  * <li>string</li>
23292  * <li>int</li>
23293  * <li>float</li>
23294  * <li>boolean</li>
23295  * <li>date</li></ul></p></li>
23296  * <li><b>sortType</b> : Mixed<p style="margin-left:1em">(Optional) A member of {@link Roo.data.SortTypes}.</p></li>
23297  * <li><b>sortDir</b> : String<p style="margin-left:1em">(Optional) Initial direction to sort. "ASC" or "DESC"</p></li>
23298  * <li><b>convert</b> : Function<p style="margin-left:1em">(Optional) A function which converts the value provided
23299  * by the Reader into an object that will be stored in the Record. It is passed the
23300  * following parameters:<ul>
23301  * <li><b>v</b> : Mixed<p style="margin-left:1em">The data value as read by the Reader.</p></li>
23302  * </ul></p></li>
23303  * <li><b>dateFormat</b> : String<p style="margin-left:1em">(Optional) A format String for the Date.parseDate function.</p></li>
23304  * </ul>
23305  * <br>usage:<br><pre><code>
23306 var TopicRecord = Roo.data.Record.create(
23307     {name: 'title', mapping: 'topic_title'},
23308     {name: 'author', mapping: 'username'},
23309     {name: 'totalPosts', mapping: 'topic_replies', type: 'int'},
23310     {name: 'lastPost', mapping: 'post_time', type: 'date'},
23311     {name: 'lastPoster', mapping: 'user2'},
23312     {name: 'excerpt', mapping: 'post_text'}
23313 );
23314
23315 var myNewRecord = new TopicRecord({
23316     title: 'Do my job please',
23317     author: 'noobie',
23318     totalPosts: 1,
23319     lastPost: new Date(),
23320     lastPoster: 'Animal',
23321     excerpt: 'No way dude!'
23322 });
23323 myStore.add(myNewRecord);
23324 </code></pre>
23325  * @method create
23326  * @static
23327  */
23328 Roo.data.Record.create = function(o){
23329     var f = function(){
23330         f.superclass.constructor.apply(this, arguments);
23331     };
23332     Roo.extend(f, Roo.data.Record);
23333     var p = f.prototype;
23334     p.fields = new Roo.util.MixedCollection(false, function(field){
23335         return field.name;
23336     });
23337     for(var i = 0, len = o.length; i < len; i++){
23338         p.fields.add(new Roo.data.Field(o[i]));
23339     }
23340     f.getField = function(name){
23341         return p.fields.get(name);  
23342     };
23343     return f;
23344 };
23345
23346 Roo.data.Record.AUTO_ID = 1000;
23347 Roo.data.Record.EDIT = 'edit';
23348 Roo.data.Record.REJECT = 'reject';
23349 Roo.data.Record.COMMIT = 'commit';
23350
23351 Roo.data.Record.prototype = {
23352     /**
23353      * Readonly flag - true if this record has been modified.
23354      * @type Boolean
23355      */
23356     dirty : false,
23357     editing : false,
23358     error: null,
23359     modified: null,
23360
23361     // private
23362     join : function(store){
23363         this.store = store;
23364     },
23365
23366     /**
23367      * Set the named field to the specified value.
23368      * @param {String} name The name of the field to set.
23369      * @param {Object} value The value to set the field to.
23370      */
23371     set : function(name, value){
23372         if(this.data[name] == value){
23373             return;
23374         }
23375         this.dirty = true;
23376         if(!this.modified){
23377             this.modified = {};
23378         }
23379         if(typeof this.modified[name] == 'undefined'){
23380             this.modified[name] = this.data[name];
23381         }
23382         this.data[name] = value;
23383         if(!this.editing && this.store){
23384             this.store.afterEdit(this);
23385         }       
23386     },
23387
23388     /**
23389      * Get the value of the named field.
23390      * @param {String} name The name of the field to get the value of.
23391      * @return {Object} The value of the field.
23392      */
23393     get : function(name){
23394         return this.data[name]; 
23395     },
23396
23397     // private
23398     beginEdit : function(){
23399         this.editing = true;
23400         this.modified = {}; 
23401     },
23402
23403     // private
23404     cancelEdit : function(){
23405         this.editing = false;
23406         delete this.modified;
23407     },
23408
23409     // private
23410     endEdit : function(){
23411         this.editing = false;
23412         if(this.dirty && this.store){
23413             this.store.afterEdit(this);
23414         }
23415     },
23416
23417     /**
23418      * Usually called by the {@link Roo.data.Store} which owns the Record.
23419      * Rejects all changes made to the Record since either creation, or the last commit operation.
23420      * Modified fields are reverted to their original values.
23421      * <p>
23422      * Developers should subscribe to the {@link Roo.data.Store#update} event to have their code notified
23423      * of reject operations.
23424      */
23425     reject : function(){
23426         var m = this.modified;
23427         for(var n in m){
23428             if(typeof m[n] != "function"){
23429                 this.data[n] = m[n];
23430             }
23431         }
23432         this.dirty = false;
23433         delete this.modified;
23434         this.editing = false;
23435         if(this.store){
23436             this.store.afterReject(this);
23437         }
23438     },
23439
23440     /**
23441      * Usually called by the {@link Roo.data.Store} which owns the Record.
23442      * Commits all changes made to the Record since either creation, or the last commit operation.
23443      * <p>
23444      * Developers should subscribe to the {@link Roo.data.Store#update} event to have their code notified
23445      * of commit operations.
23446      */
23447     commit : function(){
23448         this.dirty = false;
23449         delete this.modified;
23450         this.editing = false;
23451         if(this.store){
23452             this.store.afterCommit(this);
23453         }
23454     },
23455
23456     // private
23457     hasError : function(){
23458         return this.error != null;
23459     },
23460
23461     // private
23462     clearError : function(){
23463         this.error = null;
23464     },
23465
23466     /**
23467      * Creates a copy of this record.
23468      * @param {String} id (optional) A new record id if you don't want to use this record's id
23469      * @return {Record}
23470      */
23471     copy : function(newId) {
23472         return new this.constructor(Roo.apply({}, this.data), newId || this.id);
23473     }
23474 };/*
23475  * Based on:
23476  * Ext JS Library 1.1.1
23477  * Copyright(c) 2006-2007, Ext JS, LLC.
23478  *
23479  * Originally Released Under LGPL - original licence link has changed is not relivant.
23480  *
23481  * Fork - LGPL
23482  * <script type="text/javascript">
23483  */
23484
23485
23486
23487 /**
23488  * @class Roo.data.Store
23489  * @extends Roo.util.Observable
23490  * The Store class encapsulates a client side cache of {@link Roo.data.Record} objects which provide input data
23491  * for widgets such as the Roo.grid.Grid, or the Roo.form.ComboBox.<br>
23492  * <p>
23493  * 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
23494  * has no knowledge of the format of the data returned by the Proxy.<br>
23495  * <p>
23496  * A Store object uses its configured implementation of {@link Roo.data.DataReader} to create {@link Roo.data.Record}
23497  * instances from the data object. These records are cached and made available through accessor functions.
23498  * @constructor
23499  * Creates a new Store.
23500  * @param {Object} config A config object containing the objects needed for the Store to access data,
23501  * and read the data into Records.
23502  */
23503 Roo.data.Store = function(config){
23504     this.data = new Roo.util.MixedCollection(false);
23505     this.data.getKey = function(o){
23506         return o.id;
23507     };
23508     this.baseParams = {};
23509     // private
23510     this.paramNames = {
23511         "start" : "start",
23512         "limit" : "limit",
23513         "sort" : "sort",
23514         "dir" : "dir",
23515         "multisort" : "_multisort"
23516     };
23517
23518     if(config && config.data){
23519         this.inlineData = config.data;
23520         delete config.data;
23521     }
23522
23523     Roo.apply(this, config);
23524     
23525     if(this.reader){ // reader passed
23526         this.reader = Roo.factory(this.reader, Roo.data);
23527         this.reader.xmodule = this.xmodule || false;
23528         if(!this.recordType){
23529             this.recordType = this.reader.recordType;
23530         }
23531         if(this.reader.onMetaChange){
23532             this.reader.onMetaChange = this.onMetaChange.createDelegate(this);
23533         }
23534     }
23535
23536     if(this.recordType){
23537         this.fields = this.recordType.prototype.fields;
23538     }
23539     this.modified = [];
23540
23541     this.addEvents({
23542         /**
23543          * @event datachanged
23544          * Fires when the data cache has changed, and a widget which is using this Store
23545          * as a Record cache should refresh its view.
23546          * @param {Store} this
23547          */
23548         datachanged : true,
23549         /**
23550          * @event metachange
23551          * Fires when this store's reader provides new metadata (fields). This is currently only support for JsonReaders.
23552          * @param {Store} this
23553          * @param {Object} meta The JSON metadata
23554          */
23555         metachange : true,
23556         /**
23557          * @event add
23558          * Fires when Records have been added to the Store
23559          * @param {Store} this
23560          * @param {Roo.data.Record[]} records The array of Records added
23561          * @param {Number} index The index at which the record(s) were added
23562          */
23563         add : true,
23564         /**
23565          * @event remove
23566          * Fires when a Record has been removed from the Store
23567          * @param {Store} this
23568          * @param {Roo.data.Record} record The Record that was removed
23569          * @param {Number} index The index at which the record was removed
23570          */
23571         remove : true,
23572         /**
23573          * @event update
23574          * Fires when a Record has been updated
23575          * @param {Store} this
23576          * @param {Roo.data.Record} record The Record that was updated
23577          * @param {String} operation The update operation being performed.  Value may be one of:
23578          * <pre><code>
23579  Roo.data.Record.EDIT
23580  Roo.data.Record.REJECT
23581  Roo.data.Record.COMMIT
23582          * </code></pre>
23583          */
23584         update : true,
23585         /**
23586          * @event clear
23587          * Fires when the data cache has been cleared.
23588          * @param {Store} this
23589          */
23590         clear : true,
23591         /**
23592          * @event beforeload
23593          * Fires before a request is made for a new data object.  If the beforeload handler returns false
23594          * the load action will be canceled.
23595          * @param {Store} this
23596          * @param {Object} options The loading options that were specified (see {@link #load} for details)
23597          */
23598         beforeload : true,
23599         /**
23600          * @event beforeloadadd
23601          * Fires after a new set of Records has been loaded.
23602          * @param {Store} this
23603          * @param {Roo.data.Record[]} records The Records that were loaded
23604          * @param {Object} options The loading options that were specified (see {@link #load} for details)
23605          */
23606         beforeloadadd : true,
23607         /**
23608          * @event load
23609          * Fires after a new set of Records has been loaded, before they are added to the store.
23610          * @param {Store} this
23611          * @param {Roo.data.Record[]} records The Records that were loaded
23612          * @param {Object} options The loading options that were specified (see {@link #load} for details)
23613          * @params {Object} return from reader
23614          */
23615         load : true,
23616         /**
23617          * @event loadexception
23618          * Fires if an exception occurs in the Proxy during loading.
23619          * Called with the signature of the Proxy's "loadexception" event.
23620          * If you return Json { data: [] , success: false, .... } then this will be thrown with the following args
23621          * 
23622          * @param {Proxy} 
23623          * @param {Object} return from JsonData.reader() - success, totalRecords, records
23624          * @param {Object} load options 
23625          * @param {Object} jsonData from your request (normally this contains the Exception)
23626          */
23627         loadexception : true
23628     });
23629     
23630     if(this.proxy){
23631         this.proxy = Roo.factory(this.proxy, Roo.data);
23632         this.proxy.xmodule = this.xmodule || false;
23633         this.relayEvents(this.proxy,  ["loadexception"]);
23634     }
23635     this.sortToggle = {};
23636     this.sortOrder = []; // array of order of sorting - updated by grid if multisort is enabled.
23637
23638     Roo.data.Store.superclass.constructor.call(this);
23639
23640     if(this.inlineData){
23641         this.loadData(this.inlineData);
23642         delete this.inlineData;
23643     }
23644 };
23645
23646 Roo.extend(Roo.data.Store, Roo.util.Observable, {
23647      /**
23648     * @cfg {boolean} isLocal   flag if data is locally available (and can be always looked up
23649     * without a remote query - used by combo/forms at present.
23650     */
23651     
23652     /**
23653     * @cfg {Roo.data.DataProxy} proxy The Proxy object which provides access to a data object.
23654     */
23655     /**
23656     * @cfg {Array} data Inline data to be loaded when the store is initialized.
23657     */
23658     /**
23659     * @cfg {Roo.data.Reader} reader The Reader object which processes the data object and returns
23660     * an Array of Roo.data.record objects which are cached keyed by their <em>id</em> property.
23661     */
23662     /**
23663     * @cfg {Object} baseParams An object containing properties which are to be sent as parameters
23664     * on any HTTP request
23665     */
23666     /**
23667     * @cfg {Object} sortInfo A config object in the format: {field: "fieldName", direction: "ASC|DESC"}
23668     */
23669     /**
23670     * @cfg {Boolean} multiSort enable multi column sorting (sort is based on the order of columns, remote only at present)
23671     */
23672     multiSort: false,
23673     /**
23674     * @cfg {boolean} remoteSort True if sorting is to be handled by requesting the Proxy to provide a refreshed
23675     * version of the data object in sorted order, as opposed to sorting the Record cache in place (defaults to false).
23676     */
23677     remoteSort : false,
23678
23679     /**
23680     * @cfg {boolean} pruneModifiedRecords True to clear all modified record information each time the store is
23681      * loaded or when a record is removed. (defaults to false).
23682     */
23683     pruneModifiedRecords : false,
23684
23685     // private
23686     lastOptions : null,
23687
23688     /**
23689      * Add Records to the Store and fires the add event.
23690      * @param {Roo.data.Record[]} records An Array of Roo.data.Record objects to add to the cache.
23691      */
23692     add : function(records){
23693         records = [].concat(records);
23694         for(var i = 0, len = records.length; i < len; i++){
23695             records[i].join(this);
23696         }
23697         var index = this.data.length;
23698         this.data.addAll(records);
23699         this.fireEvent("add", this, records, index);
23700     },
23701
23702     /**
23703      * Remove a Record from the Store and fires the remove event.
23704      * @param {Ext.data.Record} record The Roo.data.Record object to remove from the cache.
23705      */
23706     remove : function(record){
23707         var index = this.data.indexOf(record);
23708         this.data.removeAt(index);
23709  
23710         if(this.pruneModifiedRecords){
23711             this.modified.remove(record);
23712         }
23713         this.fireEvent("remove", this, record, index);
23714     },
23715
23716     /**
23717      * Remove all Records from the Store and fires the clear event.
23718      */
23719     removeAll : function(){
23720         this.data.clear();
23721         if(this.pruneModifiedRecords){
23722             this.modified = [];
23723         }
23724         this.fireEvent("clear", this);
23725     },
23726
23727     /**
23728      * Inserts Records to the Store at the given index and fires the add event.
23729      * @param {Number} index The start index at which to insert the passed Records.
23730      * @param {Roo.data.Record[]} records An Array of Roo.data.Record objects to add to the cache.
23731      */
23732     insert : function(index, records){
23733         records = [].concat(records);
23734         for(var i = 0, len = records.length; i < len; i++){
23735             this.data.insert(index, records[i]);
23736             records[i].join(this);
23737         }
23738         this.fireEvent("add", this, records, index);
23739     },
23740
23741     /**
23742      * Get the index within the cache of the passed Record.
23743      * @param {Roo.data.Record} record The Roo.data.Record object to to find.
23744      * @return {Number} The index of the passed Record. Returns -1 if not found.
23745      */
23746     indexOf : function(record){
23747         return this.data.indexOf(record);
23748     },
23749
23750     /**
23751      * Get the index within the cache of the Record with the passed id.
23752      * @param {String} id The id of the Record to find.
23753      * @return {Number} The index of the Record. Returns -1 if not found.
23754      */
23755     indexOfId : function(id){
23756         return this.data.indexOfKey(id);
23757     },
23758
23759     /**
23760      * Get the Record with the specified id.
23761      * @param {String} id The id of the Record to find.
23762      * @return {Roo.data.Record} The Record with the passed id. Returns undefined if not found.
23763      */
23764     getById : function(id){
23765         return this.data.key(id);
23766     },
23767
23768     /**
23769      * Get the Record at the specified index.
23770      * @param {Number} index The index of the Record to find.
23771      * @return {Roo.data.Record} The Record at the passed index. Returns undefined if not found.
23772      */
23773     getAt : function(index){
23774         return this.data.itemAt(index);
23775     },
23776
23777     /**
23778      * Returns a range of Records between specified indices.
23779      * @param {Number} startIndex (optional) The starting index (defaults to 0)
23780      * @param {Number} endIndex (optional) The ending index (defaults to the last Record in the Store)
23781      * @return {Roo.data.Record[]} An array of Records
23782      */
23783     getRange : function(start, end){
23784         return this.data.getRange(start, end);
23785     },
23786
23787     // private
23788     storeOptions : function(o){
23789         o = Roo.apply({}, o);
23790         delete o.callback;
23791         delete o.scope;
23792         this.lastOptions = o;
23793     },
23794
23795     /**
23796      * Loads the Record cache from the configured Proxy using the configured Reader.
23797      * <p>
23798      * If using remote paging, then the first load call must specify the <em>start</em>
23799      * and <em>limit</em> properties in the options.params property to establish the initial
23800      * position within the dataset, and the number of Records to cache on each read from the Proxy.
23801      * <p>
23802      * <strong>It is important to note that for remote data sources, loading is asynchronous,
23803      * and this call will return before the new data has been loaded. Perform any post-processing
23804      * in a callback function, or in a "load" event handler.</strong>
23805      * <p>
23806      * @param {Object} options An object containing properties which control loading options:<ul>
23807      * <li>params {Object} An object containing properties to pass as HTTP parameters to a remote data source.</li>
23808      * <li>callback {Function} A function to be called after the Records have been loaded. The callback is
23809      * passed the following arguments:<ul>
23810      * <li>r : Roo.data.Record[]</li>
23811      * <li>options: Options object from the load call</li>
23812      * <li>success: Boolean success indicator</li></ul></li>
23813      * <li>scope {Object} Scope with which to call the callback (defaults to the Store object)</li>
23814      * <li>add {Boolean} indicator to append loaded records rather than replace the current cache.</li>
23815      * </ul>
23816      */
23817     load : function(options){
23818         options = options || {};
23819         if(this.fireEvent("beforeload", this, options) !== false){
23820             this.storeOptions(options);
23821             var p = Roo.apply(options.params || {}, this.baseParams);
23822             // if meta was not loaded from remote source.. try requesting it.
23823             if (!this.reader.metaFromRemote) {
23824                 p._requestMeta = 1;
23825             }
23826             if(this.sortInfo && this.remoteSort){
23827                 var pn = this.paramNames;
23828                 p[pn["sort"]] = this.sortInfo.field;
23829                 p[pn["dir"]] = this.sortInfo.direction;
23830             }
23831             if (this.multiSort) {
23832                 var pn = this.paramNames;
23833                 p[pn["multisort"]] = Roo.encode( { sort : this.sortToggle, order: this.sortOrder });
23834             }
23835             
23836             this.proxy.load(p, this.reader, this.loadRecords, this, options);
23837         }
23838     },
23839
23840     /**
23841      * Reloads the Record cache from the configured Proxy using the configured Reader and
23842      * the options from the last load operation performed.
23843      * @param {Object} options (optional) An object containing properties which may override the options
23844      * used in the last load operation. See {@link #load} for details (defaults to null, in which case
23845      * the most recently used options are reused).
23846      */
23847     reload : function(options){
23848         this.load(Roo.applyIf(options||{}, this.lastOptions));
23849     },
23850
23851     // private
23852     // Called as a callback by the Reader during a load operation.
23853     loadRecords : function(o, options, success){
23854         if(!o || success === false){
23855             if(success !== false){
23856                 this.fireEvent("load", this, [], options, o);
23857             }
23858             if(options.callback){
23859                 options.callback.call(options.scope || this, [], options, false);
23860             }
23861             return;
23862         }
23863         // if data returned failure - throw an exception.
23864         if (o.success === false) {
23865             // show a message if no listener is registered.
23866             if (!this.hasListener('loadexception') && typeof(o.raw.errorMsg) != 'undefined') {
23867                     Roo.MessageBox.alert("Error loading",o.raw.errorMsg);
23868             }
23869             // loadmask wil be hooked into this..
23870             this.fireEvent("loadexception", this, o, options, o.raw.errorMsg);
23871             return;
23872         }
23873         var r = o.records, t = o.totalRecords || r.length;
23874         
23875         this.fireEvent("beforeloadadd", this, r, options, o);
23876         
23877         if(!options || options.add !== true){
23878             if(this.pruneModifiedRecords){
23879                 this.modified = [];
23880             }
23881             for(var i = 0, len = r.length; i < len; i++){
23882                 r[i].join(this);
23883             }
23884             if(this.snapshot){
23885                 this.data = this.snapshot;
23886                 delete this.snapshot;
23887             }
23888             this.data.clear();
23889             this.data.addAll(r);
23890             this.totalLength = t;
23891             this.applySort();
23892             this.fireEvent("datachanged", this);
23893         }else{
23894             this.totalLength = Math.max(t, this.data.length+r.length);
23895             this.add(r);
23896         }
23897         
23898         if(this.parent && !Roo.isIOS && !this.useNativeIOS && this.parent.emptyTitle.length) {
23899                 
23900             var e = new Roo.data.Record({});
23901
23902             e.set(this.parent.displayField, this.parent.emptyTitle);
23903             e.set(this.parent.valueField, '');
23904
23905             this.insert(0, e);
23906         }
23907             
23908         this.fireEvent("load", this, r, options, o);
23909         if(options.callback){
23910             options.callback.call(options.scope || this, r, options, true);
23911         }
23912     },
23913
23914
23915     /**
23916      * Loads data from a passed data block. A Reader which understands the format of the data
23917      * must have been configured in the constructor.
23918      * @param {Object} data The data block from which to read the Records.  The format of the data expected
23919      * is dependent on the type of Reader that is configured and should correspond to that Reader's readRecords parameter.
23920      * @param {Boolean} append (Optional) True to append the new Records rather than replace the existing cache.
23921      */
23922     loadData : function(o, append){
23923         var r = this.reader.readRecords(o);
23924         this.loadRecords(r, {add: append}, true);
23925     },
23926     
23927      /**
23928      * using 'cn' the nested child reader read the child array into it's child stores.
23929      * @param {Object} rec The record with a 'children array
23930      */
23931     loadDataFromChildren : function(rec)
23932     {
23933         this.loadData(this.reader.toLoadData(rec));
23934     },
23935     
23936
23937     /**
23938      * Gets the number of cached records.
23939      * <p>
23940      * <em>If using paging, this may not be the total size of the dataset. If the data object
23941      * used by the Reader contains the dataset size, then the getTotalCount() function returns
23942      * the data set size</em>
23943      */
23944     getCount : function(){
23945         return this.data.length || 0;
23946     },
23947
23948     /**
23949      * Gets the total number of records in the dataset as returned by the server.
23950      * <p>
23951      * <em>If using paging, for this to be accurate, the data object used by the Reader must contain
23952      * the dataset size</em>
23953      */
23954     getTotalCount : function(){
23955         return this.totalLength || 0;
23956     },
23957
23958     /**
23959      * Returns the sort state of the Store as an object with two properties:
23960      * <pre><code>
23961  field {String} The name of the field by which the Records are sorted
23962  direction {String} The sort order, "ASC" or "DESC"
23963      * </code></pre>
23964      */
23965     getSortState : function(){
23966         return this.sortInfo;
23967     },
23968
23969     // private
23970     applySort : function(){
23971         if(this.sortInfo && !this.remoteSort){
23972             var s = this.sortInfo, f = s.field;
23973             var st = this.fields.get(f).sortType;
23974             var fn = function(r1, r2){
23975                 var v1 = st(r1.data[f]), v2 = st(r2.data[f]);
23976                 return v1 > v2 ? 1 : (v1 < v2 ? -1 : 0);
23977             };
23978             this.data.sort(s.direction, fn);
23979             if(this.snapshot && this.snapshot != this.data){
23980                 this.snapshot.sort(s.direction, fn);
23981             }
23982         }
23983     },
23984
23985     /**
23986      * Sets the default sort column and order to be used by the next load operation.
23987      * @param {String} fieldName The name of the field to sort by.
23988      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
23989      */
23990     setDefaultSort : function(field, dir){
23991         this.sortInfo = {field: field, direction: dir ? dir.toUpperCase() : "ASC"};
23992     },
23993
23994     /**
23995      * Sort the Records.
23996      * If remote sorting is used, the sort is performed on the server, and the cache is
23997      * reloaded. If local sorting is used, the cache is sorted internally.
23998      * @param {String} fieldName The name of the field to sort by.
23999      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
24000      */
24001     sort : function(fieldName, dir){
24002         var f = this.fields.get(fieldName);
24003         if(!dir){
24004             this.sortToggle[f.name] = this.sortToggle[f.name] || f.sortDir;
24005             
24006             if(this.multiSort || (this.sortInfo && this.sortInfo.field == f.name) ){ // toggle sort dir
24007                 dir = (this.sortToggle[f.name] || "ASC").toggle("ASC", "DESC");
24008             }else{
24009                 dir = f.sortDir;
24010             }
24011         }
24012         this.sortToggle[f.name] = dir;
24013         this.sortInfo = {field: f.name, direction: dir};
24014         if(!this.remoteSort){
24015             this.applySort();
24016             this.fireEvent("datachanged", this);
24017         }else{
24018             this.load(this.lastOptions);
24019         }
24020     },
24021
24022     /**
24023      * Calls the specified function for each of the Records in the cache.
24024      * @param {Function} fn The function to call. The Record is passed as the first parameter.
24025      * Returning <em>false</em> aborts and exits the iteration.
24026      * @param {Object} scope (optional) The scope in which to call the function (defaults to the Record).
24027      */
24028     each : function(fn, scope){
24029         this.data.each(fn, scope);
24030     },
24031
24032     /**
24033      * Gets all records modified since the last commit.  Modified records are persisted across load operations
24034      * (e.g., during paging).
24035      * @return {Roo.data.Record[]} An array of Records containing outstanding modifications.
24036      */
24037     getModifiedRecords : function(){
24038         return this.modified;
24039     },
24040
24041     // private
24042     createFilterFn : function(property, value, anyMatch){
24043         if(!value.exec){ // not a regex
24044             value = String(value);
24045             if(value.length == 0){
24046                 return false;
24047             }
24048             value = new RegExp((anyMatch === true ? '' : '^') + Roo.escapeRe(value), "i");
24049         }
24050         return function(r){
24051             return value.test(r.data[property]);
24052         };
24053     },
24054
24055     /**
24056      * Sums the value of <i>property</i> for each record between start and end and returns the result.
24057      * @param {String} property A field on your records
24058      * @param {Number} start The record index to start at (defaults to 0)
24059      * @param {Number} end The last record index to include (defaults to length - 1)
24060      * @return {Number} The sum
24061      */
24062     sum : function(property, start, end){
24063         var rs = this.data.items, v = 0;
24064         start = start || 0;
24065         end = (end || end === 0) ? end : rs.length-1;
24066
24067         for(var i = start; i <= end; i++){
24068             v += (rs[i].data[property] || 0);
24069         }
24070         return v;
24071     },
24072
24073     /**
24074      * Filter the records by a specified property.
24075      * @param {String} field A field on your records
24076      * @param {String/RegExp} value Either a string that the field
24077      * should start with or a RegExp to test against the field
24078      * @param {Boolean} anyMatch True to match any part not just the beginning
24079      */
24080     filter : function(property, value, anyMatch){
24081         var fn = this.createFilterFn(property, value, anyMatch);
24082         return fn ? this.filterBy(fn) : this.clearFilter();
24083     },
24084
24085     /**
24086      * Filter by a function. The specified function will be called with each
24087      * record in this data source. If the function returns true the record is included,
24088      * otherwise it is filtered.
24089      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
24090      * @param {Object} scope (optional) The scope of the function (defaults to this)
24091      */
24092     filterBy : function(fn, scope){
24093         this.snapshot = this.snapshot || this.data;
24094         this.data = this.queryBy(fn, scope||this);
24095         this.fireEvent("datachanged", this);
24096     },
24097
24098     /**
24099      * Query the records by a specified property.
24100      * @param {String} field A field on your records
24101      * @param {String/RegExp} value Either a string that the field
24102      * should start with or a RegExp to test against the field
24103      * @param {Boolean} anyMatch True to match any part not just the beginning
24104      * @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
24105      */
24106     query : function(property, value, anyMatch){
24107         var fn = this.createFilterFn(property, value, anyMatch);
24108         return fn ? this.queryBy(fn) : this.data.clone();
24109     },
24110
24111     /**
24112      * Query by a function. The specified function will be called with each
24113      * record in this data source. If the function returns true the record is included
24114      * in the results.
24115      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
24116      * @param {Object} scope (optional) The scope of the function (defaults to this)
24117       @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
24118      **/
24119     queryBy : function(fn, scope){
24120         var data = this.snapshot || this.data;
24121         return data.filterBy(fn, scope||this);
24122     },
24123
24124     /**
24125      * Collects unique values for a particular dataIndex from this store.
24126      * @param {String} dataIndex The property to collect
24127      * @param {Boolean} allowNull (optional) Pass true to allow null, undefined or empty string values
24128      * @param {Boolean} bypassFilter (optional) Pass true to collect from all records, even ones which are filtered
24129      * @return {Array} An array of the unique values
24130      **/
24131     collect : function(dataIndex, allowNull, bypassFilter){
24132         var d = (bypassFilter === true && this.snapshot) ?
24133                 this.snapshot.items : this.data.items;
24134         var v, sv, r = [], l = {};
24135         for(var i = 0, len = d.length; i < len; i++){
24136             v = d[i].data[dataIndex];
24137             sv = String(v);
24138             if((allowNull || !Roo.isEmpty(v)) && !l[sv]){
24139                 l[sv] = true;
24140                 r[r.length] = v;
24141             }
24142         }
24143         return r;
24144     },
24145
24146     /**
24147      * Revert to a view of the Record cache with no filtering applied.
24148      * @param {Boolean} suppressEvent If true the filter is cleared silently without notifying listeners
24149      */
24150     clearFilter : function(suppressEvent){
24151         if(this.snapshot && this.snapshot != this.data){
24152             this.data = this.snapshot;
24153             delete this.snapshot;
24154             if(suppressEvent !== true){
24155                 this.fireEvent("datachanged", this);
24156             }
24157         }
24158     },
24159
24160     // private
24161     afterEdit : function(record){
24162         if(this.modified.indexOf(record) == -1){
24163             this.modified.push(record);
24164         }
24165         this.fireEvent("update", this, record, Roo.data.Record.EDIT);
24166     },
24167     
24168     // private
24169     afterReject : function(record){
24170         this.modified.remove(record);
24171         this.fireEvent("update", this, record, Roo.data.Record.REJECT);
24172     },
24173
24174     // private
24175     afterCommit : function(record){
24176         this.modified.remove(record);
24177         this.fireEvent("update", this, record, Roo.data.Record.COMMIT);
24178     },
24179
24180     /**
24181      * Commit all Records with outstanding changes. To handle updates for changes, subscribe to the
24182      * Store's "update" event, and perform updating when the third parameter is Roo.data.Record.COMMIT.
24183      */
24184     commitChanges : function(){
24185         var m = this.modified.slice(0);
24186         this.modified = [];
24187         for(var i = 0, len = m.length; i < len; i++){
24188             m[i].commit();
24189         }
24190     },
24191
24192     /**
24193      * Cancel outstanding changes on all changed records.
24194      */
24195     rejectChanges : function(){
24196         var m = this.modified.slice(0);
24197         this.modified = [];
24198         for(var i = 0, len = m.length; i < len; i++){
24199             m[i].reject();
24200         }
24201     },
24202
24203     onMetaChange : function(meta, rtype, o){
24204         this.recordType = rtype;
24205         this.fields = rtype.prototype.fields;
24206         delete this.snapshot;
24207         this.sortInfo = meta.sortInfo || this.sortInfo;
24208         this.modified = [];
24209         this.fireEvent('metachange', this, this.reader.meta);
24210     },
24211     
24212     moveIndex : function(data, type)
24213     {
24214         var index = this.indexOf(data);
24215         
24216         var newIndex = index + type;
24217         
24218         this.remove(data);
24219         
24220         this.insert(newIndex, data);
24221         
24222     }
24223 });/*
24224  * Based on:
24225  * Ext JS Library 1.1.1
24226  * Copyright(c) 2006-2007, Ext JS, LLC.
24227  *
24228  * Originally Released Under LGPL - original licence link has changed is not relivant.
24229  *
24230  * Fork - LGPL
24231  * <script type="text/javascript">
24232  */
24233
24234 /**
24235  * @class Roo.data.SimpleStore
24236  * @extends Roo.data.Store
24237  * Small helper class to make creating Stores from Array data easier.
24238  * @cfg {Number} id The array index of the record id. Leave blank to auto generate ids.
24239  * @cfg {Array} fields An array of field definition objects, or field name strings.
24240  * @cfg {Object} an existing reader (eg. copied from another store)
24241  * @cfg {Array} data The multi-dimensional array of data
24242  * @constructor
24243  * @param {Object} config
24244  */
24245 Roo.data.SimpleStore = function(config)
24246 {
24247     Roo.data.SimpleStore.superclass.constructor.call(this, {
24248         isLocal : true,
24249         reader: typeof(config.reader) != 'undefined' ? config.reader : new Roo.data.ArrayReader({
24250                 id: config.id
24251             },
24252             Roo.data.Record.create(config.fields)
24253         ),
24254         proxy : new Roo.data.MemoryProxy(config.data)
24255     });
24256     this.load();
24257 };
24258 Roo.extend(Roo.data.SimpleStore, Roo.data.Store);/*
24259  * Based on:
24260  * Ext JS Library 1.1.1
24261  * Copyright(c) 2006-2007, Ext JS, LLC.
24262  *
24263  * Originally Released Under LGPL - original licence link has changed is not relivant.
24264  *
24265  * Fork - LGPL
24266  * <script type="text/javascript">
24267  */
24268
24269 /**
24270 /**
24271  * @extends Roo.data.Store
24272  * @class Roo.data.JsonStore
24273  * Small helper class to make creating Stores for JSON data easier. <br/>
24274 <pre><code>
24275 var store = new Roo.data.JsonStore({
24276     url: 'get-images.php',
24277     root: 'images',
24278     fields: ['name', 'url', {name:'size', type: 'float'}, {name:'lastmod', type:'date'}]
24279 });
24280 </code></pre>
24281  * <b>Note: Although they are not listed, this class inherits all of the config options of Store,
24282  * JsonReader and HttpProxy (unless inline data is provided).</b>
24283  * @cfg {Array} fields An array of field definition objects, or field name strings.
24284  * @constructor
24285  * @param {Object} config
24286  */
24287 Roo.data.JsonStore = function(c){
24288     Roo.data.JsonStore.superclass.constructor.call(this, Roo.apply(c, {
24289         proxy: !c.data ? new Roo.data.HttpProxy({url: c.url}) : undefined,
24290         reader: new Roo.data.JsonReader(c, c.fields)
24291     }));
24292 };
24293 Roo.extend(Roo.data.JsonStore, Roo.data.Store);/*
24294  * Based on:
24295  * Ext JS Library 1.1.1
24296  * Copyright(c) 2006-2007, Ext JS, LLC.
24297  *
24298  * Originally Released Under LGPL - original licence link has changed is not relivant.
24299  *
24300  * Fork - LGPL
24301  * <script type="text/javascript">
24302  */
24303
24304  
24305 Roo.data.Field = function(config){
24306     if(typeof config == "string"){
24307         config = {name: config};
24308     }
24309     Roo.apply(this, config);
24310     
24311     if(!this.type){
24312         this.type = "auto";
24313     }
24314     
24315     var st = Roo.data.SortTypes;
24316     // named sortTypes are supported, here we look them up
24317     if(typeof this.sortType == "string"){
24318         this.sortType = st[this.sortType];
24319     }
24320     
24321     // set default sortType for strings and dates
24322     if(!this.sortType){
24323         switch(this.type){
24324             case "string":
24325                 this.sortType = st.asUCString;
24326                 break;
24327             case "date":
24328                 this.sortType = st.asDate;
24329                 break;
24330             default:
24331                 this.sortType = st.none;
24332         }
24333     }
24334
24335     // define once
24336     var stripRe = /[\$,%]/g;
24337
24338     // prebuilt conversion function for this field, instead of
24339     // switching every time we're reading a value
24340     if(!this.convert){
24341         var cv, dateFormat = this.dateFormat;
24342         switch(this.type){
24343             case "":
24344             case "auto":
24345             case undefined:
24346                 cv = function(v){ return v; };
24347                 break;
24348             case "string":
24349                 cv = function(v){ return (v === undefined || v === null) ? '' : String(v); };
24350                 break;
24351             case "int":
24352                 cv = function(v){
24353                     return v !== undefined && v !== null && v !== '' ?
24354                            parseInt(String(v).replace(stripRe, ""), 10) : '';
24355                     };
24356                 break;
24357             case "float":
24358                 cv = function(v){
24359                     return v !== undefined && v !== null && v !== '' ?
24360                            parseFloat(String(v).replace(stripRe, ""), 10) : ''; 
24361                     };
24362                 break;
24363             case "bool":
24364             case "boolean":
24365                 cv = function(v){ return v === true || v === "true" || v == 1; };
24366                 break;
24367             case "date":
24368                 cv = function(v){
24369                     if(!v){
24370                         return '';
24371                     }
24372                     if(v instanceof Date){
24373                         return v;
24374                     }
24375                     if(dateFormat){
24376                         if(dateFormat == "timestamp"){
24377                             return new Date(v*1000);
24378                         }
24379                         return Date.parseDate(v, dateFormat);
24380                     }
24381                     var parsed = Date.parse(v);
24382                     return parsed ? new Date(parsed) : null;
24383                 };
24384              break;
24385             
24386         }
24387         this.convert = cv;
24388     }
24389 };
24390
24391 Roo.data.Field.prototype = {
24392     dateFormat: null,
24393     defaultValue: "",
24394     mapping: null,
24395     sortType : null,
24396     sortDir : "ASC"
24397 };/*
24398  * Based on:
24399  * Ext JS Library 1.1.1
24400  * Copyright(c) 2006-2007, Ext JS, LLC.
24401  *
24402  * Originally Released Under LGPL - original licence link has changed is not relivant.
24403  *
24404  * Fork - LGPL
24405  * <script type="text/javascript">
24406  */
24407  
24408 // Base class for reading structured data from a data source.  This class is intended to be
24409 // extended (see ArrayReader, JsonReader and XmlReader) and should not be created directly.
24410
24411 /**
24412  * @class Roo.data.DataReader
24413  * Base class for reading structured data from a data source.  This class is intended to be
24414  * extended (see {Roo.data.ArrayReader}, {Roo.data.JsonReader} and {Roo.data.XmlReader}) and should not be created directly.
24415  */
24416
24417 Roo.data.DataReader = function(meta, recordType){
24418     
24419     this.meta = meta;
24420     
24421     this.recordType = recordType instanceof Array ? 
24422         Roo.data.Record.create(recordType) : recordType;
24423 };
24424
24425 Roo.data.DataReader.prototype = {
24426     
24427     
24428     readerType : 'Data',
24429      /**
24430      * Create an empty record
24431      * @param {Object} data (optional) - overlay some values
24432      * @return {Roo.data.Record} record created.
24433      */
24434     newRow :  function(d) {
24435         var da =  {};
24436         this.recordType.prototype.fields.each(function(c) {
24437             switch( c.type) {
24438                 case 'int' : da[c.name] = 0; break;
24439                 case 'date' : da[c.name] = new Date(); break;
24440                 case 'float' : da[c.name] = 0.0; break;
24441                 case 'boolean' : da[c.name] = false; break;
24442                 default : da[c.name] = ""; break;
24443             }
24444             
24445         });
24446         return new this.recordType(Roo.apply(da, d));
24447     }
24448     
24449     
24450 };/*
24451  * Based on:
24452  * Ext JS Library 1.1.1
24453  * Copyright(c) 2006-2007, Ext JS, LLC.
24454  *
24455  * Originally Released Under LGPL - original licence link has changed is not relivant.
24456  *
24457  * Fork - LGPL
24458  * <script type="text/javascript">
24459  */
24460
24461 /**
24462  * @class Roo.data.DataProxy
24463  * @extends Roo.data.Observable
24464  * This class is an abstract base class for implementations which provide retrieval of
24465  * unformatted data objects.<br>
24466  * <p>
24467  * DataProxy implementations are usually used in conjunction with an implementation of Roo.data.DataReader
24468  * (of the appropriate type which knows how to parse the data object) to provide a block of
24469  * {@link Roo.data.Records} to an {@link Roo.data.Store}.<br>
24470  * <p>
24471  * Custom implementations must implement the load method as described in
24472  * {@link Roo.data.HttpProxy#load}.
24473  */
24474 Roo.data.DataProxy = function(){
24475     this.addEvents({
24476         /**
24477          * @event beforeload
24478          * Fires before a network request is made to retrieve a data object.
24479          * @param {Object} This DataProxy object.
24480          * @param {Object} params The params parameter to the load function.
24481          */
24482         beforeload : true,
24483         /**
24484          * @event load
24485          * Fires before the load method's callback is called.
24486          * @param {Object} This DataProxy object.
24487          * @param {Object} o The data object.
24488          * @param {Object} arg The callback argument object passed to the load function.
24489          */
24490         load : true,
24491         /**
24492          * @event loadexception
24493          * Fires if an Exception occurs during data retrieval.
24494          * @param {Object} This DataProxy object.
24495          * @param {Object} o The data object.
24496          * @param {Object} arg The callback argument object passed to the load function.
24497          * @param {Object} e The Exception.
24498          */
24499         loadexception : true
24500     });
24501     Roo.data.DataProxy.superclass.constructor.call(this);
24502 };
24503
24504 Roo.extend(Roo.data.DataProxy, Roo.util.Observable);
24505
24506     /**
24507      * @cfg {void} listeners (Not available) Constructor blocks listeners from being set
24508      */
24509 /*
24510  * Based on:
24511  * Ext JS Library 1.1.1
24512  * Copyright(c) 2006-2007, Ext JS, LLC.
24513  *
24514  * Originally Released Under LGPL - original licence link has changed is not relivant.
24515  *
24516  * Fork - LGPL
24517  * <script type="text/javascript">
24518  */
24519 /**
24520  * @class Roo.data.MemoryProxy
24521  * An implementation of Roo.data.DataProxy that simply passes the data specified in its constructor
24522  * to the Reader when its load method is called.
24523  * @constructor
24524  * @param {Object} data The data object which the Reader uses to construct a block of Roo.data.Records.
24525  */
24526 Roo.data.MemoryProxy = function(data){
24527     if (data.data) {
24528         data = data.data;
24529     }
24530     Roo.data.MemoryProxy.superclass.constructor.call(this);
24531     this.data = data;
24532 };
24533
24534 Roo.extend(Roo.data.MemoryProxy, Roo.data.DataProxy, {
24535     
24536     /**
24537      * Load data from the requested source (in this case an in-memory
24538      * data object passed to the constructor), read the data object into
24539      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
24540      * process that block using the passed callback.
24541      * @param {Object} params This parameter is not used by the MemoryProxy class.
24542      * @param {Roo.data.DataReader} reader The Reader object which converts the data
24543      * object into a block of Roo.data.Records.
24544      * @param {Function} callback The function into which to pass the block of Roo.data.records.
24545      * The function must be passed <ul>
24546      * <li>The Record block object</li>
24547      * <li>The "arg" argument from the load function</li>
24548      * <li>A boolean success indicator</li>
24549      * </ul>
24550      * @param {Object} scope The scope in which to call the callback
24551      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
24552      */
24553     load : function(params, reader, callback, scope, arg){
24554         params = params || {};
24555         var result;
24556         try {
24557             result = reader.readRecords(params.data ? params.data :this.data);
24558         }catch(e){
24559             this.fireEvent("loadexception", this, arg, null, e);
24560             callback.call(scope, null, arg, false);
24561             return;
24562         }
24563         callback.call(scope, result, arg, true);
24564     },
24565     
24566     // private
24567     update : function(params, records){
24568         
24569     }
24570 });/*
24571  * Based on:
24572  * Ext JS Library 1.1.1
24573  * Copyright(c) 2006-2007, Ext JS, LLC.
24574  *
24575  * Originally Released Under LGPL - original licence link has changed is not relivant.
24576  *
24577  * Fork - LGPL
24578  * <script type="text/javascript">
24579  */
24580 /**
24581  * @class Roo.data.HttpProxy
24582  * @extends Roo.data.DataProxy
24583  * An implementation of {@link Roo.data.DataProxy} that reads a data object from an {@link Roo.data.Connection} object
24584  * configured to reference a certain URL.<br><br>
24585  * <p>
24586  * <em>Note that this class cannot be used to retrieve data from a domain other than the domain
24587  * from which the running page was served.<br><br>
24588  * <p>
24589  * For cross-domain access to remote data, use an {@link Roo.data.ScriptTagProxy}.</em><br><br>
24590  * <p>
24591  * Be aware that to enable the browser to parse an XML document, the server must set
24592  * the Content-Type header in the HTTP response to "text/xml".
24593  * @constructor
24594  * @param {Object} conn Connection config options to add to each request (e.g. {url: 'foo.php'} or
24595  * an {@link Roo.data.Connection} object.  If a Connection config is passed, the singleton {@link Roo.Ajax} object
24596  * will be used to make the request.
24597  */
24598 Roo.data.HttpProxy = function(conn){
24599     Roo.data.HttpProxy.superclass.constructor.call(this);
24600     // is conn a conn config or a real conn?
24601     this.conn = conn;
24602     this.useAjax = !conn || !conn.events;
24603   
24604 };
24605
24606 Roo.extend(Roo.data.HttpProxy, Roo.data.DataProxy, {
24607     // thse are take from connection...
24608     
24609     /**
24610      * @cfg {String} url (Optional) The default URL to be used for requests to the server. (defaults to undefined)
24611      */
24612     /**
24613      * @cfg {Object} extraParams (Optional) An object containing properties which are used as
24614      * extra parameters to each request made by this object. (defaults to undefined)
24615      */
24616     /**
24617      * @cfg {Object} defaultHeaders (Optional) An object containing request headers which are added
24618      *  to each request made by this object. (defaults to undefined)
24619      */
24620     /**
24621      * @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)
24622      */
24623     /**
24624      * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
24625      */
24626      /**
24627      * @cfg {Boolean} autoAbort (Optional) Whether this request should abort any pending requests. (defaults to false)
24628      * @type Boolean
24629      */
24630   
24631
24632     /**
24633      * @cfg {Boolean} disableCaching (Optional) True to add a unique cache-buster param to GET requests. (defaults to true)
24634      * @type Boolean
24635      */
24636     /**
24637      * Return the {@link Roo.data.Connection} object being used by this Proxy.
24638      * @return {Connection} The Connection object. This object may be used to subscribe to events on
24639      * a finer-grained basis than the DataProxy events.
24640      */
24641     getConnection : function(){
24642         return this.useAjax ? Roo.Ajax : this.conn;
24643     },
24644
24645     /**
24646      * Load data from the configured {@link Roo.data.Connection}, read the data object into
24647      * a block of Roo.data.Records using the passed {@link Roo.data.DataReader} implementation, and
24648      * process that block using the passed callback.
24649      * @param {Object} params An object containing properties which are to be used as HTTP parameters
24650      * for the request to the remote server.
24651      * @param {Roo.data.DataReader} reader The Reader object which converts the data
24652      * object into a block of Roo.data.Records.
24653      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
24654      * The function must be passed <ul>
24655      * <li>The Record block object</li>
24656      * <li>The "arg" argument from the load function</li>
24657      * <li>A boolean success indicator</li>
24658      * </ul>
24659      * @param {Object} scope The scope in which to call the callback
24660      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
24661      */
24662     load : function(params, reader, callback, scope, arg){
24663         if(this.fireEvent("beforeload", this, params) !== false){
24664             var  o = {
24665                 params : params || {},
24666                 request: {
24667                     callback : callback,
24668                     scope : scope,
24669                     arg : arg
24670                 },
24671                 reader: reader,
24672                 callback : this.loadResponse,
24673                 scope: this
24674             };
24675             if(this.useAjax){
24676                 Roo.applyIf(o, this.conn);
24677                 if(this.activeRequest){
24678                     Roo.Ajax.abort(this.activeRequest);
24679                 }
24680                 this.activeRequest = Roo.Ajax.request(o);
24681             }else{
24682                 this.conn.request(o);
24683             }
24684         }else{
24685             callback.call(scope||this, null, arg, false);
24686         }
24687     },
24688
24689     // private
24690     loadResponse : function(o, success, response){
24691         delete this.activeRequest;
24692         if(!success){
24693             this.fireEvent("loadexception", this, o, response);
24694             o.request.callback.call(o.request.scope, null, o.request.arg, false);
24695             return;
24696         }
24697         var result;
24698         try {
24699             result = o.reader.read(response);
24700         }catch(e){
24701             this.fireEvent("loadexception", this, o, response, e);
24702             o.request.callback.call(o.request.scope, null, o.request.arg, false);
24703             return;
24704         }
24705         
24706         this.fireEvent("load", this, o, o.request.arg);
24707         o.request.callback.call(o.request.scope, result, o.request.arg, true);
24708     },
24709
24710     // private
24711     update : function(dataSet){
24712
24713     },
24714
24715     // private
24716     updateResponse : function(dataSet){
24717
24718     }
24719 });/*
24720  * Based on:
24721  * Ext JS Library 1.1.1
24722  * Copyright(c) 2006-2007, Ext JS, LLC.
24723  *
24724  * Originally Released Under LGPL - original licence link has changed is not relivant.
24725  *
24726  * Fork - LGPL
24727  * <script type="text/javascript">
24728  */
24729
24730 /**
24731  * @class Roo.data.ScriptTagProxy
24732  * An implementation of Roo.data.DataProxy that reads a data object from a URL which may be in a domain
24733  * other than the originating domain of the running page.<br><br>
24734  * <p>
24735  * <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
24736  * of the running page, you must use this class, rather than DataProxy.</em><br><br>
24737  * <p>
24738  * The content passed back from a server resource requested by a ScriptTagProxy is executable JavaScript
24739  * source code that is used as the source inside a &lt;script> tag.<br><br>
24740  * <p>
24741  * In order for the browser to process the returned data, the server must wrap the data object
24742  * with a call to a callback function, the name of which is passed as a parameter by the ScriptTagProxy.
24743  * Below is a Java example for a servlet which returns data for either a ScriptTagProxy, or an HttpProxy
24744  * depending on whether the callback name was passed:
24745  * <p>
24746  * <pre><code>
24747 boolean scriptTag = false;
24748 String cb = request.getParameter("callback");
24749 if (cb != null) {
24750     scriptTag = true;
24751     response.setContentType("text/javascript");
24752 } else {
24753     response.setContentType("application/x-json");
24754 }
24755 Writer out = response.getWriter();
24756 if (scriptTag) {
24757     out.write(cb + "(");
24758 }
24759 out.print(dataBlock.toJsonString());
24760 if (scriptTag) {
24761     out.write(");");
24762 }
24763 </pre></code>
24764  *
24765  * @constructor
24766  * @param {Object} config A configuration object.
24767  */
24768 Roo.data.ScriptTagProxy = function(config){
24769     Roo.data.ScriptTagProxy.superclass.constructor.call(this);
24770     Roo.apply(this, config);
24771     this.head = document.getElementsByTagName("head")[0];
24772 };
24773
24774 Roo.data.ScriptTagProxy.TRANS_ID = 1000;
24775
24776 Roo.extend(Roo.data.ScriptTagProxy, Roo.data.DataProxy, {
24777     /**
24778      * @cfg {String} url The URL from which to request the data object.
24779      */
24780     /**
24781      * @cfg {Number} timeout (Optional) The number of milliseconds to wait for a response. Defaults to 30 seconds.
24782      */
24783     timeout : 30000,
24784     /**
24785      * @cfg {String} callbackParam (Optional) The name of the parameter to pass to the server which tells
24786      * the server the name of the callback function set up by the load call to process the returned data object.
24787      * Defaults to "callback".<p>The server-side processing must read this parameter value, and generate
24788      * javascript output which calls this named function passing the data object as its only parameter.
24789      */
24790     callbackParam : "callback",
24791     /**
24792      *  @cfg {Boolean} nocache (Optional) Defaults to true. Disable cacheing by adding a unique parameter
24793      * name to the request.
24794      */
24795     nocache : true,
24796
24797     /**
24798      * Load data from the configured URL, read the data object into
24799      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
24800      * process that block using the passed callback.
24801      * @param {Object} params An object containing properties which are to be used as HTTP parameters
24802      * for the request to the remote server.
24803      * @param {Roo.data.DataReader} reader The Reader object which converts the data
24804      * object into a block of Roo.data.Records.
24805      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
24806      * The function must be passed <ul>
24807      * <li>The Record block object</li>
24808      * <li>The "arg" argument from the load function</li>
24809      * <li>A boolean success indicator</li>
24810      * </ul>
24811      * @param {Object} scope The scope in which to call the callback
24812      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
24813      */
24814     load : function(params, reader, callback, scope, arg){
24815         if(this.fireEvent("beforeload", this, params) !== false){
24816
24817             var p = Roo.urlEncode(Roo.apply(params, this.extraParams));
24818
24819             var url = this.url;
24820             url += (url.indexOf("?") != -1 ? "&" : "?") + p;
24821             if(this.nocache){
24822                 url += "&_dc=" + (new Date().getTime());
24823             }
24824             var transId = ++Roo.data.ScriptTagProxy.TRANS_ID;
24825             var trans = {
24826                 id : transId,
24827                 cb : "stcCallback"+transId,
24828                 scriptId : "stcScript"+transId,
24829                 params : params,
24830                 arg : arg,
24831                 url : url,
24832                 callback : callback,
24833                 scope : scope,
24834                 reader : reader
24835             };
24836             var conn = this;
24837
24838             window[trans.cb] = function(o){
24839                 conn.handleResponse(o, trans);
24840             };
24841
24842             url += String.format("&{0}={1}", this.callbackParam, trans.cb);
24843
24844             if(this.autoAbort !== false){
24845                 this.abort();
24846             }
24847
24848             trans.timeoutId = this.handleFailure.defer(this.timeout, this, [trans]);
24849
24850             var script = document.createElement("script");
24851             script.setAttribute("src", url);
24852             script.setAttribute("type", "text/javascript");
24853             script.setAttribute("id", trans.scriptId);
24854             this.head.appendChild(script);
24855
24856             this.trans = trans;
24857         }else{
24858             callback.call(scope||this, null, arg, false);
24859         }
24860     },
24861
24862     // private
24863     isLoading : function(){
24864         return this.trans ? true : false;
24865     },
24866
24867     /**
24868      * Abort the current server request.
24869      */
24870     abort : function(){
24871         if(this.isLoading()){
24872             this.destroyTrans(this.trans);
24873         }
24874     },
24875
24876     // private
24877     destroyTrans : function(trans, isLoaded){
24878         this.head.removeChild(document.getElementById(trans.scriptId));
24879         clearTimeout(trans.timeoutId);
24880         if(isLoaded){
24881             window[trans.cb] = undefined;
24882             try{
24883                 delete window[trans.cb];
24884             }catch(e){}
24885         }else{
24886             // if hasn't been loaded, wait for load to remove it to prevent script error
24887             window[trans.cb] = function(){
24888                 window[trans.cb] = undefined;
24889                 try{
24890                     delete window[trans.cb];
24891                 }catch(e){}
24892             };
24893         }
24894     },
24895
24896     // private
24897     handleResponse : function(o, trans){
24898         this.trans = false;
24899         this.destroyTrans(trans, true);
24900         var result;
24901         try {
24902             result = trans.reader.readRecords(o);
24903         }catch(e){
24904             this.fireEvent("loadexception", this, o, trans.arg, e);
24905             trans.callback.call(trans.scope||window, null, trans.arg, false);
24906             return;
24907         }
24908         this.fireEvent("load", this, o, trans.arg);
24909         trans.callback.call(trans.scope||window, result, trans.arg, true);
24910     },
24911
24912     // private
24913     handleFailure : function(trans){
24914         this.trans = false;
24915         this.destroyTrans(trans, false);
24916         this.fireEvent("loadexception", this, null, trans.arg);
24917         trans.callback.call(trans.scope||window, null, trans.arg, false);
24918     }
24919 });/*
24920  * Based on:
24921  * Ext JS Library 1.1.1
24922  * Copyright(c) 2006-2007, Ext JS, LLC.
24923  *
24924  * Originally Released Under LGPL - original licence link has changed is not relivant.
24925  *
24926  * Fork - LGPL
24927  * <script type="text/javascript">
24928  */
24929
24930 /**
24931  * @class Roo.data.JsonReader
24932  * @extends Roo.data.DataReader
24933  * Data reader class to create an Array of Roo.data.Record objects from a JSON response
24934  * based on mappings in a provided Roo.data.Record constructor.
24935  * 
24936  * The default behaviour of a store is to send ?_requestMeta=1, unless the class has recieved 'metaData' property
24937  * in the reply previously. 
24938  * 
24939  * <p>
24940  * Example code:
24941  * <pre><code>
24942 var RecordDef = Roo.data.Record.create([
24943     {name: 'name', mapping: 'name'},     // "mapping" property not needed if it's the same as "name"
24944     {name: 'occupation'}                 // This field will use "occupation" as the mapping.
24945 ]);
24946 var myReader = new Roo.data.JsonReader({
24947     totalProperty: "results",    // The property which contains the total dataset size (optional)
24948     root: "rows",                // The property which contains an Array of row objects
24949     id: "id"                     // The property within each row object that provides an ID for the record (optional)
24950 }, RecordDef);
24951 </code></pre>
24952  * <p>
24953  * This would consume a JSON file like this:
24954  * <pre><code>
24955 { 'results': 2, 'rows': [
24956     { 'id': 1, 'name': 'Bill', occupation: 'Gardener' },
24957     { 'id': 2, 'name': 'Ben', occupation: 'Horticulturalist' } ]
24958 }
24959 </code></pre>
24960  * @cfg {String} totalProperty Name of the property from which to retrieve the total number of records
24961  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
24962  * paged from the remote server.
24963  * @cfg {String} successProperty Name of the property from which to retrieve the success attribute used by forms.
24964  * @cfg {String} root name of the property which contains the Array of row objects.
24965  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
24966  * @cfg {Array} fields Array of field definition objects
24967  * @constructor
24968  * Create a new JsonReader
24969  * @param {Object} meta Metadata configuration options
24970  * @param {Object} recordType Either an Array of field definition objects,
24971  * or an {@link Roo.data.Record} object created using {@link Roo.data.Record#create}.
24972  */
24973 Roo.data.JsonReader = function(meta, recordType){
24974     
24975     meta = meta || {};
24976     // set some defaults:
24977     Roo.applyIf(meta, {
24978         totalProperty: 'total',
24979         successProperty : 'success',
24980         root : 'data',
24981         id : 'id'
24982     });
24983     
24984     Roo.data.JsonReader.superclass.constructor.call(this, meta, recordType||meta.fields);
24985 };
24986 Roo.extend(Roo.data.JsonReader, Roo.data.DataReader, {
24987     
24988     readerType : 'Json',
24989     
24990     /**
24991      * @prop {Boolean} metaFromRemote  - if the meta data was loaded from the remote source.
24992      * Used by Store query builder to append _requestMeta to params.
24993      * 
24994      */
24995     metaFromRemote : false,
24996     /**
24997      * This method is only used by a DataProxy which has retrieved data from a remote server.
24998      * @param {Object} response The XHR object which contains the JSON data in its responseText.
24999      * @return {Object} data A data block which is used by an Roo.data.Store object as
25000      * a cache of Roo.data.Records.
25001      */
25002     read : function(response){
25003         var json = response.responseText;
25004        
25005         var o = /* eval:var:o */ eval("("+json+")");
25006         if(!o) {
25007             throw {message: "JsonReader.read: Json object not found"};
25008         }
25009         
25010         if(o.metaData){
25011             
25012             delete this.ef;
25013             this.metaFromRemote = true;
25014             this.meta = o.metaData;
25015             this.recordType = Roo.data.Record.create(o.metaData.fields);
25016             this.onMetaChange(this.meta, this.recordType, o);
25017         }
25018         return this.readRecords(o);
25019     },
25020
25021     // private function a store will implement
25022     onMetaChange : function(meta, recordType, o){
25023
25024     },
25025
25026     /**
25027          * @ignore
25028          */
25029     simpleAccess: function(obj, subsc) {
25030         return obj[subsc];
25031     },
25032
25033         /**
25034          * @ignore
25035          */
25036     getJsonAccessor: function(){
25037         var re = /[\[\.]/;
25038         return function(expr) {
25039             try {
25040                 return(re.test(expr))
25041                     ? new Function("obj", "return obj." + expr)
25042                     : function(obj){
25043                         return obj[expr];
25044                     };
25045             } catch(e){}
25046             return Roo.emptyFn;
25047         };
25048     }(),
25049
25050     /**
25051      * Create a data block containing Roo.data.Records from an XML document.
25052      * @param {Object} o An object which contains an Array of row objects in the property specified
25053      * in the config as 'root, and optionally a property, specified in the config as 'totalProperty'
25054      * which contains the total size of the dataset.
25055      * @return {Object} data A data block which is used by an Roo.data.Store object as
25056      * a cache of Roo.data.Records.
25057      */
25058     readRecords : function(o){
25059         /**
25060          * After any data loads, the raw JSON data is available for further custom processing.
25061          * @type Object
25062          */
25063         this.o = o;
25064         var s = this.meta, Record = this.recordType,
25065             f = Record ? Record.prototype.fields : null, fi = f ? f.items : [], fl = f ? f.length : 0;
25066
25067 //      Generate extraction functions for the totalProperty, the root, the id, and for each field
25068         if (!this.ef) {
25069             if(s.totalProperty) {
25070                     this.getTotal = this.getJsonAccessor(s.totalProperty);
25071                 }
25072                 if(s.successProperty) {
25073                     this.getSuccess = this.getJsonAccessor(s.successProperty);
25074                 }
25075                 this.getRoot = s.root ? this.getJsonAccessor(s.root) : function(p){return p;};
25076                 if (s.id) {
25077                         var g = this.getJsonAccessor(s.id);
25078                         this.getId = function(rec) {
25079                                 var r = g(rec);  
25080                                 return (r === undefined || r === "") ? null : r;
25081                         };
25082                 } else {
25083                         this.getId = function(){return null;};
25084                 }
25085             this.ef = [];
25086             for(var jj = 0; jj < fl; jj++){
25087                 f = fi[jj];
25088                 var map = (f.mapping !== undefined && f.mapping !== null) ? f.mapping : f.name;
25089                 this.ef[jj] = this.getJsonAccessor(map);
25090             }
25091         }
25092
25093         var root = this.getRoot(o), c = root.length, totalRecords = c, success = true;
25094         if(s.totalProperty){
25095             var vt = parseInt(this.getTotal(o), 10);
25096             if(!isNaN(vt)){
25097                 totalRecords = vt;
25098             }
25099         }
25100         if(s.successProperty){
25101             var vs = this.getSuccess(o);
25102             if(vs === false || vs === 'false'){
25103                 success = false;
25104             }
25105         }
25106         var records = [];
25107         for(var i = 0; i < c; i++){
25108                 var n = root[i];
25109             var values = {};
25110             var id = this.getId(n);
25111             for(var j = 0; j < fl; j++){
25112                 f = fi[j];
25113             var v = this.ef[j](n);
25114             if (!f.convert) {
25115                 Roo.log('missing convert for ' + f.name);
25116                 Roo.log(f);
25117                 continue;
25118             }
25119             values[f.name] = f.convert((v !== undefined) ? v : f.defaultValue);
25120             }
25121             var record = new Record(values, id);
25122             record.json = n;
25123             records[i] = record;
25124         }
25125         return {
25126             raw : o,
25127             success : success,
25128             records : records,
25129             totalRecords : totalRecords
25130         };
25131     },
25132     // used when loading children.. @see loadDataFromChildren
25133     toLoadData: function(rec)
25134     {
25135         // expect rec just to be an array.. eg [a,b,c, [...] << cn ]
25136         var data = typeof(rec.data.cn) == 'undefined' ? [] : rec.data.cn;
25137         return { data : data, total : data.length };
25138         
25139     }
25140 });/*
25141  * Based on:
25142  * Ext JS Library 1.1.1
25143  * Copyright(c) 2006-2007, Ext JS, LLC.
25144  *
25145  * Originally Released Under LGPL - original licence link has changed is not relivant.
25146  *
25147  * Fork - LGPL
25148  * <script type="text/javascript">
25149  */
25150
25151 /**
25152  * @class Roo.data.XmlReader
25153  * @extends Roo.data.DataReader
25154  * Data reader class to create an Array of {@link Roo.data.Record} objects from an XML document
25155  * based on mappings in a provided Roo.data.Record constructor.<br><br>
25156  * <p>
25157  * <em>Note that in order for the browser to parse a returned XML document, the Content-Type
25158  * header in the HTTP response must be set to "text/xml".</em>
25159  * <p>
25160  * Example code:
25161  * <pre><code>
25162 var RecordDef = Roo.data.Record.create([
25163    {name: 'name', mapping: 'name'},     // "mapping" property not needed if it's the same as "name"
25164    {name: 'occupation'}                 // This field will use "occupation" as the mapping.
25165 ]);
25166 var myReader = new Roo.data.XmlReader({
25167    totalRecords: "results", // The element which contains the total dataset size (optional)
25168    record: "row",           // The repeated element which contains row information
25169    id: "id"                 // The element within the row that provides an ID for the record (optional)
25170 }, RecordDef);
25171 </code></pre>
25172  * <p>
25173  * This would consume an XML file like this:
25174  * <pre><code>
25175 &lt;?xml?>
25176 &lt;dataset>
25177  &lt;results>2&lt;/results>
25178  &lt;row>
25179    &lt;id>1&lt;/id>
25180    &lt;name>Bill&lt;/name>
25181    &lt;occupation>Gardener&lt;/occupation>
25182  &lt;/row>
25183  &lt;row>
25184    &lt;id>2&lt;/id>
25185    &lt;name>Ben&lt;/name>
25186    &lt;occupation>Horticulturalist&lt;/occupation>
25187  &lt;/row>
25188 &lt;/dataset>
25189 </code></pre>
25190  * @cfg {String} totalRecords The DomQuery path from which to retrieve the total number of records
25191  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
25192  * paged from the remote server.
25193  * @cfg {String} record The DomQuery path to the repeated element which contains record information.
25194  * @cfg {String} success The DomQuery path to the success attribute used by forms.
25195  * @cfg {String} id The DomQuery path relative from the record element to the element that contains
25196  * a record identifier value.
25197  * @constructor
25198  * Create a new XmlReader
25199  * @param {Object} meta Metadata configuration options
25200  * @param {Mixed} recordType The definition of the data record type to produce.  This can be either a valid
25201  * Record subclass created with {@link Roo.data.Record#create}, or an array of objects with which to call
25202  * Roo.data.Record.create.  See the {@link Roo.data.Record} class for more details.
25203  */
25204 Roo.data.XmlReader = function(meta, recordType){
25205     meta = meta || {};
25206     Roo.data.XmlReader.superclass.constructor.call(this, meta, recordType||meta.fields);
25207 };
25208 Roo.extend(Roo.data.XmlReader, Roo.data.DataReader, {
25209     
25210     readerType : 'Xml',
25211     
25212     /**
25213      * This method is only used by a DataProxy which has retrieved data from a remote server.
25214          * @param {Object} response The XHR object which contains the parsed XML document.  The response is expected
25215          * to contain a method called 'responseXML' that returns an XML document object.
25216      * @return {Object} records A data block which is used by an {@link Roo.data.Store} as
25217      * a cache of Roo.data.Records.
25218      */
25219     read : function(response){
25220         var doc = response.responseXML;
25221         if(!doc) {
25222             throw {message: "XmlReader.read: XML Document not available"};
25223         }
25224         return this.readRecords(doc);
25225     },
25226
25227     /**
25228      * Create a data block containing Roo.data.Records from an XML document.
25229          * @param {Object} doc A parsed XML document.
25230      * @return {Object} records A data block which is used by an {@link Roo.data.Store} as
25231      * a cache of Roo.data.Records.
25232      */
25233     readRecords : function(doc){
25234         /**
25235          * After any data loads/reads, the raw XML Document is available for further custom processing.
25236          * @type XMLDocument
25237          */
25238         this.xmlData = doc;
25239         var root = doc.documentElement || doc;
25240         var q = Roo.DomQuery;
25241         var recordType = this.recordType, fields = recordType.prototype.fields;
25242         var sid = this.meta.id;
25243         var totalRecords = 0, success = true;
25244         if(this.meta.totalRecords){
25245             totalRecords = q.selectNumber(this.meta.totalRecords, root, 0);
25246         }
25247         
25248         if(this.meta.success){
25249             var sv = q.selectValue(this.meta.success, root, true);
25250             success = sv !== false && sv !== 'false';
25251         }
25252         var records = [];
25253         var ns = q.select(this.meta.record, root);
25254         for(var i = 0, len = ns.length; i < len; i++) {
25255                 var n = ns[i];
25256                 var values = {};
25257                 var id = sid ? q.selectValue(sid, n) : undefined;
25258                 for(var j = 0, jlen = fields.length; j < jlen; j++){
25259                     var f = fields.items[j];
25260                 var v = q.selectValue(f.mapping || f.name, n, f.defaultValue);
25261                     v = f.convert(v);
25262                     values[f.name] = v;
25263                 }
25264                 var record = new recordType(values, id);
25265                 record.node = n;
25266                 records[records.length] = record;
25267             }
25268
25269             return {
25270                 success : success,
25271                 records : records,
25272                 totalRecords : totalRecords || records.length
25273             };
25274     }
25275 });/*
25276  * Based on:
25277  * Ext JS Library 1.1.1
25278  * Copyright(c) 2006-2007, Ext JS, LLC.
25279  *
25280  * Originally Released Under LGPL - original licence link has changed is not relivant.
25281  *
25282  * Fork - LGPL
25283  * <script type="text/javascript">
25284  */
25285
25286 /**
25287  * @class Roo.data.ArrayReader
25288  * @extends Roo.data.DataReader
25289  * Data reader class to create an Array of Roo.data.Record objects from an Array.
25290  * Each element of that Array represents a row of data fields. The
25291  * fields are pulled into a Record object using as a subscript, the <em>mapping</em> property
25292  * of the field definition if it exists, or the field's ordinal position in the definition.<br>
25293  * <p>
25294  * Example code:.
25295  * <pre><code>
25296 var RecordDef = Roo.data.Record.create([
25297     {name: 'name', mapping: 1},         // "mapping" only needed if an "id" field is present which
25298     {name: 'occupation', mapping: 2}    // precludes using the ordinal position as the index.
25299 ]);
25300 var myReader = new Roo.data.ArrayReader({
25301     id: 0                     // The subscript within row Array that provides an ID for the Record (optional)
25302 }, RecordDef);
25303 </code></pre>
25304  * <p>
25305  * This would consume an Array like this:
25306  * <pre><code>
25307 [ [1, 'Bill', 'Gardener'], [2, 'Ben', 'Horticulturalist'] ]
25308   </code></pre>
25309  
25310  * @constructor
25311  * Create a new JsonReader
25312  * @param {Object} meta Metadata configuration options.
25313  * @param {Object|Array} recordType Either an Array of field definition objects
25314  * 
25315  * @cfg {Array} fields Array of field definition objects
25316  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
25317  * as specified to {@link Roo.data.Record#create},
25318  * or an {@link Roo.data.Record} object
25319  *
25320  * 
25321  * created using {@link Roo.data.Record#create}.
25322  */
25323 Roo.data.ArrayReader = function(meta, recordType)
25324 {    
25325     Roo.data.ArrayReader.superclass.constructor.call(this, meta, recordType||meta.fields);
25326 };
25327
25328 Roo.extend(Roo.data.ArrayReader, Roo.data.JsonReader, {
25329     
25330       /**
25331      * Create a data block containing Roo.data.Records from an XML document.
25332      * @param {Object} o An Array of row objects which represents the dataset.
25333      * @return {Object} A data block which is used by an {@link Roo.data.Store} object as
25334      * a cache of Roo.data.Records.
25335      */
25336     readRecords : function(o)
25337     {
25338         var sid = this.meta ? this.meta.id : null;
25339         var recordType = this.recordType, fields = recordType.prototype.fields;
25340         var records = [];
25341         var root = o;
25342         for(var i = 0; i < root.length; i++){
25343             var n = root[i];
25344             var values = {};
25345             var id = ((sid || sid === 0) && n[sid] !== undefined && n[sid] !== "" ? n[sid] : null);
25346             for(var j = 0, jlen = fields.length; j < jlen; j++){
25347                 var f = fields.items[j];
25348                 var k = f.mapping !== undefined && f.mapping !== null ? f.mapping : j;
25349                 var v = n[k] !== undefined ? n[k] : f.defaultValue;
25350                 v = f.convert(v);
25351                 values[f.name] = v;
25352             }
25353             var record = new recordType(values, id);
25354             record.json = n;
25355             records[records.length] = record;
25356         }
25357         return {
25358             records : records,
25359             totalRecords : records.length
25360         };
25361     },
25362     // used when loading children.. @see loadDataFromChildren
25363     toLoadData: function(rec)
25364     {
25365         // expect rec just to be an array.. eg [a,b,c, [...] << cn ]
25366         return typeof(rec.data.cn) == 'undefined' ? [] : rec.data.cn;
25367         
25368     }
25369     
25370     
25371 });/*
25372  * Based on:
25373  * Ext JS Library 1.1.1
25374  * Copyright(c) 2006-2007, Ext JS, LLC.
25375  *
25376  * Originally Released Under LGPL - original licence link has changed is not relivant.
25377  *
25378  * Fork - LGPL
25379  * <script type="text/javascript">
25380  */
25381
25382
25383 /**
25384  * @class Roo.data.Tree
25385  * @extends Roo.util.Observable
25386  * Represents a tree data structure and bubbles all the events for its nodes. The nodes
25387  * in the tree have most standard DOM functionality.
25388  * @constructor
25389  * @param {Node} root (optional) The root node
25390  */
25391 Roo.data.Tree = function(root){
25392    this.nodeHash = {};
25393    /**
25394     * The root node for this tree
25395     * @type Node
25396     */
25397    this.root = null;
25398    if(root){
25399        this.setRootNode(root);
25400    }
25401    this.addEvents({
25402        /**
25403         * @event append
25404         * Fires when a new child node is appended to a node in this tree.
25405         * @param {Tree} tree The owner tree
25406         * @param {Node} parent The parent node
25407         * @param {Node} node The newly appended node
25408         * @param {Number} index The index of the newly appended node
25409         */
25410        "append" : true,
25411        /**
25412         * @event remove
25413         * Fires when a child node is removed from a node in this tree.
25414         * @param {Tree} tree The owner tree
25415         * @param {Node} parent The parent node
25416         * @param {Node} node The child node removed
25417         */
25418        "remove" : true,
25419        /**
25420         * @event move
25421         * Fires when a node is moved to a new location in the tree
25422         * @param {Tree} tree The owner tree
25423         * @param {Node} node The node moved
25424         * @param {Node} oldParent The old parent of this node
25425         * @param {Node} newParent The new parent of this node
25426         * @param {Number} index The index it was moved to
25427         */
25428        "move" : true,
25429        /**
25430         * @event insert
25431         * Fires when a new child node is inserted in a node in this tree.
25432         * @param {Tree} tree The owner tree
25433         * @param {Node} parent The parent node
25434         * @param {Node} node The child node inserted
25435         * @param {Node} refNode The child node the node was inserted before
25436         */
25437        "insert" : true,
25438        /**
25439         * @event beforeappend
25440         * Fires before a new child is appended to a node in this tree, return false to cancel the append.
25441         * @param {Tree} tree The owner tree
25442         * @param {Node} parent The parent node
25443         * @param {Node} node The child node to be appended
25444         */
25445        "beforeappend" : true,
25446        /**
25447         * @event beforeremove
25448         * Fires before a child is removed from a node in this tree, return false to cancel the remove.
25449         * @param {Tree} tree The owner tree
25450         * @param {Node} parent The parent node
25451         * @param {Node} node The child node to be removed
25452         */
25453        "beforeremove" : true,
25454        /**
25455         * @event beforemove
25456         * Fires before a node is moved to a new location in the tree. Return false to cancel the move.
25457         * @param {Tree} tree The owner tree
25458         * @param {Node} node The node being moved
25459         * @param {Node} oldParent The parent of the node
25460         * @param {Node} newParent The new parent the node is moving to
25461         * @param {Number} index The index it is being moved to
25462         */
25463        "beforemove" : true,
25464        /**
25465         * @event beforeinsert
25466         * Fires before a new child is inserted in a node in this tree, return false to cancel the insert.
25467         * @param {Tree} tree The owner tree
25468         * @param {Node} parent The parent node
25469         * @param {Node} node The child node to be inserted
25470         * @param {Node} refNode The child node the node is being inserted before
25471         */
25472        "beforeinsert" : true
25473    });
25474
25475     Roo.data.Tree.superclass.constructor.call(this);
25476 };
25477
25478 Roo.extend(Roo.data.Tree, Roo.util.Observable, {
25479     pathSeparator: "/",
25480
25481     proxyNodeEvent : function(){
25482         return this.fireEvent.apply(this, arguments);
25483     },
25484
25485     /**
25486      * Returns the root node for this tree.
25487      * @return {Node}
25488      */
25489     getRootNode : function(){
25490         return this.root;
25491     },
25492
25493     /**
25494      * Sets the root node for this tree.
25495      * @param {Node} node
25496      * @return {Node}
25497      */
25498     setRootNode : function(node){
25499         this.root = node;
25500         node.ownerTree = this;
25501         node.isRoot = true;
25502         this.registerNode(node);
25503         return node;
25504     },
25505
25506     /**
25507      * Gets a node in this tree by its id.
25508      * @param {String} id
25509      * @return {Node}
25510      */
25511     getNodeById : function(id){
25512         return this.nodeHash[id];
25513     },
25514
25515     registerNode : function(node){
25516         this.nodeHash[node.id] = node;
25517     },
25518
25519     unregisterNode : function(node){
25520         delete this.nodeHash[node.id];
25521     },
25522
25523     toString : function(){
25524         return "[Tree"+(this.id?" "+this.id:"")+"]";
25525     }
25526 });
25527
25528 /**
25529  * @class Roo.data.Node
25530  * @extends Roo.util.Observable
25531  * @cfg {Boolean} leaf true if this node is a leaf and does not have children
25532  * @cfg {String} id The id for this node. If one is not specified, one is generated.
25533  * @constructor
25534  * @param {Object} attributes The attributes/config for the node
25535  */
25536 Roo.data.Node = function(attributes){
25537     /**
25538      * The attributes supplied for the node. You can use this property to access any custom attributes you supplied.
25539      * @type {Object}
25540      */
25541     this.attributes = attributes || {};
25542     this.leaf = this.attributes.leaf;
25543     /**
25544      * The node id. @type String
25545      */
25546     this.id = this.attributes.id;
25547     if(!this.id){
25548         this.id = Roo.id(null, "ynode-");
25549         this.attributes.id = this.id;
25550     }
25551      
25552     
25553     /**
25554      * All child nodes of this node. @type Array
25555      */
25556     this.childNodes = [];
25557     if(!this.childNodes.indexOf){ // indexOf is a must
25558         this.childNodes.indexOf = function(o){
25559             for(var i = 0, len = this.length; i < len; i++){
25560                 if(this[i] == o) {
25561                     return i;
25562                 }
25563             }
25564             return -1;
25565         };
25566     }
25567     /**
25568      * The parent node for this node. @type Node
25569      */
25570     this.parentNode = null;
25571     /**
25572      * The first direct child node of this node, or null if this node has no child nodes. @type Node
25573      */
25574     this.firstChild = null;
25575     /**
25576      * The last direct child node of this node, or null if this node has no child nodes. @type Node
25577      */
25578     this.lastChild = null;
25579     /**
25580      * The node immediately preceding this node in the tree, or null if there is no sibling node. @type Node
25581      */
25582     this.previousSibling = null;
25583     /**
25584      * The node immediately following this node in the tree, or null if there is no sibling node. @type Node
25585      */
25586     this.nextSibling = null;
25587
25588     this.addEvents({
25589        /**
25590         * @event append
25591         * Fires when a new child node is appended
25592         * @param {Tree} tree The owner tree
25593         * @param {Node} this This node
25594         * @param {Node} node The newly appended node
25595         * @param {Number} index The index of the newly appended node
25596         */
25597        "append" : true,
25598        /**
25599         * @event remove
25600         * Fires when a child node is removed
25601         * @param {Tree} tree The owner tree
25602         * @param {Node} this This node
25603         * @param {Node} node The removed node
25604         */
25605        "remove" : true,
25606        /**
25607         * @event move
25608         * Fires when this node is moved to a new location in the tree
25609         * @param {Tree} tree The owner tree
25610         * @param {Node} this This node
25611         * @param {Node} oldParent The old parent of this node
25612         * @param {Node} newParent The new parent of this node
25613         * @param {Number} index The index it was moved to
25614         */
25615        "move" : true,
25616        /**
25617         * @event insert
25618         * Fires when a new child node is inserted.
25619         * @param {Tree} tree The owner tree
25620         * @param {Node} this This node
25621         * @param {Node} node The child node inserted
25622         * @param {Node} refNode The child node the node was inserted before
25623         */
25624        "insert" : true,
25625        /**
25626         * @event beforeappend
25627         * Fires before a new child is appended, return false to cancel the append.
25628         * @param {Tree} tree The owner tree
25629         * @param {Node} this This node
25630         * @param {Node} node The child node to be appended
25631         */
25632        "beforeappend" : true,
25633        /**
25634         * @event beforeremove
25635         * Fires before a child is removed, return false to cancel the remove.
25636         * @param {Tree} tree The owner tree
25637         * @param {Node} this This node
25638         * @param {Node} node The child node to be removed
25639         */
25640        "beforeremove" : true,
25641        /**
25642         * @event beforemove
25643         * Fires before this node is moved to a new location in the tree. Return false to cancel the move.
25644         * @param {Tree} tree The owner tree
25645         * @param {Node} this This node
25646         * @param {Node} oldParent The parent of this node
25647         * @param {Node} newParent The new parent this node is moving to
25648         * @param {Number} index The index it is being moved to
25649         */
25650        "beforemove" : true,
25651        /**
25652         * @event beforeinsert
25653         * Fires before a new child is inserted, return false to cancel the insert.
25654         * @param {Tree} tree The owner tree
25655         * @param {Node} this This node
25656         * @param {Node} node The child node to be inserted
25657         * @param {Node} refNode The child node the node is being inserted before
25658         */
25659        "beforeinsert" : true
25660    });
25661     this.listeners = this.attributes.listeners;
25662     Roo.data.Node.superclass.constructor.call(this);
25663 };
25664
25665 Roo.extend(Roo.data.Node, Roo.util.Observable, {
25666     fireEvent : function(evtName){
25667         // first do standard event for this node
25668         if(Roo.data.Node.superclass.fireEvent.apply(this, arguments) === false){
25669             return false;
25670         }
25671         // then bubble it up to the tree if the event wasn't cancelled
25672         var ot = this.getOwnerTree();
25673         if(ot){
25674             if(ot.proxyNodeEvent.apply(ot, arguments) === false){
25675                 return false;
25676             }
25677         }
25678         return true;
25679     },
25680
25681     /**
25682      * Returns true if this node is a leaf
25683      * @return {Boolean}
25684      */
25685     isLeaf : function(){
25686         return this.leaf === true;
25687     },
25688
25689     // private
25690     setFirstChild : function(node){
25691         this.firstChild = node;
25692     },
25693
25694     //private
25695     setLastChild : function(node){
25696         this.lastChild = node;
25697     },
25698
25699
25700     /**
25701      * Returns true if this node is the last child of its parent
25702      * @return {Boolean}
25703      */
25704     isLast : function(){
25705        return (!this.parentNode ? true : this.parentNode.lastChild == this);
25706     },
25707
25708     /**
25709      * Returns true if this node is the first child of its parent
25710      * @return {Boolean}
25711      */
25712     isFirst : function(){
25713        return (!this.parentNode ? true : this.parentNode.firstChild == this);
25714     },
25715
25716     hasChildNodes : function(){
25717         return !this.isLeaf() && this.childNodes.length > 0;
25718     },
25719
25720     /**
25721      * Insert node(s) as the last child node of this node.
25722      * @param {Node/Array} node The node or Array of nodes to append
25723      * @return {Node} The appended node if single append, or null if an array was passed
25724      */
25725     appendChild : function(node){
25726         var multi = false;
25727         if(node instanceof Array){
25728             multi = node;
25729         }else if(arguments.length > 1){
25730             multi = arguments;
25731         }
25732         
25733         // if passed an array or multiple args do them one by one
25734         if(multi){
25735             for(var i = 0, len = multi.length; i < len; i++) {
25736                 this.appendChild(multi[i]);
25737             }
25738         }else{
25739             if(this.fireEvent("beforeappend", this.ownerTree, this, node) === false){
25740                 return false;
25741             }
25742             var index = this.childNodes.length;
25743             var oldParent = node.parentNode;
25744             // it's a move, make sure we move it cleanly
25745             if(oldParent){
25746                 if(node.fireEvent("beforemove", node.getOwnerTree(), node, oldParent, this, index) === false){
25747                     return false;
25748                 }
25749                 oldParent.removeChild(node);
25750             }
25751             
25752             index = this.childNodes.length;
25753             if(index == 0){
25754                 this.setFirstChild(node);
25755             }
25756             this.childNodes.push(node);
25757             node.parentNode = this;
25758             var ps = this.childNodes[index-1];
25759             if(ps){
25760                 node.previousSibling = ps;
25761                 ps.nextSibling = node;
25762             }else{
25763                 node.previousSibling = null;
25764             }
25765             node.nextSibling = null;
25766             this.setLastChild(node);
25767             node.setOwnerTree(this.getOwnerTree());
25768             this.fireEvent("append", this.ownerTree, this, node, index);
25769             if(this.ownerTree) {
25770                 this.ownerTree.fireEvent("appendnode", this, node, index);
25771             }
25772             if(oldParent){
25773                 node.fireEvent("move", this.ownerTree, node, oldParent, this, index);
25774             }
25775             return node;
25776         }
25777     },
25778
25779     /**
25780      * Removes a child node from this node.
25781      * @param {Node} node The node to remove
25782      * @return {Node} The removed node
25783      */
25784     removeChild : function(node){
25785         var index = this.childNodes.indexOf(node);
25786         if(index == -1){
25787             return false;
25788         }
25789         if(this.fireEvent("beforeremove", this.ownerTree, this, node) === false){
25790             return false;
25791         }
25792
25793         // remove it from childNodes collection
25794         this.childNodes.splice(index, 1);
25795
25796         // update siblings
25797         if(node.previousSibling){
25798             node.previousSibling.nextSibling = node.nextSibling;
25799         }
25800         if(node.nextSibling){
25801             node.nextSibling.previousSibling = node.previousSibling;
25802         }
25803
25804         // update child refs
25805         if(this.firstChild == node){
25806             this.setFirstChild(node.nextSibling);
25807         }
25808         if(this.lastChild == node){
25809             this.setLastChild(node.previousSibling);
25810         }
25811
25812         node.setOwnerTree(null);
25813         // clear any references from the node
25814         node.parentNode = null;
25815         node.previousSibling = null;
25816         node.nextSibling = null;
25817         this.fireEvent("remove", this.ownerTree, this, node);
25818         return node;
25819     },
25820
25821     /**
25822      * Inserts the first node before the second node in this nodes childNodes collection.
25823      * @param {Node} node The node to insert
25824      * @param {Node} refNode The node to insert before (if null the node is appended)
25825      * @return {Node} The inserted node
25826      */
25827     insertBefore : function(node, refNode){
25828         if(!refNode){ // like standard Dom, refNode can be null for append
25829             return this.appendChild(node);
25830         }
25831         // nothing to do
25832         if(node == refNode){
25833             return false;
25834         }
25835
25836         if(this.fireEvent("beforeinsert", this.ownerTree, this, node, refNode) === false){
25837             return false;
25838         }
25839         var index = this.childNodes.indexOf(refNode);
25840         var oldParent = node.parentNode;
25841         var refIndex = index;
25842
25843         // when moving internally, indexes will change after remove
25844         if(oldParent == this && this.childNodes.indexOf(node) < index){
25845             refIndex--;
25846         }
25847
25848         // it's a move, make sure we move it cleanly
25849         if(oldParent){
25850             if(node.fireEvent("beforemove", node.getOwnerTree(), node, oldParent, this, index, refNode) === false){
25851                 return false;
25852             }
25853             oldParent.removeChild(node);
25854         }
25855         if(refIndex == 0){
25856             this.setFirstChild(node);
25857         }
25858         this.childNodes.splice(refIndex, 0, node);
25859         node.parentNode = this;
25860         var ps = this.childNodes[refIndex-1];
25861         if(ps){
25862             node.previousSibling = ps;
25863             ps.nextSibling = node;
25864         }else{
25865             node.previousSibling = null;
25866         }
25867         node.nextSibling = refNode;
25868         refNode.previousSibling = node;
25869         node.setOwnerTree(this.getOwnerTree());
25870         this.fireEvent("insert", this.ownerTree, this, node, refNode);
25871         if(oldParent){
25872             node.fireEvent("move", this.ownerTree, node, oldParent, this, refIndex, refNode);
25873         }
25874         return node;
25875     },
25876
25877     /**
25878      * Returns the child node at the specified index.
25879      * @param {Number} index
25880      * @return {Node}
25881      */
25882     item : function(index){
25883         return this.childNodes[index];
25884     },
25885
25886     /**
25887      * Replaces one child node in this node with another.
25888      * @param {Node} newChild The replacement node
25889      * @param {Node} oldChild The node to replace
25890      * @return {Node} The replaced node
25891      */
25892     replaceChild : function(newChild, oldChild){
25893         this.insertBefore(newChild, oldChild);
25894         this.removeChild(oldChild);
25895         return oldChild;
25896     },
25897
25898     /**
25899      * Returns the index of a child node
25900      * @param {Node} node
25901      * @return {Number} The index of the node or -1 if it was not found
25902      */
25903     indexOf : function(child){
25904         return this.childNodes.indexOf(child);
25905     },
25906
25907     /**
25908      * Returns the tree this node is in.
25909      * @return {Tree}
25910      */
25911     getOwnerTree : function(){
25912         // if it doesn't have one, look for one
25913         if(!this.ownerTree){
25914             var p = this;
25915             while(p){
25916                 if(p.ownerTree){
25917                     this.ownerTree = p.ownerTree;
25918                     break;
25919                 }
25920                 p = p.parentNode;
25921             }
25922         }
25923         return this.ownerTree;
25924     },
25925
25926     /**
25927      * Returns depth of this node (the root node has a depth of 0)
25928      * @return {Number}
25929      */
25930     getDepth : function(){
25931         var depth = 0;
25932         var p = this;
25933         while(p.parentNode){
25934             ++depth;
25935             p = p.parentNode;
25936         }
25937         return depth;
25938     },
25939
25940     // private
25941     setOwnerTree : function(tree){
25942         // if it's move, we need to update everyone
25943         if(tree != this.ownerTree){
25944             if(this.ownerTree){
25945                 this.ownerTree.unregisterNode(this);
25946             }
25947             this.ownerTree = tree;
25948             var cs = this.childNodes;
25949             for(var i = 0, len = cs.length; i < len; i++) {
25950                 cs[i].setOwnerTree(tree);
25951             }
25952             if(tree){
25953                 tree.registerNode(this);
25954             }
25955         }
25956     },
25957
25958     /**
25959      * Returns the path for this node. The path can be used to expand or select this node programmatically.
25960      * @param {String} attr (optional) The attr to use for the path (defaults to the node's id)
25961      * @return {String} The path
25962      */
25963     getPath : function(attr){
25964         attr = attr || "id";
25965         var p = this.parentNode;
25966         var b = [this.attributes[attr]];
25967         while(p){
25968             b.unshift(p.attributes[attr]);
25969             p = p.parentNode;
25970         }
25971         var sep = this.getOwnerTree().pathSeparator;
25972         return sep + b.join(sep);
25973     },
25974
25975     /**
25976      * Bubbles up the tree from this node, calling the specified function with each node. The scope (<i>this</i>) of
25977      * function call will be the scope provided or the current node. The arguments to the function
25978      * will be the args provided or the current node. If the function returns false at any point,
25979      * the bubble is stopped.
25980      * @param {Function} fn The function to call
25981      * @param {Object} scope (optional) The scope of the function (defaults to current node)
25982      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
25983      */
25984     bubble : function(fn, scope, args){
25985         var p = this;
25986         while(p){
25987             if(fn.call(scope || p, args || p) === false){
25988                 break;
25989             }
25990             p = p.parentNode;
25991         }
25992     },
25993
25994     /**
25995      * Cascades down the tree from this node, calling the specified function with each node. The scope (<i>this</i>) of
25996      * function call will be the scope provided or the current node. The arguments to the function
25997      * will be the args provided or the current node. If the function returns false at any point,
25998      * the cascade is stopped on that branch.
25999      * @param {Function} fn The function to call
26000      * @param {Object} scope (optional) The scope of the function (defaults to current node)
26001      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
26002      */
26003     cascade : function(fn, scope, args){
26004         if(fn.call(scope || this, args || this) !== false){
26005             var cs = this.childNodes;
26006             for(var i = 0, len = cs.length; i < len; i++) {
26007                 cs[i].cascade(fn, scope, args);
26008             }
26009         }
26010     },
26011
26012     /**
26013      * Interates the child nodes of this node, calling the specified function with each node. The scope (<i>this</i>) of
26014      * function call will be the scope provided or the current node. The arguments to the function
26015      * will be the args provided or the current node. If the function returns false at any point,
26016      * the iteration stops.
26017      * @param {Function} fn The function to call
26018      * @param {Object} scope (optional) The scope of the function (defaults to current node)
26019      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
26020      */
26021     eachChild : function(fn, scope, args){
26022         var cs = this.childNodes;
26023         for(var i = 0, len = cs.length; i < len; i++) {
26024                 if(fn.call(scope || this, args || cs[i]) === false){
26025                     break;
26026                 }
26027         }
26028     },
26029
26030     /**
26031      * Finds the first child that has the attribute with the specified value.
26032      * @param {String} attribute The attribute name
26033      * @param {Mixed} value The value to search for
26034      * @return {Node} The found child or null if none was found
26035      */
26036     findChild : function(attribute, value){
26037         var cs = this.childNodes;
26038         for(var i = 0, len = cs.length; i < len; i++) {
26039                 if(cs[i].attributes[attribute] == value){
26040                     return cs[i];
26041                 }
26042         }
26043         return null;
26044     },
26045
26046     /**
26047      * Finds the first child by a custom function. The child matches if the function passed
26048      * returns true.
26049      * @param {Function} fn
26050      * @param {Object} scope (optional)
26051      * @return {Node} The found child or null if none was found
26052      */
26053     findChildBy : function(fn, scope){
26054         var cs = this.childNodes;
26055         for(var i = 0, len = cs.length; i < len; i++) {
26056                 if(fn.call(scope||cs[i], cs[i]) === true){
26057                     return cs[i];
26058                 }
26059         }
26060         return null;
26061     },
26062
26063     /**
26064      * Sorts this nodes children using the supplied sort function
26065      * @param {Function} fn
26066      * @param {Object} scope (optional)
26067      */
26068     sort : function(fn, scope){
26069         var cs = this.childNodes;
26070         var len = cs.length;
26071         if(len > 0){
26072             var sortFn = scope ? function(){fn.apply(scope, arguments);} : fn;
26073             cs.sort(sortFn);
26074             for(var i = 0; i < len; i++){
26075                 var n = cs[i];
26076                 n.previousSibling = cs[i-1];
26077                 n.nextSibling = cs[i+1];
26078                 if(i == 0){
26079                     this.setFirstChild(n);
26080                 }
26081                 if(i == len-1){
26082                     this.setLastChild(n);
26083                 }
26084             }
26085         }
26086     },
26087
26088     /**
26089      * Returns true if this node is an ancestor (at any point) of the passed node.
26090      * @param {Node} node
26091      * @return {Boolean}
26092      */
26093     contains : function(node){
26094         return node.isAncestor(this);
26095     },
26096
26097     /**
26098      * Returns true if the passed node is an ancestor (at any point) of this node.
26099      * @param {Node} node
26100      * @return {Boolean}
26101      */
26102     isAncestor : function(node){
26103         var p = this.parentNode;
26104         while(p){
26105             if(p == node){
26106                 return true;
26107             }
26108             p = p.parentNode;
26109         }
26110         return false;
26111     },
26112
26113     toString : function(){
26114         return "[Node"+(this.id?" "+this.id:"")+"]";
26115     }
26116 });/*
26117  * Based on:
26118  * Ext JS Library 1.1.1
26119  * Copyright(c) 2006-2007, Ext JS, LLC.
26120  *
26121  * Originally Released Under LGPL - original licence link has changed is not relivant.
26122  *
26123  * Fork - LGPL
26124  * <script type="text/javascript">
26125  */
26126
26127
26128 /**
26129  * @class Roo.Shadow
26130  * Simple class that can provide a shadow effect for any element.  Note that the element MUST be absolutely positioned,
26131  * and the shadow does not provide any shimming.  This should be used only in simple cases -- for more advanced
26132  * functionality that can also provide the same shadow effect, see the {@link Roo.Layer} class.
26133  * @constructor
26134  * Create a new Shadow
26135  * @param {Object} config The config object
26136  */
26137 Roo.Shadow = function(config){
26138     Roo.apply(this, config);
26139     if(typeof this.mode != "string"){
26140         this.mode = this.defaultMode;
26141     }
26142     var o = this.offset, a = {h: 0};
26143     var rad = Math.floor(this.offset/2);
26144     switch(this.mode.toLowerCase()){ // all this hideous nonsense calculates the various offsets for shadows
26145         case "drop":
26146             a.w = 0;
26147             a.l = a.t = o;
26148             a.t -= 1;
26149             if(Roo.isIE){
26150                 a.l -= this.offset + rad;
26151                 a.t -= this.offset + rad;
26152                 a.w -= rad;
26153                 a.h -= rad;
26154                 a.t += 1;
26155             }
26156         break;
26157         case "sides":
26158             a.w = (o*2);
26159             a.l = -o;
26160             a.t = o-1;
26161             if(Roo.isIE){
26162                 a.l -= (this.offset - rad);
26163                 a.t -= this.offset + rad;
26164                 a.l += 1;
26165                 a.w -= (this.offset - rad)*2;
26166                 a.w -= rad + 1;
26167                 a.h -= 1;
26168             }
26169         break;
26170         case "frame":
26171             a.w = a.h = (o*2);
26172             a.l = a.t = -o;
26173             a.t += 1;
26174             a.h -= 2;
26175             if(Roo.isIE){
26176                 a.l -= (this.offset - rad);
26177                 a.t -= (this.offset - rad);
26178                 a.l += 1;
26179                 a.w -= (this.offset + rad + 1);
26180                 a.h -= (this.offset + rad);
26181                 a.h += 1;
26182             }
26183         break;
26184     };
26185
26186     this.adjusts = a;
26187 };
26188
26189 Roo.Shadow.prototype = {
26190     /**
26191      * @cfg {String} mode
26192      * The shadow display mode.  Supports the following options:<br />
26193      * sides: Shadow displays on both sides and bottom only<br />
26194      * frame: Shadow displays equally on all four sides<br />
26195      * drop: Traditional bottom-right drop shadow (default)
26196      */
26197     /**
26198      * @cfg {String} offset
26199      * The number of pixels to offset the shadow from the element (defaults to 4)
26200      */
26201     offset: 4,
26202
26203     // private
26204     defaultMode: "drop",
26205
26206     /**
26207      * Displays the shadow under the target element
26208      * @param {String/HTMLElement/Element} targetEl The id or element under which the shadow should display
26209      */
26210     show : function(target){
26211         target = Roo.get(target);
26212         if(!this.el){
26213             this.el = Roo.Shadow.Pool.pull();
26214             if(this.el.dom.nextSibling != target.dom){
26215                 this.el.insertBefore(target);
26216             }
26217         }
26218         this.el.setStyle("z-index", this.zIndex || parseInt(target.getStyle("z-index"), 10)-1);
26219         if(Roo.isIE){
26220             this.el.dom.style.filter="progid:DXImageTransform.Microsoft.alpha(opacity=50) progid:DXImageTransform.Microsoft.Blur(pixelradius="+(this.offset)+")";
26221         }
26222         this.realign(
26223             target.getLeft(true),
26224             target.getTop(true),
26225             target.getWidth(),
26226             target.getHeight()
26227         );
26228         this.el.dom.style.display = "block";
26229     },
26230
26231     /**
26232      * Returns true if the shadow is visible, else false
26233      */
26234     isVisible : function(){
26235         return this.el ? true : false;  
26236     },
26237
26238     /**
26239      * Direct alignment when values are already available. Show must be called at least once before
26240      * calling this method to ensure it is initialized.
26241      * @param {Number} left The target element left position
26242      * @param {Number} top The target element top position
26243      * @param {Number} width The target element width
26244      * @param {Number} height The target element height
26245      */
26246     realign : function(l, t, w, h){
26247         if(!this.el){
26248             return;
26249         }
26250         var a = this.adjusts, d = this.el.dom, s = d.style;
26251         var iea = 0;
26252         s.left = (l+a.l)+"px";
26253         s.top = (t+a.t)+"px";
26254         var sw = (w+a.w), sh = (h+a.h), sws = sw +"px", shs = sh + "px";
26255  
26256         if(s.width != sws || s.height != shs){
26257             s.width = sws;
26258             s.height = shs;
26259             if(!Roo.isIE){
26260                 var cn = d.childNodes;
26261                 var sww = Math.max(0, (sw-12))+"px";
26262                 cn[0].childNodes[1].style.width = sww;
26263                 cn[1].childNodes[1].style.width = sww;
26264                 cn[2].childNodes[1].style.width = sww;
26265                 cn[1].style.height = Math.max(0, (sh-12))+"px";
26266             }
26267         }
26268     },
26269
26270     /**
26271      * Hides this shadow
26272      */
26273     hide : function(){
26274         if(this.el){
26275             this.el.dom.style.display = "none";
26276             Roo.Shadow.Pool.push(this.el);
26277             delete this.el;
26278         }
26279     },
26280
26281     /**
26282      * Adjust the z-index of this shadow
26283      * @param {Number} zindex The new z-index
26284      */
26285     setZIndex : function(z){
26286         this.zIndex = z;
26287         if(this.el){
26288             this.el.setStyle("z-index", z);
26289         }
26290     }
26291 };
26292
26293 // Private utility class that manages the internal Shadow cache
26294 Roo.Shadow.Pool = function(){
26295     var p = [];
26296     var markup = Roo.isIE ?
26297                  '<div class="x-ie-shadow"></div>' :
26298                  '<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>';
26299     return {
26300         pull : function(){
26301             var sh = p.shift();
26302             if(!sh){
26303                 sh = Roo.get(Roo.DomHelper.insertHtml("beforeBegin", document.body.firstChild, markup));
26304                 sh.autoBoxAdjust = false;
26305             }
26306             return sh;
26307         },
26308
26309         push : function(sh){
26310             p.push(sh);
26311         }
26312     };
26313 }();/*
26314  * Based on:
26315  * Ext JS Library 1.1.1
26316  * Copyright(c) 2006-2007, Ext JS, LLC.
26317  *
26318  * Originally Released Under LGPL - original licence link has changed is not relivant.
26319  *
26320  * Fork - LGPL
26321  * <script type="text/javascript">
26322  */
26323
26324
26325 /**
26326  * @class Roo.SplitBar
26327  * @extends Roo.util.Observable
26328  * Creates draggable splitter bar functionality from two elements (element to be dragged and element to be resized).
26329  * <br><br>
26330  * Usage:
26331  * <pre><code>
26332 var split = new Roo.SplitBar("elementToDrag", "elementToSize",
26333                    Roo.SplitBar.HORIZONTAL, Roo.SplitBar.LEFT);
26334 split.setAdapter(new Roo.SplitBar.AbsoluteLayoutAdapter("container"));
26335 split.minSize = 100;
26336 split.maxSize = 600;
26337 split.animate = true;
26338 split.on('moved', splitterMoved);
26339 </code></pre>
26340  * @constructor
26341  * Create a new SplitBar
26342  * @param {String/HTMLElement/Roo.Element} dragElement The element to be dragged and act as the SplitBar. 
26343  * @param {String/HTMLElement/Roo.Element} resizingElement The element to be resized based on where the SplitBar element is dragged 
26344  * @param {Number} orientation (optional) Either Roo.SplitBar.HORIZONTAL or Roo.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
26345  * @param {Number} placement (optional) Either Roo.SplitBar.LEFT or Roo.SplitBar.RIGHT for horizontal or  
26346                         Roo.SplitBar.TOP or Roo.SplitBar.BOTTOM for vertical. (By default, this is determined automatically by the initial
26347                         position of the SplitBar).
26348  */
26349 Roo.SplitBar = function(dragElement, resizingElement, orientation, placement, existingProxy){
26350     
26351     /** @private */
26352     this.el = Roo.get(dragElement, true);
26353     this.el.dom.unselectable = "on";
26354     /** @private */
26355     this.resizingEl = Roo.get(resizingElement, true);
26356
26357     /**
26358      * @private
26359      * The orientation of the split. Either Roo.SplitBar.HORIZONTAL or Roo.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
26360      * Note: If this is changed after creating the SplitBar, the placement property must be manually updated
26361      * @type Number
26362      */
26363     this.orientation = orientation || Roo.SplitBar.HORIZONTAL;
26364     
26365     /**
26366      * The minimum size of the resizing element. (Defaults to 0)
26367      * @type Number
26368      */
26369     this.minSize = 0;
26370     
26371     /**
26372      * The maximum size of the resizing element. (Defaults to 2000)
26373      * @type Number
26374      */
26375     this.maxSize = 2000;
26376     
26377     /**
26378      * Whether to animate the transition to the new size
26379      * @type Boolean
26380      */
26381     this.animate = false;
26382     
26383     /**
26384      * Whether to create a transparent shim that overlays the page when dragging, enables dragging across iframes.
26385      * @type Boolean
26386      */
26387     this.useShim = false;
26388     
26389     /** @private */
26390     this.shim = null;
26391     
26392     if(!existingProxy){
26393         /** @private */
26394         this.proxy = Roo.SplitBar.createProxy(this.orientation);
26395     }else{
26396         this.proxy = Roo.get(existingProxy).dom;
26397     }
26398     /** @private */
26399     this.dd = new Roo.dd.DDProxy(this.el.dom.id, "XSplitBars", {dragElId : this.proxy.id});
26400     
26401     /** @private */
26402     this.dd.b4StartDrag = this.onStartProxyDrag.createDelegate(this);
26403     
26404     /** @private */
26405     this.dd.endDrag = this.onEndProxyDrag.createDelegate(this);
26406     
26407     /** @private */
26408     this.dragSpecs = {};
26409     
26410     /**
26411      * @private The adapter to use to positon and resize elements
26412      */
26413     this.adapter = new Roo.SplitBar.BasicLayoutAdapter();
26414     this.adapter.init(this);
26415     
26416     if(this.orientation == Roo.SplitBar.HORIZONTAL){
26417         /** @private */
26418         this.placement = placement || (this.el.getX() > this.resizingEl.getX() ? Roo.SplitBar.LEFT : Roo.SplitBar.RIGHT);
26419         this.el.addClass("x-splitbar-h");
26420     }else{
26421         /** @private */
26422         this.placement = placement || (this.el.getY() > this.resizingEl.getY() ? Roo.SplitBar.TOP : Roo.SplitBar.BOTTOM);
26423         this.el.addClass("x-splitbar-v");
26424     }
26425     
26426     this.addEvents({
26427         /**
26428          * @event resize
26429          * Fires when the splitter is moved (alias for {@link #event-moved})
26430          * @param {Roo.SplitBar} this
26431          * @param {Number} newSize the new width or height
26432          */
26433         "resize" : true,
26434         /**
26435          * @event moved
26436          * Fires when the splitter is moved
26437          * @param {Roo.SplitBar} this
26438          * @param {Number} newSize the new width or height
26439          */
26440         "moved" : true,
26441         /**
26442          * @event beforeresize
26443          * Fires before the splitter is dragged
26444          * @param {Roo.SplitBar} this
26445          */
26446         "beforeresize" : true,
26447
26448         "beforeapply" : true
26449     });
26450
26451     Roo.util.Observable.call(this);
26452 };
26453
26454 Roo.extend(Roo.SplitBar, Roo.util.Observable, {
26455     onStartProxyDrag : function(x, y){
26456         this.fireEvent("beforeresize", this);
26457         if(!this.overlay){
26458             var o = Roo.DomHelper.insertFirst(document.body,  {cls: "x-drag-overlay", html: "&#160;"}, true);
26459             o.unselectable();
26460             o.enableDisplayMode("block");
26461             // all splitbars share the same overlay
26462             Roo.SplitBar.prototype.overlay = o;
26463         }
26464         this.overlay.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
26465         this.overlay.show();
26466         Roo.get(this.proxy).setDisplayed("block");
26467         var size = this.adapter.getElementSize(this);
26468         this.activeMinSize = this.getMinimumSize();;
26469         this.activeMaxSize = this.getMaximumSize();;
26470         var c1 = size - this.activeMinSize;
26471         var c2 = Math.max(this.activeMaxSize - size, 0);
26472         if(this.orientation == Roo.SplitBar.HORIZONTAL){
26473             this.dd.resetConstraints();
26474             this.dd.setXConstraint(
26475                 this.placement == Roo.SplitBar.LEFT ? c1 : c2, 
26476                 this.placement == Roo.SplitBar.LEFT ? c2 : c1
26477             );
26478             this.dd.setYConstraint(0, 0);
26479         }else{
26480             this.dd.resetConstraints();
26481             this.dd.setXConstraint(0, 0);
26482             this.dd.setYConstraint(
26483                 this.placement == Roo.SplitBar.TOP ? c1 : c2, 
26484                 this.placement == Roo.SplitBar.TOP ? c2 : c1
26485             );
26486          }
26487         this.dragSpecs.startSize = size;
26488         this.dragSpecs.startPoint = [x, y];
26489         Roo.dd.DDProxy.prototype.b4StartDrag.call(this.dd, x, y);
26490     },
26491     
26492     /** 
26493      * @private Called after the drag operation by the DDProxy
26494      */
26495     onEndProxyDrag : function(e){
26496         Roo.get(this.proxy).setDisplayed(false);
26497         var endPoint = Roo.lib.Event.getXY(e);
26498         if(this.overlay){
26499             this.overlay.hide();
26500         }
26501         var newSize;
26502         if(this.orientation == Roo.SplitBar.HORIZONTAL){
26503             newSize = this.dragSpecs.startSize + 
26504                 (this.placement == Roo.SplitBar.LEFT ?
26505                     endPoint[0] - this.dragSpecs.startPoint[0] :
26506                     this.dragSpecs.startPoint[0] - endPoint[0]
26507                 );
26508         }else{
26509             newSize = this.dragSpecs.startSize + 
26510                 (this.placement == Roo.SplitBar.TOP ?
26511                     endPoint[1] - this.dragSpecs.startPoint[1] :
26512                     this.dragSpecs.startPoint[1] - endPoint[1]
26513                 );
26514         }
26515         newSize = Math.min(Math.max(newSize, this.activeMinSize), this.activeMaxSize);
26516         if(newSize != this.dragSpecs.startSize){
26517             if(this.fireEvent('beforeapply', this, newSize) !== false){
26518                 this.adapter.setElementSize(this, newSize);
26519                 this.fireEvent("moved", this, newSize);
26520                 this.fireEvent("resize", this, newSize);
26521             }
26522         }
26523     },
26524     
26525     /**
26526      * Get the adapter this SplitBar uses
26527      * @return The adapter object
26528      */
26529     getAdapter : function(){
26530         return this.adapter;
26531     },
26532     
26533     /**
26534      * Set the adapter this SplitBar uses
26535      * @param {Object} adapter A SplitBar adapter object
26536      */
26537     setAdapter : function(adapter){
26538         this.adapter = adapter;
26539         this.adapter.init(this);
26540     },
26541     
26542     /**
26543      * Gets the minimum size for the resizing element
26544      * @return {Number} The minimum size
26545      */
26546     getMinimumSize : function(){
26547         return this.minSize;
26548     },
26549     
26550     /**
26551      * Sets the minimum size for the resizing element
26552      * @param {Number} minSize The minimum size
26553      */
26554     setMinimumSize : function(minSize){
26555         this.minSize = minSize;
26556     },
26557     
26558     /**
26559      * Gets the maximum size for the resizing element
26560      * @return {Number} The maximum size
26561      */
26562     getMaximumSize : function(){
26563         return this.maxSize;
26564     },
26565     
26566     /**
26567      * Sets the maximum size for the resizing element
26568      * @param {Number} maxSize The maximum size
26569      */
26570     setMaximumSize : function(maxSize){
26571         this.maxSize = maxSize;
26572     },
26573     
26574     /**
26575      * Sets the initialize size for the resizing element
26576      * @param {Number} size The initial size
26577      */
26578     setCurrentSize : function(size){
26579         var oldAnimate = this.animate;
26580         this.animate = false;
26581         this.adapter.setElementSize(this, size);
26582         this.animate = oldAnimate;
26583     },
26584     
26585     /**
26586      * Destroy this splitbar. 
26587      * @param {Boolean} removeEl True to remove the element
26588      */
26589     destroy : function(removeEl){
26590         if(this.shim){
26591             this.shim.remove();
26592         }
26593         this.dd.unreg();
26594         this.proxy.parentNode.removeChild(this.proxy);
26595         if(removeEl){
26596             this.el.remove();
26597         }
26598     }
26599 });
26600
26601 /**
26602  * @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.
26603  */
26604 Roo.SplitBar.createProxy = function(dir){
26605     var proxy = new Roo.Element(document.createElement("div"));
26606     proxy.unselectable();
26607     var cls = 'x-splitbar-proxy';
26608     proxy.addClass(cls + ' ' + (dir == Roo.SplitBar.HORIZONTAL ? cls +'-h' : cls + '-v'));
26609     document.body.appendChild(proxy.dom);
26610     return proxy.dom;
26611 };
26612
26613 /** 
26614  * @class Roo.SplitBar.BasicLayoutAdapter
26615  * Default Adapter. It assumes the splitter and resizing element are not positioned
26616  * elements and only gets/sets the width of the element. Generally used for table based layouts.
26617  */
26618 Roo.SplitBar.BasicLayoutAdapter = function(){
26619 };
26620
26621 Roo.SplitBar.BasicLayoutAdapter.prototype = {
26622     // do nothing for now
26623     init : function(s){
26624     
26625     },
26626     /**
26627      * Called before drag operations to get the current size of the resizing element. 
26628      * @param {Roo.SplitBar} s The SplitBar using this adapter
26629      */
26630      getElementSize : function(s){
26631         if(s.orientation == Roo.SplitBar.HORIZONTAL){
26632             return s.resizingEl.getWidth();
26633         }else{
26634             return s.resizingEl.getHeight();
26635         }
26636     },
26637     
26638     /**
26639      * Called after drag operations to set the size of the resizing element.
26640      * @param {Roo.SplitBar} s The SplitBar using this adapter
26641      * @param {Number} newSize The new size to set
26642      * @param {Function} onComplete A function to be invoked when resizing is complete
26643      */
26644     setElementSize : function(s, newSize, onComplete){
26645         if(s.orientation == Roo.SplitBar.HORIZONTAL){
26646             if(!s.animate){
26647                 s.resizingEl.setWidth(newSize);
26648                 if(onComplete){
26649                     onComplete(s, newSize);
26650                 }
26651             }else{
26652                 s.resizingEl.setWidth(newSize, true, .1, onComplete, 'easeOut');
26653             }
26654         }else{
26655             
26656             if(!s.animate){
26657                 s.resizingEl.setHeight(newSize);
26658                 if(onComplete){
26659                     onComplete(s, newSize);
26660                 }
26661             }else{
26662                 s.resizingEl.setHeight(newSize, true, .1, onComplete, 'easeOut');
26663             }
26664         }
26665     }
26666 };
26667
26668 /** 
26669  *@class Roo.SplitBar.AbsoluteLayoutAdapter
26670  * @extends Roo.SplitBar.BasicLayoutAdapter
26671  * Adapter that  moves the splitter element to align with the resized sizing element. 
26672  * Used with an absolute positioned SplitBar.
26673  * @param {String/HTMLElement/Roo.Element} container The container that wraps around the absolute positioned content. If it's
26674  * document.body, make sure you assign an id to the body element.
26675  */
26676 Roo.SplitBar.AbsoluteLayoutAdapter = function(container){
26677     this.basic = new Roo.SplitBar.BasicLayoutAdapter();
26678     this.container = Roo.get(container);
26679 };
26680
26681 Roo.SplitBar.AbsoluteLayoutAdapter.prototype = {
26682     init : function(s){
26683         this.basic.init(s);
26684     },
26685     
26686     getElementSize : function(s){
26687         return this.basic.getElementSize(s);
26688     },
26689     
26690     setElementSize : function(s, newSize, onComplete){
26691         this.basic.setElementSize(s, newSize, this.moveSplitter.createDelegate(this, [s]));
26692     },
26693     
26694     moveSplitter : function(s){
26695         var yes = Roo.SplitBar;
26696         switch(s.placement){
26697             case yes.LEFT:
26698                 s.el.setX(s.resizingEl.getRight());
26699                 break;
26700             case yes.RIGHT:
26701                 s.el.setStyle("right", (this.container.getWidth() - s.resizingEl.getLeft()) + "px");
26702                 break;
26703             case yes.TOP:
26704                 s.el.setY(s.resizingEl.getBottom());
26705                 break;
26706             case yes.BOTTOM:
26707                 s.el.setY(s.resizingEl.getTop() - s.el.getHeight());
26708                 break;
26709         }
26710     }
26711 };
26712
26713 /**
26714  * Orientation constant - Create a vertical SplitBar
26715  * @static
26716  * @type Number
26717  */
26718 Roo.SplitBar.VERTICAL = 1;
26719
26720 /**
26721  * Orientation constant - Create a horizontal SplitBar
26722  * @static
26723  * @type Number
26724  */
26725 Roo.SplitBar.HORIZONTAL = 2;
26726
26727 /**
26728  * Placement constant - The resizing element is to the left of the splitter element
26729  * @static
26730  * @type Number
26731  */
26732 Roo.SplitBar.LEFT = 1;
26733
26734 /**
26735  * Placement constant - The resizing element is to the right of the splitter element
26736  * @static
26737  * @type Number
26738  */
26739 Roo.SplitBar.RIGHT = 2;
26740
26741 /**
26742  * Placement constant - The resizing element is positioned above the splitter element
26743  * @static
26744  * @type Number
26745  */
26746 Roo.SplitBar.TOP = 3;
26747
26748 /**
26749  * Placement constant - The resizing element is positioned under splitter element
26750  * @static
26751  * @type Number
26752  */
26753 Roo.SplitBar.BOTTOM = 4;
26754 /*
26755  * Based on:
26756  * Ext JS Library 1.1.1
26757  * Copyright(c) 2006-2007, Ext JS, LLC.
26758  *
26759  * Originally Released Under LGPL - original licence link has changed is not relivant.
26760  *
26761  * Fork - LGPL
26762  * <script type="text/javascript">
26763  */
26764
26765 /**
26766  * @class Roo.View
26767  * @extends Roo.util.Observable
26768  * Create a "View" for an element based on a data model or UpdateManager and the supplied DomHelper template. 
26769  * This class also supports single and multi selection modes. <br>
26770  * Create a data model bound view:
26771  <pre><code>
26772  var store = new Roo.data.Store(...);
26773
26774  var view = new Roo.View({
26775     el : "my-element",
26776     tpl : '&lt;div id="{0}"&gt;{2} - {1}&lt;/div&gt;', // auto create template
26777  
26778     singleSelect: true,
26779     selectedClass: "ydataview-selected",
26780     store: store
26781  });
26782
26783  // listen for node click?
26784  view.on("click", function(vw, index, node, e){
26785  alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
26786  });
26787
26788  // load XML data
26789  dataModel.load("foobar.xml");
26790  </code></pre>
26791  For an example of creating a JSON/UpdateManager view, see {@link Roo.JsonView}.
26792  * <br><br>
26793  * <b>Note: The root of your template must be a single node. Table/row implementations may work but are not supported due to
26794  * IE"s limited insertion support with tables and Opera"s faulty event bubbling.</b>
26795  * 
26796  * Note: old style constructor is still suported (container, template, config)
26797  * 
26798  * @constructor
26799  * Create a new View
26800  * @param {Object} config The config object
26801  * 
26802  */
26803 Roo.View = function(config, depreciated_tpl, depreciated_config){
26804     
26805     this.parent = false;
26806     
26807     if (typeof(depreciated_tpl) == 'undefined') {
26808         // new way.. - universal constructor.
26809         Roo.apply(this, config);
26810         this.el  = Roo.get(this.el);
26811     } else {
26812         // old format..
26813         this.el  = Roo.get(config);
26814         this.tpl = depreciated_tpl;
26815         Roo.apply(this, depreciated_config);
26816     }
26817     this.wrapEl  = this.el.wrap().wrap();
26818     ///this.el = this.wrapEla.appendChild(document.createElement("div"));
26819     
26820     
26821     if(typeof(this.tpl) == "string"){
26822         this.tpl = new Roo.Template(this.tpl);
26823     } else {
26824         // support xtype ctors..
26825         this.tpl = new Roo.factory(this.tpl, Roo);
26826     }
26827     
26828     
26829     this.tpl.compile();
26830     
26831     /** @private */
26832     this.addEvents({
26833         /**
26834          * @event beforeclick
26835          * Fires before a click is processed. Returns false to cancel the default action.
26836          * @param {Roo.View} this
26837          * @param {Number} index The index of the target node
26838          * @param {HTMLElement} node The target node
26839          * @param {Roo.EventObject} e The raw event object
26840          */
26841             "beforeclick" : true,
26842         /**
26843          * @event click
26844          * Fires when a template node is clicked.
26845          * @param {Roo.View} this
26846          * @param {Number} index The index of the target node
26847          * @param {HTMLElement} node The target node
26848          * @param {Roo.EventObject} e The raw event object
26849          */
26850             "click" : true,
26851         /**
26852          * @event dblclick
26853          * Fires when a template node is double clicked.
26854          * @param {Roo.View} this
26855          * @param {Number} index The index of the target node
26856          * @param {HTMLElement} node The target node
26857          * @param {Roo.EventObject} e The raw event object
26858          */
26859             "dblclick" : true,
26860         /**
26861          * @event contextmenu
26862          * Fires when a template node is right clicked.
26863          * @param {Roo.View} this
26864          * @param {Number} index The index of the target node
26865          * @param {HTMLElement} node The target node
26866          * @param {Roo.EventObject} e The raw event object
26867          */
26868             "contextmenu" : true,
26869         /**
26870          * @event selectionchange
26871          * Fires when the selected nodes change.
26872          * @param {Roo.View} this
26873          * @param {Array} selections Array of the selected nodes
26874          */
26875             "selectionchange" : true,
26876     
26877         /**
26878          * @event beforeselect
26879          * Fires before a selection is made. If any handlers return false, the selection is cancelled.
26880          * @param {Roo.View} this
26881          * @param {HTMLElement} node The node to be selected
26882          * @param {Array} selections Array of currently selected nodes
26883          */
26884             "beforeselect" : true,
26885         /**
26886          * @event preparedata
26887          * Fires on every row to render, to allow you to change the data.
26888          * @param {Roo.View} this
26889          * @param {Object} data to be rendered (change this)
26890          */
26891           "preparedata" : true
26892           
26893           
26894         });
26895
26896
26897
26898     this.el.on({
26899         "click": this.onClick,
26900         "dblclick": this.onDblClick,
26901         "contextmenu": this.onContextMenu,
26902         scope:this
26903     });
26904
26905     this.selections = [];
26906     this.nodes = [];
26907     this.cmp = new Roo.CompositeElementLite([]);
26908     if(this.store){
26909         this.store = Roo.factory(this.store, Roo.data);
26910         this.setStore(this.store, true);
26911     }
26912     
26913     if ( this.footer && this.footer.xtype) {
26914            
26915          var fctr = this.wrapEl.appendChild(document.createElement("div"));
26916         
26917         this.footer.dataSource = this.store;
26918         this.footer.container = fctr;
26919         this.footer = Roo.factory(this.footer, Roo);
26920         fctr.insertFirst(this.el);
26921         
26922         // this is a bit insane - as the paging toolbar seems to detach the el..
26923 //        dom.parentNode.parentNode.parentNode
26924          // they get detached?
26925     }
26926     
26927     
26928     Roo.View.superclass.constructor.call(this);
26929     
26930     
26931 };
26932
26933 Roo.extend(Roo.View, Roo.util.Observable, {
26934     
26935      /**
26936      * @cfg {Roo.data.Store} store Data store to load data from.
26937      */
26938     store : false,
26939     
26940     /**
26941      * @cfg {String|Roo.Element} el The container element.
26942      */
26943     el : '',
26944     
26945     /**
26946      * @cfg {String|Roo.Template} tpl The template used by this View 
26947      */
26948     tpl : false,
26949     /**
26950      * @cfg {String} dataName the named area of the template to use as the data area
26951      *                          Works with domtemplates roo-name="name"
26952      */
26953     dataName: false,
26954     /**
26955      * @cfg {String} selectedClass The css class to add to selected nodes
26956      */
26957     selectedClass : "x-view-selected",
26958      /**
26959      * @cfg {String} emptyText The empty text to show when nothing is loaded.
26960      */
26961     emptyText : "",
26962     
26963     /**
26964      * @cfg {String} text to display on mask (default Loading)
26965      */
26966     mask : false,
26967     /**
26968      * @cfg {Boolean} multiSelect Allow multiple selection
26969      */
26970     multiSelect : false,
26971     /**
26972      * @cfg {Boolean} singleSelect Allow single selection
26973      */
26974     singleSelect:  false,
26975     
26976     /**
26977      * @cfg {Boolean} toggleSelect - selecting 
26978      */
26979     toggleSelect : false,
26980     
26981     /**
26982      * @cfg {Boolean} tickable - selecting 
26983      */
26984     tickable : false,
26985     
26986     /**
26987      * Returns the element this view is bound to.
26988      * @return {Roo.Element}
26989      */
26990     getEl : function(){
26991         return this.wrapEl;
26992     },
26993     
26994     
26995
26996     /**
26997      * Refreshes the view. - called by datachanged on the store. - do not call directly.
26998      */
26999     refresh : function(){
27000         //Roo.log('refresh');
27001         var t = this.tpl;
27002         
27003         // if we are using something like 'domtemplate', then
27004         // the what gets used is:
27005         // t.applySubtemplate(NAME, data, wrapping data..)
27006         // the outer template then get' applied with
27007         //     the store 'extra data'
27008         // and the body get's added to the
27009         //      roo-name="data" node?
27010         //      <span class='roo-tpl-{name}'></span> ?????
27011         
27012         
27013         
27014         this.clearSelections();
27015         this.el.update("");
27016         var html = [];
27017         var records = this.store.getRange();
27018         if(records.length < 1) {
27019             
27020             // is this valid??  = should it render a template??
27021             
27022             this.el.update(this.emptyText);
27023             return;
27024         }
27025         var el = this.el;
27026         if (this.dataName) {
27027             this.el.update(t.apply(this.store.meta)); //????
27028             el = this.el.child('.roo-tpl-' + this.dataName);
27029         }
27030         
27031         for(var i = 0, len = records.length; i < len; i++){
27032             var data = this.prepareData(records[i].data, i, records[i]);
27033             this.fireEvent("preparedata", this, data, i, records[i]);
27034             
27035             var d = Roo.apply({}, data);
27036             
27037             if(this.tickable){
27038                 Roo.apply(d, {'roo-id' : Roo.id()});
27039                 
27040                 var _this = this;
27041             
27042                 Roo.each(this.parent.item, function(item){
27043                     if(item[_this.parent.valueField] != data[_this.parent.valueField]){
27044                         return;
27045                     }
27046                     Roo.apply(d, {'roo-data-checked' : 'checked'});
27047                 });
27048             }
27049             
27050             html[html.length] = Roo.util.Format.trim(
27051                 this.dataName ?
27052                     t.applySubtemplate(this.dataName, d, this.store.meta) :
27053                     t.apply(d)
27054             );
27055         }
27056         
27057         
27058         
27059         el.update(html.join(""));
27060         this.nodes = el.dom.childNodes;
27061         this.updateIndexes(0);
27062     },
27063     
27064
27065     /**
27066      * Function to override to reformat the data that is sent to
27067      * the template for each node.
27068      * DEPRICATED - use the preparedata event handler.
27069      * @param {Array/Object} data The raw data (array of colData for a data model bound view or
27070      * a JSON object for an UpdateManager bound view).
27071      */
27072     prepareData : function(data, index, record)
27073     {
27074         this.fireEvent("preparedata", this, data, index, record);
27075         return data;
27076     },
27077
27078     onUpdate : function(ds, record){
27079         // Roo.log('on update');   
27080         this.clearSelections();
27081         var index = this.store.indexOf(record);
27082         var n = this.nodes[index];
27083         this.tpl.insertBefore(n, this.prepareData(record.data, index, record));
27084         n.parentNode.removeChild(n);
27085         this.updateIndexes(index, index);
27086     },
27087
27088     
27089     
27090 // --------- FIXME     
27091     onAdd : function(ds, records, index)
27092     {
27093         //Roo.log(['on Add', ds, records, index] );        
27094         this.clearSelections();
27095         if(this.nodes.length == 0){
27096             this.refresh();
27097             return;
27098         }
27099         var n = this.nodes[index];
27100         for(var i = 0, len = records.length; i < len; i++){
27101             var d = this.prepareData(records[i].data, i, records[i]);
27102             if(n){
27103                 this.tpl.insertBefore(n, d);
27104             }else{
27105                 
27106                 this.tpl.append(this.el, d);
27107             }
27108         }
27109         this.updateIndexes(index);
27110     },
27111
27112     onRemove : function(ds, record, index){
27113        // Roo.log('onRemove');
27114         this.clearSelections();
27115         var el = this.dataName  ?
27116             this.el.child('.roo-tpl-' + this.dataName) :
27117             this.el; 
27118         
27119         el.dom.removeChild(this.nodes[index]);
27120         this.updateIndexes(index);
27121     },
27122
27123     /**
27124      * Refresh an individual node.
27125      * @param {Number} index
27126      */
27127     refreshNode : function(index){
27128         this.onUpdate(this.store, this.store.getAt(index));
27129     },
27130
27131     updateIndexes : function(startIndex, endIndex){
27132         var ns = this.nodes;
27133         startIndex = startIndex || 0;
27134         endIndex = endIndex || ns.length - 1;
27135         for(var i = startIndex; i <= endIndex; i++){
27136             ns[i].nodeIndex = i;
27137         }
27138     },
27139
27140     /**
27141      * Changes the data store this view uses and refresh the view.
27142      * @param {Store} store
27143      */
27144     setStore : function(store, initial){
27145         if(!initial && this.store){
27146             this.store.un("datachanged", this.refresh);
27147             this.store.un("add", this.onAdd);
27148             this.store.un("remove", this.onRemove);
27149             this.store.un("update", this.onUpdate);
27150             this.store.un("clear", this.refresh);
27151             this.store.un("beforeload", this.onBeforeLoad);
27152             this.store.un("load", this.onLoad);
27153             this.store.un("loadexception", this.onLoad);
27154         }
27155         if(store){
27156           
27157             store.on("datachanged", this.refresh, this);
27158             store.on("add", this.onAdd, this);
27159             store.on("remove", this.onRemove, this);
27160             store.on("update", this.onUpdate, this);
27161             store.on("clear", this.refresh, this);
27162             store.on("beforeload", this.onBeforeLoad, this);
27163             store.on("load", this.onLoad, this);
27164             store.on("loadexception", this.onLoad, this);
27165         }
27166         
27167         if(store){
27168             this.refresh();
27169         }
27170     },
27171     /**
27172      * onbeforeLoad - masks the loading area.
27173      *
27174      */
27175     onBeforeLoad : function(store,opts)
27176     {
27177          //Roo.log('onBeforeLoad');   
27178         if (!opts.add) {
27179             this.el.update("");
27180         }
27181         this.el.mask(this.mask ? this.mask : "Loading" ); 
27182     },
27183     onLoad : function ()
27184     {
27185         this.el.unmask();
27186     },
27187     
27188
27189     /**
27190      * Returns the template node the passed child belongs to or null if it doesn't belong to one.
27191      * @param {HTMLElement} node
27192      * @return {HTMLElement} The template node
27193      */
27194     findItemFromChild : function(node){
27195         var el = this.dataName  ?
27196             this.el.child('.roo-tpl-' + this.dataName,true) :
27197             this.el.dom; 
27198         
27199         if(!node || node.parentNode == el){
27200                     return node;
27201             }
27202             var p = node.parentNode;
27203             while(p && p != el){
27204             if(p.parentNode == el){
27205                 return p;
27206             }
27207             p = p.parentNode;
27208         }
27209             return null;
27210     },
27211
27212     /** @ignore */
27213     onClick : function(e){
27214         var item = this.findItemFromChild(e.getTarget());
27215         if(item){
27216             var index = this.indexOf(item);
27217             if(this.onItemClick(item, index, e) !== false){
27218                 this.fireEvent("click", this, index, item, e);
27219             }
27220         }else{
27221             this.clearSelections();
27222         }
27223     },
27224
27225     /** @ignore */
27226     onContextMenu : function(e){
27227         var item = this.findItemFromChild(e.getTarget());
27228         if(item){
27229             this.fireEvent("contextmenu", this, this.indexOf(item), item, e);
27230         }
27231     },
27232
27233     /** @ignore */
27234     onDblClick : function(e){
27235         var item = this.findItemFromChild(e.getTarget());
27236         if(item){
27237             this.fireEvent("dblclick", this, this.indexOf(item), item, e);
27238         }
27239     },
27240
27241     onItemClick : function(item, index, e)
27242     {
27243         if(this.fireEvent("beforeclick", this, index, item, e) === false){
27244             return false;
27245         }
27246         if (this.toggleSelect) {
27247             var m = this.isSelected(item) ? 'unselect' : 'select';
27248             //Roo.log(m);
27249             var _t = this;
27250             _t[m](item, true, false);
27251             return true;
27252         }
27253         if(this.multiSelect || this.singleSelect){
27254             if(this.multiSelect && e.shiftKey && this.lastSelection){
27255                 this.select(this.getNodes(this.indexOf(this.lastSelection), index), false);
27256             }else{
27257                 this.select(item, this.multiSelect && e.ctrlKey);
27258                 this.lastSelection = item;
27259             }
27260             
27261             if(!this.tickable){
27262                 e.preventDefault();
27263             }
27264             
27265         }
27266         return true;
27267     },
27268
27269     /**
27270      * Get the number of selected nodes.
27271      * @return {Number}
27272      */
27273     getSelectionCount : function(){
27274         return this.selections.length;
27275     },
27276
27277     /**
27278      * Get the currently selected nodes.
27279      * @return {Array} An array of HTMLElements
27280      */
27281     getSelectedNodes : function(){
27282         return this.selections;
27283     },
27284
27285     /**
27286      * Get the indexes of the selected nodes.
27287      * @return {Array}
27288      */
27289     getSelectedIndexes : function(){
27290         var indexes = [], s = this.selections;
27291         for(var i = 0, len = s.length; i < len; i++){
27292             indexes.push(s[i].nodeIndex);
27293         }
27294         return indexes;
27295     },
27296
27297     /**
27298      * Clear all selections
27299      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange event
27300      */
27301     clearSelections : function(suppressEvent){
27302         if(this.nodes && (this.multiSelect || this.singleSelect) && this.selections.length > 0){
27303             this.cmp.elements = this.selections;
27304             this.cmp.removeClass(this.selectedClass);
27305             this.selections = [];
27306             if(!suppressEvent){
27307                 this.fireEvent("selectionchange", this, this.selections);
27308             }
27309         }
27310     },
27311
27312     /**
27313      * Returns true if the passed node is selected
27314      * @param {HTMLElement/Number} node The node or node index
27315      * @return {Boolean}
27316      */
27317     isSelected : function(node){
27318         var s = this.selections;
27319         if(s.length < 1){
27320             return false;
27321         }
27322         node = this.getNode(node);
27323         return s.indexOf(node) !== -1;
27324     },
27325
27326     /**
27327      * Selects 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 to keep existing selections
27330      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
27331      */
27332     select : function(nodeInfo, keepExisting, suppressEvent){
27333         if(nodeInfo instanceof Array){
27334             if(!keepExisting){
27335                 this.clearSelections(true);
27336             }
27337             for(var i = 0, len = nodeInfo.length; i < len; i++){
27338                 this.select(nodeInfo[i], true, true);
27339             }
27340             return;
27341         } 
27342         var node = this.getNode(nodeInfo);
27343         if(!node || this.isSelected(node)){
27344             return; // already selected.
27345         }
27346         if(!keepExisting){
27347             this.clearSelections(true);
27348         }
27349         
27350         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
27351             Roo.fly(node).addClass(this.selectedClass);
27352             this.selections.push(node);
27353             if(!suppressEvent){
27354                 this.fireEvent("selectionchange", this, this.selections);
27355             }
27356         }
27357         
27358         
27359     },
27360       /**
27361      * Unselects nodes.
27362      * @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
27363      * @param {Boolean} keepExisting (optional) true IGNORED (for campatibility with select)
27364      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
27365      */
27366     unselect : function(nodeInfo, keepExisting, suppressEvent)
27367     {
27368         if(nodeInfo instanceof Array){
27369             Roo.each(this.selections, function(s) {
27370                 this.unselect(s, nodeInfo);
27371             }, this);
27372             return;
27373         }
27374         var node = this.getNode(nodeInfo);
27375         if(!node || !this.isSelected(node)){
27376             //Roo.log("not selected");
27377             return; // not selected.
27378         }
27379         // fireevent???
27380         var ns = [];
27381         Roo.each(this.selections, function(s) {
27382             if (s == node ) {
27383                 Roo.fly(node).removeClass(this.selectedClass);
27384
27385                 return;
27386             }
27387             ns.push(s);
27388         },this);
27389         
27390         this.selections= ns;
27391         this.fireEvent("selectionchange", this, this.selections);
27392     },
27393
27394     /**
27395      * Gets a template node.
27396      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
27397      * @return {HTMLElement} The node or null if it wasn't found
27398      */
27399     getNode : function(nodeInfo){
27400         if(typeof nodeInfo == "string"){
27401             return document.getElementById(nodeInfo);
27402         }else if(typeof nodeInfo == "number"){
27403             return this.nodes[nodeInfo];
27404         }
27405         return nodeInfo;
27406     },
27407
27408     /**
27409      * Gets a range template nodes.
27410      * @param {Number} startIndex
27411      * @param {Number} endIndex
27412      * @return {Array} An array of nodes
27413      */
27414     getNodes : function(start, end){
27415         var ns = this.nodes;
27416         start = start || 0;
27417         end = typeof end == "undefined" ? ns.length - 1 : end;
27418         var nodes = [];
27419         if(start <= end){
27420             for(var i = start; i <= end; i++){
27421                 nodes.push(ns[i]);
27422             }
27423         } else{
27424             for(var i = start; i >= end; i--){
27425                 nodes.push(ns[i]);
27426             }
27427         }
27428         return nodes;
27429     },
27430
27431     /**
27432      * Finds the index of the passed node
27433      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
27434      * @return {Number} The index of the node or -1
27435      */
27436     indexOf : function(node){
27437         node = this.getNode(node);
27438         if(typeof node.nodeIndex == "number"){
27439             return node.nodeIndex;
27440         }
27441         var ns = this.nodes;
27442         for(var i = 0, len = ns.length; i < len; i++){
27443             if(ns[i] == node){
27444                 return i;
27445             }
27446         }
27447         return -1;
27448     }
27449 });
27450 /*
27451  * Based on:
27452  * Ext JS Library 1.1.1
27453  * Copyright(c) 2006-2007, Ext JS, LLC.
27454  *
27455  * Originally Released Under LGPL - original licence link has changed is not relivant.
27456  *
27457  * Fork - LGPL
27458  * <script type="text/javascript">
27459  */
27460
27461 /**
27462  * @class Roo.JsonView
27463  * @extends Roo.View
27464  * Shortcut class to create a JSON + {@link Roo.UpdateManager} template view. Usage:
27465 <pre><code>
27466 var view = new Roo.JsonView({
27467     container: "my-element",
27468     tpl: '&lt;div id="{id}"&gt;{foo} - {bar}&lt;/div&gt;', // auto create template
27469     multiSelect: true, 
27470     jsonRoot: "data" 
27471 });
27472
27473 // listen for node click?
27474 view.on("click", function(vw, index, node, e){
27475     alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
27476 });
27477
27478 // direct load of JSON data
27479 view.load("foobar.php");
27480
27481 // Example from my blog list
27482 var tpl = new Roo.Template(
27483     '&lt;div class="entry"&gt;' +
27484     '&lt;a class="entry-title" href="{link}"&gt;{title}&lt;/a&gt;' +
27485     "&lt;h4&gt;{date} by {author} | {comments} Comments&lt;/h4&gt;{description}" +
27486     "&lt;/div&gt;&lt;hr /&gt;"
27487 );
27488
27489 var moreView = new Roo.JsonView({
27490     container :  "entry-list", 
27491     template : tpl,
27492     jsonRoot: "posts"
27493 });
27494 moreView.on("beforerender", this.sortEntries, this);
27495 moreView.load({
27496     url: "/blog/get-posts.php",
27497     params: "allposts=true",
27498     text: "Loading Blog Entries..."
27499 });
27500 </code></pre>
27501
27502 * Note: old code is supported with arguments : (container, template, config)
27503
27504
27505  * @constructor
27506  * Create a new JsonView
27507  * 
27508  * @param {Object} config The config object
27509  * 
27510  */
27511 Roo.JsonView = function(config, depreciated_tpl, depreciated_config){
27512     
27513     
27514     Roo.JsonView.superclass.constructor.call(this, config, depreciated_tpl, depreciated_config);
27515
27516     var um = this.el.getUpdateManager();
27517     um.setRenderer(this);
27518     um.on("update", this.onLoad, this);
27519     um.on("failure", this.onLoadException, this);
27520
27521     /**
27522      * @event beforerender
27523      * Fires before rendering of the downloaded JSON data.
27524      * @param {Roo.JsonView} this
27525      * @param {Object} data The JSON data loaded
27526      */
27527     /**
27528      * @event load
27529      * Fires when data is loaded.
27530      * @param {Roo.JsonView} this
27531      * @param {Object} data The JSON data loaded
27532      * @param {Object} response The raw Connect response object
27533      */
27534     /**
27535      * @event loadexception
27536      * Fires when loading fails.
27537      * @param {Roo.JsonView} this
27538      * @param {Object} response The raw Connect response object
27539      */
27540     this.addEvents({
27541         'beforerender' : true,
27542         'load' : true,
27543         'loadexception' : true
27544     });
27545 };
27546 Roo.extend(Roo.JsonView, Roo.View, {
27547     /**
27548      * @type {String} The root property in the loaded JSON object that contains the data
27549      */
27550     jsonRoot : "",
27551
27552     /**
27553      * Refreshes the view.
27554      */
27555     refresh : function(){
27556         this.clearSelections();
27557         this.el.update("");
27558         var html = [];
27559         var o = this.jsonData;
27560         if(o && o.length > 0){
27561             for(var i = 0, len = o.length; i < len; i++){
27562                 var data = this.prepareData(o[i], i, o);
27563                 html[html.length] = this.tpl.apply(data);
27564             }
27565         }else{
27566             html.push(this.emptyText);
27567         }
27568         this.el.update(html.join(""));
27569         this.nodes = this.el.dom.childNodes;
27570         this.updateIndexes(0);
27571     },
27572
27573     /**
27574      * 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.
27575      * @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:
27576      <pre><code>
27577      view.load({
27578          url: "your-url.php",
27579          params: {param1: "foo", param2: "bar"}, // or a URL encoded string
27580          callback: yourFunction,
27581          scope: yourObject, //(optional scope)
27582          discardUrl: false,
27583          nocache: false,
27584          text: "Loading...",
27585          timeout: 30,
27586          scripts: false
27587      });
27588      </code></pre>
27589      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
27590      * 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.
27591      * @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}
27592      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
27593      * @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.
27594      */
27595     load : function(){
27596         var um = this.el.getUpdateManager();
27597         um.update.apply(um, arguments);
27598     },
27599
27600     // note - render is a standard framework call...
27601     // using it for the response is really flaky... - it's called by UpdateManager normally, except when called by the XComponent/addXtype.
27602     render : function(el, response){
27603         
27604         this.clearSelections();
27605         this.el.update("");
27606         var o;
27607         try{
27608             if (response != '') {
27609                 o = Roo.util.JSON.decode(response.responseText);
27610                 if(this.jsonRoot){
27611                     
27612                     o = o[this.jsonRoot];
27613                 }
27614             }
27615         } catch(e){
27616         }
27617         /**
27618          * The current JSON data or null
27619          */
27620         this.jsonData = o;
27621         this.beforeRender();
27622         this.refresh();
27623     },
27624
27625 /**
27626  * Get the number of records in the current JSON dataset
27627  * @return {Number}
27628  */
27629     getCount : function(){
27630         return this.jsonData ? this.jsonData.length : 0;
27631     },
27632
27633 /**
27634  * Returns the JSON object for the specified node(s)
27635  * @param {HTMLElement/Array} node The node or an array of nodes
27636  * @return {Object/Array} If you pass in an array, you get an array back, otherwise
27637  * you get the JSON object for the node
27638  */
27639     getNodeData : function(node){
27640         if(node instanceof Array){
27641             var data = [];
27642             for(var i = 0, len = node.length; i < len; i++){
27643                 data.push(this.getNodeData(node[i]));
27644             }
27645             return data;
27646         }
27647         return this.jsonData[this.indexOf(node)] || null;
27648     },
27649
27650     beforeRender : function(){
27651         this.snapshot = this.jsonData;
27652         if(this.sortInfo){
27653             this.sort.apply(this, this.sortInfo);
27654         }
27655         this.fireEvent("beforerender", this, this.jsonData);
27656     },
27657
27658     onLoad : function(el, o){
27659         this.fireEvent("load", this, this.jsonData, o);
27660     },
27661
27662     onLoadException : function(el, o){
27663         this.fireEvent("loadexception", this, o);
27664     },
27665
27666 /**
27667  * Filter the data by a specific property.
27668  * @param {String} property A property on your JSON objects
27669  * @param {String/RegExp} value Either string that the property values
27670  * should start with, or a RegExp to test against the property
27671  */
27672     filter : function(property, value){
27673         if(this.jsonData){
27674             var data = [];
27675             var ss = this.snapshot;
27676             if(typeof value == "string"){
27677                 var vlen = value.length;
27678                 if(vlen == 0){
27679                     this.clearFilter();
27680                     return;
27681                 }
27682                 value = value.toLowerCase();
27683                 for(var i = 0, len = ss.length; i < len; i++){
27684                     var o = ss[i];
27685                     if(o[property].substr(0, vlen).toLowerCase() == value){
27686                         data.push(o);
27687                     }
27688                 }
27689             } else if(value.exec){ // regex?
27690                 for(var i = 0, len = ss.length; i < len; i++){
27691                     var o = ss[i];
27692                     if(value.test(o[property])){
27693                         data.push(o);
27694                     }
27695                 }
27696             } else{
27697                 return;
27698             }
27699             this.jsonData = data;
27700             this.refresh();
27701         }
27702     },
27703
27704 /**
27705  * Filter by a function. The passed function will be called with each
27706  * object in the current dataset. If the function returns true the value is kept,
27707  * otherwise it is filtered.
27708  * @param {Function} fn
27709  * @param {Object} scope (optional) The scope of the function (defaults to this JsonView)
27710  */
27711     filterBy : function(fn, scope){
27712         if(this.jsonData){
27713             var data = [];
27714             var ss = this.snapshot;
27715             for(var i = 0, len = ss.length; i < len; i++){
27716                 var o = ss[i];
27717                 if(fn.call(scope || this, o)){
27718                     data.push(o);
27719                 }
27720             }
27721             this.jsonData = data;
27722             this.refresh();
27723         }
27724     },
27725
27726 /**
27727  * Clears the current filter.
27728  */
27729     clearFilter : function(){
27730         if(this.snapshot && this.jsonData != this.snapshot){
27731             this.jsonData = this.snapshot;
27732             this.refresh();
27733         }
27734     },
27735
27736
27737 /**
27738  * Sorts the data for this view and refreshes it.
27739  * @param {String} property A property on your JSON objects to sort on
27740  * @param {String} direction (optional) "desc" or "asc" (defaults to "asc")
27741  * @param {Function} sortType (optional) A function to call to convert the data to a sortable value.
27742  */
27743     sort : function(property, dir, sortType){
27744         this.sortInfo = Array.prototype.slice.call(arguments, 0);
27745         if(this.jsonData){
27746             var p = property;
27747             var dsc = dir && dir.toLowerCase() == "desc";
27748             var f = function(o1, o2){
27749                 var v1 = sortType ? sortType(o1[p]) : o1[p];
27750                 var v2 = sortType ? sortType(o2[p]) : o2[p];
27751                 ;
27752                 if(v1 < v2){
27753                     return dsc ? +1 : -1;
27754                 } else if(v1 > v2){
27755                     return dsc ? -1 : +1;
27756                 } else{
27757                     return 0;
27758                 }
27759             };
27760             this.jsonData.sort(f);
27761             this.refresh();
27762             if(this.jsonData != this.snapshot){
27763                 this.snapshot.sort(f);
27764             }
27765         }
27766     }
27767 });/*
27768  * Based on:
27769  * Ext JS Library 1.1.1
27770  * Copyright(c) 2006-2007, Ext JS, LLC.
27771  *
27772  * Originally Released Under LGPL - original licence link has changed is not relivant.
27773  *
27774  * Fork - LGPL
27775  * <script type="text/javascript">
27776  */
27777  
27778
27779 /**
27780  * @class Roo.ColorPalette
27781  * @extends Roo.Component
27782  * Simple color palette class for choosing colors.  The palette can be rendered to any container.<br />
27783  * Here's an example of typical usage:
27784  * <pre><code>
27785 var cp = new Roo.ColorPalette({value:'993300'});  // initial selected color
27786 cp.render('my-div');
27787
27788 cp.on('select', function(palette, selColor){
27789     // do something with selColor
27790 });
27791 </code></pre>
27792  * @constructor
27793  * Create a new ColorPalette
27794  * @param {Object} config The config object
27795  */
27796 Roo.ColorPalette = function(config){
27797     Roo.ColorPalette.superclass.constructor.call(this, config);
27798     this.addEvents({
27799         /**
27800              * @event select
27801              * Fires when a color is selected
27802              * @param {ColorPalette} this
27803              * @param {String} color The 6-digit color hex code (without the # symbol)
27804              */
27805         select: true
27806     });
27807
27808     if(this.handler){
27809         this.on("select", this.handler, this.scope, true);
27810     }
27811 };
27812 Roo.extend(Roo.ColorPalette, Roo.Component, {
27813     /**
27814      * @cfg {String} itemCls
27815      * The CSS class to apply to the containing element (defaults to "x-color-palette")
27816      */
27817     itemCls : "x-color-palette",
27818     /**
27819      * @cfg {String} value
27820      * The initial color to highlight (should be a valid 6-digit color hex code without the # symbol).  Note that
27821      * the hex codes are case-sensitive.
27822      */
27823     value : null,
27824     clickEvent:'click',
27825     // private
27826     ctype: "Roo.ColorPalette",
27827
27828     /**
27829      * @cfg {Boolean} allowReselect If set to true then reselecting a color that is already selected fires the selection event
27830      */
27831     allowReselect : false,
27832
27833     /**
27834      * <p>An array of 6-digit color hex code strings (without the # symbol).  This array can contain any number
27835      * of colors, and each hex code should be unique.  The width of the palette is controlled via CSS by adjusting
27836      * the width property of the 'x-color-palette' class (or assigning a custom class), so you can balance the number
27837      * of colors with the width setting until the box is symmetrical.</p>
27838      * <p>You can override individual colors if needed:</p>
27839      * <pre><code>
27840 var cp = new Roo.ColorPalette();
27841 cp.colors[0] = "FF0000";  // change the first box to red
27842 </code></pre>
27843
27844 Or you can provide a custom array of your own for complete control:
27845 <pre><code>
27846 var cp = new Roo.ColorPalette();
27847 cp.colors = ["000000", "993300", "333300"];
27848 </code></pre>
27849      * @type Array
27850      */
27851     colors : [
27852         "000000", "993300", "333300", "003300", "003366", "000080", "333399", "333333",
27853         "800000", "FF6600", "808000", "008000", "008080", "0000FF", "666699", "808080",
27854         "FF0000", "FF9900", "99CC00", "339966", "33CCCC", "3366FF", "800080", "969696",
27855         "FF00FF", "FFCC00", "FFFF00", "00FF00", "00FFFF", "00CCFF", "993366", "C0C0C0",
27856         "FF99CC", "FFCC99", "FFFF99", "CCFFCC", "CCFFFF", "99CCFF", "CC99FF", "FFFFFF"
27857     ],
27858
27859     // private
27860     onRender : function(container, position){
27861         var t = new Roo.MasterTemplate(
27862             '<tpl><a href="#" class="color-{0}" hidefocus="on"><em><span style="background:#{0}" unselectable="on">&#160;</span></em></a></tpl>'
27863         );
27864         var c = this.colors;
27865         for(var i = 0, len = c.length; i < len; i++){
27866             t.add([c[i]]);
27867         }
27868         var el = document.createElement("div");
27869         el.className = this.itemCls;
27870         t.overwrite(el);
27871         container.dom.insertBefore(el, position);
27872         this.el = Roo.get(el);
27873         this.el.on(this.clickEvent, this.handleClick,  this, {delegate: "a"});
27874         if(this.clickEvent != 'click'){
27875             this.el.on('click', Roo.emptyFn,  this, {delegate: "a", preventDefault:true});
27876         }
27877     },
27878
27879     // private
27880     afterRender : function(){
27881         Roo.ColorPalette.superclass.afterRender.call(this);
27882         if(this.value){
27883             var s = this.value;
27884             this.value = null;
27885             this.select(s);
27886         }
27887     },
27888
27889     // private
27890     handleClick : function(e, t){
27891         e.preventDefault();
27892         if(!this.disabled){
27893             var c = t.className.match(/(?:^|\s)color-(.{6})(?:\s|$)/)[1];
27894             this.select(c.toUpperCase());
27895         }
27896     },
27897
27898     /**
27899      * Selects the specified color in the palette (fires the select event)
27900      * @param {String} color A valid 6-digit color hex code (# will be stripped if included)
27901      */
27902     select : function(color){
27903         color = color.replace("#", "");
27904         if(color != this.value || this.allowReselect){
27905             var el = this.el;
27906             if(this.value){
27907                 el.child("a.color-"+this.value).removeClass("x-color-palette-sel");
27908             }
27909             el.child("a.color-"+color).addClass("x-color-palette-sel");
27910             this.value = color;
27911             this.fireEvent("select", this, color);
27912         }
27913     }
27914 });/*
27915  * Based on:
27916  * Ext JS Library 1.1.1
27917  * Copyright(c) 2006-2007, Ext JS, LLC.
27918  *
27919  * Originally Released Under LGPL - original licence link has changed is not relivant.
27920  *
27921  * Fork - LGPL
27922  * <script type="text/javascript">
27923  */
27924  
27925 /**
27926  * @class Roo.DatePicker
27927  * @extends Roo.Component
27928  * Simple date picker class.
27929  * @constructor
27930  * Create a new DatePicker
27931  * @param {Object} config The config object
27932  */
27933 Roo.DatePicker = function(config){
27934     Roo.DatePicker.superclass.constructor.call(this, config);
27935
27936     this.value = config && config.value ?
27937                  config.value.clearTime() : new Date().clearTime();
27938
27939     this.addEvents({
27940         /**
27941              * @event select
27942              * Fires when a date is selected
27943              * @param {DatePicker} this
27944              * @param {Date} date The selected date
27945              */
27946         'select': true,
27947         /**
27948              * @event monthchange
27949              * Fires when the displayed month changes 
27950              * @param {DatePicker} this
27951              * @param {Date} date The selected month
27952              */
27953         'monthchange': true
27954     });
27955
27956     if(this.handler){
27957         this.on("select", this.handler,  this.scope || this);
27958     }
27959     // build the disabledDatesRE
27960     if(!this.disabledDatesRE && this.disabledDates){
27961         var dd = this.disabledDates;
27962         var re = "(?:";
27963         for(var i = 0; i < dd.length; i++){
27964             re += dd[i];
27965             if(i != dd.length-1) {
27966                 re += "|";
27967             }
27968         }
27969         this.disabledDatesRE = new RegExp(re + ")");
27970     }
27971 };
27972
27973 Roo.extend(Roo.DatePicker, Roo.Component, {
27974     /**
27975      * @cfg {String} todayText
27976      * The text to display on the button that selects the current date (defaults to "Today")
27977      */
27978     todayText : "Today",
27979     /**
27980      * @cfg {String} okText
27981      * The text to display on the ok button
27982      */
27983     okText : "&#160;OK&#160;", // &#160; to give the user extra clicking room
27984     /**
27985      * @cfg {String} cancelText
27986      * The text to display on the cancel button
27987      */
27988     cancelText : "Cancel",
27989     /**
27990      * @cfg {String} todayTip
27991      * The tooltip to display for the button that selects the current date (defaults to "{current date} (Spacebar)")
27992      */
27993     todayTip : "{0} (Spacebar)",
27994     /**
27995      * @cfg {Date} minDate
27996      * Minimum allowable date (JavaScript date object, defaults to null)
27997      */
27998     minDate : null,
27999     /**
28000      * @cfg {Date} maxDate
28001      * Maximum allowable date (JavaScript date object, defaults to null)
28002      */
28003     maxDate : null,
28004     /**
28005      * @cfg {String} minText
28006      * The error text to display if the minDate validation fails (defaults to "This date is before the minimum date")
28007      */
28008     minText : "This date is before the minimum date",
28009     /**
28010      * @cfg {String} maxText
28011      * The error text to display if the maxDate validation fails (defaults to "This date is after the maximum date")
28012      */
28013     maxText : "This date is after the maximum date",
28014     /**
28015      * @cfg {String} format
28016      * The default date format string which can be overriden for localization support.  The format must be
28017      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
28018      */
28019     format : "m/d/y",
28020     /**
28021      * @cfg {Array} disabledDays
28022      * An array of days to disable, 0-based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
28023      */
28024     disabledDays : null,
28025     /**
28026      * @cfg {String} disabledDaysText
28027      * The tooltip to display when the date falls on a disabled day (defaults to "")
28028      */
28029     disabledDaysText : "",
28030     /**
28031      * @cfg {RegExp} disabledDatesRE
28032      * JavaScript regular expression used to disable a pattern of dates (defaults to null)
28033      */
28034     disabledDatesRE : null,
28035     /**
28036      * @cfg {String} disabledDatesText
28037      * The tooltip text to display when the date falls on a disabled date (defaults to "")
28038      */
28039     disabledDatesText : "",
28040     /**
28041      * @cfg {Boolean} constrainToViewport
28042      * True to constrain the date picker to the viewport (defaults to true)
28043      */
28044     constrainToViewport : true,
28045     /**
28046      * @cfg {Array} monthNames
28047      * An array of textual month names which can be overriden for localization support (defaults to Date.monthNames)
28048      */
28049     monthNames : Date.monthNames,
28050     /**
28051      * @cfg {Array} dayNames
28052      * An array of textual day names which can be overriden for localization support (defaults to Date.dayNames)
28053      */
28054     dayNames : Date.dayNames,
28055     /**
28056      * @cfg {String} nextText
28057      * The next month navigation button tooltip (defaults to 'Next Month (Control+Right)')
28058      */
28059     nextText: 'Next Month (Control+Right)',
28060     /**
28061      * @cfg {String} prevText
28062      * The previous month navigation button tooltip (defaults to 'Previous Month (Control+Left)')
28063      */
28064     prevText: 'Previous Month (Control+Left)',
28065     /**
28066      * @cfg {String} monthYearText
28067      * The header month selector tooltip (defaults to 'Choose a month (Control+Up/Down to move years)')
28068      */
28069     monthYearText: 'Choose a month (Control+Up/Down to move years)',
28070     /**
28071      * @cfg {Number} startDay
28072      * Day index at which the week should begin, 0-based (defaults to 0, which is Sunday)
28073      */
28074     startDay : 0,
28075     /**
28076      * @cfg {Bool} showClear
28077      * Show a clear button (usefull for date form elements that can be blank.)
28078      */
28079     
28080     showClear: false,
28081     
28082     /**
28083      * Sets the value of the date field
28084      * @param {Date} value The date to set
28085      */
28086     setValue : function(value){
28087         var old = this.value;
28088         
28089         if (typeof(value) == 'string') {
28090          
28091             value = Date.parseDate(value, this.format);
28092         }
28093         if (!value) {
28094             value = new Date();
28095         }
28096         
28097         this.value = value.clearTime(true);
28098         if(this.el){
28099             this.update(this.value);
28100         }
28101     },
28102
28103     /**
28104      * Gets the current selected value of the date field
28105      * @return {Date} The selected date
28106      */
28107     getValue : function(){
28108         return this.value;
28109     },
28110
28111     // private
28112     focus : function(){
28113         if(this.el){
28114             this.update(this.activeDate);
28115         }
28116     },
28117
28118     // privateval
28119     onRender : function(container, position){
28120         
28121         var m = [
28122              '<table cellspacing="0">',
28123                 '<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>',
28124                 '<tr><td colspan="3"><table class="x-date-inner" cellspacing="0"><thead><tr>'];
28125         var dn = this.dayNames;
28126         for(var i = 0; i < 7; i++){
28127             var d = this.startDay+i;
28128             if(d > 6){
28129                 d = d-7;
28130             }
28131             m.push("<th><span>", dn[d].substr(0,1), "</span></th>");
28132         }
28133         m[m.length] = "</tr></thead><tbody><tr>";
28134         for(var i = 0; i < 42; i++) {
28135             if(i % 7 == 0 && i != 0){
28136                 m[m.length] = "</tr><tr>";
28137             }
28138             m[m.length] = '<td><a href="#" hidefocus="on" class="x-date-date" tabIndex="1"><em><span></span></em></a></td>';
28139         }
28140         m[m.length] = '</tr></tbody></table></td></tr><tr>'+
28141             '<td colspan="3" class="x-date-bottom" align="center"></td></tr></table><div class="x-date-mp"></div>';
28142
28143         var el = document.createElement("div");
28144         el.className = "x-date-picker";
28145         el.innerHTML = m.join("");
28146
28147         container.dom.insertBefore(el, position);
28148
28149         this.el = Roo.get(el);
28150         this.eventEl = Roo.get(el.firstChild);
28151
28152         new Roo.util.ClickRepeater(this.el.child("td.x-date-left a"), {
28153             handler: this.showPrevMonth,
28154             scope: this,
28155             preventDefault:true,
28156             stopDefault:true
28157         });
28158
28159         new Roo.util.ClickRepeater(this.el.child("td.x-date-right a"), {
28160             handler: this.showNextMonth,
28161             scope: this,
28162             preventDefault:true,
28163             stopDefault:true
28164         });
28165
28166         this.eventEl.on("mousewheel", this.handleMouseWheel,  this);
28167
28168         this.monthPicker = this.el.down('div.x-date-mp');
28169         this.monthPicker.enableDisplayMode('block');
28170         
28171         var kn = new Roo.KeyNav(this.eventEl, {
28172             "left" : function(e){
28173                 e.ctrlKey ?
28174                     this.showPrevMonth() :
28175                     this.update(this.activeDate.add("d", -1));
28176             },
28177
28178             "right" : function(e){
28179                 e.ctrlKey ?
28180                     this.showNextMonth() :
28181                     this.update(this.activeDate.add("d", 1));
28182             },
28183
28184             "up" : function(e){
28185                 e.ctrlKey ?
28186                     this.showNextYear() :
28187                     this.update(this.activeDate.add("d", -7));
28188             },
28189
28190             "down" : function(e){
28191                 e.ctrlKey ?
28192                     this.showPrevYear() :
28193                     this.update(this.activeDate.add("d", 7));
28194             },
28195
28196             "pageUp" : function(e){
28197                 this.showNextMonth();
28198             },
28199
28200             "pageDown" : function(e){
28201                 this.showPrevMonth();
28202             },
28203
28204             "enter" : function(e){
28205                 e.stopPropagation();
28206                 return true;
28207             },
28208
28209             scope : this
28210         });
28211
28212         this.eventEl.on("click", this.handleDateClick,  this, {delegate: "a.x-date-date"});
28213
28214         this.eventEl.addKeyListener(Roo.EventObject.SPACE, this.selectToday,  this);
28215
28216         this.el.unselectable();
28217         
28218         this.cells = this.el.select("table.x-date-inner tbody td");
28219         this.textNodes = this.el.query("table.x-date-inner tbody span");
28220
28221         this.mbtn = new Roo.Button(this.el.child("td.x-date-middle", true), {
28222             text: "&#160;",
28223             tooltip: this.monthYearText
28224         });
28225
28226         this.mbtn.on('click', this.showMonthPicker, this);
28227         this.mbtn.el.child(this.mbtn.menuClassTarget).addClass("x-btn-with-menu");
28228
28229
28230         var today = (new Date()).dateFormat(this.format);
28231         
28232         var baseTb = new Roo.Toolbar(this.el.child("td.x-date-bottom", true));
28233         if (this.showClear) {
28234             baseTb.add( new Roo.Toolbar.Fill());
28235         }
28236         baseTb.add({
28237             text: String.format(this.todayText, today),
28238             tooltip: String.format(this.todayTip, today),
28239             handler: this.selectToday,
28240             scope: this
28241         });
28242         
28243         //var todayBtn = new Roo.Button(this.el.child("td.x-date-bottom", true), {
28244             
28245         //});
28246         if (this.showClear) {
28247             
28248             baseTb.add( new Roo.Toolbar.Fill());
28249             baseTb.add({
28250                 text: '&#160;',
28251                 cls: 'x-btn-icon x-btn-clear',
28252                 handler: function() {
28253                     //this.value = '';
28254                     this.fireEvent("select", this, '');
28255                 },
28256                 scope: this
28257             });
28258         }
28259         
28260         
28261         if(Roo.isIE){
28262             this.el.repaint();
28263         }
28264         this.update(this.value);
28265     },
28266
28267     createMonthPicker : function(){
28268         if(!this.monthPicker.dom.firstChild){
28269             var buf = ['<table border="0" cellspacing="0">'];
28270             for(var i = 0; i < 6; i++){
28271                 buf.push(
28272                     '<tr><td class="x-date-mp-month"><a href="#">', this.monthNames[i].substr(0, 3), '</a></td>',
28273                     '<td class="x-date-mp-month x-date-mp-sep"><a href="#">', this.monthNames[i+6].substr(0, 3), '</a></td>',
28274                     i == 0 ?
28275                     '<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>' :
28276                     '<td class="x-date-mp-year"><a href="#"></a></td><td class="x-date-mp-year"><a href="#"></a></td></tr>'
28277                 );
28278             }
28279             buf.push(
28280                 '<tr class="x-date-mp-btns"><td colspan="4"><button type="button" class="x-date-mp-ok">',
28281                     this.okText,
28282                     '</button><button type="button" class="x-date-mp-cancel">',
28283                     this.cancelText,
28284                     '</button></td></tr>',
28285                 '</table>'
28286             );
28287             this.monthPicker.update(buf.join(''));
28288             this.monthPicker.on('click', this.onMonthClick, this);
28289             this.monthPicker.on('dblclick', this.onMonthDblClick, this);
28290
28291             this.mpMonths = this.monthPicker.select('td.x-date-mp-month');
28292             this.mpYears = this.monthPicker.select('td.x-date-mp-year');
28293
28294             this.mpMonths.each(function(m, a, i){
28295                 i += 1;
28296                 if((i%2) == 0){
28297                     m.dom.xmonth = 5 + Math.round(i * .5);
28298                 }else{
28299                     m.dom.xmonth = Math.round((i-1) * .5);
28300                 }
28301             });
28302         }
28303     },
28304
28305     showMonthPicker : function(){
28306         this.createMonthPicker();
28307         var size = this.el.getSize();
28308         this.monthPicker.setSize(size);
28309         this.monthPicker.child('table').setSize(size);
28310
28311         this.mpSelMonth = (this.activeDate || this.value).getMonth();
28312         this.updateMPMonth(this.mpSelMonth);
28313         this.mpSelYear = (this.activeDate || this.value).getFullYear();
28314         this.updateMPYear(this.mpSelYear);
28315
28316         this.monthPicker.slideIn('t', {duration:.2});
28317     },
28318
28319     updateMPYear : function(y){
28320         this.mpyear = y;
28321         var ys = this.mpYears.elements;
28322         for(var i = 1; i <= 10; i++){
28323             var td = ys[i-1], y2;
28324             if((i%2) == 0){
28325                 y2 = y + Math.round(i * .5);
28326                 td.firstChild.innerHTML = y2;
28327                 td.xyear = y2;
28328             }else{
28329                 y2 = y - (5-Math.round(i * .5));
28330                 td.firstChild.innerHTML = y2;
28331                 td.xyear = y2;
28332             }
28333             this.mpYears.item(i-1)[y2 == this.mpSelYear ? 'addClass' : 'removeClass']('x-date-mp-sel');
28334         }
28335     },
28336
28337     updateMPMonth : function(sm){
28338         this.mpMonths.each(function(m, a, i){
28339             m[m.dom.xmonth == sm ? 'addClass' : 'removeClass']('x-date-mp-sel');
28340         });
28341     },
28342
28343     selectMPMonth: function(m){
28344         
28345     },
28346
28347     onMonthClick : function(e, t){
28348         e.stopEvent();
28349         var el = new Roo.Element(t), pn;
28350         if(el.is('button.x-date-mp-cancel')){
28351             this.hideMonthPicker();
28352         }
28353         else if(el.is('button.x-date-mp-ok')){
28354             this.update(new Date(this.mpSelYear, this.mpSelMonth, (this.activeDate || this.value).getDate()));
28355             this.hideMonthPicker();
28356         }
28357         else if(pn = el.up('td.x-date-mp-month', 2)){
28358             this.mpMonths.removeClass('x-date-mp-sel');
28359             pn.addClass('x-date-mp-sel');
28360             this.mpSelMonth = pn.dom.xmonth;
28361         }
28362         else if(pn = el.up('td.x-date-mp-year', 2)){
28363             this.mpYears.removeClass('x-date-mp-sel');
28364             pn.addClass('x-date-mp-sel');
28365             this.mpSelYear = pn.dom.xyear;
28366         }
28367         else if(el.is('a.x-date-mp-prev')){
28368             this.updateMPYear(this.mpyear-10);
28369         }
28370         else if(el.is('a.x-date-mp-next')){
28371             this.updateMPYear(this.mpyear+10);
28372         }
28373     },
28374
28375     onMonthDblClick : function(e, t){
28376         e.stopEvent();
28377         var el = new Roo.Element(t), pn;
28378         if(pn = el.up('td.x-date-mp-month', 2)){
28379             this.update(new Date(this.mpSelYear, pn.dom.xmonth, (this.activeDate || this.value).getDate()));
28380             this.hideMonthPicker();
28381         }
28382         else if(pn = el.up('td.x-date-mp-year', 2)){
28383             this.update(new Date(pn.dom.xyear, this.mpSelMonth, (this.activeDate || this.value).getDate()));
28384             this.hideMonthPicker();
28385         }
28386     },
28387
28388     hideMonthPicker : function(disableAnim){
28389         if(this.monthPicker){
28390             if(disableAnim === true){
28391                 this.monthPicker.hide();
28392             }else{
28393                 this.monthPicker.slideOut('t', {duration:.2});
28394             }
28395         }
28396     },
28397
28398     // private
28399     showPrevMonth : function(e){
28400         this.update(this.activeDate.add("mo", -1));
28401     },
28402
28403     // private
28404     showNextMonth : function(e){
28405         this.update(this.activeDate.add("mo", 1));
28406     },
28407
28408     // private
28409     showPrevYear : function(){
28410         this.update(this.activeDate.add("y", -1));
28411     },
28412
28413     // private
28414     showNextYear : function(){
28415         this.update(this.activeDate.add("y", 1));
28416     },
28417
28418     // private
28419     handleMouseWheel : function(e){
28420         var delta = e.getWheelDelta();
28421         if(delta > 0){
28422             this.showPrevMonth();
28423             e.stopEvent();
28424         } else if(delta < 0){
28425             this.showNextMonth();
28426             e.stopEvent();
28427         }
28428     },
28429
28430     // private
28431     handleDateClick : function(e, t){
28432         e.stopEvent();
28433         if(t.dateValue && !Roo.fly(t.parentNode).hasClass("x-date-disabled")){
28434             this.setValue(new Date(t.dateValue));
28435             this.fireEvent("select", this, this.value);
28436         }
28437     },
28438
28439     // private
28440     selectToday : function(){
28441         this.setValue(new Date().clearTime());
28442         this.fireEvent("select", this, this.value);
28443     },
28444
28445     // private
28446     update : function(date)
28447     {
28448         var vd = this.activeDate;
28449         this.activeDate = date;
28450         if(vd && this.el){
28451             var t = date.getTime();
28452             if(vd.getMonth() == date.getMonth() && vd.getFullYear() == date.getFullYear()){
28453                 this.cells.removeClass("x-date-selected");
28454                 this.cells.each(function(c){
28455                    if(c.dom.firstChild.dateValue == t){
28456                        c.addClass("x-date-selected");
28457                        setTimeout(function(){
28458                             try{c.dom.firstChild.focus();}catch(e){}
28459                        }, 50);
28460                        return false;
28461                    }
28462                 });
28463                 return;
28464             }
28465         }
28466         
28467         var days = date.getDaysInMonth();
28468         var firstOfMonth = date.getFirstDateOfMonth();
28469         var startingPos = firstOfMonth.getDay()-this.startDay;
28470
28471         if(startingPos <= this.startDay){
28472             startingPos += 7;
28473         }
28474
28475         var pm = date.add("mo", -1);
28476         var prevStart = pm.getDaysInMonth()-startingPos;
28477
28478         var cells = this.cells.elements;
28479         var textEls = this.textNodes;
28480         days += startingPos;
28481
28482         // convert everything to numbers so it's fast
28483         var day = 86400000;
28484         var d = (new Date(pm.getFullYear(), pm.getMonth(), prevStart)).clearTime();
28485         var today = new Date().clearTime().getTime();
28486         var sel = date.clearTime().getTime();
28487         var min = this.minDate ? this.minDate.clearTime() : Number.NEGATIVE_INFINITY;
28488         var max = this.maxDate ? this.maxDate.clearTime() : Number.POSITIVE_INFINITY;
28489         var ddMatch = this.disabledDatesRE;
28490         var ddText = this.disabledDatesText;
28491         var ddays = this.disabledDays ? this.disabledDays.join("") : false;
28492         var ddaysText = this.disabledDaysText;
28493         var format = this.format;
28494
28495         var setCellClass = function(cal, cell){
28496             cell.title = "";
28497             var t = d.getTime();
28498             cell.firstChild.dateValue = t;
28499             if(t == today){
28500                 cell.className += " x-date-today";
28501                 cell.title = cal.todayText;
28502             }
28503             if(t == sel){
28504                 cell.className += " x-date-selected";
28505                 setTimeout(function(){
28506                     try{cell.firstChild.focus();}catch(e){}
28507                 }, 50);
28508             }
28509             // disabling
28510             if(t < min) {
28511                 cell.className = " x-date-disabled";
28512                 cell.title = cal.minText;
28513                 return;
28514             }
28515             if(t > max) {
28516                 cell.className = " x-date-disabled";
28517                 cell.title = cal.maxText;
28518                 return;
28519             }
28520             if(ddays){
28521                 if(ddays.indexOf(d.getDay()) != -1){
28522                     cell.title = ddaysText;
28523                     cell.className = " x-date-disabled";
28524                 }
28525             }
28526             if(ddMatch && format){
28527                 var fvalue = d.dateFormat(format);
28528                 if(ddMatch.test(fvalue)){
28529                     cell.title = ddText.replace("%0", fvalue);
28530                     cell.className = " x-date-disabled";
28531                 }
28532             }
28533         };
28534
28535         var i = 0;
28536         for(; i < startingPos; i++) {
28537             textEls[i].innerHTML = (++prevStart);
28538             d.setDate(d.getDate()+1);
28539             cells[i].className = "x-date-prevday";
28540             setCellClass(this, cells[i]);
28541         }
28542         for(; i < days; i++){
28543             intDay = i - startingPos + 1;
28544             textEls[i].innerHTML = (intDay);
28545             d.setDate(d.getDate()+1);
28546             cells[i].className = "x-date-active";
28547             setCellClass(this, cells[i]);
28548         }
28549         var extraDays = 0;
28550         for(; i < 42; i++) {
28551              textEls[i].innerHTML = (++extraDays);
28552              d.setDate(d.getDate()+1);
28553              cells[i].className = "x-date-nextday";
28554              setCellClass(this, cells[i]);
28555         }
28556
28557         this.mbtn.setText(this.monthNames[date.getMonth()] + " " + date.getFullYear());
28558         this.fireEvent('monthchange', this, date);
28559         
28560         if(!this.internalRender){
28561             var main = this.el.dom.firstChild;
28562             var w = main.offsetWidth;
28563             this.el.setWidth(w + this.el.getBorderWidth("lr"));
28564             Roo.fly(main).setWidth(w);
28565             this.internalRender = true;
28566             // opera does not respect the auto grow header center column
28567             // then, after it gets a width opera refuses to recalculate
28568             // without a second pass
28569             if(Roo.isOpera && !this.secondPass){
28570                 main.rows[0].cells[1].style.width = (w - (main.rows[0].cells[0].offsetWidth+main.rows[0].cells[2].offsetWidth)) + "px";
28571                 this.secondPass = true;
28572                 this.update.defer(10, this, [date]);
28573             }
28574         }
28575         
28576         
28577     }
28578 });        /*
28579  * Based on:
28580  * Ext JS Library 1.1.1
28581  * Copyright(c) 2006-2007, Ext JS, LLC.
28582  *
28583  * Originally Released Under LGPL - original licence link has changed is not relivant.
28584  *
28585  * Fork - LGPL
28586  * <script type="text/javascript">
28587  */
28588 /**
28589  * @class Roo.TabPanel
28590  * @extends Roo.util.Observable
28591  * A lightweight tab container.
28592  * <br><br>
28593  * Usage:
28594  * <pre><code>
28595 // basic tabs 1, built from existing content
28596 var tabs = new Roo.TabPanel("tabs1");
28597 tabs.addTab("script", "View Script");
28598 tabs.addTab("markup", "View Markup");
28599 tabs.activate("script");
28600
28601 // more advanced tabs, built from javascript
28602 var jtabs = new Roo.TabPanel("jtabs");
28603 jtabs.addTab("jtabs-1", "Normal Tab", "My content was added during construction.");
28604
28605 // set up the UpdateManager
28606 var tab2 = jtabs.addTab("jtabs-2", "Ajax Tab 1");
28607 var updater = tab2.getUpdateManager();
28608 updater.setDefaultUrl("ajax1.htm");
28609 tab2.on('activate', updater.refresh, updater, true);
28610
28611 // Use setUrl for Ajax loading
28612 var tab3 = jtabs.addTab("jtabs-3", "Ajax Tab 2");
28613 tab3.setUrl("ajax2.htm", null, true);
28614
28615 // Disabled tab
28616 var tab4 = jtabs.addTab("tabs1-5", "Disabled Tab", "Can't see me cause I'm disabled");
28617 tab4.disable();
28618
28619 jtabs.activate("jtabs-1");
28620  * </code></pre>
28621  * @constructor
28622  * Create a new TabPanel.
28623  * @param {String/HTMLElement/Roo.Element} container The id, DOM element or Roo.Element container where this TabPanel is to be rendered.
28624  * @param {Object/Boolean} config Config object to set any properties for this TabPanel, or true to render the tabs on the bottom.
28625  */
28626 Roo.TabPanel = function(container, config){
28627     /**
28628     * The container element for this TabPanel.
28629     * @type Roo.Element
28630     */
28631     this.el = Roo.get(container, true);
28632     if(config){
28633         if(typeof config == "boolean"){
28634             this.tabPosition = config ? "bottom" : "top";
28635         }else{
28636             Roo.apply(this, config);
28637         }
28638     }
28639     if(this.tabPosition == "bottom"){
28640         this.bodyEl = Roo.get(this.createBody(this.el.dom));
28641         this.el.addClass("x-tabs-bottom");
28642     }
28643     this.stripWrap = Roo.get(this.createStrip(this.el.dom), true);
28644     this.stripEl = Roo.get(this.createStripList(this.stripWrap.dom), true);
28645     this.stripBody = Roo.get(this.stripWrap.dom.firstChild.firstChild, true);
28646     if(Roo.isIE){
28647         Roo.fly(this.stripWrap.dom.firstChild).setStyle("overflow-x", "hidden");
28648     }
28649     if(this.tabPosition != "bottom"){
28650         /** The body element that contains {@link Roo.TabPanelItem} bodies. +
28651          * @type Roo.Element
28652          */
28653         this.bodyEl = Roo.get(this.createBody(this.el.dom));
28654         this.el.addClass("x-tabs-top");
28655     }
28656     this.items = [];
28657
28658     this.bodyEl.setStyle("position", "relative");
28659
28660     this.active = null;
28661     this.activateDelegate = this.activate.createDelegate(this);
28662
28663     this.addEvents({
28664         /**
28665          * @event tabchange
28666          * Fires when the active tab changes
28667          * @param {Roo.TabPanel} this
28668          * @param {Roo.TabPanelItem} activePanel The new active tab
28669          */
28670         "tabchange": true,
28671         /**
28672          * @event beforetabchange
28673          * Fires before the active tab changes, set cancel to true on the "e" parameter to cancel the change
28674          * @param {Roo.TabPanel} this
28675          * @param {Object} e Set cancel to true on this object to cancel the tab change
28676          * @param {Roo.TabPanelItem} tab The tab being changed to
28677          */
28678         "beforetabchange" : true
28679     });
28680
28681     Roo.EventManager.onWindowResize(this.onResize, this);
28682     this.cpad = this.el.getPadding("lr");
28683     this.hiddenCount = 0;
28684
28685
28686     // toolbar on the tabbar support...
28687     if (this.toolbar) {
28688         var tcfg = this.toolbar;
28689         tcfg.container = this.stripEl.child('td.x-tab-strip-toolbar');  
28690         this.toolbar = new Roo.Toolbar(tcfg);
28691         if (Roo.isSafari) {
28692             var tbl = tcfg.container.child('table', true);
28693             tbl.setAttribute('width', '100%');
28694         }
28695         
28696     }
28697    
28698
28699
28700     Roo.TabPanel.superclass.constructor.call(this);
28701 };
28702
28703 Roo.extend(Roo.TabPanel, Roo.util.Observable, {
28704     /*
28705      *@cfg {String} tabPosition "top" or "bottom" (defaults to "top")
28706      */
28707     tabPosition : "top",
28708     /*
28709      *@cfg {Number} currentTabWidth The width of the current tab (defaults to 0)
28710      */
28711     currentTabWidth : 0,
28712     /*
28713      *@cfg {Number} minTabWidth The minimum width of a tab (defaults to 40) (ignored if {@link #resizeTabs} is not true)
28714      */
28715     minTabWidth : 40,
28716     /*
28717      *@cfg {Number} maxTabWidth The maximum width of a tab (defaults to 250) (ignored if {@link #resizeTabs} is not true)
28718      */
28719     maxTabWidth : 250,
28720     /*
28721      *@cfg {Number} preferredTabWidth The preferred (default) width of a tab (defaults to 175) (ignored if {@link #resizeTabs} is not true)
28722      */
28723     preferredTabWidth : 175,
28724     /*
28725      *@cfg {Boolean} resizeTabs True to enable dynamic tab resizing (defaults to false)
28726      */
28727     resizeTabs : false,
28728     /*
28729      *@cfg {Boolean} monitorResize Set this to true to turn on window resize monitoring (ignored if {@link #resizeTabs} is not true) (defaults to true)
28730      */
28731     monitorResize : true,
28732     /*
28733      *@cfg {Object} toolbar xtype description of toolbar to show at the right of the tab bar. 
28734      */
28735     toolbar : false,
28736
28737     /**
28738      * Creates a new {@link Roo.TabPanelItem} by looking for an existing element with the provided id -- if it's not found it creates one.
28739      * @param {String} id The id of the div to use <b>or create</b>
28740      * @param {String} text The text for the tab
28741      * @param {String} content (optional) Content to put in the TabPanelItem body
28742      * @param {Boolean} closable (optional) True to create a close icon on the tab
28743      * @return {Roo.TabPanelItem} The created TabPanelItem
28744      */
28745     addTab : function(id, text, content, closable){
28746         var item = new Roo.TabPanelItem(this, id, text, closable);
28747         this.addTabItem(item);
28748         if(content){
28749             item.setContent(content);
28750         }
28751         return item;
28752     },
28753
28754     /**
28755      * Returns the {@link Roo.TabPanelItem} with the specified id/index
28756      * @param {String/Number} id The id or index of the TabPanelItem to fetch.
28757      * @return {Roo.TabPanelItem}
28758      */
28759     getTab : function(id){
28760         return this.items[id];
28761     },
28762
28763     /**
28764      * Hides the {@link Roo.TabPanelItem} with the specified id/index
28765      * @param {String/Number} id The id or index of the TabPanelItem to hide.
28766      */
28767     hideTab : function(id){
28768         var t = this.items[id];
28769         if(!t.isHidden()){
28770            t.setHidden(true);
28771            this.hiddenCount++;
28772            this.autoSizeTabs();
28773         }
28774     },
28775
28776     /**
28777      * "Unhides" the {@link Roo.TabPanelItem} with the specified id/index.
28778      * @param {String/Number} id The id or index of the TabPanelItem to unhide.
28779      */
28780     unhideTab : function(id){
28781         var t = this.items[id];
28782         if(t.isHidden()){
28783            t.setHidden(false);
28784            this.hiddenCount--;
28785            this.autoSizeTabs();
28786         }
28787     },
28788
28789     /**
28790      * Adds an existing {@link Roo.TabPanelItem}.
28791      * @param {Roo.TabPanelItem} item The TabPanelItem to add
28792      */
28793     addTabItem : function(item){
28794         this.items[item.id] = item;
28795         this.items.push(item);
28796         if(this.resizeTabs){
28797            item.setWidth(this.currentTabWidth || this.preferredTabWidth);
28798            this.autoSizeTabs();
28799         }else{
28800             item.autoSize();
28801         }
28802     },
28803
28804     /**
28805      * Removes a {@link Roo.TabPanelItem}.
28806      * @param {String/Number} id The id or index of the TabPanelItem to remove.
28807      */
28808     removeTab : function(id){
28809         var items = this.items;
28810         var tab = items[id];
28811         if(!tab) { return; }
28812         var index = items.indexOf(tab);
28813         if(this.active == tab && items.length > 1){
28814             var newTab = this.getNextAvailable(index);
28815             if(newTab) {
28816                 newTab.activate();
28817             }
28818         }
28819         this.stripEl.dom.removeChild(tab.pnode.dom);
28820         if(tab.bodyEl.dom.parentNode == this.bodyEl.dom){ // if it was moved already prevent error
28821             this.bodyEl.dom.removeChild(tab.bodyEl.dom);
28822         }
28823         items.splice(index, 1);
28824         delete this.items[tab.id];
28825         tab.fireEvent("close", tab);
28826         tab.purgeListeners();
28827         this.autoSizeTabs();
28828     },
28829
28830     getNextAvailable : function(start){
28831         var items = this.items;
28832         var index = start;
28833         // look for a next tab that will slide over to
28834         // replace the one being removed
28835         while(index < items.length){
28836             var item = items[++index];
28837             if(item && !item.isHidden()){
28838                 return item;
28839             }
28840         }
28841         // if one isn't found select the previous tab (on the left)
28842         index = start;
28843         while(index >= 0){
28844             var item = items[--index];
28845             if(item && !item.isHidden()){
28846                 return item;
28847             }
28848         }
28849         return null;
28850     },
28851
28852     /**
28853      * Disables a {@link Roo.TabPanelItem}. It cannot be the active tab, if it is this call is ignored.
28854      * @param {String/Number} id The id or index of the TabPanelItem to disable.
28855      */
28856     disableTab : function(id){
28857         var tab = this.items[id];
28858         if(tab && this.active != tab){
28859             tab.disable();
28860         }
28861     },
28862
28863     /**
28864      * Enables a {@link Roo.TabPanelItem} that is disabled.
28865      * @param {String/Number} id The id or index of the TabPanelItem to enable.
28866      */
28867     enableTab : function(id){
28868         var tab = this.items[id];
28869         tab.enable();
28870     },
28871
28872     /**
28873      * Activates a {@link Roo.TabPanelItem}. The currently active one will be deactivated.
28874      * @param {String/Number} id The id or index of the TabPanelItem to activate.
28875      * @return {Roo.TabPanelItem} The TabPanelItem.
28876      */
28877     activate : function(id){
28878         var tab = this.items[id];
28879         if(!tab){
28880             return null;
28881         }
28882         if(tab == this.active || tab.disabled){
28883             return tab;
28884         }
28885         var e = {};
28886         this.fireEvent("beforetabchange", this, e, tab);
28887         if(e.cancel !== true && !tab.disabled){
28888             if(this.active){
28889                 this.active.hide();
28890             }
28891             this.active = this.items[id];
28892             this.active.show();
28893             this.fireEvent("tabchange", this, this.active);
28894         }
28895         return tab;
28896     },
28897
28898     /**
28899      * Gets the active {@link Roo.TabPanelItem}.
28900      * @return {Roo.TabPanelItem} The active TabPanelItem or null if none are active.
28901      */
28902     getActiveTab : function(){
28903         return this.active;
28904     },
28905
28906     /**
28907      * Updates the tab body element to fit the height of the container element
28908      * for overflow scrolling
28909      * @param {Number} targetHeight (optional) Override the starting height from the elements height
28910      */
28911     syncHeight : function(targetHeight){
28912         var height = (targetHeight || this.el.getHeight())-this.el.getBorderWidth("tb")-this.el.getPadding("tb");
28913         var bm = this.bodyEl.getMargins();
28914         var newHeight = height-(this.stripWrap.getHeight()||0)-(bm.top+bm.bottom);
28915         this.bodyEl.setHeight(newHeight);
28916         return newHeight;
28917     },
28918
28919     onResize : function(){
28920         if(this.monitorResize){
28921             this.autoSizeTabs();
28922         }
28923     },
28924
28925     /**
28926      * Disables tab resizing while tabs are being added (if {@link #resizeTabs} is false this does nothing)
28927      */
28928     beginUpdate : function(){
28929         this.updating = true;
28930     },
28931
28932     /**
28933      * Stops an update and resizes the tabs (if {@link #resizeTabs} is false this does nothing)
28934      */
28935     endUpdate : function(){
28936         this.updating = false;
28937         this.autoSizeTabs();
28938     },
28939
28940     /**
28941      * Manual call to resize the tabs (if {@link #resizeTabs} is false this does nothing)
28942      */
28943     autoSizeTabs : function(){
28944         var count = this.items.length;
28945         var vcount = count - this.hiddenCount;
28946         if(!this.resizeTabs || count < 1 || vcount < 1 || this.updating) {
28947             return;
28948         }
28949         var w = Math.max(this.el.getWidth() - this.cpad, 10);
28950         var availWidth = Math.floor(w / vcount);
28951         var b = this.stripBody;
28952         if(b.getWidth() > w){
28953             var tabs = this.items;
28954             this.setTabWidth(Math.max(availWidth, this.minTabWidth)-2);
28955             if(availWidth < this.minTabWidth){
28956                 /*if(!this.sleft){    // incomplete scrolling code
28957                     this.createScrollButtons();
28958                 }
28959                 this.showScroll();
28960                 this.stripClip.setWidth(w - (this.sleft.getWidth()+this.sright.getWidth()));*/
28961             }
28962         }else{
28963             if(this.currentTabWidth < this.preferredTabWidth){
28964                 this.setTabWidth(Math.min(availWidth, this.preferredTabWidth)-2);
28965             }
28966         }
28967     },
28968
28969     /**
28970      * Returns the number of tabs in this TabPanel.
28971      * @return {Number}
28972      */
28973      getCount : function(){
28974          return this.items.length;
28975      },
28976
28977     /**
28978      * Resizes all the tabs to the passed width
28979      * @param {Number} The new width
28980      */
28981     setTabWidth : function(width){
28982         this.currentTabWidth = width;
28983         for(var i = 0, len = this.items.length; i < len; i++) {
28984                 if(!this.items[i].isHidden()) {
28985                 this.items[i].setWidth(width);
28986             }
28987         }
28988     },
28989
28990     /**
28991      * Destroys this TabPanel
28992      * @param {Boolean} removeEl (optional) True to remove the element from the DOM as well (defaults to undefined)
28993      */
28994     destroy : function(removeEl){
28995         Roo.EventManager.removeResizeListener(this.onResize, this);
28996         for(var i = 0, len = this.items.length; i < len; i++){
28997             this.items[i].purgeListeners();
28998         }
28999         if(removeEl === true){
29000             this.el.update("");
29001             this.el.remove();
29002         }
29003     }
29004 });
29005
29006 /**
29007  * @class Roo.TabPanelItem
29008  * @extends Roo.util.Observable
29009  * Represents an individual item (tab plus body) in a TabPanel.
29010  * @param {Roo.TabPanel} tabPanel The {@link Roo.TabPanel} this TabPanelItem belongs to
29011  * @param {String} id The id of this TabPanelItem
29012  * @param {String} text The text for the tab of this TabPanelItem
29013  * @param {Boolean} closable True to allow this TabPanelItem to be closable (defaults to false)
29014  */
29015 Roo.TabPanelItem = function(tabPanel, id, text, closable){
29016     /**
29017      * The {@link Roo.TabPanel} this TabPanelItem belongs to
29018      * @type Roo.TabPanel
29019      */
29020     this.tabPanel = tabPanel;
29021     /**
29022      * The id for this TabPanelItem
29023      * @type String
29024      */
29025     this.id = id;
29026     /** @private */
29027     this.disabled = false;
29028     /** @private */
29029     this.text = text;
29030     /** @private */
29031     this.loaded = false;
29032     this.closable = closable;
29033
29034     /**
29035      * The body element for this TabPanelItem.
29036      * @type Roo.Element
29037      */
29038     this.bodyEl = Roo.get(tabPanel.createItemBody(tabPanel.bodyEl.dom, id));
29039     this.bodyEl.setVisibilityMode(Roo.Element.VISIBILITY);
29040     this.bodyEl.setStyle("display", "block");
29041     this.bodyEl.setStyle("zoom", "1");
29042     this.hideAction();
29043
29044     var els = tabPanel.createStripElements(tabPanel.stripEl.dom, text, closable);
29045     /** @private */
29046     this.el = Roo.get(els.el, true);
29047     this.inner = Roo.get(els.inner, true);
29048     this.textEl = Roo.get(this.el.dom.firstChild.firstChild.firstChild, true);
29049     this.pnode = Roo.get(els.el.parentNode, true);
29050     this.el.on("mousedown", this.onTabMouseDown, this);
29051     this.el.on("click", this.onTabClick, this);
29052     /** @private */
29053     if(closable){
29054         var c = Roo.get(els.close, true);
29055         c.dom.title = this.closeText;
29056         c.addClassOnOver("close-over");
29057         c.on("click", this.closeClick, this);
29058      }
29059
29060     this.addEvents({
29061          /**
29062          * @event activate
29063          * Fires when this tab becomes the active tab.
29064          * @param {Roo.TabPanel} tabPanel The parent TabPanel
29065          * @param {Roo.TabPanelItem} this
29066          */
29067         "activate": true,
29068         /**
29069          * @event beforeclose
29070          * Fires before this tab is closed. To cancel the close, set cancel to true on e (e.cancel = true).
29071          * @param {Roo.TabPanelItem} this
29072          * @param {Object} e Set cancel to true on this object to cancel the close.
29073          */
29074         "beforeclose": true,
29075         /**
29076          * @event close
29077          * Fires when this tab is closed.
29078          * @param {Roo.TabPanelItem} this
29079          */
29080          "close": true,
29081         /**
29082          * @event deactivate
29083          * Fires when this tab is no longer the active tab.
29084          * @param {Roo.TabPanel} tabPanel The parent TabPanel
29085          * @param {Roo.TabPanelItem} this
29086          */
29087          "deactivate" : true
29088     });
29089     this.hidden = false;
29090
29091     Roo.TabPanelItem.superclass.constructor.call(this);
29092 };
29093
29094 Roo.extend(Roo.TabPanelItem, Roo.util.Observable, {
29095     purgeListeners : function(){
29096        Roo.util.Observable.prototype.purgeListeners.call(this);
29097        this.el.removeAllListeners();
29098     },
29099     /**
29100      * Shows this TabPanelItem -- this <b>does not</b> deactivate the currently active TabPanelItem.
29101      */
29102     show : function(){
29103         this.pnode.addClass("on");
29104         this.showAction();
29105         if(Roo.isOpera){
29106             this.tabPanel.stripWrap.repaint();
29107         }
29108         this.fireEvent("activate", this.tabPanel, this);
29109     },
29110
29111     /**
29112      * Returns true if this tab is the active tab.
29113      * @return {Boolean}
29114      */
29115     isActive : function(){
29116         return this.tabPanel.getActiveTab() == this;
29117     },
29118
29119     /**
29120      * Hides this TabPanelItem -- if you don't activate another TabPanelItem this could look odd.
29121      */
29122     hide : function(){
29123         this.pnode.removeClass("on");
29124         this.hideAction();
29125         this.fireEvent("deactivate", this.tabPanel, this);
29126     },
29127
29128     hideAction : function(){
29129         this.bodyEl.hide();
29130         this.bodyEl.setStyle("position", "absolute");
29131         this.bodyEl.setLeft("-20000px");
29132         this.bodyEl.setTop("-20000px");
29133     },
29134
29135     showAction : function(){
29136         this.bodyEl.setStyle("position", "relative");
29137         this.bodyEl.setTop("");
29138         this.bodyEl.setLeft("");
29139         this.bodyEl.show();
29140     },
29141
29142     /**
29143      * Set the tooltip for the tab.
29144      * @param {String} tooltip The tab's tooltip
29145      */
29146     setTooltip : function(text){
29147         if(Roo.QuickTips && Roo.QuickTips.isEnabled()){
29148             this.textEl.dom.qtip = text;
29149             this.textEl.dom.removeAttribute('title');
29150         }else{
29151             this.textEl.dom.title = text;
29152         }
29153     },
29154
29155     onTabClick : function(e){
29156         e.preventDefault();
29157         this.tabPanel.activate(this.id);
29158     },
29159
29160     onTabMouseDown : function(e){
29161         e.preventDefault();
29162         this.tabPanel.activate(this.id);
29163     },
29164
29165     getWidth : function(){
29166         return this.inner.getWidth();
29167     },
29168
29169     setWidth : function(width){
29170         var iwidth = width - this.pnode.getPadding("lr");
29171         this.inner.setWidth(iwidth);
29172         this.textEl.setWidth(iwidth-this.inner.getPadding("lr"));
29173         this.pnode.setWidth(width);
29174     },
29175
29176     /**
29177      * Show or hide the tab
29178      * @param {Boolean} hidden True to hide or false to show.
29179      */
29180     setHidden : function(hidden){
29181         this.hidden = hidden;
29182         this.pnode.setStyle("display", hidden ? "none" : "");
29183     },
29184
29185     /**
29186      * Returns true if this tab is "hidden"
29187      * @return {Boolean}
29188      */
29189     isHidden : function(){
29190         return this.hidden;
29191     },
29192
29193     /**
29194      * Returns the text for this tab
29195      * @return {String}
29196      */
29197     getText : function(){
29198         return this.text;
29199     },
29200
29201     autoSize : function(){
29202         //this.el.beginMeasure();
29203         this.textEl.setWidth(1);
29204         /*
29205          *  #2804 [new] Tabs in Roojs
29206          *  increase the width by 2-4 pixels to prevent the ellipssis showing in chrome
29207          */
29208         this.setWidth(this.textEl.dom.scrollWidth+this.pnode.getPadding("lr")+this.inner.getPadding("lr") + 2);
29209         //this.el.endMeasure();
29210     },
29211
29212     /**
29213      * Sets the text for the tab (Note: this also sets the tooltip text)
29214      * @param {String} text The tab's text and tooltip
29215      */
29216     setText : function(text){
29217         this.text = text;
29218         this.textEl.update(text);
29219         this.setTooltip(text);
29220         if(!this.tabPanel.resizeTabs){
29221             this.autoSize();
29222         }
29223     },
29224     /**
29225      * Activates this TabPanelItem -- this <b>does</b> deactivate the currently active TabPanelItem.
29226      */
29227     activate : function(){
29228         this.tabPanel.activate(this.id);
29229     },
29230
29231     /**
29232      * Disables this TabPanelItem -- this does nothing if this is the active TabPanelItem.
29233      */
29234     disable : function(){
29235         if(this.tabPanel.active != this){
29236             this.disabled = true;
29237             this.pnode.addClass("disabled");
29238         }
29239     },
29240
29241     /**
29242      * Enables this TabPanelItem if it was previously disabled.
29243      */
29244     enable : function(){
29245         this.disabled = false;
29246         this.pnode.removeClass("disabled");
29247     },
29248
29249     /**
29250      * Sets the content for this TabPanelItem.
29251      * @param {String} content The content
29252      * @param {Boolean} loadScripts true to look for and load scripts
29253      */
29254     setContent : function(content, loadScripts){
29255         this.bodyEl.update(content, loadScripts);
29256     },
29257
29258     /**
29259      * Gets the {@link Roo.UpdateManager} for the body of this TabPanelItem. Enables you to perform Ajax updates.
29260      * @return {Roo.UpdateManager} The UpdateManager
29261      */
29262     getUpdateManager : function(){
29263         return this.bodyEl.getUpdateManager();
29264     },
29265
29266     /**
29267      * Set a URL to be used to load the content for this TabPanelItem.
29268      * @param {String/Function} url The URL to load the content from, or a function to call to get the URL
29269      * @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)
29270      * @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)
29271      * @return {Roo.UpdateManager} The UpdateManager
29272      */
29273     setUrl : function(url, params, loadOnce){
29274         if(this.refreshDelegate){
29275             this.un('activate', this.refreshDelegate);
29276         }
29277         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
29278         this.on("activate", this.refreshDelegate);
29279         return this.bodyEl.getUpdateManager();
29280     },
29281
29282     /** @private */
29283     _handleRefresh : function(url, params, loadOnce){
29284         if(!loadOnce || !this.loaded){
29285             var updater = this.bodyEl.getUpdateManager();
29286             updater.update(url, params, this._setLoaded.createDelegate(this));
29287         }
29288     },
29289
29290     /**
29291      *   Forces a content refresh from the URL specified in the {@link #setUrl} method.
29292      *   Will fail silently if the setUrl method has not been called.
29293      *   This does not activate the panel, just updates its content.
29294      */
29295     refresh : function(){
29296         if(this.refreshDelegate){
29297            this.loaded = false;
29298            this.refreshDelegate();
29299         }
29300     },
29301
29302     /** @private */
29303     _setLoaded : function(){
29304         this.loaded = true;
29305     },
29306
29307     /** @private */
29308     closeClick : function(e){
29309         var o = {};
29310         e.stopEvent();
29311         this.fireEvent("beforeclose", this, o);
29312         if(o.cancel !== true){
29313             this.tabPanel.removeTab(this.id);
29314         }
29315     },
29316     /**
29317      * The text displayed in the tooltip for the close icon.
29318      * @type String
29319      */
29320     closeText : "Close this tab"
29321 });
29322
29323 /** @private */
29324 Roo.TabPanel.prototype.createStrip = function(container){
29325     var strip = document.createElement("div");
29326     strip.className = "x-tabs-wrap";
29327     container.appendChild(strip);
29328     return strip;
29329 };
29330 /** @private */
29331 Roo.TabPanel.prototype.createStripList = function(strip){
29332     // div wrapper for retard IE
29333     // returns the "tr" element.
29334     strip.innerHTML = '<div class="x-tabs-strip-wrap">'+
29335         '<table class="x-tabs-strip" cellspacing="0" cellpadding="0" border="0"><tbody><tr>'+
29336         '<td class="x-tab-strip-toolbar"></td></tr></tbody></table></div>';
29337     return strip.firstChild.firstChild.firstChild.firstChild;
29338 };
29339 /** @private */
29340 Roo.TabPanel.prototype.createBody = function(container){
29341     var body = document.createElement("div");
29342     Roo.id(body, "tab-body");
29343     Roo.fly(body).addClass("x-tabs-body");
29344     container.appendChild(body);
29345     return body;
29346 };
29347 /** @private */
29348 Roo.TabPanel.prototype.createItemBody = function(bodyEl, id){
29349     var body = Roo.getDom(id);
29350     if(!body){
29351         body = document.createElement("div");
29352         body.id = id;
29353     }
29354     Roo.fly(body).addClass("x-tabs-item-body");
29355     bodyEl.insertBefore(body, bodyEl.firstChild);
29356     return body;
29357 };
29358 /** @private */
29359 Roo.TabPanel.prototype.createStripElements = function(stripEl, text, closable){
29360     var td = document.createElement("td");
29361     stripEl.insertBefore(td, stripEl.childNodes[stripEl.childNodes.length-1]);
29362     //stripEl.appendChild(td);
29363     if(closable){
29364         td.className = "x-tabs-closable";
29365         if(!this.closeTpl){
29366             this.closeTpl = new Roo.Template(
29367                '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
29368                '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span>' +
29369                '<div unselectable="on" class="close-icon">&#160;</div></em></span></a>'
29370             );
29371         }
29372         var el = this.closeTpl.overwrite(td, {"text": text});
29373         var close = el.getElementsByTagName("div")[0];
29374         var inner = el.getElementsByTagName("em")[0];
29375         return {"el": el, "close": close, "inner": inner};
29376     } else {
29377         if(!this.tabTpl){
29378             this.tabTpl = new Roo.Template(
29379                '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
29380                '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span></em></span></a>'
29381             );
29382         }
29383         var el = this.tabTpl.overwrite(td, {"text": text});
29384         var inner = el.getElementsByTagName("em")[0];
29385         return {"el": el, "inner": inner};
29386     }
29387 };/*
29388  * Based on:
29389  * Ext JS Library 1.1.1
29390  * Copyright(c) 2006-2007, Ext JS, LLC.
29391  *
29392  * Originally Released Under LGPL - original licence link has changed is not relivant.
29393  *
29394  * Fork - LGPL
29395  * <script type="text/javascript">
29396  */
29397
29398 /**
29399  * @class Roo.Button
29400  * @extends Roo.util.Observable
29401  * Simple Button class
29402  * @cfg {String} text The button text
29403  * @cfg {String} icon The path to an image to display in the button (the image will be set as the background-image
29404  * CSS property of the button by default, so if you want a mixed icon/text button, set cls:"x-btn-text-icon")
29405  * @cfg {Function} handler A function called when the button is clicked (can be used instead of click event)
29406  * @cfg {Object} scope The scope of the handler
29407  * @cfg {Number} minWidth The minimum width for this button (used to give a set of buttons a common width)
29408  * @cfg {String/Object} tooltip The tooltip for the button - can be a string or QuickTips config object
29409  * @cfg {Boolean} hidden True to start hidden (defaults to false)
29410  * @cfg {Boolean} disabled True to start disabled (defaults to false)
29411  * @cfg {Boolean} pressed True to start pressed (only if enableToggle = true)
29412  * @cfg {String} toggleGroup The group this toggle button is a member of (only 1 per group can be pressed, only
29413    applies if enableToggle = true)
29414  * @cfg {String/HTMLElement/Element} renderTo The element to append the button to
29415  * @cfg {Boolean/Object} repeat True to repeat fire the click event while the mouse is down. This can also be
29416   an {@link Roo.util.ClickRepeater} config object (defaults to false).
29417  * @constructor
29418  * Create a new button
29419  * @param {Object} config The config object
29420  */
29421 Roo.Button = function(renderTo, config)
29422 {
29423     if (!config) {
29424         config = renderTo;
29425         renderTo = config.renderTo || false;
29426     }
29427     
29428     Roo.apply(this, config);
29429     this.addEvents({
29430         /**
29431              * @event click
29432              * Fires when this button is clicked
29433              * @param {Button} this
29434              * @param {EventObject} e The click event
29435              */
29436             "click" : true,
29437         /**
29438              * @event toggle
29439              * Fires when the "pressed" state of this button changes (only if enableToggle = true)
29440              * @param {Button} this
29441              * @param {Boolean} pressed
29442              */
29443             "toggle" : true,
29444         /**
29445              * @event mouseover
29446              * Fires when the mouse hovers over the button
29447              * @param {Button} this
29448              * @param {Event} e The event object
29449              */
29450         'mouseover' : true,
29451         /**
29452              * @event mouseout
29453              * Fires when the mouse exits the button
29454              * @param {Button} this
29455              * @param {Event} e The event object
29456              */
29457         'mouseout': true,
29458          /**
29459              * @event render
29460              * Fires when the button is rendered
29461              * @param {Button} this
29462              */
29463         'render': true
29464     });
29465     if(this.menu){
29466         this.menu = Roo.menu.MenuMgr.get(this.menu);
29467     }
29468     // register listeners first!!  - so render can be captured..
29469     Roo.util.Observable.call(this);
29470     if(renderTo){
29471         this.render(renderTo);
29472     }
29473     
29474   
29475 };
29476
29477 Roo.extend(Roo.Button, Roo.util.Observable, {
29478     /**
29479      * 
29480      */
29481     
29482     /**
29483      * Read-only. True if this button is hidden
29484      * @type Boolean
29485      */
29486     hidden : false,
29487     /**
29488      * Read-only. True if this button is disabled
29489      * @type Boolean
29490      */
29491     disabled : false,
29492     /**
29493      * Read-only. True if this button is pressed (only if enableToggle = true)
29494      * @type Boolean
29495      */
29496     pressed : false,
29497
29498     /**
29499      * @cfg {Number} tabIndex 
29500      * The DOM tabIndex for this button (defaults to undefined)
29501      */
29502     tabIndex : undefined,
29503
29504     /**
29505      * @cfg {Boolean} enableToggle
29506      * True to enable pressed/not pressed toggling (defaults to false)
29507      */
29508     enableToggle: false,
29509     /**
29510      * @cfg {Mixed} menu
29511      * Standard menu attribute consisting of a reference to a menu object, a menu id or a menu config blob (defaults to undefined).
29512      */
29513     menu : undefined,
29514     /**
29515      * @cfg {String} menuAlign
29516      * The position to align the menu to (see {@link Roo.Element#alignTo} for more details, defaults to 'tl-bl?').
29517      */
29518     menuAlign : "tl-bl?",
29519
29520     /**
29521      * @cfg {String} iconCls
29522      * A css class which sets a background image to be used as the icon for this button (defaults to undefined).
29523      */
29524     iconCls : undefined,
29525     /**
29526      * @cfg {String} type
29527      * The button's type, corresponding to the DOM input element type attribute.  Either "submit," "reset" or "button" (default).
29528      */
29529     type : 'button',
29530
29531     // private
29532     menuClassTarget: 'tr',
29533
29534     /**
29535      * @cfg {String} clickEvent
29536      * The type of event to map to the button's event handler (defaults to 'click')
29537      */
29538     clickEvent : 'click',
29539
29540     /**
29541      * @cfg {Boolean} handleMouseEvents
29542      * False to disable visual cues on mouseover, mouseout and mousedown (defaults to true)
29543      */
29544     handleMouseEvents : true,
29545
29546     /**
29547      * @cfg {String} tooltipType
29548      * The type of tooltip to use. Either "qtip" (default) for QuickTips or "title" for title attribute.
29549      */
29550     tooltipType : 'qtip',
29551
29552     /**
29553      * @cfg {String} cls
29554      * A CSS class to apply to the button's main element.
29555      */
29556     
29557     /**
29558      * @cfg {Roo.Template} template (Optional)
29559      * An {@link Roo.Template} with which to create the Button's main element. This Template must
29560      * contain numeric substitution parameter 0 if it is to display the tRoo property. Changing the template could
29561      * require code modifications if required elements (e.g. a button) aren't present.
29562      */
29563
29564     // private
29565     render : function(renderTo){
29566         var btn;
29567         if(this.hideParent){
29568             this.parentEl = Roo.get(renderTo);
29569         }
29570         if(!this.dhconfig){
29571             if(!this.template){
29572                 if(!Roo.Button.buttonTemplate){
29573                     // hideous table template
29574                     Roo.Button.buttonTemplate = new Roo.Template(
29575                         '<table border="0" cellpadding="0" cellspacing="0" class="x-btn-wrap"><tbody><tr>',
29576                         '<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>',
29577                         "</tr></tbody></table>");
29578                 }
29579                 this.template = Roo.Button.buttonTemplate;
29580             }
29581             btn = this.template.append(renderTo, [this.text || '&#160;', this.type], true);
29582             var btnEl = btn.child("button:first");
29583             btnEl.on('focus', this.onFocus, this);
29584             btnEl.on('blur', this.onBlur, this);
29585             if(this.cls){
29586                 btn.addClass(this.cls);
29587             }
29588             if(this.icon){
29589                 btnEl.setStyle('background-image', 'url(' +this.icon +')');
29590             }
29591             if(this.iconCls){
29592                 btnEl.addClass(this.iconCls);
29593                 if(!this.cls){
29594                     btn.addClass(this.text ? 'x-btn-text-icon' : 'x-btn-icon');
29595                 }
29596             }
29597             if(this.tabIndex !== undefined){
29598                 btnEl.dom.tabIndex = this.tabIndex;
29599             }
29600             if(this.tooltip){
29601                 if(typeof this.tooltip == 'object'){
29602                     Roo.QuickTips.tips(Roo.apply({
29603                           target: btnEl.id
29604                     }, this.tooltip));
29605                 } else {
29606                     btnEl.dom[this.tooltipType] = this.tooltip;
29607                 }
29608             }
29609         }else{
29610             btn = Roo.DomHelper.append(Roo.get(renderTo).dom, this.dhconfig, true);
29611         }
29612         this.el = btn;
29613         if(this.id){
29614             this.el.dom.id = this.el.id = this.id;
29615         }
29616         if(this.menu){
29617             this.el.child(this.menuClassTarget).addClass("x-btn-with-menu");
29618             this.menu.on("show", this.onMenuShow, this);
29619             this.menu.on("hide", this.onMenuHide, this);
29620         }
29621         btn.addClass("x-btn");
29622         if(Roo.isIE && !Roo.isIE7){
29623             this.autoWidth.defer(1, this);
29624         }else{
29625             this.autoWidth();
29626         }
29627         if(this.handleMouseEvents){
29628             btn.on("mouseover", this.onMouseOver, this);
29629             btn.on("mouseout", this.onMouseOut, this);
29630             btn.on("mousedown", this.onMouseDown, this);
29631         }
29632         btn.on(this.clickEvent, this.onClick, this);
29633         //btn.on("mouseup", this.onMouseUp, this);
29634         if(this.hidden){
29635             this.hide();
29636         }
29637         if(this.disabled){
29638             this.disable();
29639         }
29640         Roo.ButtonToggleMgr.register(this);
29641         if(this.pressed){
29642             this.el.addClass("x-btn-pressed");
29643         }
29644         if(this.repeat){
29645             var repeater = new Roo.util.ClickRepeater(btn,
29646                 typeof this.repeat == "object" ? this.repeat : {}
29647             );
29648             repeater.on("click", this.onClick,  this);
29649         }
29650         
29651         this.fireEvent('render', this);
29652         
29653     },
29654     /**
29655      * Returns the button's underlying element
29656      * @return {Roo.Element} The element
29657      */
29658     getEl : function(){
29659         return this.el;  
29660     },
29661     
29662     /**
29663      * Destroys this Button and removes any listeners.
29664      */
29665     destroy : function(){
29666         Roo.ButtonToggleMgr.unregister(this);
29667         this.el.removeAllListeners();
29668         this.purgeListeners();
29669         this.el.remove();
29670     },
29671
29672     // private
29673     autoWidth : function(){
29674         if(this.el){
29675             this.el.setWidth("auto");
29676             if(Roo.isIE7 && Roo.isStrict){
29677                 var ib = this.el.child('button');
29678                 if(ib && ib.getWidth() > 20){
29679                     ib.clip();
29680                     ib.setWidth(Roo.util.TextMetrics.measure(ib, this.text).width+ib.getFrameWidth('lr'));
29681                 }
29682             }
29683             if(this.minWidth){
29684                 if(this.hidden){
29685                     this.el.beginMeasure();
29686                 }
29687                 if(this.el.getWidth() < this.minWidth){
29688                     this.el.setWidth(this.minWidth);
29689                 }
29690                 if(this.hidden){
29691                     this.el.endMeasure();
29692                 }
29693             }
29694         }
29695     },
29696
29697     /**
29698      * Assigns this button's click handler
29699      * @param {Function} handler The function to call when the button is clicked
29700      * @param {Object} scope (optional) Scope for the function passed in
29701      */
29702     setHandler : function(handler, scope){
29703         this.handler = handler;
29704         this.scope = scope;  
29705     },
29706     
29707     /**
29708      * Sets this button's text
29709      * @param {String} text The button text
29710      */
29711     setText : function(text){
29712         this.text = text;
29713         if(this.el){
29714             this.el.child("td.x-btn-center button.x-btn-text").update(text);
29715         }
29716         this.autoWidth();
29717     },
29718     
29719     /**
29720      * Gets the text for this button
29721      * @return {String} The button text
29722      */
29723     getText : function(){
29724         return this.text;  
29725     },
29726     
29727     /**
29728      * Show this button
29729      */
29730     show: function(){
29731         this.hidden = false;
29732         if(this.el){
29733             this[this.hideParent? 'parentEl' : 'el'].setStyle("display", "");
29734         }
29735     },
29736     
29737     /**
29738      * Hide this button
29739      */
29740     hide: function(){
29741         this.hidden = true;
29742         if(this.el){
29743             this[this.hideParent? 'parentEl' : 'el'].setStyle("display", "none");
29744         }
29745     },
29746     
29747     /**
29748      * Convenience function for boolean show/hide
29749      * @param {Boolean} visible True to show, false to hide
29750      */
29751     setVisible: function(visible){
29752         if(visible) {
29753             this.show();
29754         }else{
29755             this.hide();
29756         }
29757     },
29758     
29759     /**
29760      * If a state it passed, it becomes the pressed state otherwise the current state is toggled.
29761      * @param {Boolean} state (optional) Force a particular state
29762      */
29763     toggle : function(state){
29764         state = state === undefined ? !this.pressed : state;
29765         if(state != this.pressed){
29766             if(state){
29767                 this.el.addClass("x-btn-pressed");
29768                 this.pressed = true;
29769                 this.fireEvent("toggle", this, true);
29770             }else{
29771                 this.el.removeClass("x-btn-pressed");
29772                 this.pressed = false;
29773                 this.fireEvent("toggle", this, false);
29774             }
29775             if(this.toggleHandler){
29776                 this.toggleHandler.call(this.scope || this, this, state);
29777             }
29778         }
29779     },
29780     
29781     /**
29782      * Focus the button
29783      */
29784     focus : function(){
29785         this.el.child('button:first').focus();
29786     },
29787     
29788     /**
29789      * Disable this button
29790      */
29791     disable : function(){
29792         if(this.el){
29793             this.el.addClass("x-btn-disabled");
29794         }
29795         this.disabled = true;
29796     },
29797     
29798     /**
29799      * Enable this button
29800      */
29801     enable : function(){
29802         if(this.el){
29803             this.el.removeClass("x-btn-disabled");
29804         }
29805         this.disabled = false;
29806     },
29807
29808     /**
29809      * Convenience function for boolean enable/disable
29810      * @param {Boolean} enabled True to enable, false to disable
29811      */
29812     setDisabled : function(v){
29813         this[v !== true ? "enable" : "disable"]();
29814     },
29815
29816     // private
29817     onClick : function(e)
29818     {
29819         if(e){
29820             e.preventDefault();
29821         }
29822         if(e.button != 0){
29823             return;
29824         }
29825         if(!this.disabled){
29826             if(this.enableToggle){
29827                 this.toggle();
29828             }
29829             if(this.menu && !this.menu.isVisible()){
29830                 this.menu.show(this.el, this.menuAlign);
29831             }
29832             this.fireEvent("click", this, e);
29833             if(this.handler){
29834                 this.el.removeClass("x-btn-over");
29835                 this.handler.call(this.scope || this, this, e);
29836             }
29837         }
29838     },
29839     // private
29840     onMouseOver : function(e){
29841         if(!this.disabled){
29842             this.el.addClass("x-btn-over");
29843             this.fireEvent('mouseover', this, e);
29844         }
29845     },
29846     // private
29847     onMouseOut : function(e){
29848         if(!e.within(this.el,  true)){
29849             this.el.removeClass("x-btn-over");
29850             this.fireEvent('mouseout', this, e);
29851         }
29852     },
29853     // private
29854     onFocus : function(e){
29855         if(!this.disabled){
29856             this.el.addClass("x-btn-focus");
29857         }
29858     },
29859     // private
29860     onBlur : function(e){
29861         this.el.removeClass("x-btn-focus");
29862     },
29863     // private
29864     onMouseDown : function(e){
29865         if(!this.disabled && e.button == 0){
29866             this.el.addClass("x-btn-click");
29867             Roo.get(document).on('mouseup', this.onMouseUp, this);
29868         }
29869     },
29870     // private
29871     onMouseUp : function(e){
29872         if(e.button == 0){
29873             this.el.removeClass("x-btn-click");
29874             Roo.get(document).un('mouseup', this.onMouseUp, this);
29875         }
29876     },
29877     // private
29878     onMenuShow : function(e){
29879         this.el.addClass("x-btn-menu-active");
29880     },
29881     // private
29882     onMenuHide : function(e){
29883         this.el.removeClass("x-btn-menu-active");
29884     }   
29885 });
29886
29887 // Private utility class used by Button
29888 Roo.ButtonToggleMgr = function(){
29889    var groups = {};
29890    
29891    function toggleGroup(btn, state){
29892        if(state){
29893            var g = groups[btn.toggleGroup];
29894            for(var i = 0, l = g.length; i < l; i++){
29895                if(g[i] != btn){
29896                    g[i].toggle(false);
29897                }
29898            }
29899        }
29900    }
29901    
29902    return {
29903        register : function(btn){
29904            if(!btn.toggleGroup){
29905                return;
29906            }
29907            var g = groups[btn.toggleGroup];
29908            if(!g){
29909                g = groups[btn.toggleGroup] = [];
29910            }
29911            g.push(btn);
29912            btn.on("toggle", toggleGroup);
29913        },
29914        
29915        unregister : function(btn){
29916            if(!btn.toggleGroup){
29917                return;
29918            }
29919            var g = groups[btn.toggleGroup];
29920            if(g){
29921                g.remove(btn);
29922                btn.un("toggle", toggleGroup);
29923            }
29924        }
29925    };
29926 }();/*
29927  * Based on:
29928  * Ext JS Library 1.1.1
29929  * Copyright(c) 2006-2007, Ext JS, LLC.
29930  *
29931  * Originally Released Under LGPL - original licence link has changed is not relivant.
29932  *
29933  * Fork - LGPL
29934  * <script type="text/javascript">
29935  */
29936  
29937 /**
29938  * @class Roo.SplitButton
29939  * @extends Roo.Button
29940  * A split button that provides a built-in dropdown arrow that can fire an event separately from the default
29941  * click event of the button.  Typically this would be used to display a dropdown menu that provides additional
29942  * options to the primary button action, but any custom handler can provide the arrowclick implementation.
29943  * @cfg {Function} arrowHandler A function called when the arrow button is clicked (can be used instead of click event)
29944  * @cfg {String} arrowTooltip The title attribute of the arrow
29945  * @constructor
29946  * Create a new menu button
29947  * @param {String/HTMLElement/Element} renderTo The element to append the button to
29948  * @param {Object} config The config object
29949  */
29950 Roo.SplitButton = function(renderTo, config){
29951     Roo.SplitButton.superclass.constructor.call(this, renderTo, config);
29952     /**
29953      * @event arrowclick
29954      * Fires when this button's arrow is clicked
29955      * @param {SplitButton} this
29956      * @param {EventObject} e The click event
29957      */
29958     this.addEvents({"arrowclick":true});
29959 };
29960
29961 Roo.extend(Roo.SplitButton, Roo.Button, {
29962     render : function(renderTo){
29963         // this is one sweet looking template!
29964         var tpl = new Roo.Template(
29965             '<table cellspacing="0" class="x-btn-menu-wrap x-btn"><tr><td>',
29966             '<table cellspacing="0" class="x-btn-wrap x-btn-menu-text-wrap"><tbody>',
29967             '<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>',
29968             "</tbody></table></td><td>",
29969             '<table cellspacing="0" class="x-btn-wrap x-btn-menu-arrow-wrap"><tbody>',
29970             '<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>',
29971             "</tbody></table></td></tr></table>"
29972         );
29973         var btn = tpl.append(renderTo, [this.text, this.type], true);
29974         var btnEl = btn.child("button");
29975         if(this.cls){
29976             btn.addClass(this.cls);
29977         }
29978         if(this.icon){
29979             btnEl.setStyle('background-image', 'url(' +this.icon +')');
29980         }
29981         if(this.iconCls){
29982             btnEl.addClass(this.iconCls);
29983             if(!this.cls){
29984                 btn.addClass(this.text ? 'x-btn-text-icon' : 'x-btn-icon');
29985             }
29986         }
29987         this.el = btn;
29988         if(this.handleMouseEvents){
29989             btn.on("mouseover", this.onMouseOver, this);
29990             btn.on("mouseout", this.onMouseOut, this);
29991             btn.on("mousedown", this.onMouseDown, this);
29992             btn.on("mouseup", this.onMouseUp, this);
29993         }
29994         btn.on(this.clickEvent, this.onClick, this);
29995         if(this.tooltip){
29996             if(typeof this.tooltip == 'object'){
29997                 Roo.QuickTips.tips(Roo.apply({
29998                       target: btnEl.id
29999                 }, this.tooltip));
30000             } else {
30001                 btnEl.dom[this.tooltipType] = this.tooltip;
30002             }
30003         }
30004         if(this.arrowTooltip){
30005             btn.child("button:nth(2)").dom[this.tooltipType] = this.arrowTooltip;
30006         }
30007         if(this.hidden){
30008             this.hide();
30009         }
30010         if(this.disabled){
30011             this.disable();
30012         }
30013         if(this.pressed){
30014             this.el.addClass("x-btn-pressed");
30015         }
30016         if(Roo.isIE && !Roo.isIE7){
30017             this.autoWidth.defer(1, this);
30018         }else{
30019             this.autoWidth();
30020         }
30021         if(this.menu){
30022             this.menu.on("show", this.onMenuShow, this);
30023             this.menu.on("hide", this.onMenuHide, this);
30024         }
30025         this.fireEvent('render', this);
30026     },
30027
30028     // private
30029     autoWidth : function(){
30030         if(this.el){
30031             var tbl = this.el.child("table:first");
30032             var tbl2 = this.el.child("table:last");
30033             this.el.setWidth("auto");
30034             tbl.setWidth("auto");
30035             if(Roo.isIE7 && Roo.isStrict){
30036                 var ib = this.el.child('button:first');
30037                 if(ib && ib.getWidth() > 20){
30038                     ib.clip();
30039                     ib.setWidth(Roo.util.TextMetrics.measure(ib, this.text).width+ib.getFrameWidth('lr'));
30040                 }
30041             }
30042             if(this.minWidth){
30043                 if(this.hidden){
30044                     this.el.beginMeasure();
30045                 }
30046                 if((tbl.getWidth()+tbl2.getWidth()) < this.minWidth){
30047                     tbl.setWidth(this.minWidth-tbl2.getWidth());
30048                 }
30049                 if(this.hidden){
30050                     this.el.endMeasure();
30051                 }
30052             }
30053             this.el.setWidth(tbl.getWidth()+tbl2.getWidth());
30054         } 
30055     },
30056     /**
30057      * Sets this button's click handler
30058      * @param {Function} handler The function to call when the button is clicked
30059      * @param {Object} scope (optional) Scope for the function passed above
30060      */
30061     setHandler : function(handler, scope){
30062         this.handler = handler;
30063         this.scope = scope;  
30064     },
30065     
30066     /**
30067      * Sets this button's arrow click handler
30068      * @param {Function} handler The function to call when the arrow is clicked
30069      * @param {Object} scope (optional) Scope for the function passed above
30070      */
30071     setArrowHandler : function(handler, scope){
30072         this.arrowHandler = handler;
30073         this.scope = scope;  
30074     },
30075     
30076     /**
30077      * Focus the button
30078      */
30079     focus : function(){
30080         if(this.el){
30081             this.el.child("button:first").focus();
30082         }
30083     },
30084
30085     // private
30086     onClick : function(e){
30087         e.preventDefault();
30088         if(!this.disabled){
30089             if(e.getTarget(".x-btn-menu-arrow-wrap")){
30090                 if(this.menu && !this.menu.isVisible()){
30091                     this.menu.show(this.el, this.menuAlign);
30092                 }
30093                 this.fireEvent("arrowclick", this, e);
30094                 if(this.arrowHandler){
30095                     this.arrowHandler.call(this.scope || this, this, e);
30096                 }
30097             }else{
30098                 this.fireEvent("click", this, e);
30099                 if(this.handler){
30100                     this.handler.call(this.scope || this, this, e);
30101                 }
30102             }
30103         }
30104     },
30105     // private
30106     onMouseDown : function(e){
30107         if(!this.disabled){
30108             Roo.fly(e.getTarget("table")).addClass("x-btn-click");
30109         }
30110     },
30111     // private
30112     onMouseUp : function(e){
30113         Roo.fly(e.getTarget("table")).removeClass("x-btn-click");
30114     }   
30115 });
30116
30117
30118 // backwards compat
30119 Roo.MenuButton = Roo.SplitButton;/*
30120  * Based on:
30121  * Ext JS Library 1.1.1
30122  * Copyright(c) 2006-2007, Ext JS, LLC.
30123  *
30124  * Originally Released Under LGPL - original licence link has changed is not relivant.
30125  *
30126  * Fork - LGPL
30127  * <script type="text/javascript">
30128  */
30129
30130 /**
30131  * @class Roo.Toolbar
30132  * Basic Toolbar class.
30133  * @constructor
30134  * Creates a new Toolbar
30135  * @param {Object} container The config object
30136  */ 
30137 Roo.Toolbar = function(container, buttons, config)
30138 {
30139     /// old consturctor format still supported..
30140     if(container instanceof Array){ // omit the container for later rendering
30141         buttons = container;
30142         config = buttons;
30143         container = null;
30144     }
30145     if (typeof(container) == 'object' && container.xtype) {
30146         config = container;
30147         container = config.container;
30148         buttons = config.buttons || []; // not really - use items!!
30149     }
30150     var xitems = [];
30151     if (config && config.items) {
30152         xitems = config.items;
30153         delete config.items;
30154     }
30155     Roo.apply(this, config);
30156     this.buttons = buttons;
30157     
30158     if(container){
30159         this.render(container);
30160     }
30161     this.xitems = xitems;
30162     Roo.each(xitems, function(b) {
30163         this.add(b);
30164     }, this);
30165     
30166 };
30167
30168 Roo.Toolbar.prototype = {
30169     /**
30170      * @cfg {Array} items
30171      * array of button configs or elements to add (will be converted to a MixedCollection)
30172      */
30173     
30174     /**
30175      * @cfg {String/HTMLElement/Element} container
30176      * The id or element that will contain the toolbar
30177      */
30178     // private
30179     render : function(ct){
30180         this.el = Roo.get(ct);
30181         if(this.cls){
30182             this.el.addClass(this.cls);
30183         }
30184         // using a table allows for vertical alignment
30185         // 100% width is needed by Safari...
30186         this.el.update('<div class="x-toolbar x-small-editor"><table cellspacing="0"><tr></tr></table></div>');
30187         this.tr = this.el.child("tr", true);
30188         var autoId = 0;
30189         this.items = new Roo.util.MixedCollection(false, function(o){
30190             return o.id || ("item" + (++autoId));
30191         });
30192         if(this.buttons){
30193             this.add.apply(this, this.buttons);
30194             delete this.buttons;
30195         }
30196     },
30197
30198     /**
30199      * Adds element(s) to the toolbar -- this function takes a variable number of 
30200      * arguments of mixed type and adds them to the toolbar.
30201      * @param {Mixed} arg1 The following types of arguments are all valid:<br />
30202      * <ul>
30203      * <li>{@link Roo.Toolbar.Button} config: A valid button config object (equivalent to {@link #addButton})</li>
30204      * <li>HtmlElement: Any standard HTML element (equivalent to {@link #addElement})</li>
30205      * <li>Field: Any form field (equivalent to {@link #addField})</li>
30206      * <li>Item: Any subclass of {@link Roo.Toolbar.Item} (equivalent to {@link #addItem})</li>
30207      * <li>String: Any generic string (gets wrapped in a {@link Roo.Toolbar.TextItem}, equivalent to {@link #addText}).
30208      * Note that there are a few special strings that are treated differently as explained nRoo.</li>
30209      * <li>'separator' or '-': Creates a separator element (equivalent to {@link #addSeparator})</li>
30210      * <li>' ': Creates a spacer element (equivalent to {@link #addSpacer})</li>
30211      * <li>'->': Creates a fill element (equivalent to {@link #addFill})</li>
30212      * </ul>
30213      * @param {Mixed} arg2
30214      * @param {Mixed} etc.
30215      */
30216     add : function(){
30217         var a = arguments, l = a.length;
30218         for(var i = 0; i < l; i++){
30219             this._add(a[i]);
30220         }
30221     },
30222     // private..
30223     _add : function(el) {
30224         
30225         if (el.xtype) {
30226             el = Roo.factory(el, typeof(Roo.Toolbar[el.xtype]) == 'undefined' ? Roo.form : Roo.Toolbar);
30227         }
30228         
30229         if (el.applyTo){ // some kind of form field
30230             return this.addField(el);
30231         } 
30232         if (el.render){ // some kind of Toolbar.Item
30233             return this.addItem(el);
30234         }
30235         if (typeof el == "string"){ // string
30236             if(el == "separator" || el == "-"){
30237                 return this.addSeparator();
30238             }
30239             if (el == " "){
30240                 return this.addSpacer();
30241             }
30242             if(el == "->"){
30243                 return this.addFill();
30244             }
30245             return this.addText(el);
30246             
30247         }
30248         if(el.tagName){ // element
30249             return this.addElement(el);
30250         }
30251         if(typeof el == "object"){ // must be button config?
30252             return this.addButton(el);
30253         }
30254         // and now what?!?!
30255         return false;
30256         
30257     },
30258     
30259     /**
30260      * Add an Xtype element
30261      * @param {Object} xtype Xtype Object
30262      * @return {Object} created Object
30263      */
30264     addxtype : function(e){
30265         return this.add(e);  
30266     },
30267     
30268     /**
30269      * Returns the Element for this toolbar.
30270      * @return {Roo.Element}
30271      */
30272     getEl : function(){
30273         return this.el;  
30274     },
30275     
30276     /**
30277      * Adds a separator
30278      * @return {Roo.Toolbar.Item} The separator item
30279      */
30280     addSeparator : function(){
30281         return this.addItem(new Roo.Toolbar.Separator());
30282     },
30283
30284     /**
30285      * Adds a spacer element
30286      * @return {Roo.Toolbar.Spacer} The spacer item
30287      */
30288     addSpacer : function(){
30289         return this.addItem(new Roo.Toolbar.Spacer());
30290     },
30291
30292     /**
30293      * Adds a fill element that forces subsequent additions to the right side of the toolbar
30294      * @return {Roo.Toolbar.Fill} The fill item
30295      */
30296     addFill : function(){
30297         return this.addItem(new Roo.Toolbar.Fill());
30298     },
30299
30300     /**
30301      * Adds any standard HTML element to the toolbar
30302      * @param {String/HTMLElement/Element} el The element or id of the element to add
30303      * @return {Roo.Toolbar.Item} The element's item
30304      */
30305     addElement : function(el){
30306         return this.addItem(new Roo.Toolbar.Item(el));
30307     },
30308     /**
30309      * Collection of items on the toolbar.. (only Toolbar Items, so use fields to retrieve fields)
30310      * @type Roo.util.MixedCollection  
30311      */
30312     items : false,
30313      
30314     /**
30315      * Adds any Toolbar.Item or subclass
30316      * @param {Roo.Toolbar.Item} item
30317      * @return {Roo.Toolbar.Item} The item
30318      */
30319     addItem : function(item){
30320         var td = this.nextBlock();
30321         item.render(td);
30322         this.items.add(item);
30323         return item;
30324     },
30325     
30326     /**
30327      * Adds a button (or buttons). See {@link Roo.Toolbar.Button} for more info on the config.
30328      * @param {Object/Array} config A button config or array of configs
30329      * @return {Roo.Toolbar.Button/Array}
30330      */
30331     addButton : function(config){
30332         if(config instanceof Array){
30333             var buttons = [];
30334             for(var i = 0, len = config.length; i < len; i++) {
30335                 buttons.push(this.addButton(config[i]));
30336             }
30337             return buttons;
30338         }
30339         var b = config;
30340         if(!(config instanceof Roo.Toolbar.Button)){
30341             b = config.split ?
30342                 new Roo.Toolbar.SplitButton(config) :
30343                 new Roo.Toolbar.Button(config);
30344         }
30345         var td = this.nextBlock();
30346         b.render(td);
30347         this.items.add(b);
30348         return b;
30349     },
30350     
30351     /**
30352      * Adds text to the toolbar
30353      * @param {String} text The text to add
30354      * @return {Roo.Toolbar.Item} The element's item
30355      */
30356     addText : function(text){
30357         return this.addItem(new Roo.Toolbar.TextItem(text));
30358     },
30359     
30360     /**
30361      * Inserts any {@link Roo.Toolbar.Item}/{@link Roo.Toolbar.Button} at the specified index.
30362      * @param {Number} index The index where the item is to be inserted
30363      * @param {Object/Roo.Toolbar.Item/Roo.Toolbar.Button (may be Array)} item The button, or button config object to be inserted.
30364      * @return {Roo.Toolbar.Button/Item}
30365      */
30366     insertButton : function(index, item){
30367         if(item instanceof Array){
30368             var buttons = [];
30369             for(var i = 0, len = item.length; i < len; i++) {
30370                buttons.push(this.insertButton(index + i, item[i]));
30371             }
30372             return buttons;
30373         }
30374         if (!(item instanceof Roo.Toolbar.Button)){
30375            item = new Roo.Toolbar.Button(item);
30376         }
30377         var td = document.createElement("td");
30378         this.tr.insertBefore(td, this.tr.childNodes[index]);
30379         item.render(td);
30380         this.items.insert(index, item);
30381         return item;
30382     },
30383     
30384     /**
30385      * Adds a new element to the toolbar from the passed {@link Roo.DomHelper} config.
30386      * @param {Object} config
30387      * @return {Roo.Toolbar.Item} The element's item
30388      */
30389     addDom : function(config, returnEl){
30390         var td = this.nextBlock();
30391         Roo.DomHelper.overwrite(td, config);
30392         var ti = new Roo.Toolbar.Item(td.firstChild);
30393         ti.render(td);
30394         this.items.add(ti);
30395         return ti;
30396     },
30397
30398     /**
30399      * Collection of fields on the toolbar.. usefull for quering (value is false if there are no fields)
30400      * @type Roo.util.MixedCollection  
30401      */
30402     fields : false,
30403     
30404     /**
30405      * Adds a dynamically rendered Roo.form field (TextField, ComboBox, etc).
30406      * Note: the field should not have been rendered yet. For a field that has already been
30407      * rendered, use {@link #addElement}.
30408      * @param {Roo.form.Field} field
30409      * @return {Roo.ToolbarItem}
30410      */
30411      
30412       
30413     addField : function(field) {
30414         if (!this.fields) {
30415             var autoId = 0;
30416             this.fields = new Roo.util.MixedCollection(false, function(o){
30417                 return o.id || ("item" + (++autoId));
30418             });
30419
30420         }
30421         
30422         var td = this.nextBlock();
30423         field.render(td);
30424         var ti = new Roo.Toolbar.Item(td.firstChild);
30425         ti.render(td);
30426         this.items.add(ti);
30427         this.fields.add(field);
30428         return ti;
30429     },
30430     /**
30431      * Hide the toolbar
30432      * @method hide
30433      */
30434      
30435       
30436     hide : function()
30437     {
30438         this.el.child('div').setVisibilityMode(Roo.Element.DISPLAY);
30439         this.el.child('div').hide();
30440     },
30441     /**
30442      * Show the toolbar
30443      * @method show
30444      */
30445     show : function()
30446     {
30447         this.el.child('div').show();
30448     },
30449       
30450     // private
30451     nextBlock : function(){
30452         var td = document.createElement("td");
30453         this.tr.appendChild(td);
30454         return td;
30455     },
30456
30457     // private
30458     destroy : function(){
30459         if(this.items){ // rendered?
30460             Roo.destroy.apply(Roo, this.items.items);
30461         }
30462         if(this.fields){ // rendered?
30463             Roo.destroy.apply(Roo, this.fields.items);
30464         }
30465         Roo.Element.uncache(this.el, this.tr);
30466     }
30467 };
30468
30469 /**
30470  * @class Roo.Toolbar.Item
30471  * The base class that other classes should extend in order to get some basic common toolbar item functionality.
30472  * @constructor
30473  * Creates a new Item
30474  * @param {HTMLElement} el 
30475  */
30476 Roo.Toolbar.Item = function(el){
30477     var cfg = {};
30478     if (typeof (el.xtype) != 'undefined') {
30479         cfg = el;
30480         el = cfg.el;
30481     }
30482     
30483     this.el = Roo.getDom(el);
30484     this.id = Roo.id(this.el);
30485     this.hidden = false;
30486     
30487     this.addEvents({
30488          /**
30489              * @event render
30490              * Fires when the button is rendered
30491              * @param {Button} this
30492              */
30493         'render': true
30494     });
30495     Roo.Toolbar.Item.superclass.constructor.call(this,cfg);
30496 };
30497 Roo.extend(Roo.Toolbar.Item, Roo.util.Observable, {
30498 //Roo.Toolbar.Item.prototype = {
30499     
30500     /**
30501      * Get this item's HTML Element
30502      * @return {HTMLElement}
30503      */
30504     getEl : function(){
30505        return this.el;  
30506     },
30507
30508     // private
30509     render : function(td){
30510         
30511          this.td = td;
30512         td.appendChild(this.el);
30513         
30514         this.fireEvent('render', this);
30515     },
30516     
30517     /**
30518      * Removes and destroys this item.
30519      */
30520     destroy : function(){
30521         this.td.parentNode.removeChild(this.td);
30522     },
30523     
30524     /**
30525      * Shows this item.
30526      */
30527     show: function(){
30528         this.hidden = false;
30529         this.td.style.display = "";
30530     },
30531     
30532     /**
30533      * Hides this item.
30534      */
30535     hide: function(){
30536         this.hidden = true;
30537         this.td.style.display = "none";
30538     },
30539     
30540     /**
30541      * Convenience function for boolean show/hide.
30542      * @param {Boolean} visible true to show/false to hide
30543      */
30544     setVisible: function(visible){
30545         if(visible) {
30546             this.show();
30547         }else{
30548             this.hide();
30549         }
30550     },
30551     
30552     /**
30553      * Try to focus this item.
30554      */
30555     focus : function(){
30556         Roo.fly(this.el).focus();
30557     },
30558     
30559     /**
30560      * Disables this item.
30561      */
30562     disable : function(){
30563         Roo.fly(this.td).addClass("x-item-disabled");
30564         this.disabled = true;
30565         this.el.disabled = true;
30566     },
30567     
30568     /**
30569      * Enables this item.
30570      */
30571     enable : function(){
30572         Roo.fly(this.td).removeClass("x-item-disabled");
30573         this.disabled = false;
30574         this.el.disabled = false;
30575     }
30576 });
30577
30578
30579 /**
30580  * @class Roo.Toolbar.Separator
30581  * @extends Roo.Toolbar.Item
30582  * A simple toolbar separator class
30583  * @constructor
30584  * Creates a new Separator
30585  */
30586 Roo.Toolbar.Separator = function(cfg){
30587     
30588     var s = document.createElement("span");
30589     s.className = "ytb-sep";
30590     if (cfg) {
30591         cfg.el = s;
30592     }
30593     
30594     Roo.Toolbar.Separator.superclass.constructor.call(this, cfg || s);
30595 };
30596 Roo.extend(Roo.Toolbar.Separator, Roo.Toolbar.Item, {
30597     enable:Roo.emptyFn,
30598     disable:Roo.emptyFn,
30599     focus:Roo.emptyFn
30600 });
30601
30602 /**
30603  * @class Roo.Toolbar.Spacer
30604  * @extends Roo.Toolbar.Item
30605  * A simple element that adds extra horizontal space to a toolbar.
30606  * @constructor
30607  * Creates a new Spacer
30608  */
30609 Roo.Toolbar.Spacer = function(cfg){
30610     var s = document.createElement("div");
30611     s.className = "ytb-spacer";
30612     if (cfg) {
30613         cfg.el = s;
30614     }
30615     Roo.Toolbar.Spacer.superclass.constructor.call(this, cfg || s);
30616 };
30617 Roo.extend(Roo.Toolbar.Spacer, Roo.Toolbar.Item, {
30618     enable:Roo.emptyFn,
30619     disable:Roo.emptyFn,
30620     focus:Roo.emptyFn
30621 });
30622
30623 /**
30624  * @class Roo.Toolbar.Fill
30625  * @extends Roo.Toolbar.Spacer
30626  * A simple element that adds a greedy (100% width) horizontal space to a toolbar.
30627  * @constructor
30628  * Creates a new Spacer
30629  */
30630 Roo.Toolbar.Fill = Roo.extend(Roo.Toolbar.Spacer, {
30631     // private
30632     render : function(td){
30633         td.style.width = '100%';
30634         Roo.Toolbar.Fill.superclass.render.call(this, td);
30635     }
30636 });
30637
30638 /**
30639  * @class Roo.Toolbar.TextItem
30640  * @extends Roo.Toolbar.Item
30641  * A simple class that renders text directly into a toolbar.
30642  * @constructor
30643  * Creates a new TextItem
30644  * @cfg {string} text 
30645  */
30646 Roo.Toolbar.TextItem = function(cfg){
30647     var  text = cfg || "";
30648     if (typeof(cfg) == 'object') {
30649         text = cfg.text || "";
30650     }  else {
30651         cfg = null;
30652     }
30653     var s = document.createElement("span");
30654     s.className = "ytb-text";
30655     s.innerHTML = text;
30656     if (cfg) {
30657         cfg.el  = s;
30658     }
30659     
30660     Roo.Toolbar.TextItem.superclass.constructor.call(this, cfg ||  s);
30661 };
30662 Roo.extend(Roo.Toolbar.TextItem, Roo.Toolbar.Item, {
30663     
30664      
30665     enable:Roo.emptyFn,
30666     disable:Roo.emptyFn,
30667     focus:Roo.emptyFn
30668 });
30669
30670 /**
30671  * @class Roo.Toolbar.Button
30672  * @extends Roo.Button
30673  * A button that renders into a toolbar.
30674  * @constructor
30675  * Creates a new Button
30676  * @param {Object} config A standard {@link Roo.Button} config object
30677  */
30678 Roo.Toolbar.Button = function(config){
30679     Roo.Toolbar.Button.superclass.constructor.call(this, null, config);
30680 };
30681 Roo.extend(Roo.Toolbar.Button, Roo.Button, {
30682     render : function(td){
30683         this.td = td;
30684         Roo.Toolbar.Button.superclass.render.call(this, td);
30685     },
30686     
30687     /**
30688      * Removes and destroys this button
30689      */
30690     destroy : function(){
30691         Roo.Toolbar.Button.superclass.destroy.call(this);
30692         this.td.parentNode.removeChild(this.td);
30693     },
30694     
30695     /**
30696      * Shows this button
30697      */
30698     show: function(){
30699         this.hidden = false;
30700         this.td.style.display = "";
30701     },
30702     
30703     /**
30704      * Hides this button
30705      */
30706     hide: function(){
30707         this.hidden = true;
30708         this.td.style.display = "none";
30709     },
30710
30711     /**
30712      * Disables this item
30713      */
30714     disable : function(){
30715         Roo.fly(this.td).addClass("x-item-disabled");
30716         this.disabled = true;
30717     },
30718
30719     /**
30720      * Enables this item
30721      */
30722     enable : function(){
30723         Roo.fly(this.td).removeClass("x-item-disabled");
30724         this.disabled = false;
30725     }
30726 });
30727 // backwards compat
30728 Roo.ToolbarButton = Roo.Toolbar.Button;
30729
30730 /**
30731  * @class Roo.Toolbar.SplitButton
30732  * @extends Roo.SplitButton
30733  * A menu button that renders into a toolbar.
30734  * @constructor
30735  * Creates a new SplitButton
30736  * @param {Object} config A standard {@link Roo.SplitButton} config object
30737  */
30738 Roo.Toolbar.SplitButton = function(config){
30739     Roo.Toolbar.SplitButton.superclass.constructor.call(this, null, config);
30740 };
30741 Roo.extend(Roo.Toolbar.SplitButton, Roo.SplitButton, {
30742     render : function(td){
30743         this.td = td;
30744         Roo.Toolbar.SplitButton.superclass.render.call(this, td);
30745     },
30746     
30747     /**
30748      * Removes and destroys this button
30749      */
30750     destroy : function(){
30751         Roo.Toolbar.SplitButton.superclass.destroy.call(this);
30752         this.td.parentNode.removeChild(this.td);
30753     },
30754     
30755     /**
30756      * Shows this button
30757      */
30758     show: function(){
30759         this.hidden = false;
30760         this.td.style.display = "";
30761     },
30762     
30763     /**
30764      * Hides this button
30765      */
30766     hide: function(){
30767         this.hidden = true;
30768         this.td.style.display = "none";
30769     }
30770 });
30771
30772 // backwards compat
30773 Roo.Toolbar.MenuButton = Roo.Toolbar.SplitButton;/*
30774  * Based on:
30775  * Ext JS Library 1.1.1
30776  * Copyright(c) 2006-2007, Ext JS, LLC.
30777  *
30778  * Originally Released Under LGPL - original licence link has changed is not relivant.
30779  *
30780  * Fork - LGPL
30781  * <script type="text/javascript">
30782  */
30783  
30784 /**
30785  * @class Roo.PagingToolbar
30786  * @extends Roo.Toolbar
30787  * A specialized toolbar that is bound to a {@link Roo.data.Store} and provides automatic paging controls.
30788  * @constructor
30789  * Create a new PagingToolbar
30790  * @param {Object} config The config object
30791  */
30792 Roo.PagingToolbar = function(el, ds, config)
30793 {
30794     // old args format still supported... - xtype is prefered..
30795     if (typeof(el) == 'object' && el.xtype) {
30796         // created from xtype...
30797         config = el;
30798         ds = el.dataSource;
30799         el = config.container;
30800     }
30801     var items = [];
30802     if (config.items) {
30803         items = config.items;
30804         config.items = [];
30805     }
30806     
30807     Roo.PagingToolbar.superclass.constructor.call(this, el, null, config);
30808     this.ds = ds;
30809     this.cursor = 0;
30810     this.renderButtons(this.el);
30811     this.bind(ds);
30812     
30813     // supprot items array.
30814    
30815     Roo.each(items, function(e) {
30816         this.add(Roo.factory(e));
30817     },this);
30818     
30819 };
30820
30821 Roo.extend(Roo.PagingToolbar, Roo.Toolbar, {
30822     /**
30823      * @cfg {Roo.data.Store} dataSource
30824      * The underlying data store providing the paged data
30825      */
30826     /**
30827      * @cfg {String/HTMLElement/Element} container
30828      * container The id or element that will contain the toolbar
30829      */
30830     /**
30831      * @cfg {Boolean} displayInfo
30832      * True to display the displayMsg (defaults to false)
30833      */
30834     /**
30835      * @cfg {Number} pageSize
30836      * The number of records to display per page (defaults to 20)
30837      */
30838     pageSize: 20,
30839     /**
30840      * @cfg {String} displayMsg
30841      * The paging status message to display (defaults to "Displaying {start} - {end} of {total}")
30842      */
30843     displayMsg : 'Displaying {0} - {1} of {2}',
30844     /**
30845      * @cfg {String} emptyMsg
30846      * The message to display when no records are found (defaults to "No data to display")
30847      */
30848     emptyMsg : 'No data to display',
30849     /**
30850      * Customizable piece of the default paging text (defaults to "Page")
30851      * @type String
30852      */
30853     beforePageText : "Page",
30854     /**
30855      * Customizable piece of the default paging text (defaults to "of %0")
30856      * @type String
30857      */
30858     afterPageText : "of {0}",
30859     /**
30860      * Customizable piece of the default paging text (defaults to "First Page")
30861      * @type String
30862      */
30863     firstText : "First Page",
30864     /**
30865      * Customizable piece of the default paging text (defaults to "Previous Page")
30866      * @type String
30867      */
30868     prevText : "Previous Page",
30869     /**
30870      * Customizable piece of the default paging text (defaults to "Next Page")
30871      * @type String
30872      */
30873     nextText : "Next Page",
30874     /**
30875      * Customizable piece of the default paging text (defaults to "Last Page")
30876      * @type String
30877      */
30878     lastText : "Last Page",
30879     /**
30880      * Customizable piece of the default paging text (defaults to "Refresh")
30881      * @type String
30882      */
30883     refreshText : "Refresh",
30884
30885     // private
30886     renderButtons : function(el){
30887         Roo.PagingToolbar.superclass.render.call(this, el);
30888         this.first = this.addButton({
30889             tooltip: this.firstText,
30890             cls: "x-btn-icon x-grid-page-first",
30891             disabled: true,
30892             handler: this.onClick.createDelegate(this, ["first"])
30893         });
30894         this.prev = this.addButton({
30895             tooltip: this.prevText,
30896             cls: "x-btn-icon x-grid-page-prev",
30897             disabled: true,
30898             handler: this.onClick.createDelegate(this, ["prev"])
30899         });
30900         //this.addSeparator();
30901         this.add(this.beforePageText);
30902         this.field = Roo.get(this.addDom({
30903            tag: "input",
30904            type: "text",
30905            size: "3",
30906            value: "1",
30907            cls: "x-grid-page-number"
30908         }).el);
30909         this.field.on("keydown", this.onPagingKeydown, this);
30910         this.field.on("focus", function(){this.dom.select();});
30911         this.afterTextEl = this.addText(String.format(this.afterPageText, 1));
30912         this.field.setHeight(18);
30913         //this.addSeparator();
30914         this.next = this.addButton({
30915             tooltip: this.nextText,
30916             cls: "x-btn-icon x-grid-page-next",
30917             disabled: true,
30918             handler: this.onClick.createDelegate(this, ["next"])
30919         });
30920         this.last = this.addButton({
30921             tooltip: this.lastText,
30922             cls: "x-btn-icon x-grid-page-last",
30923             disabled: true,
30924             handler: this.onClick.createDelegate(this, ["last"])
30925         });
30926         //this.addSeparator();
30927         this.loading = this.addButton({
30928             tooltip: this.refreshText,
30929             cls: "x-btn-icon x-grid-loading",
30930             handler: this.onClick.createDelegate(this, ["refresh"])
30931         });
30932
30933         if(this.displayInfo){
30934             this.displayEl = Roo.fly(this.el.dom.firstChild).createChild({cls:'x-paging-info'});
30935         }
30936     },
30937
30938     // private
30939     updateInfo : function(){
30940         if(this.displayEl){
30941             var count = this.ds.getCount();
30942             var msg = count == 0 ?
30943                 this.emptyMsg :
30944                 String.format(
30945                     this.displayMsg,
30946                     this.cursor+1, this.cursor+count, this.ds.getTotalCount()    
30947                 );
30948             this.displayEl.update(msg);
30949         }
30950     },
30951
30952     // private
30953     onLoad : function(ds, r, o){
30954        this.cursor = o.params ? o.params.start : 0;
30955        var d = this.getPageData(), ap = d.activePage, ps = d.pages;
30956
30957        this.afterTextEl.el.innerHTML = String.format(this.afterPageText, d.pages);
30958        this.field.dom.value = ap;
30959        this.first.setDisabled(ap == 1);
30960        this.prev.setDisabled(ap == 1);
30961        this.next.setDisabled(ap == ps);
30962        this.last.setDisabled(ap == ps);
30963        this.loading.enable();
30964        this.updateInfo();
30965     },
30966
30967     // private
30968     getPageData : function(){
30969         var total = this.ds.getTotalCount();
30970         return {
30971             total : total,
30972             activePage : Math.ceil((this.cursor+this.pageSize)/this.pageSize),
30973             pages :  total < this.pageSize ? 1 : Math.ceil(total/this.pageSize)
30974         };
30975     },
30976
30977     // private
30978     onLoadError : function(){
30979         this.loading.enable();
30980     },
30981
30982     // private
30983     onPagingKeydown : function(e){
30984         var k = e.getKey();
30985         var d = this.getPageData();
30986         if(k == e.RETURN){
30987             var v = this.field.dom.value, pageNum;
30988             if(!v || isNaN(pageNum = parseInt(v, 10))){
30989                 this.field.dom.value = d.activePage;
30990                 return;
30991             }
30992             pageNum = Math.min(Math.max(1, pageNum), d.pages) - 1;
30993             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
30994             e.stopEvent();
30995         }
30996         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))
30997         {
30998           var pageNum = (k == e.HOME || (k == e.DOWN && e.ctrlKey) || (k == e.LEFT && e.ctrlKey) || (k == e.PAGEDOWN && e.ctrlKey)) ? 1 : d.pages;
30999           this.field.dom.value = pageNum;
31000           this.ds.load({params:{start: (pageNum - 1) * this.pageSize, limit: this.pageSize}});
31001           e.stopEvent();
31002         }
31003         else if(k == e.UP || k == e.RIGHT || k == e.PAGEUP || k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN)
31004         {
31005           var v = this.field.dom.value, pageNum; 
31006           var increment = (e.shiftKey) ? 10 : 1;
31007           if(k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN) {
31008             increment *= -1;
31009           }
31010           if(!v || isNaN(pageNum = parseInt(v, 10))) {
31011             this.field.dom.value = d.activePage;
31012             return;
31013           }
31014           else if(parseInt(v, 10) + increment >= 1 & parseInt(v, 10) + increment <= d.pages)
31015           {
31016             this.field.dom.value = parseInt(v, 10) + increment;
31017             pageNum = Math.min(Math.max(1, pageNum + increment), d.pages) - 1;
31018             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
31019           }
31020           e.stopEvent();
31021         }
31022     },
31023
31024     // private
31025     beforeLoad : function(){
31026         if(this.loading){
31027             this.loading.disable();
31028         }
31029     },
31030
31031     // private
31032     onClick : function(which){
31033         var ds = this.ds;
31034         switch(which){
31035             case "first":
31036                 ds.load({params:{start: 0, limit: this.pageSize}});
31037             break;
31038             case "prev":
31039                 ds.load({params:{start: Math.max(0, this.cursor-this.pageSize), limit: this.pageSize}});
31040             break;
31041             case "next":
31042                 ds.load({params:{start: this.cursor+this.pageSize, limit: this.pageSize}});
31043             break;
31044             case "last":
31045                 var total = ds.getTotalCount();
31046                 var extra = total % this.pageSize;
31047                 var lastStart = extra ? (total - extra) : total-this.pageSize;
31048                 ds.load({params:{start: lastStart, limit: this.pageSize}});
31049             break;
31050             case "refresh":
31051                 ds.load({params:{start: this.cursor, limit: this.pageSize}});
31052             break;
31053         }
31054     },
31055
31056     /**
31057      * Unbinds the paging toolbar from the specified {@link Roo.data.Store}
31058      * @param {Roo.data.Store} store The data store to unbind
31059      */
31060     unbind : function(ds){
31061         ds.un("beforeload", this.beforeLoad, this);
31062         ds.un("load", this.onLoad, this);
31063         ds.un("loadexception", this.onLoadError, this);
31064         ds.un("remove", this.updateInfo, this);
31065         ds.un("add", this.updateInfo, this);
31066         this.ds = undefined;
31067     },
31068
31069     /**
31070      * Binds the paging toolbar to the specified {@link Roo.data.Store}
31071      * @param {Roo.data.Store} store The data store to bind
31072      */
31073     bind : function(ds){
31074         ds.on("beforeload", this.beforeLoad, this);
31075         ds.on("load", this.onLoad, this);
31076         ds.on("loadexception", this.onLoadError, this);
31077         ds.on("remove", this.updateInfo, this);
31078         ds.on("add", this.updateInfo, this);
31079         this.ds = ds;
31080     }
31081 });/*
31082  * Based on:
31083  * Ext JS Library 1.1.1
31084  * Copyright(c) 2006-2007, Ext JS, LLC.
31085  *
31086  * Originally Released Under LGPL - original licence link has changed is not relivant.
31087  *
31088  * Fork - LGPL
31089  * <script type="text/javascript">
31090  */
31091
31092 /**
31093  * @class Roo.Resizable
31094  * @extends Roo.util.Observable
31095  * <p>Applies drag handles to an element to make it resizable. The drag handles are inserted into the element
31096  * and positioned absolute. Some elements, such as a textarea or image, don't support this. To overcome that, you can wrap
31097  * 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
31098  * the element will be wrapped for you automatically.</p>
31099  * <p>Here is the list of valid resize handles:</p>
31100  * <pre>
31101 Value   Description
31102 ------  -------------------
31103  'n'     north
31104  's'     south
31105  'e'     east
31106  'w'     west
31107  'nw'    northwest
31108  'sw'    southwest
31109  'se'    southeast
31110  'ne'    northeast
31111  'hd'    horizontal drag
31112  'all'   all
31113 </pre>
31114  * <p>Here's an example showing the creation of a typical Resizable:</p>
31115  * <pre><code>
31116 var resizer = new Roo.Resizable("element-id", {
31117     handles: 'all',
31118     minWidth: 200,
31119     minHeight: 100,
31120     maxWidth: 500,
31121     maxHeight: 400,
31122     pinned: true
31123 });
31124 resizer.on("resize", myHandler);
31125 </code></pre>
31126  * <p>To hide a particular handle, set its display to none in CSS, or through script:<br>
31127  * resizer.east.setDisplayed(false);</p>
31128  * @cfg {Boolean/String/Element} resizeChild True to resize the first child, or id/element to resize (defaults to false)
31129  * @cfg {Array/String} adjustments String "auto" or an array [width, height] with values to be <b>added</b> to the
31130  * resize operation's new size (defaults to [0, 0])
31131  * @cfg {Number} minWidth The minimum width for the element (defaults to 5)
31132  * @cfg {Number} minHeight The minimum height for the element (defaults to 5)
31133  * @cfg {Number} maxWidth The maximum width for the element (defaults to 10000)
31134  * @cfg {Number} maxHeight The maximum height for the element (defaults to 10000)
31135  * @cfg {Boolean} enabled False to disable resizing (defaults to true)
31136  * @cfg {Boolean} wrap True to wrap an element with a div if needed (required for textareas and images, defaults to false)
31137  * @cfg {Number} width The width of the element in pixels (defaults to null)
31138  * @cfg {Number} height The height of the element in pixels (defaults to null)
31139  * @cfg {Boolean} animate True to animate the resize (not compatible with dynamic sizing, defaults to false)
31140  * @cfg {Number} duration Animation duration if animate = true (defaults to .35)
31141  * @cfg {Boolean} dynamic True to resize the element while dragging instead of using a proxy (defaults to false)
31142  * @cfg {String} handles String consisting of the resize handles to display (defaults to undefined)
31143  * @cfg {Boolean} multiDirectional <b>Deprecated</b>.  The old style of adding multi-direction resize handles, deprecated
31144  * in favor of the handles config option (defaults to false)
31145  * @cfg {Boolean} disableTrackOver True to disable mouse tracking. This is only applied at config time. (defaults to false)
31146  * @cfg {String} easing Animation easing if animate = true (defaults to 'easingOutStrong')
31147  * @cfg {Number} widthIncrement The increment to snap the width resize in pixels (dynamic must be true, defaults to 0)
31148  * @cfg {Number} heightIncrement The increment to snap the height resize in pixels (dynamic must be true, defaults to 0)
31149  * @cfg {Boolean} pinned True to ensure that the resize handles are always visible, false to display them only when the
31150  * user mouses over the resizable borders. This is only applied at config time. (defaults to false)
31151  * @cfg {Boolean} preserveRatio True to preserve the original ratio between height and width during resize (defaults to false)
31152  * @cfg {Boolean} transparent True for transparent handles. This is only applied at config time. (defaults to false)
31153  * @cfg {Number} minX The minimum allowed page X for the element (only used for west resizing, defaults to 0)
31154  * @cfg {Number} minY The minimum allowed page Y for the element (only used for north resizing, defaults to 0)
31155  * @cfg {Boolean} draggable Convenience to initialize drag drop (defaults to false)
31156  * @constructor
31157  * Create a new resizable component
31158  * @param {String/HTMLElement/Roo.Element} el The id or element to resize
31159  * @param {Object} config configuration options
31160   */
31161 Roo.Resizable = function(el, config)
31162 {
31163     this.el = Roo.get(el);
31164
31165     if(config && config.wrap){
31166         config.resizeChild = this.el;
31167         this.el = this.el.wrap(typeof config.wrap == "object" ? config.wrap : {cls:"xresizable-wrap"});
31168         this.el.id = this.el.dom.id = config.resizeChild.id + "-rzwrap";
31169         this.el.setStyle("overflow", "hidden");
31170         this.el.setPositioning(config.resizeChild.getPositioning());
31171         config.resizeChild.clearPositioning();
31172         if(!config.width || !config.height){
31173             var csize = config.resizeChild.getSize();
31174             this.el.setSize(csize.width, csize.height);
31175         }
31176         if(config.pinned && !config.adjustments){
31177             config.adjustments = "auto";
31178         }
31179     }
31180
31181     this.proxy = this.el.createProxy({tag: "div", cls: "x-resizable-proxy", id: this.el.id + "-rzproxy"});
31182     this.proxy.unselectable();
31183     this.proxy.enableDisplayMode('block');
31184
31185     Roo.apply(this, config);
31186
31187     if(this.pinned){
31188         this.disableTrackOver = true;
31189         this.el.addClass("x-resizable-pinned");
31190     }
31191     // if the element isn't positioned, make it relative
31192     var position = this.el.getStyle("position");
31193     if(position != "absolute" && position != "fixed"){
31194         this.el.setStyle("position", "relative");
31195     }
31196     if(!this.handles){ // no handles passed, must be legacy style
31197         this.handles = 's,e,se';
31198         if(this.multiDirectional){
31199             this.handles += ',n,w';
31200         }
31201     }
31202     if(this.handles == "all"){
31203         this.handles = "n s e w ne nw se sw";
31204     }
31205     var hs = this.handles.split(/\s*?[,;]\s*?| /);
31206     var ps = Roo.Resizable.positions;
31207     for(var i = 0, len = hs.length; i < len; i++){
31208         if(hs[i] && ps[hs[i]]){
31209             var pos = ps[hs[i]];
31210             this[pos] = new Roo.Resizable.Handle(this, pos, this.disableTrackOver, this.transparent);
31211         }
31212     }
31213     // legacy
31214     this.corner = this.southeast;
31215     
31216     // updateBox = the box can move..
31217     if(this.handles.indexOf("n") != -1 || this.handles.indexOf("w") != -1 || this.handles.indexOf("hd") != -1) {
31218         this.updateBox = true;
31219     }
31220
31221     this.activeHandle = null;
31222
31223     if(this.resizeChild){
31224         if(typeof this.resizeChild == "boolean"){
31225             this.resizeChild = Roo.get(this.el.dom.firstChild, true);
31226         }else{
31227             this.resizeChild = Roo.get(this.resizeChild, true);
31228         }
31229     }
31230     
31231     if(this.adjustments == "auto"){
31232         var rc = this.resizeChild;
31233         var hw = this.west, he = this.east, hn = this.north, hs = this.south;
31234         if(rc && (hw || hn)){
31235             rc.position("relative");
31236             rc.setLeft(hw ? hw.el.getWidth() : 0);
31237             rc.setTop(hn ? hn.el.getHeight() : 0);
31238         }
31239         this.adjustments = [
31240             (he ? -he.el.getWidth() : 0) + (hw ? -hw.el.getWidth() : 0),
31241             (hn ? -hn.el.getHeight() : 0) + (hs ? -hs.el.getHeight() : 0) -1
31242         ];
31243     }
31244
31245     if(this.draggable){
31246         this.dd = this.dynamic ?
31247             this.el.initDD(null) : this.el.initDDProxy(null, {dragElId: this.proxy.id});
31248         this.dd.setHandleElId(this.resizeChild ? this.resizeChild.id : this.el.id);
31249     }
31250
31251     // public events
31252     this.addEvents({
31253         /**
31254          * @event beforeresize
31255          * Fired before resize is allowed. Set enabled to false to cancel resize.
31256          * @param {Roo.Resizable} this
31257          * @param {Roo.EventObject} e The mousedown event
31258          */
31259         "beforeresize" : true,
31260         /**
31261          * @event resizing
31262          * Fired a resizing.
31263          * @param {Roo.Resizable} this
31264          * @param {Number} x The new x position
31265          * @param {Number} y The new y position
31266          * @param {Number} w The new w width
31267          * @param {Number} h The new h hight
31268          * @param {Roo.EventObject} e The mouseup event
31269          */
31270         "resizing" : true,
31271         /**
31272          * @event resize
31273          * Fired after a resize.
31274          * @param {Roo.Resizable} this
31275          * @param {Number} width The new width
31276          * @param {Number} height The new height
31277          * @param {Roo.EventObject} e The mouseup event
31278          */
31279         "resize" : true
31280     });
31281
31282     if(this.width !== null && this.height !== null){
31283         this.resizeTo(this.width, this.height);
31284     }else{
31285         this.updateChildSize();
31286     }
31287     if(Roo.isIE){
31288         this.el.dom.style.zoom = 1;
31289     }
31290     Roo.Resizable.superclass.constructor.call(this);
31291 };
31292
31293 Roo.extend(Roo.Resizable, Roo.util.Observable, {
31294         resizeChild : false,
31295         adjustments : [0, 0],
31296         minWidth : 5,
31297         minHeight : 5,
31298         maxWidth : 10000,
31299         maxHeight : 10000,
31300         enabled : true,
31301         animate : false,
31302         duration : .35,
31303         dynamic : false,
31304         handles : false,
31305         multiDirectional : false,
31306         disableTrackOver : false,
31307         easing : 'easeOutStrong',
31308         widthIncrement : 0,
31309         heightIncrement : 0,
31310         pinned : false,
31311         width : null,
31312         height : null,
31313         preserveRatio : false,
31314         transparent: false,
31315         minX: 0,
31316         minY: 0,
31317         draggable: false,
31318
31319         /**
31320          * @cfg {String/HTMLElement/Element} constrainTo Constrain the resize to a particular element
31321          */
31322         constrainTo: undefined,
31323         /**
31324          * @cfg {Roo.lib.Region} resizeRegion Constrain the resize to a particular region
31325          */
31326         resizeRegion: undefined,
31327
31328
31329     /**
31330      * Perform a manual resize
31331      * @param {Number} width
31332      * @param {Number} height
31333      */
31334     resizeTo : function(width, height){
31335         this.el.setSize(width, height);
31336         this.updateChildSize();
31337         this.fireEvent("resize", this, width, height, null);
31338     },
31339
31340     // private
31341     startSizing : function(e, handle){
31342         this.fireEvent("beforeresize", this, e);
31343         if(this.enabled){ // 2nd enabled check in case disabled before beforeresize handler
31344
31345             if(!this.overlay){
31346                 this.overlay = this.el.createProxy({tag: "div", cls: "x-resizable-overlay", html: "&#160;"});
31347                 this.overlay.unselectable();
31348                 this.overlay.enableDisplayMode("block");
31349                 this.overlay.on("mousemove", this.onMouseMove, this);
31350                 this.overlay.on("mouseup", this.onMouseUp, this);
31351             }
31352             this.overlay.setStyle("cursor", handle.el.getStyle("cursor"));
31353
31354             this.resizing = true;
31355             this.startBox = this.el.getBox();
31356             this.startPoint = e.getXY();
31357             this.offsets = [(this.startBox.x + this.startBox.width) - this.startPoint[0],
31358                             (this.startBox.y + this.startBox.height) - this.startPoint[1]];
31359
31360             this.overlay.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
31361             this.overlay.show();
31362
31363             if(this.constrainTo) {
31364                 var ct = Roo.get(this.constrainTo);
31365                 this.resizeRegion = ct.getRegion().adjust(
31366                     ct.getFrameWidth('t'),
31367                     ct.getFrameWidth('l'),
31368                     -ct.getFrameWidth('b'),
31369                     -ct.getFrameWidth('r')
31370                 );
31371             }
31372
31373             this.proxy.setStyle('visibility', 'hidden'); // workaround display none
31374             this.proxy.show();
31375             this.proxy.setBox(this.startBox);
31376             if(!this.dynamic){
31377                 this.proxy.setStyle('visibility', 'visible');
31378             }
31379         }
31380     },
31381
31382     // private
31383     onMouseDown : function(handle, e){
31384         if(this.enabled){
31385             e.stopEvent();
31386             this.activeHandle = handle;
31387             this.startSizing(e, handle);
31388         }
31389     },
31390
31391     // private
31392     onMouseUp : function(e){
31393         var size = this.resizeElement();
31394         this.resizing = false;
31395         this.handleOut();
31396         this.overlay.hide();
31397         this.proxy.hide();
31398         this.fireEvent("resize", this, size.width, size.height, e);
31399     },
31400
31401     // private
31402     updateChildSize : function(){
31403         
31404         if(this.resizeChild){
31405             var el = this.el;
31406             var child = this.resizeChild;
31407             var adj = this.adjustments;
31408             if(el.dom.offsetWidth){
31409                 var b = el.getSize(true);
31410                 child.setSize(b.width+adj[0], b.height+adj[1]);
31411             }
31412             // Second call here for IE
31413             // The first call enables instant resizing and
31414             // the second call corrects scroll bars if they
31415             // exist
31416             if(Roo.isIE){
31417                 setTimeout(function(){
31418                     if(el.dom.offsetWidth){
31419                         var b = el.getSize(true);
31420                         child.setSize(b.width+adj[0], b.height+adj[1]);
31421                     }
31422                 }, 10);
31423             }
31424         }
31425     },
31426
31427     // private
31428     snap : function(value, inc, min){
31429         if(!inc || !value) {
31430             return value;
31431         }
31432         var newValue = value;
31433         var m = value % inc;
31434         if(m > 0){
31435             if(m > (inc/2)){
31436                 newValue = value + (inc-m);
31437             }else{
31438                 newValue = value - m;
31439             }
31440         }
31441         return Math.max(min, newValue);
31442     },
31443
31444     // private
31445     resizeElement : function(){
31446         var box = this.proxy.getBox();
31447         if(this.updateBox){
31448             this.el.setBox(box, false, this.animate, this.duration, null, this.easing);
31449         }else{
31450             this.el.setSize(box.width, box.height, this.animate, this.duration, null, this.easing);
31451         }
31452         this.updateChildSize();
31453         if(!this.dynamic){
31454             this.proxy.hide();
31455         }
31456         return box;
31457     },
31458
31459     // private
31460     constrain : function(v, diff, m, mx){
31461         if(v - diff < m){
31462             diff = v - m;
31463         }else if(v - diff > mx){
31464             diff = mx - v;
31465         }
31466         return diff;
31467     },
31468
31469     // private
31470     onMouseMove : function(e){
31471         
31472         if(this.enabled){
31473             try{// try catch so if something goes wrong the user doesn't get hung
31474
31475             if(this.resizeRegion && !this.resizeRegion.contains(e.getPoint())) {
31476                 return;
31477             }
31478
31479             //var curXY = this.startPoint;
31480             var curSize = this.curSize || this.startBox;
31481             var x = this.startBox.x, y = this.startBox.y;
31482             var ox = x, oy = y;
31483             var w = curSize.width, h = curSize.height;
31484             var ow = w, oh = h;
31485             var mw = this.minWidth, mh = this.minHeight;
31486             var mxw = this.maxWidth, mxh = this.maxHeight;
31487             var wi = this.widthIncrement;
31488             var hi = this.heightIncrement;
31489
31490             var eventXY = e.getXY();
31491             var diffX = -(this.startPoint[0] - Math.max(this.minX, eventXY[0]));
31492             var diffY = -(this.startPoint[1] - Math.max(this.minY, eventXY[1]));
31493
31494             var pos = this.activeHandle.position;
31495
31496             switch(pos){
31497                 case "east":
31498                     w += diffX;
31499                     w = Math.min(Math.max(mw, w), mxw);
31500                     break;
31501              
31502                 case "south":
31503                     h += diffY;
31504                     h = Math.min(Math.max(mh, h), mxh);
31505                     break;
31506                 case "southeast":
31507                     w += diffX;
31508                     h += diffY;
31509                     w = Math.min(Math.max(mw, w), mxw);
31510                     h = Math.min(Math.max(mh, h), mxh);
31511                     break;
31512                 case "north":
31513                     diffY = this.constrain(h, diffY, mh, mxh);
31514                     y += diffY;
31515                     h -= diffY;
31516                     break;
31517                 case "hdrag":
31518                     
31519                     if (wi) {
31520                         var adiffX = Math.abs(diffX);
31521                         var sub = (adiffX % wi); // how much 
31522                         if (sub > (wi/2)) { // far enough to snap
31523                             diffX = (diffX > 0) ? diffX-sub + wi : diffX+sub - wi;
31524                         } else {
31525                             // remove difference.. 
31526                             diffX = (diffX > 0) ? diffX-sub : diffX+sub;
31527                         }
31528                     }
31529                     x += diffX;
31530                     x = Math.max(this.minX, x);
31531                     break;
31532                 case "west":
31533                     diffX = this.constrain(w, diffX, mw, mxw);
31534                     x += diffX;
31535                     w -= diffX;
31536                     break;
31537                 case "northeast":
31538                     w += diffX;
31539                     w = Math.min(Math.max(mw, w), mxw);
31540                     diffY = this.constrain(h, diffY, mh, mxh);
31541                     y += diffY;
31542                     h -= diffY;
31543                     break;
31544                 case "northwest":
31545                     diffX = this.constrain(w, diffX, mw, mxw);
31546                     diffY = this.constrain(h, diffY, mh, mxh);
31547                     y += diffY;
31548                     h -= diffY;
31549                     x += diffX;
31550                     w -= diffX;
31551                     break;
31552                case "southwest":
31553                     diffX = this.constrain(w, diffX, mw, mxw);
31554                     h += diffY;
31555                     h = Math.min(Math.max(mh, h), mxh);
31556                     x += diffX;
31557                     w -= diffX;
31558                     break;
31559             }
31560
31561             var sw = this.snap(w, wi, mw);
31562             var sh = this.snap(h, hi, mh);
31563             if(sw != w || sh != h){
31564                 switch(pos){
31565                     case "northeast":
31566                         y -= sh - h;
31567                     break;
31568                     case "north":
31569                         y -= sh - h;
31570                         break;
31571                     case "southwest":
31572                         x -= sw - w;
31573                     break;
31574                     case "west":
31575                         x -= sw - w;
31576                         break;
31577                     case "northwest":
31578                         x -= sw - w;
31579                         y -= sh - h;
31580                     break;
31581                 }
31582                 w = sw;
31583                 h = sh;
31584             }
31585
31586             if(this.preserveRatio){
31587                 switch(pos){
31588                     case "southeast":
31589                     case "east":
31590                         h = oh * (w/ow);
31591                         h = Math.min(Math.max(mh, h), mxh);
31592                         w = ow * (h/oh);
31593                        break;
31594                     case "south":
31595                         w = ow * (h/oh);
31596                         w = Math.min(Math.max(mw, w), mxw);
31597                         h = oh * (w/ow);
31598                         break;
31599                     case "northeast":
31600                         w = ow * (h/oh);
31601                         w = Math.min(Math.max(mw, w), mxw);
31602                         h = oh * (w/ow);
31603                     break;
31604                     case "north":
31605                         var tw = w;
31606                         w = ow * (h/oh);
31607                         w = Math.min(Math.max(mw, w), mxw);
31608                         h = oh * (w/ow);
31609                         x += (tw - w) / 2;
31610                         break;
31611                     case "southwest":
31612                         h = oh * (w/ow);
31613                         h = Math.min(Math.max(mh, h), mxh);
31614                         var tw = w;
31615                         w = ow * (h/oh);
31616                         x += tw - w;
31617                         break;
31618                     case "west":
31619                         var th = h;
31620                         h = oh * (w/ow);
31621                         h = Math.min(Math.max(mh, h), mxh);
31622                         y += (th - h) / 2;
31623                         var tw = w;
31624                         w = ow * (h/oh);
31625                         x += tw - w;
31626                        break;
31627                     case "northwest":
31628                         var tw = w;
31629                         var th = h;
31630                         h = oh * (w/ow);
31631                         h = Math.min(Math.max(mh, h), mxh);
31632                         w = ow * (h/oh);
31633                         y += th - h;
31634                         x += tw - w;
31635                        break;
31636
31637                 }
31638             }
31639             if (pos == 'hdrag') {
31640                 w = ow;
31641             }
31642             this.proxy.setBounds(x, y, w, h);
31643             if(this.dynamic){
31644                 this.resizeElement();
31645             }
31646             }catch(e){}
31647         }
31648         this.fireEvent("resizing", this, x, y, w, h, e);
31649     },
31650
31651     // private
31652     handleOver : function(){
31653         if(this.enabled){
31654             this.el.addClass("x-resizable-over");
31655         }
31656     },
31657
31658     // private
31659     handleOut : function(){
31660         if(!this.resizing){
31661             this.el.removeClass("x-resizable-over");
31662         }
31663     },
31664
31665     /**
31666      * Returns the element this component is bound to.
31667      * @return {Roo.Element}
31668      */
31669     getEl : function(){
31670         return this.el;
31671     },
31672
31673     /**
31674      * Returns the resizeChild element (or null).
31675      * @return {Roo.Element}
31676      */
31677     getResizeChild : function(){
31678         return this.resizeChild;
31679     },
31680     groupHandler : function()
31681     {
31682         
31683     },
31684     /**
31685      * Destroys this resizable. If the element was wrapped and
31686      * removeEl is not true then the element remains.
31687      * @param {Boolean} removeEl (optional) true to remove the element from the DOM
31688      */
31689     destroy : function(removeEl){
31690         this.proxy.remove();
31691         if(this.overlay){
31692             this.overlay.removeAllListeners();
31693             this.overlay.remove();
31694         }
31695         var ps = Roo.Resizable.positions;
31696         for(var k in ps){
31697             if(typeof ps[k] != "function" && this[ps[k]]){
31698                 var h = this[ps[k]];
31699                 h.el.removeAllListeners();
31700                 h.el.remove();
31701             }
31702         }
31703         if(removeEl){
31704             this.el.update("");
31705             this.el.remove();
31706         }
31707     }
31708 });
31709
31710 // private
31711 // hash to map config positions to true positions
31712 Roo.Resizable.positions = {
31713     n: "north", s: "south", e: "east", w: "west", se: "southeast", sw: "southwest", nw: "northwest", ne: "northeast", 
31714     hd: "hdrag"
31715 };
31716
31717 // private
31718 Roo.Resizable.Handle = function(rz, pos, disableTrackOver, transparent){
31719     if(!this.tpl){
31720         // only initialize the template if resizable is used
31721         var tpl = Roo.DomHelper.createTemplate(
31722             {tag: "div", cls: "x-resizable-handle x-resizable-handle-{0}"}
31723         );
31724         tpl.compile();
31725         Roo.Resizable.Handle.prototype.tpl = tpl;
31726     }
31727     this.position = pos;
31728     this.rz = rz;
31729     // show north drag fro topdra
31730     var handlepos = pos == 'hdrag' ? 'north' : pos;
31731     
31732     this.el = this.tpl.append(rz.el.dom, [handlepos], true);
31733     if (pos == 'hdrag') {
31734         this.el.setStyle('cursor', 'pointer');
31735     }
31736     this.el.unselectable();
31737     if(transparent){
31738         this.el.setOpacity(0);
31739     }
31740     this.el.on("mousedown", this.onMouseDown, this);
31741     if(!disableTrackOver){
31742         this.el.on("mouseover", this.onMouseOver, this);
31743         this.el.on("mouseout", this.onMouseOut, this);
31744     }
31745 };
31746
31747 // private
31748 Roo.Resizable.Handle.prototype = {
31749     afterResize : function(rz){
31750         Roo.log('after?');
31751         // do nothing
31752     },
31753     // private
31754     onMouseDown : function(e){
31755         this.rz.onMouseDown(this, e);
31756     },
31757     // private
31758     onMouseOver : function(e){
31759         this.rz.handleOver(this, e);
31760     },
31761     // private
31762     onMouseOut : function(e){
31763         this.rz.handleOut(this, e);
31764     }
31765 };/*
31766  * Based on:
31767  * Ext JS Library 1.1.1
31768  * Copyright(c) 2006-2007, Ext JS, LLC.
31769  *
31770  * Originally Released Under LGPL - original licence link has changed is not relivant.
31771  *
31772  * Fork - LGPL
31773  * <script type="text/javascript">
31774  */
31775
31776 /**
31777  * @class Roo.Editor
31778  * @extends Roo.Component
31779  * A base editor field that handles displaying/hiding on demand and has some built-in sizing and event handling logic.
31780  * @constructor
31781  * Create a new Editor
31782  * @param {Roo.form.Field} field The Field object (or descendant)
31783  * @param {Object} config The config object
31784  */
31785 Roo.Editor = function(field, config){
31786     Roo.Editor.superclass.constructor.call(this, config);
31787     this.field = field;
31788     this.addEvents({
31789         /**
31790              * @event beforestartedit
31791              * Fires when editing is initiated, but before the value changes.  Editing can be canceled by returning
31792              * false from the handler of this event.
31793              * @param {Editor} this
31794              * @param {Roo.Element} boundEl The underlying element bound to this editor
31795              * @param {Mixed} value The field value being set
31796              */
31797         "beforestartedit" : true,
31798         /**
31799              * @event startedit
31800              * Fires when this editor is displayed
31801              * @param {Roo.Element} boundEl The underlying element bound to this editor
31802              * @param {Mixed} value The starting field value
31803              */
31804         "startedit" : true,
31805         /**
31806              * @event beforecomplete
31807              * Fires after a change has been made to the field, but before the change is reflected in the underlying
31808              * field.  Saving the change to the field can be canceled by returning false from the handler of this event.
31809              * Note that if the value has not changed and ignoreNoChange = true, the editing will still end but this
31810              * event will not fire since no edit actually occurred.
31811              * @param {Editor} this
31812              * @param {Mixed} value The current field value
31813              * @param {Mixed} startValue The original field value
31814              */
31815         "beforecomplete" : true,
31816         /**
31817              * @event complete
31818              * Fires after editing is complete and any changed value has been written to the underlying field.
31819              * @param {Editor} this
31820              * @param {Mixed} value The current field value
31821              * @param {Mixed} startValue The original field value
31822              */
31823         "complete" : true,
31824         /**
31825          * @event specialkey
31826          * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
31827          * {@link Roo.EventObject#getKey} to determine which key was pressed.
31828          * @param {Roo.form.Field} this
31829          * @param {Roo.EventObject} e The event object
31830          */
31831         "specialkey" : true
31832     });
31833 };
31834
31835 Roo.extend(Roo.Editor, Roo.Component, {
31836     /**
31837      * @cfg {Boolean/String} autosize
31838      * True for the editor to automatically adopt the size of the underlying field, "width" to adopt the width only,
31839      * or "height" to adopt the height only (defaults to false)
31840      */
31841     /**
31842      * @cfg {Boolean} revertInvalid
31843      * True to automatically revert the field value and cancel the edit when the user completes an edit and the field
31844      * validation fails (defaults to true)
31845      */
31846     /**
31847      * @cfg {Boolean} ignoreNoChange
31848      * True to skip the the edit completion process (no save, no events fired) if the user completes an edit and
31849      * the value has not changed (defaults to false).  Applies only to string values - edits for other data types
31850      * will never be ignored.
31851      */
31852     /**
31853      * @cfg {Boolean} hideEl
31854      * False to keep the bound element visible while the editor is displayed (defaults to true)
31855      */
31856     /**
31857      * @cfg {Mixed} value
31858      * The data value of the underlying field (defaults to "")
31859      */
31860     value : "",
31861     /**
31862      * @cfg {String} alignment
31863      * The position to align to (see {@link Roo.Element#alignTo} for more details, defaults to "c-c?").
31864      */
31865     alignment: "c-c?",
31866     /**
31867      * @cfg {Boolean/String} shadow "sides" for sides/bottom only, "frame" for 4-way shadow, and "drop"
31868      * for bottom-right shadow (defaults to "frame")
31869      */
31870     shadow : "frame",
31871     /**
31872      * @cfg {Boolean} constrain True to constrain the editor to the viewport
31873      */
31874     constrain : false,
31875     /**
31876      * @cfg {Boolean} completeOnEnter True to complete the edit when the enter key is pressed (defaults to false)
31877      */
31878     completeOnEnter : false,
31879     /**
31880      * @cfg {Boolean} cancelOnEsc True to cancel the edit when the escape key is pressed (defaults to false)
31881      */
31882     cancelOnEsc : false,
31883     /**
31884      * @cfg {Boolean} updateEl True to update the innerHTML of the bound element when the update completes (defaults to false)
31885      */
31886     updateEl : false,
31887
31888     // private
31889     onRender : function(ct, position){
31890         this.el = new Roo.Layer({
31891             shadow: this.shadow,
31892             cls: "x-editor",
31893             parentEl : ct,
31894             shim : this.shim,
31895             shadowOffset:4,
31896             id: this.id,
31897             constrain: this.constrain
31898         });
31899         this.el.setStyle("overflow", Roo.isGecko ? "auto" : "hidden");
31900         if(this.field.msgTarget != 'title'){
31901             this.field.msgTarget = 'qtip';
31902         }
31903         this.field.render(this.el);
31904         if(Roo.isGecko){
31905             this.field.el.dom.setAttribute('autocomplete', 'off');
31906         }
31907         this.field.on("specialkey", this.onSpecialKey, this);
31908         if(this.swallowKeys){
31909             this.field.el.swallowEvent(['keydown','keypress']);
31910         }
31911         this.field.show();
31912         this.field.on("blur", this.onBlur, this);
31913         if(this.field.grow){
31914             this.field.on("autosize", this.el.sync,  this.el, {delay:1});
31915         }
31916     },
31917
31918     onSpecialKey : function(field, e)
31919     {
31920         //Roo.log('editor onSpecialKey');
31921         if(this.completeOnEnter && e.getKey() == e.ENTER){
31922             e.stopEvent();
31923             this.completeEdit();
31924             return;
31925         }
31926         // do not fire special key otherwise it might hide close the editor...
31927         if(e.getKey() == e.ENTER){    
31928             return;
31929         }
31930         if(this.cancelOnEsc && e.getKey() == e.ESC){
31931             this.cancelEdit();
31932             return;
31933         } 
31934         this.fireEvent('specialkey', field, e);
31935     
31936     },
31937
31938     /**
31939      * Starts the editing process and shows the editor.
31940      * @param {String/HTMLElement/Element} el The element to edit
31941      * @param {String} value (optional) A value to initialize the editor with. If a value is not provided, it defaults
31942       * to the innerHTML of el.
31943      */
31944     startEdit : function(el, value){
31945         if(this.editing){
31946             this.completeEdit();
31947         }
31948         this.boundEl = Roo.get(el);
31949         var v = value !== undefined ? value : this.boundEl.dom.innerHTML;
31950         if(!this.rendered){
31951             this.render(this.parentEl || document.body);
31952         }
31953         if(this.fireEvent("beforestartedit", this, this.boundEl, v) === false){
31954             return;
31955         }
31956         this.startValue = v;
31957         this.field.setValue(v);
31958         if(this.autoSize){
31959             var sz = this.boundEl.getSize();
31960             switch(this.autoSize){
31961                 case "width":
31962                 this.setSize(sz.width,  "");
31963                 break;
31964                 case "height":
31965                 this.setSize("",  sz.height);
31966                 break;
31967                 default:
31968                 this.setSize(sz.width,  sz.height);
31969             }
31970         }
31971         this.el.alignTo(this.boundEl, this.alignment);
31972         this.editing = true;
31973         if(Roo.QuickTips){
31974             Roo.QuickTips.disable();
31975         }
31976         this.show();
31977     },
31978
31979     /**
31980      * Sets the height and width of this editor.
31981      * @param {Number} width The new width
31982      * @param {Number} height The new height
31983      */
31984     setSize : function(w, h){
31985         this.field.setSize(w, h);
31986         if(this.el){
31987             this.el.sync();
31988         }
31989     },
31990
31991     /**
31992      * Realigns the editor to the bound field based on the current alignment config value.
31993      */
31994     realign : function(){
31995         this.el.alignTo(this.boundEl, this.alignment);
31996     },
31997
31998     /**
31999      * Ends the editing process, persists the changed value to the underlying field, and hides the editor.
32000      * @param {Boolean} remainVisible Override the default behavior and keep the editor visible after edit (defaults to false)
32001      */
32002     completeEdit : function(remainVisible){
32003         if(!this.editing){
32004             return;
32005         }
32006         var v = this.getValue();
32007         if(this.revertInvalid !== false && !this.field.isValid()){
32008             v = this.startValue;
32009             this.cancelEdit(true);
32010         }
32011         if(String(v) === String(this.startValue) && this.ignoreNoChange){
32012             this.editing = false;
32013             this.hide();
32014             return;
32015         }
32016         if(this.fireEvent("beforecomplete", this, v, this.startValue) !== false){
32017             this.editing = false;
32018             if(this.updateEl && this.boundEl){
32019                 this.boundEl.update(v);
32020             }
32021             if(remainVisible !== true){
32022                 this.hide();
32023             }
32024             this.fireEvent("complete", this, v, this.startValue);
32025         }
32026     },
32027
32028     // private
32029     onShow : function(){
32030         this.el.show();
32031         if(this.hideEl !== false){
32032             this.boundEl.hide();
32033         }
32034         this.field.show();
32035         if(Roo.isIE && !this.fixIEFocus){ // IE has problems with focusing the first time
32036             this.fixIEFocus = true;
32037             this.deferredFocus.defer(50, this);
32038         }else{
32039             this.field.focus();
32040         }
32041         this.fireEvent("startedit", this.boundEl, this.startValue);
32042     },
32043
32044     deferredFocus : function(){
32045         if(this.editing){
32046             this.field.focus();
32047         }
32048     },
32049
32050     /**
32051      * Cancels the editing process and hides the editor without persisting any changes.  The field value will be
32052      * reverted to the original starting value.
32053      * @param {Boolean} remainVisible Override the default behavior and keep the editor visible after
32054      * cancel (defaults to false)
32055      */
32056     cancelEdit : function(remainVisible){
32057         if(this.editing){
32058             this.setValue(this.startValue);
32059             if(remainVisible !== true){
32060                 this.hide();
32061             }
32062         }
32063     },
32064
32065     // private
32066     onBlur : function(){
32067         if(this.allowBlur !== true && this.editing){
32068             this.completeEdit();
32069         }
32070     },
32071
32072     // private
32073     onHide : function(){
32074         if(this.editing){
32075             this.completeEdit();
32076             return;
32077         }
32078         this.field.blur();
32079         if(this.field.collapse){
32080             this.field.collapse();
32081         }
32082         this.el.hide();
32083         if(this.hideEl !== false){
32084             this.boundEl.show();
32085         }
32086         if(Roo.QuickTips){
32087             Roo.QuickTips.enable();
32088         }
32089     },
32090
32091     /**
32092      * Sets the data value of the editor
32093      * @param {Mixed} value Any valid value supported by the underlying field
32094      */
32095     setValue : function(v){
32096         this.field.setValue(v);
32097     },
32098
32099     /**
32100      * Gets the data value of the editor
32101      * @return {Mixed} The data value
32102      */
32103     getValue : function(){
32104         return this.field.getValue();
32105     }
32106 });/*
32107  * Based on:
32108  * Ext JS Library 1.1.1
32109  * Copyright(c) 2006-2007, Ext JS, LLC.
32110  *
32111  * Originally Released Under LGPL - original licence link has changed is not relivant.
32112  *
32113  * Fork - LGPL
32114  * <script type="text/javascript">
32115  */
32116  
32117 /**
32118  * @class Roo.BasicDialog
32119  * @extends Roo.util.Observable
32120  * Lightweight Dialog Class.  The code below shows the creation of a typical dialog using existing HTML markup:
32121  * <pre><code>
32122 var dlg = new Roo.BasicDialog("my-dlg", {
32123     height: 200,
32124     width: 300,
32125     minHeight: 100,
32126     minWidth: 150,
32127     modal: true,
32128     proxyDrag: true,
32129     shadow: true
32130 });
32131 dlg.addKeyListener(27, dlg.hide, dlg); // ESC can also close the dialog
32132 dlg.addButton('OK', dlg.hide, dlg);    // Could call a save function instead of hiding
32133 dlg.addButton('Cancel', dlg.hide, dlg);
32134 dlg.show();
32135 </code></pre>
32136   <b>A Dialog should always be a direct child of the body element.</b>
32137  * @cfg {Boolean/DomHelper} autoCreate True to auto create from scratch, or using a DomHelper Object (defaults to false)
32138  * @cfg {String} title Default text to display in the title bar (defaults to null)
32139  * @cfg {Number} width Width of the dialog in pixels (can also be set via CSS).  Determined by browser if unspecified.
32140  * @cfg {Number} height Height of the dialog in pixels (can also be set via CSS).  Determined by browser if unspecified.
32141  * @cfg {Number} x The default left page coordinate of the dialog (defaults to center screen)
32142  * @cfg {Number} y The default top page coordinate of the dialog (defaults to center screen)
32143  * @cfg {String/Element} animateTarget Id or element from which the dialog should animate while opening
32144  * (defaults to null with no animation)
32145  * @cfg {Boolean} resizable False to disable manual dialog resizing (defaults to true)
32146  * @cfg {String} resizeHandles Which resize handles to display - see the {@link Roo.Resizable} handles config
32147  * property for valid values (defaults to 'all')
32148  * @cfg {Number} minHeight The minimum allowable height for a resizable dialog (defaults to 80)
32149  * @cfg {Number} minWidth The minimum allowable width for a resizable dialog (defaults to 200)
32150  * @cfg {Boolean} modal True to show the dialog modally, preventing user interaction with the rest of the page (defaults to false)
32151  * @cfg {Boolean} autoScroll True to allow the dialog body contents to overflow and display scrollbars (defaults to false)
32152  * @cfg {Boolean} closable False to remove the built-in top-right corner close button (defaults to true)
32153  * @cfg {Boolean} collapsible False to remove the built-in top-right corner collapse button (defaults to true)
32154  * @cfg {Boolean} constraintoviewport True to keep the dialog constrained within the visible viewport boundaries (defaults to true)
32155  * @cfg {Boolean} syncHeightBeforeShow True to cause the dimensions to be recalculated before the dialog is shown (defaults to false)
32156  * @cfg {Boolean} draggable False to disable dragging of the dialog within the viewport (defaults to true)
32157  * @cfg {Boolean} autoTabs If true, all elements with class 'x-dlg-tab' will get automatically converted to tabs (defaults to false)
32158  * @cfg {String} tabTag The tag name of tab elements, used when autoTabs = true (defaults to 'div')
32159  * @cfg {Boolean} proxyDrag True to drag a lightweight proxy element rather than the dialog itself, used when
32160  * draggable = true (defaults to false)
32161  * @cfg {Boolean} fixedcenter True to ensure that anytime the dialog is shown or resized it gets centered (defaults to false)
32162  * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
32163  * shadow (defaults to false)
32164  * @cfg {Number} shadowOffset The number of pixels to offset the shadow if displayed (defaults to 5)
32165  * @cfg {String} buttonAlign Valid values are "left," "center" and "right" (defaults to "right")
32166  * @cfg {Number} minButtonWidth Minimum width of all dialog buttons (defaults to 75)
32167  * @cfg {Array} buttons Array of buttons
32168  * @cfg {Boolean} shim True to create an iframe shim that prevents selects from showing through (defaults to false)
32169  * @constructor
32170  * Create a new BasicDialog.
32171  * @param {String/HTMLElement/Roo.Element} el The container element or DOM node, or its id
32172  * @param {Object} config Configuration options
32173  */
32174 Roo.BasicDialog = function(el, config){
32175     this.el = Roo.get(el);
32176     var dh = Roo.DomHelper;
32177     if(!this.el && config && config.autoCreate){
32178         if(typeof config.autoCreate == "object"){
32179             if(!config.autoCreate.id){
32180                 config.autoCreate.id = el;
32181             }
32182             this.el = dh.append(document.body,
32183                         config.autoCreate, true);
32184         }else{
32185             this.el = dh.append(document.body,
32186                         {tag: "div", id: el, style:'visibility:hidden;'}, true);
32187         }
32188     }
32189     el = this.el;
32190     el.setDisplayed(true);
32191     el.hide = this.hideAction;
32192     this.id = el.id;
32193     el.addClass("x-dlg");
32194
32195     Roo.apply(this, config);
32196
32197     this.proxy = el.createProxy("x-dlg-proxy");
32198     this.proxy.hide = this.hideAction;
32199     this.proxy.setOpacity(.5);
32200     this.proxy.hide();
32201
32202     if(config.width){
32203         el.setWidth(config.width);
32204     }
32205     if(config.height){
32206         el.setHeight(config.height);
32207     }
32208     this.size = el.getSize();
32209     if(typeof config.x != "undefined" && typeof config.y != "undefined"){
32210         this.xy = [config.x,config.y];
32211     }else{
32212         this.xy = el.getCenterXY(true);
32213     }
32214     /** The header element @type Roo.Element */
32215     this.header = el.child("> .x-dlg-hd");
32216     /** The body element @type Roo.Element */
32217     this.body = el.child("> .x-dlg-bd");
32218     /** The footer element @type Roo.Element */
32219     this.footer = el.child("> .x-dlg-ft");
32220
32221     if(!this.header){
32222         this.header = el.createChild({tag: "div", cls:"x-dlg-hd", html: "&#160;"}, this.body ? this.body.dom : null);
32223     }
32224     if(!this.body){
32225         this.body = el.createChild({tag: "div", cls:"x-dlg-bd"});
32226     }
32227
32228     this.header.unselectable();
32229     if(this.title){
32230         this.header.update(this.title);
32231     }
32232     // this element allows the dialog to be focused for keyboard event
32233     this.focusEl = el.createChild({tag: "a", href:"#", cls:"x-dlg-focus", tabIndex:"-1"});
32234     this.focusEl.swallowEvent("click", true);
32235
32236     this.header.wrap({cls:"x-dlg-hd-right"}).wrap({cls:"x-dlg-hd-left"}, true);
32237
32238     // wrap the body and footer for special rendering
32239     this.bwrap = this.body.wrap({tag: "div", cls:"x-dlg-dlg-body"});
32240     if(this.footer){
32241         this.bwrap.dom.appendChild(this.footer.dom);
32242     }
32243
32244     this.bg = this.el.createChild({
32245         tag: "div", cls:"x-dlg-bg",
32246         html: '<div class="x-dlg-bg-left"><div class="x-dlg-bg-right"><div class="x-dlg-bg-center">&#160;</div></div></div>'
32247     });
32248     this.centerBg = this.bg.child("div.x-dlg-bg-center");
32249
32250
32251     if(this.autoScroll !== false && !this.autoTabs){
32252         this.body.setStyle("overflow", "auto");
32253     }
32254
32255     this.toolbox = this.el.createChild({cls: "x-dlg-toolbox"});
32256
32257     if(this.closable !== false){
32258         this.el.addClass("x-dlg-closable");
32259         this.close = this.toolbox.createChild({cls:"x-dlg-close"});
32260         this.close.on("click", this.closeClick, this);
32261         this.close.addClassOnOver("x-dlg-close-over");
32262     }
32263     if(this.collapsible !== false){
32264         this.collapseBtn = this.toolbox.createChild({cls:"x-dlg-collapse"});
32265         this.collapseBtn.on("click", this.collapseClick, this);
32266         this.collapseBtn.addClassOnOver("x-dlg-collapse-over");
32267         this.header.on("dblclick", this.collapseClick, this);
32268     }
32269     if(this.resizable !== false){
32270         this.el.addClass("x-dlg-resizable");
32271         this.resizer = new Roo.Resizable(el, {
32272             minWidth: this.minWidth || 80,
32273             minHeight:this.minHeight || 80,
32274             handles: this.resizeHandles || "all",
32275             pinned: true
32276         });
32277         this.resizer.on("beforeresize", this.beforeResize, this);
32278         this.resizer.on("resize", this.onResize, this);
32279     }
32280     if(this.draggable !== false){
32281         el.addClass("x-dlg-draggable");
32282         if (!this.proxyDrag) {
32283             var dd = new Roo.dd.DD(el.dom.id, "WindowDrag");
32284         }
32285         else {
32286             var dd = new Roo.dd.DDProxy(el.dom.id, "WindowDrag", {dragElId: this.proxy.id});
32287         }
32288         dd.setHandleElId(this.header.id);
32289         dd.endDrag = this.endMove.createDelegate(this);
32290         dd.startDrag = this.startMove.createDelegate(this);
32291         dd.onDrag = this.onDrag.createDelegate(this);
32292         dd.scroll = false;
32293         this.dd = dd;
32294     }
32295     if(this.modal){
32296         this.mask = dh.append(document.body, {tag: "div", cls:"x-dlg-mask"}, true);
32297         this.mask.enableDisplayMode("block");
32298         this.mask.hide();
32299         this.el.addClass("x-dlg-modal");
32300     }
32301     if(this.shadow){
32302         this.shadow = new Roo.Shadow({
32303             mode : typeof this.shadow == "string" ? this.shadow : "sides",
32304             offset : this.shadowOffset
32305         });
32306     }else{
32307         this.shadowOffset = 0;
32308     }
32309     if(Roo.useShims && this.shim !== false){
32310         this.shim = this.el.createShim();
32311         this.shim.hide = this.hideAction;
32312         this.shim.hide();
32313     }else{
32314         this.shim = false;
32315     }
32316     if(this.autoTabs){
32317         this.initTabs();
32318     }
32319     if (this.buttons) { 
32320         var bts= this.buttons;
32321         this.buttons = [];
32322         Roo.each(bts, function(b) {
32323             this.addButton(b);
32324         }, this);
32325     }
32326     
32327     
32328     this.addEvents({
32329         /**
32330          * @event keydown
32331          * Fires when a key is pressed
32332          * @param {Roo.BasicDialog} this
32333          * @param {Roo.EventObject} e
32334          */
32335         "keydown" : true,
32336         /**
32337          * @event move
32338          * Fires when this dialog is moved by the user.
32339          * @param {Roo.BasicDialog} this
32340          * @param {Number} x The new page X
32341          * @param {Number} y The new page Y
32342          */
32343         "move" : true,
32344         /**
32345          * @event resize
32346          * Fires when this dialog is resized by the user.
32347          * @param {Roo.BasicDialog} this
32348          * @param {Number} width The new width
32349          * @param {Number} height The new height
32350          */
32351         "resize" : true,
32352         /**
32353          * @event beforehide
32354          * Fires before this dialog is hidden.
32355          * @param {Roo.BasicDialog} this
32356          */
32357         "beforehide" : true,
32358         /**
32359          * @event hide
32360          * Fires when this dialog is hidden.
32361          * @param {Roo.BasicDialog} this
32362          */
32363         "hide" : true,
32364         /**
32365          * @event beforeshow
32366          * Fires before this dialog is shown.
32367          * @param {Roo.BasicDialog} this
32368          */
32369         "beforeshow" : true,
32370         /**
32371          * @event show
32372          * Fires when this dialog is shown.
32373          * @param {Roo.BasicDialog} this
32374          */
32375         "show" : true
32376     });
32377     el.on("keydown", this.onKeyDown, this);
32378     el.on("mousedown", this.toFront, this);
32379     Roo.EventManager.onWindowResize(this.adjustViewport, this, true);
32380     this.el.hide();
32381     Roo.DialogManager.register(this);
32382     Roo.BasicDialog.superclass.constructor.call(this);
32383 };
32384
32385 Roo.extend(Roo.BasicDialog, Roo.util.Observable, {
32386     shadowOffset: Roo.isIE ? 6 : 5,
32387     minHeight: 80,
32388     minWidth: 200,
32389     minButtonWidth: 75,
32390     defaultButton: null,
32391     buttonAlign: "right",
32392     tabTag: 'div',
32393     firstShow: true,
32394
32395     /**
32396      * Sets the dialog title text
32397      * @param {String} text The title text to display
32398      * @return {Roo.BasicDialog} this
32399      */
32400     setTitle : function(text){
32401         this.header.update(text);
32402         return this;
32403     },
32404
32405     // private
32406     closeClick : function(){
32407         this.hide();
32408     },
32409
32410     // private
32411     collapseClick : function(){
32412         this[this.collapsed ? "expand" : "collapse"]();
32413     },
32414
32415     /**
32416      * Collapses the dialog to its minimized state (only the title bar is visible).
32417      * Equivalent to the user clicking the collapse dialog button.
32418      */
32419     collapse : function(){
32420         if(!this.collapsed){
32421             this.collapsed = true;
32422             this.el.addClass("x-dlg-collapsed");
32423             this.restoreHeight = this.el.getHeight();
32424             this.resizeTo(this.el.getWidth(), this.header.getHeight());
32425         }
32426     },
32427
32428     /**
32429      * Expands a collapsed dialog back to its normal state.  Equivalent to the user
32430      * clicking the expand dialog button.
32431      */
32432     expand : function(){
32433         if(this.collapsed){
32434             this.collapsed = false;
32435             this.el.removeClass("x-dlg-collapsed");
32436             this.resizeTo(this.el.getWidth(), this.restoreHeight);
32437         }
32438     },
32439
32440     /**
32441      * Reinitializes the tabs component, clearing out old tabs and finding new ones.
32442      * @return {Roo.TabPanel} The tabs component
32443      */
32444     initTabs : function(){
32445         var tabs = this.getTabs();
32446         while(tabs.getTab(0)){
32447             tabs.removeTab(0);
32448         }
32449         this.el.select(this.tabTag+'.x-dlg-tab').each(function(el){
32450             var dom = el.dom;
32451             tabs.addTab(Roo.id(dom), dom.title);
32452             dom.title = "";
32453         });
32454         tabs.activate(0);
32455         return tabs;
32456     },
32457
32458     // private
32459     beforeResize : function(){
32460         this.resizer.minHeight = Math.max(this.minHeight, this.getHeaderFooterHeight(true)+40);
32461     },
32462
32463     // private
32464     onResize : function(){
32465         this.refreshSize();
32466         this.syncBodyHeight();
32467         this.adjustAssets();
32468         this.focus();
32469         this.fireEvent("resize", this, this.size.width, this.size.height);
32470     },
32471
32472     // private
32473     onKeyDown : function(e){
32474         if(this.isVisible()){
32475             this.fireEvent("keydown", this, e);
32476         }
32477     },
32478
32479     /**
32480      * Resizes the dialog.
32481      * @param {Number} width
32482      * @param {Number} height
32483      * @return {Roo.BasicDialog} this
32484      */
32485     resizeTo : function(width, height){
32486         this.el.setSize(width, height);
32487         this.size = {width: width, height: height};
32488         this.syncBodyHeight();
32489         if(this.fixedcenter){
32490             this.center();
32491         }
32492         if(this.isVisible()){
32493             this.constrainXY();
32494             this.adjustAssets();
32495         }
32496         this.fireEvent("resize", this, width, height);
32497         return this;
32498     },
32499
32500
32501     /**
32502      * Resizes the dialog to fit the specified content size.
32503      * @param {Number} width
32504      * @param {Number} height
32505      * @return {Roo.BasicDialog} this
32506      */
32507     setContentSize : function(w, h){
32508         h += this.getHeaderFooterHeight() + this.body.getMargins("tb");
32509         w += this.body.getMargins("lr") + this.bwrap.getMargins("lr") + this.centerBg.getPadding("lr");
32510         //if(!this.el.isBorderBox()){
32511             h +=  this.body.getPadding("tb") + this.bwrap.getBorderWidth("tb") + this.body.getBorderWidth("tb") + this.el.getBorderWidth("tb");
32512             w += this.body.getPadding("lr") + this.bwrap.getBorderWidth("lr") + this.body.getBorderWidth("lr") + this.bwrap.getPadding("lr") + this.el.getBorderWidth("lr");
32513         //}
32514         if(this.tabs){
32515             h += this.tabs.stripWrap.getHeight() + this.tabs.bodyEl.getMargins("tb") + this.tabs.bodyEl.getPadding("tb");
32516             w += this.tabs.bodyEl.getMargins("lr") + this.tabs.bodyEl.getPadding("lr");
32517         }
32518         this.resizeTo(w, h);
32519         return this;
32520     },
32521
32522     /**
32523      * Adds a key listener for when this dialog is displayed.  This allows you to hook in a function that will be
32524      * executed in response to a particular key being pressed while the dialog is active.
32525      * @param {Number/Array/Object} key Either the numeric key code, array of key codes or an object with the following options:
32526      *                                  {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
32527      * @param {Function} fn The function to call
32528      * @param {Object} scope (optional) The scope of the function
32529      * @return {Roo.BasicDialog} this
32530      */
32531     addKeyListener : function(key, fn, scope){
32532         var keyCode, shift, ctrl, alt;
32533         if(typeof key == "object" && !(key instanceof Array)){
32534             keyCode = key["key"];
32535             shift = key["shift"];
32536             ctrl = key["ctrl"];
32537             alt = key["alt"];
32538         }else{
32539             keyCode = key;
32540         }
32541         var handler = function(dlg, e){
32542             if((!shift || e.shiftKey) && (!ctrl || e.ctrlKey) &&  (!alt || e.altKey)){
32543                 var k = e.getKey();
32544                 if(keyCode instanceof Array){
32545                     for(var i = 0, len = keyCode.length; i < len; i++){
32546                         if(keyCode[i] == k){
32547                           fn.call(scope || window, dlg, k, e);
32548                           return;
32549                         }
32550                     }
32551                 }else{
32552                     if(k == keyCode){
32553                         fn.call(scope || window, dlg, k, e);
32554                     }
32555                 }
32556             }
32557         };
32558         this.on("keydown", handler);
32559         return this;
32560     },
32561
32562     /**
32563      * Returns the TabPanel component (creates it if it doesn't exist).
32564      * Note: If you wish to simply check for the existence of tabs without creating them,
32565      * check for a null 'tabs' property.
32566      * @return {Roo.TabPanel} The tabs component
32567      */
32568     getTabs : function(){
32569         if(!this.tabs){
32570             this.el.addClass("x-dlg-auto-tabs");
32571             this.body.addClass(this.tabPosition == "bottom" ? "x-tabs-bottom" : "x-tabs-top");
32572             this.tabs = new Roo.TabPanel(this.body.dom, this.tabPosition == "bottom");
32573         }
32574         return this.tabs;
32575     },
32576
32577     /**
32578      * Adds a button to the footer section of the dialog.
32579      * @param {String/Object} config A string becomes the button text, an object can either be a Button config
32580      * object or a valid Roo.DomHelper element config
32581      * @param {Function} handler The function called when the button is clicked
32582      * @param {Object} scope (optional) The scope of the handler function (accepts position as a property)
32583      * @return {Roo.Button} The new button
32584      */
32585     addButton : function(config, handler, scope){
32586         var dh = Roo.DomHelper;
32587         if(!this.footer){
32588             this.footer = dh.append(this.bwrap, {tag: "div", cls:"x-dlg-ft"}, true);
32589         }
32590         if(!this.btnContainer){
32591             var tb = this.footer.createChild({
32592
32593                 cls:"x-dlg-btns x-dlg-btns-"+this.buttonAlign,
32594                 html:'<table cellspacing="0"><tbody><tr></tr></tbody></table><div class="x-clear"></div>'
32595             }, null, true);
32596             this.btnContainer = tb.firstChild.firstChild.firstChild;
32597         }
32598         var bconfig = {
32599             handler: handler,
32600             scope: scope,
32601             minWidth: this.minButtonWidth,
32602             hideParent:true
32603         };
32604         if(typeof config == "string"){
32605             bconfig.text = config;
32606         }else{
32607             if(config.tag){
32608                 bconfig.dhconfig = config;
32609             }else{
32610                 Roo.apply(bconfig, config);
32611             }
32612         }
32613         var fc = false;
32614         if ((typeof(bconfig.position) != 'undefined') && bconfig.position < this.btnContainer.childNodes.length-1) {
32615             bconfig.position = Math.max(0, bconfig.position);
32616             fc = this.btnContainer.childNodes[bconfig.position];
32617         }
32618          
32619         var btn = new Roo.Button(
32620             fc ? 
32621                 this.btnContainer.insertBefore(document.createElement("td"),fc)
32622                 : this.btnContainer.appendChild(document.createElement("td")),
32623             //Roo.get(this.btnContainer).createChild( { tag: 'td'},  fc ),
32624             bconfig
32625         );
32626         this.syncBodyHeight();
32627         if(!this.buttons){
32628             /**
32629              * Array of all the buttons that have been added to this dialog via addButton
32630              * @type Array
32631              */
32632             this.buttons = [];
32633         }
32634         this.buttons.push(btn);
32635         return btn;
32636     },
32637
32638     /**
32639      * Sets the default button to be focused when the dialog is displayed.
32640      * @param {Roo.BasicDialog.Button} btn The button object returned by {@link #addButton}
32641      * @return {Roo.BasicDialog} this
32642      */
32643     setDefaultButton : function(btn){
32644         this.defaultButton = btn;
32645         return this;
32646     },
32647
32648     // private
32649     getHeaderFooterHeight : function(safe){
32650         var height = 0;
32651         if(this.header){
32652            height += this.header.getHeight();
32653         }
32654         if(this.footer){
32655            var fm = this.footer.getMargins();
32656             height += (this.footer.getHeight()+fm.top+fm.bottom);
32657         }
32658         height += this.bwrap.getPadding("tb")+this.bwrap.getBorderWidth("tb");
32659         height += this.centerBg.getPadding("tb");
32660         return height;
32661     },
32662
32663     // private
32664     syncBodyHeight : function()
32665     {
32666         var bd = this.body, // the text
32667             cb = this.centerBg, // wrapper around bottom.. but does not seem to be used..
32668             bw = this.bwrap;
32669         var height = this.size.height - this.getHeaderFooterHeight(false);
32670         bd.setHeight(height-bd.getMargins("tb"));
32671         var hh = this.header.getHeight();
32672         var h = this.size.height-hh;
32673         cb.setHeight(h);
32674         
32675         bw.setLeftTop(cb.getPadding("l"), hh+cb.getPadding("t"));
32676         bw.setHeight(h-cb.getPadding("tb"));
32677         
32678         bw.setWidth(this.el.getWidth(true)-cb.getPadding("lr"));
32679         bd.setWidth(bw.getWidth(true));
32680         if(this.tabs){
32681             this.tabs.syncHeight();
32682             if(Roo.isIE){
32683                 this.tabs.el.repaint();
32684             }
32685         }
32686     },
32687
32688     /**
32689      * Restores the previous state of the dialog if Roo.state is configured.
32690      * @return {Roo.BasicDialog} this
32691      */
32692     restoreState : function(){
32693         var box = Roo.state.Manager.get(this.stateId || (this.el.id + "-state"));
32694         if(box && box.width){
32695             this.xy = [box.x, box.y];
32696             this.resizeTo(box.width, box.height);
32697         }
32698         return this;
32699     },
32700
32701     // private
32702     beforeShow : function(){
32703         this.expand();
32704         if(this.fixedcenter){
32705             this.xy = this.el.getCenterXY(true);
32706         }
32707         if(this.modal){
32708             Roo.get(document.body).addClass("x-body-masked");
32709             this.mask.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
32710             this.mask.show();
32711         }
32712         this.constrainXY();
32713     },
32714
32715     // private
32716     animShow : function(){
32717         var b = Roo.get(this.animateTarget).getBox();
32718         this.proxy.setSize(b.width, b.height);
32719         this.proxy.setLocation(b.x, b.y);
32720         this.proxy.show();
32721         this.proxy.setBounds(this.xy[0], this.xy[1], this.size.width, this.size.height,
32722                     true, .35, this.showEl.createDelegate(this));
32723     },
32724
32725     /**
32726      * Shows the dialog.
32727      * @param {String/HTMLElement/Roo.Element} animateTarget (optional) Reset the animation target
32728      * @return {Roo.BasicDialog} this
32729      */
32730     show : function(animateTarget){
32731         if (this.fireEvent("beforeshow", this) === false){
32732             return;
32733         }
32734         if(this.syncHeightBeforeShow){
32735             this.syncBodyHeight();
32736         }else if(this.firstShow){
32737             this.firstShow = false;
32738             this.syncBodyHeight(); // sync the height on the first show instead of in the constructor
32739         }
32740         this.animateTarget = animateTarget || this.animateTarget;
32741         if(!this.el.isVisible()){
32742             this.beforeShow();
32743             if(this.animateTarget && Roo.get(this.animateTarget)){
32744                 this.animShow();
32745             }else{
32746                 this.showEl();
32747             }
32748         }
32749         return this;
32750     },
32751
32752     // private
32753     showEl : function(){
32754         this.proxy.hide();
32755         this.el.setXY(this.xy);
32756         this.el.show();
32757         this.adjustAssets(true);
32758         this.toFront();
32759         this.focus();
32760         // IE peekaboo bug - fix found by Dave Fenwick
32761         if(Roo.isIE){
32762             this.el.repaint();
32763         }
32764         this.fireEvent("show", this);
32765     },
32766
32767     /**
32768      * Focuses the dialog.  If a defaultButton is set, it will receive focus, otherwise the
32769      * dialog itself will receive focus.
32770      */
32771     focus : function(){
32772         if(this.defaultButton){
32773             this.defaultButton.focus();
32774         }else{
32775             this.focusEl.focus();
32776         }
32777     },
32778
32779     // private
32780     constrainXY : function(){
32781         if(this.constraintoviewport !== false){
32782             if(!this.viewSize){
32783                 if(this.container){
32784                     var s = this.container.getSize();
32785                     this.viewSize = [s.width, s.height];
32786                 }else{
32787                     this.viewSize = [Roo.lib.Dom.getViewWidth(),Roo.lib.Dom.getViewHeight()];
32788                 }
32789             }
32790             var s = Roo.get(this.container||document).getScroll();
32791
32792             var x = this.xy[0], y = this.xy[1];
32793             var w = this.size.width, h = this.size.height;
32794             var vw = this.viewSize[0], vh = this.viewSize[1];
32795             // only move it if it needs it
32796             var moved = false;
32797             // first validate right/bottom
32798             if(x + w > vw+s.left){
32799                 x = vw - w;
32800                 moved = true;
32801             }
32802             if(y + h > vh+s.top){
32803                 y = vh - h;
32804                 moved = true;
32805             }
32806             // then make sure top/left isn't negative
32807             if(x < s.left){
32808                 x = s.left;
32809                 moved = true;
32810             }
32811             if(y < s.top){
32812                 y = s.top;
32813                 moved = true;
32814             }
32815             if(moved){
32816                 // cache xy
32817                 this.xy = [x, y];
32818                 if(this.isVisible()){
32819                     this.el.setLocation(x, y);
32820                     this.adjustAssets();
32821                 }
32822             }
32823         }
32824     },
32825
32826     // private
32827     onDrag : function(){
32828         if(!this.proxyDrag){
32829             this.xy = this.el.getXY();
32830             this.adjustAssets();
32831         }
32832     },
32833
32834     // private
32835     adjustAssets : function(doShow){
32836         var x = this.xy[0], y = this.xy[1];
32837         var w = this.size.width, h = this.size.height;
32838         if(doShow === true){
32839             if(this.shadow){
32840                 this.shadow.show(this.el);
32841             }
32842             if(this.shim){
32843                 this.shim.show();
32844             }
32845         }
32846         if(this.shadow && this.shadow.isVisible()){
32847             this.shadow.show(this.el);
32848         }
32849         if(this.shim && this.shim.isVisible()){
32850             this.shim.setBounds(x, y, w, h);
32851         }
32852     },
32853
32854     // private
32855     adjustViewport : function(w, h){
32856         if(!w || !h){
32857             w = Roo.lib.Dom.getViewWidth();
32858             h = Roo.lib.Dom.getViewHeight();
32859         }
32860         // cache the size
32861         this.viewSize = [w, h];
32862         if(this.modal && this.mask.isVisible()){
32863             this.mask.setSize(w, h); // first make sure the mask isn't causing overflow
32864             this.mask.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
32865         }
32866         if(this.isVisible()){
32867             this.constrainXY();
32868         }
32869     },
32870
32871     /**
32872      * Destroys this dialog and all its supporting elements (including any tabs, shim,
32873      * shadow, proxy, mask, etc.)  Also removes all event listeners.
32874      * @param {Boolean} removeEl (optional) true to remove the element from the DOM
32875      */
32876     destroy : function(removeEl){
32877         if(this.isVisible()){
32878             this.animateTarget = null;
32879             this.hide();
32880         }
32881         Roo.EventManager.removeResizeListener(this.adjustViewport, this);
32882         if(this.tabs){
32883             this.tabs.destroy(removeEl);
32884         }
32885         Roo.destroy(
32886              this.shim,
32887              this.proxy,
32888              this.resizer,
32889              this.close,
32890              this.mask
32891         );
32892         if(this.dd){
32893             this.dd.unreg();
32894         }
32895         if(this.buttons){
32896            for(var i = 0, len = this.buttons.length; i < len; i++){
32897                this.buttons[i].destroy();
32898            }
32899         }
32900         this.el.removeAllListeners();
32901         if(removeEl === true){
32902             this.el.update("");
32903             this.el.remove();
32904         }
32905         Roo.DialogManager.unregister(this);
32906     },
32907
32908     // private
32909     startMove : function(){
32910         if(this.proxyDrag){
32911             this.proxy.show();
32912         }
32913         if(this.constraintoviewport !== false){
32914             this.dd.constrainTo(document.body, {right: this.shadowOffset, bottom: this.shadowOffset});
32915         }
32916     },
32917
32918     // private
32919     endMove : function(){
32920         if(!this.proxyDrag){
32921             Roo.dd.DD.prototype.endDrag.apply(this.dd, arguments);
32922         }else{
32923             Roo.dd.DDProxy.prototype.endDrag.apply(this.dd, arguments);
32924             this.proxy.hide();
32925         }
32926         this.refreshSize();
32927         this.adjustAssets();
32928         this.focus();
32929         this.fireEvent("move", this, this.xy[0], this.xy[1]);
32930     },
32931
32932     /**
32933      * Brings this dialog to the front of any other visible dialogs
32934      * @return {Roo.BasicDialog} this
32935      */
32936     toFront : function(){
32937         Roo.DialogManager.bringToFront(this);
32938         return this;
32939     },
32940
32941     /**
32942      * Sends this dialog to the back (under) of any other visible dialogs
32943      * @return {Roo.BasicDialog} this
32944      */
32945     toBack : function(){
32946         Roo.DialogManager.sendToBack(this);
32947         return this;
32948     },
32949
32950     /**
32951      * Centers this dialog in the viewport
32952      * @return {Roo.BasicDialog} this
32953      */
32954     center : function(){
32955         var xy = this.el.getCenterXY(true);
32956         this.moveTo(xy[0], xy[1]);
32957         return this;
32958     },
32959
32960     /**
32961      * Moves the dialog's top-left corner to the specified point
32962      * @param {Number} x
32963      * @param {Number} y
32964      * @return {Roo.BasicDialog} this
32965      */
32966     moveTo : function(x, y){
32967         this.xy = [x,y];
32968         if(this.isVisible()){
32969             this.el.setXY(this.xy);
32970             this.adjustAssets();
32971         }
32972         return this;
32973     },
32974
32975     /**
32976      * Aligns the dialog to the specified element
32977      * @param {String/HTMLElement/Roo.Element} element The element to align to.
32978      * @param {String} position The position to align to (see {@link Roo.Element#alignTo} for more details).
32979      * @param {Array} offsets (optional) Offset the positioning by [x, y]
32980      * @return {Roo.BasicDialog} this
32981      */
32982     alignTo : function(element, position, offsets){
32983         this.xy = this.el.getAlignToXY(element, position, offsets);
32984         if(this.isVisible()){
32985             this.el.setXY(this.xy);
32986             this.adjustAssets();
32987         }
32988         return this;
32989     },
32990
32991     /**
32992      * Anchors an element to another element and realigns it when the window is resized.
32993      * @param {String/HTMLElement/Roo.Element} element The element to align to.
32994      * @param {String} position The position to align to (see {@link Roo.Element#alignTo} for more details)
32995      * @param {Array} offsets (optional) Offset the positioning by [x, y]
32996      * @param {Boolean/Number} monitorScroll (optional) true to monitor body scroll and reposition. If this parameter
32997      * is a number, it is used as the buffer delay (defaults to 50ms).
32998      * @return {Roo.BasicDialog} this
32999      */
33000     anchorTo : function(el, alignment, offsets, monitorScroll){
33001         var action = function(){
33002             this.alignTo(el, alignment, offsets);
33003         };
33004         Roo.EventManager.onWindowResize(action, this);
33005         var tm = typeof monitorScroll;
33006         if(tm != 'undefined'){
33007             Roo.EventManager.on(window, 'scroll', action, this,
33008                 {buffer: tm == 'number' ? monitorScroll : 50});
33009         }
33010         action.call(this);
33011         return this;
33012     },
33013
33014     /**
33015      * Returns true if the dialog is visible
33016      * @return {Boolean}
33017      */
33018     isVisible : function(){
33019         return this.el.isVisible();
33020     },
33021
33022     // private
33023     animHide : function(callback){
33024         var b = Roo.get(this.animateTarget).getBox();
33025         this.proxy.show();
33026         this.proxy.setBounds(this.xy[0], this.xy[1], this.size.width, this.size.height);
33027         this.el.hide();
33028         this.proxy.setBounds(b.x, b.y, b.width, b.height, true, .35,
33029                     this.hideEl.createDelegate(this, [callback]));
33030     },
33031
33032     /**
33033      * Hides the dialog.
33034      * @param {Function} callback (optional) Function to call when the dialog is hidden
33035      * @return {Roo.BasicDialog} this
33036      */
33037     hide : function(callback){
33038         if (this.fireEvent("beforehide", this) === false){
33039             return;
33040         }
33041         if(this.shadow){
33042             this.shadow.hide();
33043         }
33044         if(this.shim) {
33045           this.shim.hide();
33046         }
33047         // sometimes animateTarget seems to get set.. causing problems...
33048         // this just double checks..
33049         if(this.animateTarget && Roo.get(this.animateTarget)) {
33050            this.animHide(callback);
33051         }else{
33052             this.el.hide();
33053             this.hideEl(callback);
33054         }
33055         return this;
33056     },
33057
33058     // private
33059     hideEl : function(callback){
33060         this.proxy.hide();
33061         if(this.modal){
33062             this.mask.hide();
33063             Roo.get(document.body).removeClass("x-body-masked");
33064         }
33065         this.fireEvent("hide", this);
33066         if(typeof callback == "function"){
33067             callback();
33068         }
33069     },
33070
33071     // private
33072     hideAction : function(){
33073         this.setLeft("-10000px");
33074         this.setTop("-10000px");
33075         this.setStyle("visibility", "hidden");
33076     },
33077
33078     // private
33079     refreshSize : function(){
33080         this.size = this.el.getSize();
33081         this.xy = this.el.getXY();
33082         Roo.state.Manager.set(this.stateId || this.el.id + "-state", this.el.getBox());
33083     },
33084
33085     // private
33086     // z-index is managed by the DialogManager and may be overwritten at any time
33087     setZIndex : function(index){
33088         if(this.modal){
33089             this.mask.setStyle("z-index", index);
33090         }
33091         if(this.shim){
33092             this.shim.setStyle("z-index", ++index);
33093         }
33094         if(this.shadow){
33095             this.shadow.setZIndex(++index);
33096         }
33097         this.el.setStyle("z-index", ++index);
33098         if(this.proxy){
33099             this.proxy.setStyle("z-index", ++index);
33100         }
33101         if(this.resizer){
33102             this.resizer.proxy.setStyle("z-index", ++index);
33103         }
33104
33105         this.lastZIndex = index;
33106     },
33107
33108     /**
33109      * Returns the element for this dialog
33110      * @return {Roo.Element} The underlying dialog Element
33111      */
33112     getEl : function(){
33113         return this.el;
33114     }
33115 });
33116
33117 /**
33118  * @class Roo.DialogManager
33119  * Provides global access to BasicDialogs that have been created and
33120  * support for z-indexing (layering) multiple open dialogs.
33121  */
33122 Roo.DialogManager = function(){
33123     var list = {};
33124     var accessList = [];
33125     var front = null;
33126
33127     // private
33128     var sortDialogs = function(d1, d2){
33129         return (!d1._lastAccess || d1._lastAccess < d2._lastAccess) ? -1 : 1;
33130     };
33131
33132     // private
33133     var orderDialogs = function(){
33134         accessList.sort(sortDialogs);
33135         var seed = Roo.DialogManager.zseed;
33136         for(var i = 0, len = accessList.length; i < len; i++){
33137             var dlg = accessList[i];
33138             if(dlg){
33139                 dlg.setZIndex(seed + (i*10));
33140             }
33141         }
33142     };
33143
33144     return {
33145         /**
33146          * The starting z-index for BasicDialogs (defaults to 9000)
33147          * @type Number The z-index value
33148          */
33149         zseed : 9000,
33150
33151         // private
33152         register : function(dlg){
33153             list[dlg.id] = dlg;
33154             accessList.push(dlg);
33155         },
33156
33157         // private
33158         unregister : function(dlg){
33159             delete list[dlg.id];
33160             var i=0;
33161             var len=0;
33162             if(!accessList.indexOf){
33163                 for(  i = 0, len = accessList.length; i < len; i++){
33164                     if(accessList[i] == dlg){
33165                         accessList.splice(i, 1);
33166                         return;
33167                     }
33168                 }
33169             }else{
33170                  i = accessList.indexOf(dlg);
33171                 if(i != -1){
33172                     accessList.splice(i, 1);
33173                 }
33174             }
33175         },
33176
33177         /**
33178          * Gets a registered dialog by id
33179          * @param {String/Object} id The id of the dialog or a dialog
33180          * @return {Roo.BasicDialog} this
33181          */
33182         get : function(id){
33183             return typeof id == "object" ? id : list[id];
33184         },
33185
33186         /**
33187          * Brings the specified dialog to the front
33188          * @param {String/Object} dlg The id of the dialog or a dialog
33189          * @return {Roo.BasicDialog} this
33190          */
33191         bringToFront : function(dlg){
33192             dlg = this.get(dlg);
33193             if(dlg != front){
33194                 front = dlg;
33195                 dlg._lastAccess = new Date().getTime();
33196                 orderDialogs();
33197             }
33198             return dlg;
33199         },
33200
33201         /**
33202          * Sends the specified dialog to the back
33203          * @param {String/Object} dlg The id of the dialog or a dialog
33204          * @return {Roo.BasicDialog} this
33205          */
33206         sendToBack : function(dlg){
33207             dlg = this.get(dlg);
33208             dlg._lastAccess = -(new Date().getTime());
33209             orderDialogs();
33210             return dlg;
33211         },
33212
33213         /**
33214          * Hides all dialogs
33215          */
33216         hideAll : function(){
33217             for(var id in list){
33218                 if(list[id] && typeof list[id] != "function" && list[id].isVisible()){
33219                     list[id].hide();
33220                 }
33221             }
33222         }
33223     };
33224 }();
33225
33226 /**
33227  * @class Roo.LayoutDialog
33228  * @extends Roo.BasicDialog
33229  * Dialog which provides adjustments for working with a layout in a Dialog.
33230  * Add your necessary layout config options to the dialog's config.<br>
33231  * Example usage (including a nested layout):
33232  * <pre><code>
33233 if(!dialog){
33234     dialog = new Roo.LayoutDialog("download-dlg", {
33235         modal: true,
33236         width:600,
33237         height:450,
33238         shadow:true,
33239         minWidth:500,
33240         minHeight:350,
33241         autoTabs:true,
33242         proxyDrag:true,
33243         // layout config merges with the dialog config
33244         center:{
33245             tabPosition: "top",
33246             alwaysShowTabs: true
33247         }
33248     });
33249     dialog.addKeyListener(27, dialog.hide, dialog);
33250     dialog.setDefaultButton(dialog.addButton("Close", dialog.hide, dialog));
33251     dialog.addButton("Build It!", this.getDownload, this);
33252
33253     // we can even add nested layouts
33254     var innerLayout = new Roo.BorderLayout("dl-inner", {
33255         east: {
33256             initialSize: 200,
33257             autoScroll:true,
33258             split:true
33259         },
33260         center: {
33261             autoScroll:true
33262         }
33263     });
33264     innerLayout.beginUpdate();
33265     innerLayout.add("east", new Roo.ContentPanel("dl-details"));
33266     innerLayout.add("center", new Roo.ContentPanel("selection-panel"));
33267     innerLayout.endUpdate(true);
33268
33269     var layout = dialog.getLayout();
33270     layout.beginUpdate();
33271     layout.add("center", new Roo.ContentPanel("standard-panel",
33272                         {title: "Download the Source", fitToFrame:true}));
33273     layout.add("center", new Roo.NestedLayoutPanel(innerLayout,
33274                {title: "Build your own roo.js"}));
33275     layout.getRegion("center").showPanel(sp);
33276     layout.endUpdate();
33277 }
33278 </code></pre>
33279     * @constructor
33280     * @param {String/HTMLElement/Roo.Element} el The id of or container element, or config
33281     * @param {Object} config configuration options
33282   */
33283 Roo.LayoutDialog = function(el, cfg){
33284     
33285     var config=  cfg;
33286     if (typeof(cfg) == 'undefined') {
33287         config = Roo.apply({}, el);
33288         // not sure why we use documentElement here.. - it should always be body.
33289         // IE7 borks horribly if we use documentElement.
33290         // webkit also does not like documentElement - it creates a body element...
33291         el = Roo.get( document.body || document.documentElement ).createChild();
33292         //config.autoCreate = true;
33293     }
33294     
33295     
33296     config.autoTabs = false;
33297     Roo.LayoutDialog.superclass.constructor.call(this, el, config);
33298     this.body.setStyle({overflow:"hidden", position:"relative"});
33299     this.layout = new Roo.BorderLayout(this.body.dom, config);
33300     this.layout.monitorWindowResize = false;
33301     this.el.addClass("x-dlg-auto-layout");
33302     // fix case when center region overwrites center function
33303     this.center = Roo.BasicDialog.prototype.center;
33304     this.on("show", this.layout.layout, this.layout, true);
33305     if (config.items) {
33306         var xitems = config.items;
33307         delete config.items;
33308         Roo.each(xitems, this.addxtype, this);
33309     }
33310     
33311     
33312 };
33313 Roo.extend(Roo.LayoutDialog, Roo.BasicDialog, {
33314     /**
33315      * Ends update of the layout <strike>and resets display to none</strike>. Use standard beginUpdate/endUpdate on the layout.
33316      * @deprecated
33317      */
33318     endUpdate : function(){
33319         this.layout.endUpdate();
33320     },
33321
33322     /**
33323      * Begins an update of the layout <strike>and sets display to block and visibility to hidden</strike>. Use standard beginUpdate/endUpdate on the layout.
33324      *  @deprecated
33325      */
33326     beginUpdate : function(){
33327         this.layout.beginUpdate();
33328     },
33329
33330     /**
33331      * Get the BorderLayout for this dialog
33332      * @return {Roo.BorderLayout}
33333      */
33334     getLayout : function(){
33335         return this.layout;
33336     },
33337
33338     showEl : function(){
33339         Roo.LayoutDialog.superclass.showEl.apply(this, arguments);
33340         if(Roo.isIE7){
33341             this.layout.layout();
33342         }
33343     },
33344
33345     // private
33346     // Use the syncHeightBeforeShow config option to control this automatically
33347     syncBodyHeight : function(){
33348         Roo.LayoutDialog.superclass.syncBodyHeight.call(this);
33349         if(this.layout){this.layout.layout();}
33350     },
33351     
33352       /**
33353      * Add an xtype element (actually adds to the layout.)
33354      * @return {Object} xdata xtype object data.
33355      */
33356     
33357     addxtype : function(c) {
33358         return this.layout.addxtype(c);
33359     }
33360 });/*
33361  * Based on:
33362  * Ext JS Library 1.1.1
33363  * Copyright(c) 2006-2007, Ext JS, LLC.
33364  *
33365  * Originally Released Under LGPL - original licence link has changed is not relivant.
33366  *
33367  * Fork - LGPL
33368  * <script type="text/javascript">
33369  */
33370  
33371 /**
33372  * @class Roo.MessageBox
33373  * Utility class for generating different styles of message boxes.  The alias Roo.Msg can also be used.
33374  * Example usage:
33375  *<pre><code>
33376 // Basic alert:
33377 Roo.Msg.alert('Status', 'Changes saved successfully.');
33378
33379 // Prompt for user data:
33380 Roo.Msg.prompt('Name', 'Please enter your name:', function(btn, text){
33381     if (btn == 'ok'){
33382         // process text value...
33383     }
33384 });
33385
33386 // Show a dialog using config options:
33387 Roo.Msg.show({
33388    title:'Save Changes?',
33389    msg: 'Your are closing a tab that has unsaved changes. Would you like to save your changes?',
33390    buttons: Roo.Msg.YESNOCANCEL,
33391    fn: processResult,
33392    animEl: 'elId'
33393 });
33394 </code></pre>
33395  * @singleton
33396  */
33397 Roo.MessageBox = function(){
33398     var dlg, opt, mask, waitTimer;
33399     var bodyEl, msgEl, textboxEl, textareaEl, progressEl, pp;
33400     var buttons, activeTextEl, bwidth;
33401
33402     // private
33403     var handleButton = function(button){
33404         dlg.hide();
33405         Roo.callback(opt.fn, opt.scope||window, [button, activeTextEl.dom.value], 1);
33406     };
33407
33408     // private
33409     var handleHide = function(){
33410         if(opt && opt.cls){
33411             dlg.el.removeClass(opt.cls);
33412         }
33413         if(waitTimer){
33414             Roo.TaskMgr.stop(waitTimer);
33415             waitTimer = null;
33416         }
33417     };
33418
33419     // private
33420     var updateButtons = function(b){
33421         var width = 0;
33422         if(!b){
33423             buttons["ok"].hide();
33424             buttons["cancel"].hide();
33425             buttons["yes"].hide();
33426             buttons["no"].hide();
33427             dlg.footer.dom.style.display = 'none';
33428             return width;
33429         }
33430         dlg.footer.dom.style.display = '';
33431         for(var k in buttons){
33432             if(typeof buttons[k] != "function"){
33433                 if(b[k]){
33434                     buttons[k].show();
33435                     buttons[k].setText(typeof b[k] == "string" ? b[k] : Roo.MessageBox.buttonText[k]);
33436                     width += buttons[k].el.getWidth()+15;
33437                 }else{
33438                     buttons[k].hide();
33439                 }
33440             }
33441         }
33442         return width;
33443     };
33444
33445     // private
33446     var handleEsc = function(d, k, e){
33447         if(opt && opt.closable !== false){
33448             dlg.hide();
33449         }
33450         if(e){
33451             e.stopEvent();
33452         }
33453     };
33454
33455     return {
33456         /**
33457          * Returns a reference to the underlying {@link Roo.BasicDialog} element
33458          * @return {Roo.BasicDialog} The BasicDialog element
33459          */
33460         getDialog : function(){
33461            if(!dlg){
33462                 dlg = new Roo.BasicDialog("x-msg-box", {
33463                     autoCreate : true,
33464                     shadow: true,
33465                     draggable: true,
33466                     resizable:false,
33467                     constraintoviewport:false,
33468                     fixedcenter:true,
33469                     collapsible : false,
33470                     shim:true,
33471                     modal: true,
33472                     width:400, height:100,
33473                     buttonAlign:"center",
33474                     closeClick : function(){
33475                         if(opt && opt.buttons && opt.buttons.no && !opt.buttons.cancel){
33476                             handleButton("no");
33477                         }else{
33478                             handleButton("cancel");
33479                         }
33480                     }
33481                 });
33482                 dlg.on("hide", handleHide);
33483                 mask = dlg.mask;
33484                 dlg.addKeyListener(27, handleEsc);
33485                 buttons = {};
33486                 var bt = this.buttonText;
33487                 buttons["ok"] = dlg.addButton(bt["ok"], handleButton.createCallback("ok"));
33488                 buttons["yes"] = dlg.addButton(bt["yes"], handleButton.createCallback("yes"));
33489                 buttons["no"] = dlg.addButton(bt["no"], handleButton.createCallback("no"));
33490                 buttons["cancel"] = dlg.addButton(bt["cancel"], handleButton.createCallback("cancel"));
33491                 bodyEl = dlg.body.createChild({
33492
33493                     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>'
33494                 });
33495                 msgEl = bodyEl.dom.firstChild;
33496                 textboxEl = Roo.get(bodyEl.dom.childNodes[2]);
33497                 textboxEl.enableDisplayMode();
33498                 textboxEl.addKeyListener([10,13], function(){
33499                     if(dlg.isVisible() && opt && opt.buttons){
33500                         if(opt.buttons.ok){
33501                             handleButton("ok");
33502                         }else if(opt.buttons.yes){
33503                             handleButton("yes");
33504                         }
33505                     }
33506                 });
33507                 textareaEl = Roo.get(bodyEl.dom.childNodes[3]);
33508                 textareaEl.enableDisplayMode();
33509                 progressEl = Roo.get(bodyEl.dom.childNodes[4]);
33510                 progressEl.enableDisplayMode();
33511                 var pf = progressEl.dom.firstChild;
33512                 if (pf) {
33513                     pp = Roo.get(pf.firstChild);
33514                     pp.setHeight(pf.offsetHeight);
33515                 }
33516                 
33517             }
33518             return dlg;
33519         },
33520
33521         /**
33522          * Updates the message box body text
33523          * @param {String} text (optional) Replaces the message box element's innerHTML with the specified string (defaults to
33524          * the XHTML-compliant non-breaking space character '&amp;#160;')
33525          * @return {Roo.MessageBox} This message box
33526          */
33527         updateText : function(text){
33528             if(!dlg.isVisible() && !opt.width){
33529                 dlg.resizeTo(this.maxWidth, 100); // resize first so content is never clipped from previous shows
33530             }
33531             msgEl.innerHTML = text || '&#160;';
33532       
33533             var cw =  Math.max(msgEl.offsetWidth, msgEl.parentNode.scrollWidth);
33534             //Roo.log("guesed size: " + JSON.stringify([cw,msgEl.offsetWidth, msgEl.parentNode.scrollWidth]));
33535             var w = Math.max(
33536                     Math.min(opt.width || cw , this.maxWidth), 
33537                     Math.max(opt.minWidth || this.minWidth, bwidth)
33538             );
33539             if(opt.prompt){
33540                 activeTextEl.setWidth(w);
33541             }
33542             if(dlg.isVisible()){
33543                 dlg.fixedcenter = false;
33544             }
33545             // to big, make it scroll. = But as usual stupid IE does not support
33546             // !important..
33547             
33548             if ( bodyEl.getHeight() > (Roo.lib.Dom.getViewHeight() - 100)) {
33549                 bodyEl.setHeight ( Roo.lib.Dom.getViewHeight() - 100 );
33550                 bodyEl.dom.style.overflowY = 'auto' + ( Roo.isIE ? '' : ' !important');
33551             } else {
33552                 bodyEl.dom.style.height = '';
33553                 bodyEl.dom.style.overflowY = '';
33554             }
33555             if (cw > w) {
33556                 bodyEl.dom.style.get = 'auto' + ( Roo.isIE ? '' : ' !important');
33557             } else {
33558                 bodyEl.dom.style.overflowX = '';
33559             }
33560             
33561             dlg.setContentSize(w, bodyEl.getHeight());
33562             if(dlg.isVisible()){
33563                 dlg.fixedcenter = true;
33564             }
33565             return this;
33566         },
33567
33568         /**
33569          * Updates a progress-style message box's text and progress bar.  Only relevant on message boxes
33570          * initiated via {@link Roo.MessageBox#progress} or by calling {@link Roo.MessageBox#show} with progress: true.
33571          * @param {Number} value Any number between 0 and 1 (e.g., .5)
33572          * @param {String} text (optional) If defined, the message box's body text is replaced with the specified string (defaults to undefined)
33573          * @return {Roo.MessageBox} This message box
33574          */
33575         updateProgress : function(value, text){
33576             if(text){
33577                 this.updateText(text);
33578             }
33579             if (pp) { // weird bug on my firefox - for some reason this is not defined
33580                 pp.setWidth(Math.floor(value*progressEl.dom.firstChild.offsetWidth));
33581             }
33582             return this;
33583         },        
33584
33585         /**
33586          * Returns true if the message box is currently displayed
33587          * @return {Boolean} True if the message box is visible, else false
33588          */
33589         isVisible : function(){
33590             return dlg && dlg.isVisible();  
33591         },
33592
33593         /**
33594          * Hides the message box if it is displayed
33595          */
33596         hide : function(){
33597             if(this.isVisible()){
33598                 dlg.hide();
33599             }  
33600         },
33601
33602         /**
33603          * Displays a new message box, or reinitializes an existing message box, based on the config options
33604          * passed in. All functions (e.g. prompt, alert, etc) on MessageBox call this function internally.
33605          * The following config object properties are supported:
33606          * <pre>
33607 Property    Type             Description
33608 ----------  ---------------  ------------------------------------------------------------------------------------
33609 animEl            String/Element   An id or Element from which the message box should animate as it opens and
33610                                    closes (defaults to undefined)
33611 buttons           Object/Boolean   A button config object (e.g., Roo.MessageBox.OKCANCEL or {ok:'Foo',
33612                                    cancel:'Bar'}), or false to not show any buttons (defaults to false)
33613 closable          Boolean          False to hide the top-right close button (defaults to true).  Note that
33614                                    progress and wait dialogs will ignore this property and always hide the
33615                                    close button as they can only be closed programmatically.
33616 cls               String           A custom CSS class to apply to the message box element
33617 defaultTextHeight Number           The default height in pixels of the message box's multiline textarea if
33618                                    displayed (defaults to 75)
33619 fn                Function         A callback function to execute after closing the dialog.  The arguments to the
33620                                    function will be btn (the name of the button that was clicked, if applicable,
33621                                    e.g. "ok"), and text (the value of the active text field, if applicable).
33622                                    Progress and wait dialogs will ignore this option since they do not respond to
33623                                    user actions and can only be closed programmatically, so any required function
33624                                    should be called by the same code after it closes the dialog.
33625 icon              String           A CSS class that provides a background image to be used as an icon for
33626                                    the dialog (e.g., Roo.MessageBox.WARNING or 'custom-class', defaults to '')
33627 maxWidth          Number           The maximum width in pixels of the message box (defaults to 600)
33628 minWidth          Number           The minimum width in pixels of the message box (defaults to 100)
33629 modal             Boolean          False to allow user interaction with the page while the message box is
33630                                    displayed (defaults to true)
33631 msg               String           A string that will replace the existing message box body text (defaults
33632                                    to the XHTML-compliant non-breaking space character '&#160;')
33633 multiline         Boolean          True to prompt the user to enter multi-line text (defaults to false)
33634 progress          Boolean          True to display a progress bar (defaults to false)
33635 progressText      String           The text to display inside the progress bar if progress = true (defaults to '')
33636 prompt            Boolean          True to prompt the user to enter single-line text (defaults to false)
33637 proxyDrag         Boolean          True to display a lightweight proxy while dragging (defaults to false)
33638 title             String           The title text
33639 value             String           The string value to set into the active textbox element if displayed
33640 wait              Boolean          True to display a progress bar (defaults to false)
33641 width             Number           The width of the dialog in pixels
33642 </pre>
33643          *
33644          * Example usage:
33645          * <pre><code>
33646 Roo.Msg.show({
33647    title: 'Address',
33648    msg: 'Please enter your address:',
33649    width: 300,
33650    buttons: Roo.MessageBox.OKCANCEL,
33651    multiline: true,
33652    fn: saveAddress,
33653    animEl: 'addAddressBtn'
33654 });
33655 </code></pre>
33656          * @param {Object} config Configuration options
33657          * @return {Roo.MessageBox} This message box
33658          */
33659         show : function(options)
33660         {
33661             
33662             // this causes nightmares if you show one dialog after another
33663             // especially on callbacks..
33664              
33665             if(this.isVisible()){
33666                 
33667                 this.hide();
33668                 Roo.log("[Roo.Messagebox] Show called while message displayed:" );
33669                 Roo.log("Old Dialog Message:" +  msgEl.innerHTML );
33670                 Roo.log("New Dialog Message:" +  options.msg )
33671                 //this.alert("ERROR", "Multiple dialogs where displayed at the same time");
33672                 //throw "Roo.MessageBox ERROR : Multiple dialogs where displayed at the same time";
33673                 
33674             }
33675             var d = this.getDialog();
33676             opt = options;
33677             d.setTitle(opt.title || "&#160;");
33678             d.close.setDisplayed(opt.closable !== false);
33679             activeTextEl = textboxEl;
33680             opt.prompt = opt.prompt || (opt.multiline ? true : false);
33681             if(opt.prompt){
33682                 if(opt.multiline){
33683                     textboxEl.hide();
33684                     textareaEl.show();
33685                     textareaEl.setHeight(typeof opt.multiline == "number" ?
33686                         opt.multiline : this.defaultTextHeight);
33687                     activeTextEl = textareaEl;
33688                 }else{
33689                     textboxEl.show();
33690                     textareaEl.hide();
33691                 }
33692             }else{
33693                 textboxEl.hide();
33694                 textareaEl.hide();
33695             }
33696             progressEl.setDisplayed(opt.progress === true);
33697             this.updateProgress(0);
33698             activeTextEl.dom.value = opt.value || "";
33699             if(opt.prompt){
33700                 dlg.setDefaultButton(activeTextEl);
33701             }else{
33702                 var bs = opt.buttons;
33703                 var db = null;
33704                 if(bs && bs.ok){
33705                     db = buttons["ok"];
33706                 }else if(bs && bs.yes){
33707                     db = buttons["yes"];
33708                 }
33709                 dlg.setDefaultButton(db);
33710             }
33711             bwidth = updateButtons(opt.buttons);
33712             this.updateText(opt.msg);
33713             if(opt.cls){
33714                 d.el.addClass(opt.cls);
33715             }
33716             d.proxyDrag = opt.proxyDrag === true;
33717             d.modal = opt.modal !== false;
33718             d.mask = opt.modal !== false ? mask : false;
33719             if(!d.isVisible()){
33720                 // force it to the end of the z-index stack so it gets a cursor in FF
33721                 document.body.appendChild(dlg.el.dom);
33722                 d.animateTarget = null;
33723                 d.show(options.animEl);
33724             }
33725             return this;
33726         },
33727
33728         /**
33729          * Displays a message box with a progress bar.  This message box has no buttons and is not closeable by
33730          * the user.  You are responsible for updating the progress bar as needed via {@link Roo.MessageBox#updateProgress}
33731          * and closing the message box when the process is complete.
33732          * @param {String} title The title bar text
33733          * @param {String} msg The message box body text
33734          * @return {Roo.MessageBox} This message box
33735          */
33736         progress : function(title, msg){
33737             this.show({
33738                 title : title,
33739                 msg : msg,
33740                 buttons: false,
33741                 progress:true,
33742                 closable:false,
33743                 minWidth: this.minProgressWidth,
33744                 modal : true
33745             });
33746             return this;
33747         },
33748
33749         /**
33750          * Displays a standard read-only message box with an OK button (comparable to the basic JavaScript Window.alert).
33751          * If a callback function is passed it will be called after the user clicks the button, and the
33752          * id of the button that was clicked will be passed as the only parameter to the callback
33753          * (could also be the top-right close button).
33754          * @param {String} title The title bar text
33755          * @param {String} msg The message box body text
33756          * @param {Function} fn (optional) The callback function invoked after the message box is closed
33757          * @param {Object} scope (optional) The scope of the callback function
33758          * @return {Roo.MessageBox} This message box
33759          */
33760         alert : function(title, msg, fn, scope){
33761             this.show({
33762                 title : title,
33763                 msg : msg,
33764                 buttons: this.OK,
33765                 fn: fn,
33766                 scope : scope,
33767                 modal : true
33768             });
33769             return this;
33770         },
33771
33772         /**
33773          * Displays a message box with an infinitely auto-updating progress bar.  This can be used to block user
33774          * interaction while waiting for a long-running process to complete that does not have defined intervals.
33775          * You are responsible for closing the message box when the process is complete.
33776          * @param {String} msg The message box body text
33777          * @param {String} title (optional) The title bar text
33778          * @return {Roo.MessageBox} This message box
33779          */
33780         wait : function(msg, title){
33781             this.show({
33782                 title : title,
33783                 msg : msg,
33784                 buttons: false,
33785                 closable:false,
33786                 progress:true,
33787                 modal:true,
33788                 width:300,
33789                 wait:true
33790             });
33791             waitTimer = Roo.TaskMgr.start({
33792                 run: function(i){
33793                     Roo.MessageBox.updateProgress(((((i+20)%20)+1)*5)*.01);
33794                 },
33795                 interval: 1000
33796             });
33797             return this;
33798         },
33799
33800         /**
33801          * Displays a confirmation message box with Yes and No buttons (comparable to JavaScript's Window.confirm).
33802          * If a callback function is passed it will be called after the user clicks either button, and the id of the
33803          * button that was clicked will be passed as the only parameter to the callback (could also be the top-right close button).
33804          * @param {String} title The title bar text
33805          * @param {String} msg The message box body text
33806          * @param {Function} fn (optional) The callback function invoked after the message box is closed
33807          * @param {Object} scope (optional) The scope of the callback function
33808          * @return {Roo.MessageBox} This message box
33809          */
33810         confirm : function(title, msg, fn, scope){
33811             this.show({
33812                 title : title,
33813                 msg : msg,
33814                 buttons: this.YESNO,
33815                 fn: fn,
33816                 scope : scope,
33817                 modal : true
33818             });
33819             return this;
33820         },
33821
33822         /**
33823          * Displays a message box with OK and Cancel buttons prompting the user to enter some text (comparable to
33824          * JavaScript's Window.prompt).  The prompt can be a single-line or multi-line textbox.  If a callback function
33825          * is passed it will be called after the user clicks either button, and the id of the button that was clicked
33826          * (could also be the top-right close button) and the text that was entered will be passed as the two
33827          * parameters to the callback.
33828          * @param {String} title The title bar text
33829          * @param {String} msg The message box body text
33830          * @param {Function} fn (optional) The callback function invoked after the message box is closed
33831          * @param {Object} scope (optional) The scope of the callback function
33832          * @param {Boolean/Number} multiline (optional) True to create a multiline textbox using the defaultTextHeight
33833          * property, or the height in pixels to create the textbox (defaults to false / single-line)
33834          * @return {Roo.MessageBox} This message box
33835          */
33836         prompt : function(title, msg, fn, scope, multiline){
33837             this.show({
33838                 title : title,
33839                 msg : msg,
33840                 buttons: this.OKCANCEL,
33841                 fn: fn,
33842                 minWidth:250,
33843                 scope : scope,
33844                 prompt:true,
33845                 multiline: multiline,
33846                 modal : true
33847             });
33848             return this;
33849         },
33850
33851         /**
33852          * Button config that displays a single OK button
33853          * @type Object
33854          */
33855         OK : {ok:true},
33856         /**
33857          * Button config that displays Yes and No buttons
33858          * @type Object
33859          */
33860         YESNO : {yes:true, no:true},
33861         /**
33862          * Button config that displays OK and Cancel buttons
33863          * @type Object
33864          */
33865         OKCANCEL : {ok:true, cancel:true},
33866         /**
33867          * Button config that displays Yes, No and Cancel buttons
33868          * @type Object
33869          */
33870         YESNOCANCEL : {yes:true, no:true, cancel:true},
33871
33872         /**
33873          * The default height in pixels of the message box's multiline textarea if displayed (defaults to 75)
33874          * @type Number
33875          */
33876         defaultTextHeight : 75,
33877         /**
33878          * The maximum width in pixels of the message box (defaults to 600)
33879          * @type Number
33880          */
33881         maxWidth : 600,
33882         /**
33883          * The minimum width in pixels of the message box (defaults to 100)
33884          * @type Number
33885          */
33886         minWidth : 100,
33887         /**
33888          * The minimum width in pixels of the message box if it is a progress-style dialog.  This is useful
33889          * for setting a different minimum width than text-only dialogs may need (defaults to 250)
33890          * @type Number
33891          */
33892         minProgressWidth : 250,
33893         /**
33894          * An object containing the default button text strings that can be overriden for localized language support.
33895          * Supported properties are: ok, cancel, yes and no.
33896          * Customize the default text like so: Roo.MessageBox.buttonText.yes = "S?";
33897          * @type Object
33898          */
33899         buttonText : {
33900             ok : "OK",
33901             cancel : "Cancel",
33902             yes : "Yes",
33903             no : "No"
33904         }
33905     };
33906 }();
33907
33908 /**
33909  * Shorthand for {@link Roo.MessageBox}
33910  */
33911 Roo.Msg = Roo.MessageBox;/*
33912  * Based on:
33913  * Ext JS Library 1.1.1
33914  * Copyright(c) 2006-2007, Ext JS, LLC.
33915  *
33916  * Originally Released Under LGPL - original licence link has changed is not relivant.
33917  *
33918  * Fork - LGPL
33919  * <script type="text/javascript">
33920  */
33921 /**
33922  * @class Roo.QuickTips
33923  * Provides attractive and customizable tooltips for any element.
33924  * @singleton
33925  */
33926 Roo.QuickTips = function(){
33927     var el, tipBody, tipBodyText, tipTitle, tm, cfg, close, tagEls = {}, esc, removeCls = null, bdLeft, bdRight;
33928     var ce, bd, xy, dd;
33929     var visible = false, disabled = true, inited = false;
33930     var showProc = 1, hideProc = 1, dismissProc = 1, locks = [];
33931     
33932     var onOver = function(e){
33933         if(disabled){
33934             return;
33935         }
33936         var t = e.getTarget();
33937         if(!t || t.nodeType !== 1 || t == document || t == document.body){
33938             return;
33939         }
33940         if(ce && t == ce.el){
33941             clearTimeout(hideProc);
33942             return;
33943         }
33944         if(t && tagEls[t.id]){
33945             tagEls[t.id].el = t;
33946             showProc = show.defer(tm.showDelay, tm, [tagEls[t.id]]);
33947             return;
33948         }
33949         var ttp, et = Roo.fly(t);
33950         var ns = cfg.namespace;
33951         if(tm.interceptTitles && t.title){
33952             ttp = t.title;
33953             t.qtip = ttp;
33954             t.removeAttribute("title");
33955             e.preventDefault();
33956         }else{
33957             ttp = t.qtip || et.getAttributeNS(ns, cfg.attribute) || et.getAttributeNS(cfg.alt_namespace, cfg.attribute) ;
33958         }
33959         if(ttp){
33960             showProc = show.defer(tm.showDelay, tm, [{
33961                 el: t, 
33962                 text: ttp.replace(/\\n/g,'<br/>'),
33963                 width: et.getAttributeNS(ns, cfg.width),
33964                 autoHide: et.getAttributeNS(ns, cfg.hide) != "user",
33965                 title: et.getAttributeNS(ns, cfg.title),
33966                     cls: et.getAttributeNS(ns, cfg.cls)
33967             }]);
33968         }
33969     };
33970     
33971     var onOut = function(e){
33972         clearTimeout(showProc);
33973         var t = e.getTarget();
33974         if(t && ce && ce.el == t && (tm.autoHide && ce.autoHide !== false)){
33975             hideProc = setTimeout(hide, tm.hideDelay);
33976         }
33977     };
33978     
33979     var onMove = function(e){
33980         if(disabled){
33981             return;
33982         }
33983         xy = e.getXY();
33984         xy[1] += 18;
33985         if(tm.trackMouse && ce){
33986             el.setXY(xy);
33987         }
33988     };
33989     
33990     var onDown = function(e){
33991         clearTimeout(showProc);
33992         clearTimeout(hideProc);
33993         if(!e.within(el)){
33994             if(tm.hideOnClick){
33995                 hide();
33996                 tm.disable();
33997                 tm.enable.defer(100, tm);
33998             }
33999         }
34000     };
34001     
34002     var getPad = function(){
34003         return 2;//bdLeft.getPadding('l')+bdRight.getPadding('r');
34004     };
34005
34006     var show = function(o){
34007         if(disabled){
34008             return;
34009         }
34010         clearTimeout(dismissProc);
34011         ce = o;
34012         if(removeCls){ // in case manually hidden
34013             el.removeClass(removeCls);
34014             removeCls = null;
34015         }
34016         if(ce.cls){
34017             el.addClass(ce.cls);
34018             removeCls = ce.cls;
34019         }
34020         if(ce.title){
34021             tipTitle.update(ce.title);
34022             tipTitle.show();
34023         }else{
34024             tipTitle.update('');
34025             tipTitle.hide();
34026         }
34027         el.dom.style.width  = tm.maxWidth+'px';
34028         //tipBody.dom.style.width = '';
34029         tipBodyText.update(o.text);
34030         var p = getPad(), w = ce.width;
34031         if(!w){
34032             var td = tipBodyText.dom;
34033             var aw = Math.max(td.offsetWidth, td.clientWidth, td.scrollWidth);
34034             if(aw > tm.maxWidth){
34035                 w = tm.maxWidth;
34036             }else if(aw < tm.minWidth){
34037                 w = tm.minWidth;
34038             }else{
34039                 w = aw;
34040             }
34041         }
34042         //tipBody.setWidth(w);
34043         el.setWidth(parseInt(w, 10) + p);
34044         if(ce.autoHide === false){
34045             close.setDisplayed(true);
34046             if(dd){
34047                 dd.unlock();
34048             }
34049         }else{
34050             close.setDisplayed(false);
34051             if(dd){
34052                 dd.lock();
34053             }
34054         }
34055         if(xy){
34056             el.avoidY = xy[1]-18;
34057             el.setXY(xy);
34058         }
34059         if(tm.animate){
34060             el.setOpacity(.1);
34061             el.setStyle("visibility", "visible");
34062             el.fadeIn({callback: afterShow});
34063         }else{
34064             afterShow();
34065         }
34066     };
34067     
34068     var afterShow = function(){
34069         if(ce){
34070             el.show();
34071             esc.enable();
34072             if(tm.autoDismiss && ce.autoHide !== false){
34073                 dismissProc = setTimeout(hide, tm.autoDismissDelay);
34074             }
34075         }
34076     };
34077     
34078     var hide = function(noanim){
34079         clearTimeout(dismissProc);
34080         clearTimeout(hideProc);
34081         ce = null;
34082         if(el.isVisible()){
34083             esc.disable();
34084             if(noanim !== true && tm.animate){
34085                 el.fadeOut({callback: afterHide});
34086             }else{
34087                 afterHide();
34088             } 
34089         }
34090     };
34091     
34092     var afterHide = function(){
34093         el.hide();
34094         if(removeCls){
34095             el.removeClass(removeCls);
34096             removeCls = null;
34097         }
34098     };
34099     
34100     return {
34101         /**
34102         * @cfg {Number} minWidth
34103         * The minimum width of the quick tip (defaults to 40)
34104         */
34105        minWidth : 40,
34106         /**
34107         * @cfg {Number} maxWidth
34108         * The maximum width of the quick tip (defaults to 300)
34109         */
34110        maxWidth : 300,
34111         /**
34112         * @cfg {Boolean} interceptTitles
34113         * True to automatically use the element's DOM title value if available (defaults to false)
34114         */
34115        interceptTitles : false,
34116         /**
34117         * @cfg {Boolean} trackMouse
34118         * True to have the quick tip follow the mouse as it moves over the target element (defaults to false)
34119         */
34120        trackMouse : false,
34121         /**
34122         * @cfg {Boolean} hideOnClick
34123         * True to hide the quick tip if the user clicks anywhere in the document (defaults to true)
34124         */
34125        hideOnClick : true,
34126         /**
34127         * @cfg {Number} showDelay
34128         * Delay in milliseconds before the quick tip displays after the mouse enters the target element (defaults to 500)
34129         */
34130        showDelay : 500,
34131         /**
34132         * @cfg {Number} hideDelay
34133         * Delay in milliseconds before the quick tip hides when autoHide = true (defaults to 200)
34134         */
34135        hideDelay : 200,
34136         /**
34137         * @cfg {Boolean} autoHide
34138         * True to automatically hide the quick tip after the mouse exits the target element (defaults to true).
34139         * Used in conjunction with hideDelay.
34140         */
34141        autoHide : true,
34142         /**
34143         * @cfg {Boolean}
34144         * True to automatically hide the quick tip after a set period of time, regardless of the user's actions
34145         * (defaults to true).  Used in conjunction with autoDismissDelay.
34146         */
34147        autoDismiss : true,
34148         /**
34149         * @cfg {Number}
34150         * Delay in milliseconds before the quick tip hides when autoDismiss = true (defaults to 5000)
34151         */
34152        autoDismissDelay : 5000,
34153        /**
34154         * @cfg {Boolean} animate
34155         * True to turn on fade animation. Defaults to false (ClearType/scrollbar flicker issues in IE7).
34156         */
34157        animate : false,
34158
34159        /**
34160         * @cfg {String} title
34161         * Title text to display (defaults to '').  This can be any valid HTML markup.
34162         */
34163         title: '',
34164        /**
34165         * @cfg {String} text
34166         * Body text to display (defaults to '').  This can be any valid HTML markup.
34167         */
34168         text : '',
34169        /**
34170         * @cfg {String} cls
34171         * A CSS class to apply to the base quick tip element (defaults to '').
34172         */
34173         cls : '',
34174        /**
34175         * @cfg {Number} width
34176         * Width in pixels of the quick tip (defaults to auto).  Width will be ignored if it exceeds the bounds of
34177         * minWidth or maxWidth.
34178         */
34179         width : null,
34180
34181     /**
34182      * Initialize and enable QuickTips for first use.  This should be called once before the first attempt to access
34183      * or display QuickTips in a page.
34184      */
34185        init : function(){
34186           tm = Roo.QuickTips;
34187           cfg = tm.tagConfig;
34188           if(!inited){
34189               if(!Roo.isReady){ // allow calling of init() before onReady
34190                   Roo.onReady(Roo.QuickTips.init, Roo.QuickTips);
34191                   return;
34192               }
34193               el = new Roo.Layer({cls:"x-tip", shadow:"drop", shim: true, constrain:true, shadowOffset:4});
34194               el.fxDefaults = {stopFx: true};
34195               // maximum custom styling
34196               //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>');
34197               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>');              
34198               tipTitle = el.child('h3');
34199               tipTitle.enableDisplayMode("block");
34200               tipBody = el.child('div.x-tip-bd');
34201               tipBodyText = el.child('div.x-tip-bd-inner');
34202               //bdLeft = el.child('div.x-tip-bd-left');
34203               //bdRight = el.child('div.x-tip-bd-right');
34204               close = el.child('div.x-tip-close');
34205               close.enableDisplayMode("block");
34206               close.on("click", hide);
34207               var d = Roo.get(document);
34208               d.on("mousedown", onDown);
34209               d.on("mouseover", onOver);
34210               d.on("mouseout", onOut);
34211               d.on("mousemove", onMove);
34212               esc = d.addKeyListener(27, hide);
34213               esc.disable();
34214               if(Roo.dd.DD){
34215                   dd = el.initDD("default", null, {
34216                       onDrag : function(){
34217                           el.sync();  
34218                       }
34219                   });
34220                   dd.setHandleElId(tipTitle.id);
34221                   dd.lock();
34222               }
34223               inited = true;
34224           }
34225           this.enable(); 
34226        },
34227
34228     /**
34229      * Configures a new quick tip instance and assigns it to a target element.  The following config options
34230      * are supported:
34231      * <pre>
34232 Property    Type                   Description
34233 ----------  ---------------------  ------------------------------------------------------------------------
34234 target      Element/String/Array   An Element, id or array of ids that this quick tip should be tied to
34235      * </ul>
34236      * @param {Object} config The config object
34237      */
34238        register : function(config){
34239            var cs = config instanceof Array ? config : arguments;
34240            for(var i = 0, len = cs.length; i < len; i++) {
34241                var c = cs[i];
34242                var target = c.target;
34243                if(target){
34244                    if(target instanceof Array){
34245                        for(var j = 0, jlen = target.length; j < jlen; j++){
34246                            tagEls[target[j]] = c;
34247                        }
34248                    }else{
34249                        tagEls[typeof target == 'string' ? target : Roo.id(target)] = c;
34250                    }
34251                }
34252            }
34253        },
34254
34255     /**
34256      * Removes this quick tip from its element and destroys it.
34257      * @param {String/HTMLElement/Element} el The element from which the quick tip is to be removed.
34258      */
34259        unregister : function(el){
34260            delete tagEls[Roo.id(el)];
34261        },
34262
34263     /**
34264      * Enable this quick tip.
34265      */
34266        enable : function(){
34267            if(inited && disabled){
34268                locks.pop();
34269                if(locks.length < 1){
34270                    disabled = false;
34271                }
34272            }
34273        },
34274
34275     /**
34276      * Disable this quick tip.
34277      */
34278        disable : function(){
34279           disabled = true;
34280           clearTimeout(showProc);
34281           clearTimeout(hideProc);
34282           clearTimeout(dismissProc);
34283           if(ce){
34284               hide(true);
34285           }
34286           locks.push(1);
34287        },
34288
34289     /**
34290      * Returns true if the quick tip is enabled, else false.
34291      */
34292        isEnabled : function(){
34293             return !disabled;
34294        },
34295
34296         // private
34297        tagConfig : {
34298            namespace : "roo", // was ext?? this may break..
34299            alt_namespace : "ext",
34300            attribute : "qtip",
34301            width : "width",
34302            target : "target",
34303            title : "qtitle",
34304            hide : "hide",
34305            cls : "qclass"
34306        }
34307    };
34308 }();
34309
34310 // backwards compat
34311 Roo.QuickTips.tips = Roo.QuickTips.register;/*
34312  * Based on:
34313  * Ext JS Library 1.1.1
34314  * Copyright(c) 2006-2007, Ext JS, LLC.
34315  *
34316  * Originally Released Under LGPL - original licence link has changed is not relivant.
34317  *
34318  * Fork - LGPL
34319  * <script type="text/javascript">
34320  */
34321  
34322
34323 /**
34324  * @class Roo.tree.TreePanel
34325  * @extends Roo.data.Tree
34326
34327  * @cfg {Boolean} rootVisible false to hide the root node (defaults to true)
34328  * @cfg {Boolean} lines false to disable tree lines (defaults to true)
34329  * @cfg {Boolean} enableDD true to enable drag and drop
34330  * @cfg {Boolean} enableDrag true to enable just drag
34331  * @cfg {Boolean} enableDrop true to enable just drop
34332  * @cfg {Object} dragConfig Custom config to pass to the {@link Roo.tree.TreeDragZone} instance
34333  * @cfg {Object} dropConfig Custom config to pass to the {@link Roo.tree.TreeDropZone} instance
34334  * @cfg {String} ddGroup The DD group this TreePanel belongs to
34335  * @cfg {String} ddAppendOnly True if the tree should only allow append drops (use for trees which are sorted)
34336  * @cfg {Boolean} ddScroll true to enable YUI body scrolling
34337  * @cfg {Boolean} containerScroll true to register this container with ScrollManager
34338  * @cfg {Boolean} hlDrop false to disable node highlight on drop (defaults to the value of Roo.enableFx)
34339  * @cfg {String} hlColor The color of the node highlight (defaults to C3DAF9)
34340  * @cfg {Boolean} animate true to enable animated expand/collapse (defaults to the value of Roo.enableFx)
34341  * @cfg {Boolean} singleExpand true if only 1 node per branch may be expanded
34342  * @cfg {Boolean} selModel A tree selection model to use with this TreePanel (defaults to a {@link Roo.tree.DefaultSelectionModel})
34343  * @cfg {Boolean} loader A TreeLoader for use with this TreePanel
34344  * @cfg {Object|Roo.tree.TreeEditor} editor The TreeEditor or xtype data to display when clicked.
34345  * @cfg {String} pathSeparator The token used to separate sub-paths in path strings (defaults to '/')
34346  * @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>
34347  * @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>
34348  * 
34349  * @constructor
34350  * @param {String/HTMLElement/Element} el The container element
34351  * @param {Object} config
34352  */
34353 Roo.tree.TreePanel = function(el, config){
34354     var root = false;
34355     var loader = false;
34356     if (config.root) {
34357         root = config.root;
34358         delete config.root;
34359     }
34360     if (config.loader) {
34361         loader = config.loader;
34362         delete config.loader;
34363     }
34364     
34365     Roo.apply(this, config);
34366     Roo.tree.TreePanel.superclass.constructor.call(this);
34367     this.el = Roo.get(el);
34368     this.el.addClass('x-tree');
34369     //console.log(root);
34370     if (root) {
34371         this.setRootNode( Roo.factory(root, Roo.tree));
34372     }
34373     if (loader) {
34374         this.loader = Roo.factory(loader, Roo.tree);
34375     }
34376    /**
34377     * Read-only. The id of the container element becomes this TreePanel's id.
34378     */
34379     this.id = this.el.id;
34380     this.addEvents({
34381         /**
34382         * @event beforeload
34383         * Fires before a node is loaded, return false to cancel
34384         * @param {Node} node The node being loaded
34385         */
34386         "beforeload" : true,
34387         /**
34388         * @event load
34389         * Fires when a node is loaded
34390         * @param {Node} node The node that was loaded
34391         */
34392         "load" : true,
34393         /**
34394         * @event textchange
34395         * Fires when the text for a node is changed
34396         * @param {Node} node The node
34397         * @param {String} text The new text
34398         * @param {String} oldText The old text
34399         */
34400         "textchange" : true,
34401         /**
34402         * @event beforeexpand
34403         * Fires before a node is expanded, return false to cancel.
34404         * @param {Node} node The node
34405         * @param {Boolean} deep
34406         * @param {Boolean} anim
34407         */
34408         "beforeexpand" : true,
34409         /**
34410         * @event beforecollapse
34411         * Fires before a node is collapsed, return false to cancel.
34412         * @param {Node} node The node
34413         * @param {Boolean} deep
34414         * @param {Boolean} anim
34415         */
34416         "beforecollapse" : true,
34417         /**
34418         * @event expand
34419         * Fires when a node is expanded
34420         * @param {Node} node The node
34421         */
34422         "expand" : true,
34423         /**
34424         * @event disabledchange
34425         * Fires when the disabled status of a node changes
34426         * @param {Node} node The node
34427         * @param {Boolean} disabled
34428         */
34429         "disabledchange" : true,
34430         /**
34431         * @event collapse
34432         * Fires when a node is collapsed
34433         * @param {Node} node The node
34434         */
34435         "collapse" : true,
34436         /**
34437         * @event beforeclick
34438         * Fires before click processing on a node. Return false to cancel the default action.
34439         * @param {Node} node The node
34440         * @param {Roo.EventObject} e The event object
34441         */
34442         "beforeclick":true,
34443         /**
34444         * @event checkchange
34445         * Fires when a node with a checkbox's checked property changes
34446         * @param {Node} this This node
34447         * @param {Boolean} checked
34448         */
34449         "checkchange":true,
34450         /**
34451         * @event click
34452         * Fires when a node is clicked
34453         * @param {Node} node The node
34454         * @param {Roo.EventObject} e The event object
34455         */
34456         "click":true,
34457         /**
34458         * @event dblclick
34459         * Fires when a node is double clicked
34460         * @param {Node} node The node
34461         * @param {Roo.EventObject} e The event object
34462         */
34463         "dblclick":true,
34464         /**
34465         * @event contextmenu
34466         * Fires when a node is right clicked
34467         * @param {Node} node The node
34468         * @param {Roo.EventObject} e The event object
34469         */
34470         "contextmenu":true,
34471         /**
34472         * @event beforechildrenrendered
34473         * Fires right before the child nodes for a node are rendered
34474         * @param {Node} node The node
34475         */
34476         "beforechildrenrendered":true,
34477         /**
34478         * @event startdrag
34479         * Fires when a node starts being dragged
34480         * @param {Roo.tree.TreePanel} this
34481         * @param {Roo.tree.TreeNode} node
34482         * @param {event} e The raw browser event
34483         */ 
34484        "startdrag" : true,
34485        /**
34486         * @event enddrag
34487         * Fires when a drag operation is complete
34488         * @param {Roo.tree.TreePanel} this
34489         * @param {Roo.tree.TreeNode} node
34490         * @param {event} e The raw browser event
34491         */
34492        "enddrag" : true,
34493        /**
34494         * @event dragdrop
34495         * Fires when a dragged node is dropped on a valid DD target
34496         * @param {Roo.tree.TreePanel} this
34497         * @param {Roo.tree.TreeNode} node
34498         * @param {DD} dd The dd it was dropped on
34499         * @param {event} e The raw browser event
34500         */
34501        "dragdrop" : true,
34502        /**
34503         * @event beforenodedrop
34504         * Fires when a DD object is dropped on a node in this tree for preprocessing. Return false to cancel the drop. The dropEvent
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 <b>OR</b> you can supply node(s)
34514         * to be inserted by setting them on this object.</li>
34515         * <li>cancel - Set this to true to cancel the drop.</li>
34516         * </ul>
34517         * @param {Object} dropEvent
34518         */
34519        "beforenodedrop" : true,
34520        /**
34521         * @event nodedrop
34522         * Fires after a DD object is dropped on a node in this tree. The dropEvent
34523         * passed to handlers has the following properties:<br />
34524         * <ul style="padding:5px;padding-left:16px;">
34525         * <li>tree - The TreePanel</li>
34526         * <li>target - The node being targeted for the drop</li>
34527         * <li>data - The drag data from the drag source</li>
34528         * <li>point - The point of the drop - append, above or below</li>
34529         * <li>source - The drag source</li>
34530         * <li>rawEvent - Raw mouse event</li>
34531         * <li>dropNode - Dropped node(s).</li>
34532         * </ul>
34533         * @param {Object} dropEvent
34534         */
34535        "nodedrop" : true,
34536         /**
34537         * @event nodedragover
34538         * Fires when a tree node is being targeted for a drag drop, return false to signal drop not allowed. The dragOverEvent
34539         * passed to handlers has the following properties:<br />
34540         * <ul style="padding:5px;padding-left:16px;">
34541         * <li>tree - The TreePanel</li>
34542         * <li>target - The node being targeted for the drop</li>
34543         * <li>data - The drag data from the drag source</li>
34544         * <li>point - The point of the drop - append, above or below</li>
34545         * <li>source - The drag source</li>
34546         * <li>rawEvent - Raw mouse event</li>
34547         * <li>dropNode - Drop node(s) provided by the source.</li>
34548         * <li>cancel - Set this to true to signal drop not allowed.</li>
34549         * </ul>
34550         * @param {Object} dragOverEvent
34551         */
34552        "nodedragover" : true,
34553        /**
34554         * @event appendnode
34555         * Fires when append node to the tree
34556         * @param {Roo.tree.TreePanel} this
34557         * @param {Roo.tree.TreeNode} node
34558         * @param {Number} index The index of the newly appended node
34559         */
34560        "appendnode" : true
34561         
34562     });
34563     if(this.singleExpand){
34564        this.on("beforeexpand", this.restrictExpand, this);
34565     }
34566     if (this.editor) {
34567         this.editor.tree = this;
34568         this.editor = Roo.factory(this.editor, Roo.tree);
34569     }
34570     
34571     if (this.selModel) {
34572         this.selModel = Roo.factory(this.selModel, Roo.tree);
34573     }
34574    
34575 };
34576 Roo.extend(Roo.tree.TreePanel, Roo.data.Tree, {
34577     rootVisible : true,
34578     animate: Roo.enableFx,
34579     lines : true,
34580     enableDD : false,
34581     hlDrop : Roo.enableFx,
34582   
34583     renderer: false,
34584     
34585     rendererTip: false,
34586     // private
34587     restrictExpand : function(node){
34588         var p = node.parentNode;
34589         if(p){
34590             if(p.expandedChild && p.expandedChild.parentNode == p){
34591                 p.expandedChild.collapse();
34592             }
34593             p.expandedChild = node;
34594         }
34595     },
34596
34597     // private override
34598     setRootNode : function(node){
34599         Roo.tree.TreePanel.superclass.setRootNode.call(this, node);
34600         if(!this.rootVisible){
34601             node.ui = new Roo.tree.RootTreeNodeUI(node);
34602         }
34603         return node;
34604     },
34605
34606     /**
34607      * Returns the container element for this TreePanel
34608      */
34609     getEl : function(){
34610         return this.el;
34611     },
34612
34613     /**
34614      * Returns the default TreeLoader for this TreePanel
34615      */
34616     getLoader : function(){
34617         return this.loader;
34618     },
34619
34620     /**
34621      * Expand all nodes
34622      */
34623     expandAll : function(){
34624         this.root.expand(true);
34625     },
34626
34627     /**
34628      * Collapse all nodes
34629      */
34630     collapseAll : function(){
34631         this.root.collapse(true);
34632     },
34633
34634     /**
34635      * Returns the selection model used by this TreePanel
34636      */
34637     getSelectionModel : function(){
34638         if(!this.selModel){
34639             this.selModel = new Roo.tree.DefaultSelectionModel();
34640         }
34641         return this.selModel;
34642     },
34643
34644     /**
34645      * Retrieve an array of checked nodes, or an array of a specific attribute of checked nodes (e.g. "id")
34646      * @param {String} attribute (optional) Defaults to null (return the actual nodes)
34647      * @param {TreeNode} startNode (optional) The node to start from, defaults to the root
34648      * @return {Array}
34649      */
34650     getChecked : function(a, startNode){
34651         startNode = startNode || this.root;
34652         var r = [];
34653         var f = function(){
34654             if(this.attributes.checked){
34655                 r.push(!a ? this : (a == 'id' ? this.id : this.attributes[a]));
34656             }
34657         }
34658         startNode.cascade(f);
34659         return r;
34660     },
34661
34662     /**
34663      * Expands a specified path in this TreePanel. A path can be retrieved from a node with {@link Roo.data.Node#getPath}
34664      * @param {String} path
34665      * @param {String} attr (optional) The attribute used in the path (see {@link Roo.data.Node#getPath} for more info)
34666      * @param {Function} callback (optional) The callback to call when the expand is complete. The callback will be called with
34667      * (bSuccess, oLastNode) where bSuccess is if the expand was successful and oLastNode is the last node that was expanded.
34668      */
34669     expandPath : function(path, attr, callback){
34670         attr = attr || "id";
34671         var keys = path.split(this.pathSeparator);
34672         var curNode = this.root;
34673         if(curNode.attributes[attr] != keys[1]){ // invalid root
34674             if(callback){
34675                 callback(false, null);
34676             }
34677             return;
34678         }
34679         var index = 1;
34680         var f = function(){
34681             if(++index == keys.length){
34682                 if(callback){
34683                     callback(true, curNode);
34684                 }
34685                 return;
34686             }
34687             var c = curNode.findChild(attr, keys[index]);
34688             if(!c){
34689                 if(callback){
34690                     callback(false, curNode);
34691                 }
34692                 return;
34693             }
34694             curNode = c;
34695             c.expand(false, false, f);
34696         };
34697         curNode.expand(false, false, f);
34698     },
34699
34700     /**
34701      * Selects the node in this tree at the specified path. A path can be retrieved from a node with {@link Roo.data.Node#getPath}
34702      * @param {String} path
34703      * @param {String} attr (optional) The attribute used in the path (see {@link Roo.data.Node#getPath} for more info)
34704      * @param {Function} callback (optional) The callback to call when the selection is complete. The callback will be called with
34705      * (bSuccess, oSelNode) where bSuccess is if the selection was successful and oSelNode is the selected node.
34706      */
34707     selectPath : function(path, attr, callback){
34708         attr = attr || "id";
34709         var keys = path.split(this.pathSeparator);
34710         var v = keys.pop();
34711         if(keys.length > 0){
34712             var f = function(success, node){
34713                 if(success && node){
34714                     var n = node.findChild(attr, v);
34715                     if(n){
34716                         n.select();
34717                         if(callback){
34718                             callback(true, n);
34719                         }
34720                     }else if(callback){
34721                         callback(false, n);
34722                     }
34723                 }else{
34724                     if(callback){
34725                         callback(false, n);
34726                     }
34727                 }
34728             };
34729             this.expandPath(keys.join(this.pathSeparator), attr, f);
34730         }else{
34731             this.root.select();
34732             if(callback){
34733                 callback(true, this.root);
34734             }
34735         }
34736     },
34737
34738     getTreeEl : function(){
34739         return this.el;
34740     },
34741
34742     /**
34743      * Trigger rendering of this TreePanel
34744      */
34745     render : function(){
34746         if (this.innerCt) {
34747             return this; // stop it rendering more than once!!
34748         }
34749         
34750         this.innerCt = this.el.createChild({tag:"ul",
34751                cls:"x-tree-root-ct " +
34752                (this.lines ? "x-tree-lines" : "x-tree-no-lines")});
34753
34754         if(this.containerScroll){
34755             Roo.dd.ScrollManager.register(this.el);
34756         }
34757         if((this.enableDD || this.enableDrop) && !this.dropZone){
34758            /**
34759             * The dropZone used by this tree if drop is enabled
34760             * @type Roo.tree.TreeDropZone
34761             */
34762              this.dropZone = new Roo.tree.TreeDropZone(this, this.dropConfig || {
34763                ddGroup: this.ddGroup || "TreeDD", appendOnly: this.ddAppendOnly === true
34764            });
34765         }
34766         if((this.enableDD || this.enableDrag) && !this.dragZone){
34767            /**
34768             * The dragZone used by this tree if drag is enabled
34769             * @type Roo.tree.TreeDragZone
34770             */
34771             this.dragZone = new Roo.tree.TreeDragZone(this, this.dragConfig || {
34772                ddGroup: this.ddGroup || "TreeDD",
34773                scroll: this.ddScroll
34774            });
34775         }
34776         this.getSelectionModel().init(this);
34777         if (!this.root) {
34778             Roo.log("ROOT not set in tree");
34779             return this;
34780         }
34781         this.root.render();
34782         if(!this.rootVisible){
34783             this.root.renderChildren();
34784         }
34785         return this;
34786     }
34787 });/*
34788  * Based on:
34789  * Ext JS Library 1.1.1
34790  * Copyright(c) 2006-2007, Ext JS, LLC.
34791  *
34792  * Originally Released Under LGPL - original licence link has changed is not relivant.
34793  *
34794  * Fork - LGPL
34795  * <script type="text/javascript">
34796  */
34797  
34798
34799 /**
34800  * @class Roo.tree.DefaultSelectionModel
34801  * @extends Roo.util.Observable
34802  * The default single selection for a TreePanel.
34803  * @param {Object} cfg Configuration
34804  */
34805 Roo.tree.DefaultSelectionModel = function(cfg){
34806    this.selNode = null;
34807    
34808    
34809    
34810    this.addEvents({
34811        /**
34812         * @event selectionchange
34813         * Fires when the selected node changes
34814         * @param {DefaultSelectionModel} this
34815         * @param {TreeNode} node the new selection
34816         */
34817        "selectionchange" : true,
34818
34819        /**
34820         * @event beforeselect
34821         * Fires before the selected node changes, return false to cancel the change
34822         * @param {DefaultSelectionModel} this
34823         * @param {TreeNode} node the new selection
34824         * @param {TreeNode} node the old selection
34825         */
34826        "beforeselect" : true
34827    });
34828    
34829     Roo.tree.DefaultSelectionModel.superclass.constructor.call(this,cfg);
34830 };
34831
34832 Roo.extend(Roo.tree.DefaultSelectionModel, Roo.util.Observable, {
34833     init : function(tree){
34834         this.tree = tree;
34835         tree.getTreeEl().on("keydown", this.onKeyDown, this);
34836         tree.on("click", this.onNodeClick, this);
34837     },
34838     
34839     onNodeClick : function(node, e){
34840         if (e.ctrlKey && this.selNode == node)  {
34841             this.unselect(node);
34842             return;
34843         }
34844         this.select(node);
34845     },
34846     
34847     /**
34848      * Select a node.
34849      * @param {TreeNode} node The node to select
34850      * @return {TreeNode} The selected node
34851      */
34852     select : function(node){
34853         var last = this.selNode;
34854         if(last != node && this.fireEvent('beforeselect', this, node, last) !== false){
34855             if(last){
34856                 last.ui.onSelectedChange(false);
34857             }
34858             this.selNode = node;
34859             node.ui.onSelectedChange(true);
34860             this.fireEvent("selectionchange", this, node, last);
34861         }
34862         return node;
34863     },
34864     
34865     /**
34866      * Deselect a node.
34867      * @param {TreeNode} node The node to unselect
34868      */
34869     unselect : function(node){
34870         if(this.selNode == node){
34871             this.clearSelections();
34872         }    
34873     },
34874     
34875     /**
34876      * Clear all selections
34877      */
34878     clearSelections : function(){
34879         var n = this.selNode;
34880         if(n){
34881             n.ui.onSelectedChange(false);
34882             this.selNode = null;
34883             this.fireEvent("selectionchange", this, null);
34884         }
34885         return n;
34886     },
34887     
34888     /**
34889      * Get the selected node
34890      * @return {TreeNode} The selected node
34891      */
34892     getSelectedNode : function(){
34893         return this.selNode;    
34894     },
34895     
34896     /**
34897      * Returns true if the node is selected
34898      * @param {TreeNode} node The node to check
34899      * @return {Boolean}
34900      */
34901     isSelected : function(node){
34902         return this.selNode == node;  
34903     },
34904
34905     /**
34906      * Selects the node above the selected node in the tree, intelligently walking the nodes
34907      * @return TreeNode The new selection
34908      */
34909     selectPrevious : function(){
34910         var s = this.selNode || this.lastSelNode;
34911         if(!s){
34912             return null;
34913         }
34914         var ps = s.previousSibling;
34915         if(ps){
34916             if(!ps.isExpanded() || ps.childNodes.length < 1){
34917                 return this.select(ps);
34918             } else{
34919                 var lc = ps.lastChild;
34920                 while(lc && lc.isExpanded() && lc.childNodes.length > 0){
34921                     lc = lc.lastChild;
34922                 }
34923                 return this.select(lc);
34924             }
34925         } else if(s.parentNode && (this.tree.rootVisible || !s.parentNode.isRoot)){
34926             return this.select(s.parentNode);
34927         }
34928         return null;
34929     },
34930
34931     /**
34932      * Selects the node above the selected node in the tree, intelligently walking the nodes
34933      * @return TreeNode The new selection
34934      */
34935     selectNext : function(){
34936         var s = this.selNode || this.lastSelNode;
34937         if(!s){
34938             return null;
34939         }
34940         if(s.firstChild && s.isExpanded()){
34941              return this.select(s.firstChild);
34942          }else if(s.nextSibling){
34943              return this.select(s.nextSibling);
34944          }else if(s.parentNode){
34945             var newS = null;
34946             s.parentNode.bubble(function(){
34947                 if(this.nextSibling){
34948                     newS = this.getOwnerTree().selModel.select(this.nextSibling);
34949                     return false;
34950                 }
34951             });
34952             return newS;
34953          }
34954         return null;
34955     },
34956
34957     onKeyDown : function(e){
34958         var s = this.selNode || this.lastSelNode;
34959         // undesirable, but required
34960         var sm = this;
34961         if(!s){
34962             return;
34963         }
34964         var k = e.getKey();
34965         switch(k){
34966              case e.DOWN:
34967                  e.stopEvent();
34968                  this.selectNext();
34969              break;
34970              case e.UP:
34971                  e.stopEvent();
34972                  this.selectPrevious();
34973              break;
34974              case e.RIGHT:
34975                  e.preventDefault();
34976                  if(s.hasChildNodes()){
34977                      if(!s.isExpanded()){
34978                          s.expand();
34979                      }else if(s.firstChild){
34980                          this.select(s.firstChild, e);
34981                      }
34982                  }
34983              break;
34984              case e.LEFT:
34985                  e.preventDefault();
34986                  if(s.hasChildNodes() && s.isExpanded()){
34987                      s.collapse();
34988                  }else if(s.parentNode && (this.tree.rootVisible || s.parentNode != this.tree.getRootNode())){
34989                      this.select(s.parentNode, e);
34990                  }
34991              break;
34992         };
34993     }
34994 });
34995
34996 /**
34997  * @class Roo.tree.MultiSelectionModel
34998  * @extends Roo.util.Observable
34999  * Multi selection for a TreePanel.
35000  * @param {Object} cfg Configuration
35001  */
35002 Roo.tree.MultiSelectionModel = function(){
35003    this.selNodes = [];
35004    this.selMap = {};
35005    this.addEvents({
35006        /**
35007         * @event selectionchange
35008         * Fires when the selected nodes change
35009         * @param {MultiSelectionModel} this
35010         * @param {Array} nodes Array of the selected nodes
35011         */
35012        "selectionchange" : true
35013    });
35014    Roo.tree.MultiSelectionModel.superclass.constructor.call(this,cfg);
35015    
35016 };
35017
35018 Roo.extend(Roo.tree.MultiSelectionModel, Roo.util.Observable, {
35019     init : function(tree){
35020         this.tree = tree;
35021         tree.getTreeEl().on("keydown", this.onKeyDown, this);
35022         tree.on("click", this.onNodeClick, this);
35023     },
35024     
35025     onNodeClick : function(node, e){
35026         this.select(node, e, e.ctrlKey);
35027     },
35028     
35029     /**
35030      * Select a node.
35031      * @param {TreeNode} node The node to select
35032      * @param {EventObject} e (optional) An event associated with the selection
35033      * @param {Boolean} keepExisting True to retain existing selections
35034      * @return {TreeNode} The selected node
35035      */
35036     select : function(node, e, keepExisting){
35037         if(keepExisting !== true){
35038             this.clearSelections(true);
35039         }
35040         if(this.isSelected(node)){
35041             this.lastSelNode = node;
35042             return node;
35043         }
35044         this.selNodes.push(node);
35045         this.selMap[node.id] = node;
35046         this.lastSelNode = node;
35047         node.ui.onSelectedChange(true);
35048         this.fireEvent("selectionchange", this, this.selNodes);
35049         return node;
35050     },
35051     
35052     /**
35053      * Deselect a node.
35054      * @param {TreeNode} node The node to unselect
35055      */
35056     unselect : function(node){
35057         if(this.selMap[node.id]){
35058             node.ui.onSelectedChange(false);
35059             var sn = this.selNodes;
35060             var index = -1;
35061             if(sn.indexOf){
35062                 index = sn.indexOf(node);
35063             }else{
35064                 for(var i = 0, len = sn.length; i < len; i++){
35065                     if(sn[i] == node){
35066                         index = i;
35067                         break;
35068                     }
35069                 }
35070             }
35071             if(index != -1){
35072                 this.selNodes.splice(index, 1);
35073             }
35074             delete this.selMap[node.id];
35075             this.fireEvent("selectionchange", this, this.selNodes);
35076         }
35077     },
35078     
35079     /**
35080      * Clear all selections
35081      */
35082     clearSelections : function(suppressEvent){
35083         var sn = this.selNodes;
35084         if(sn.length > 0){
35085             for(var i = 0, len = sn.length; i < len; i++){
35086                 sn[i].ui.onSelectedChange(false);
35087             }
35088             this.selNodes = [];
35089             this.selMap = {};
35090             if(suppressEvent !== true){
35091                 this.fireEvent("selectionchange", this, this.selNodes);
35092             }
35093         }
35094     },
35095     
35096     /**
35097      * Returns true if the node is selected
35098      * @param {TreeNode} node The node to check
35099      * @return {Boolean}
35100      */
35101     isSelected : function(node){
35102         return this.selMap[node.id] ? true : false;  
35103     },
35104     
35105     /**
35106      * Returns an array of the selected nodes
35107      * @return {Array}
35108      */
35109     getSelectedNodes : function(){
35110         return this.selNodes;    
35111     },
35112
35113     onKeyDown : Roo.tree.DefaultSelectionModel.prototype.onKeyDown,
35114
35115     selectNext : Roo.tree.DefaultSelectionModel.prototype.selectNext,
35116
35117     selectPrevious : Roo.tree.DefaultSelectionModel.prototype.selectPrevious
35118 });/*
35119  * Based on:
35120  * Ext JS Library 1.1.1
35121  * Copyright(c) 2006-2007, Ext JS, LLC.
35122  *
35123  * Originally Released Under LGPL - original licence link has changed is not relivant.
35124  *
35125  * Fork - LGPL
35126  * <script type="text/javascript">
35127  */
35128  
35129 /**
35130  * @class Roo.tree.TreeNode
35131  * @extends Roo.data.Node
35132  * @cfg {String} text The text for this node
35133  * @cfg {Boolean} expanded true to start the node expanded
35134  * @cfg {Boolean} allowDrag false to make this node undraggable if DD is on (defaults to true)
35135  * @cfg {Boolean} allowDrop false if this node cannot be drop on
35136  * @cfg {Boolean} disabled true to start the node disabled
35137  * @cfg {String} icon The path to an icon for the node. The preferred way to do this
35138  *    is to use the cls or iconCls attributes and add the icon via a CSS background image.
35139  * @cfg {String} cls A css class to be added to the node
35140  * @cfg {String} iconCls A css class to be added to the nodes icon element for applying css background images
35141  * @cfg {String} href URL of the link used for the node (defaults to #)
35142  * @cfg {String} hrefTarget target frame for the link
35143  * @cfg {String} qtip An Ext QuickTip for the node
35144  * @cfg {String} qtipCfg An Ext QuickTip config for the node (used instead of qtip)
35145  * @cfg {Boolean} singleClickExpand True for single click expand on this node
35146  * @cfg {Function} uiProvider A UI <b>class</b> to use for this node (defaults to Roo.tree.TreeNodeUI)
35147  * @cfg {Boolean} checked True to render a checked checkbox for this node, false to render an unchecked checkbox
35148  * (defaults to undefined with no checkbox rendered)
35149  * @constructor
35150  * @param {Object/String} attributes The attributes/config for the node or just a string with the text for the node
35151  */
35152 Roo.tree.TreeNode = function(attributes){
35153     attributes = attributes || {};
35154     if(typeof attributes == "string"){
35155         attributes = {text: attributes};
35156     }
35157     this.childrenRendered = false;
35158     this.rendered = false;
35159     Roo.tree.TreeNode.superclass.constructor.call(this, attributes);
35160     this.expanded = attributes.expanded === true;
35161     this.isTarget = attributes.isTarget !== false;
35162     this.draggable = attributes.draggable !== false && attributes.allowDrag !== false;
35163     this.allowChildren = attributes.allowChildren !== false && attributes.allowDrop !== false;
35164
35165     /**
35166      * Read-only. The text for this node. To change it use setText().
35167      * @type String
35168      */
35169     this.text = attributes.text;
35170     /**
35171      * True if this node is disabled.
35172      * @type Boolean
35173      */
35174     this.disabled = attributes.disabled === true;
35175
35176     this.addEvents({
35177         /**
35178         * @event textchange
35179         * Fires when the text for this node is changed
35180         * @param {Node} this This node
35181         * @param {String} text The new text
35182         * @param {String} oldText The old text
35183         */
35184         "textchange" : true,
35185         /**
35186         * @event beforeexpand
35187         * Fires before this node is expanded, return false to cancel.
35188         * @param {Node} this This node
35189         * @param {Boolean} deep
35190         * @param {Boolean} anim
35191         */
35192         "beforeexpand" : true,
35193         /**
35194         * @event beforecollapse
35195         * Fires before this node is collapsed, return false to cancel.
35196         * @param {Node} this This node
35197         * @param {Boolean} deep
35198         * @param {Boolean} anim
35199         */
35200         "beforecollapse" : true,
35201         /**
35202         * @event expand
35203         * Fires when this node is expanded
35204         * @param {Node} this This node
35205         */
35206         "expand" : true,
35207         /**
35208         * @event disabledchange
35209         * Fires when the disabled status of this node changes
35210         * @param {Node} this This node
35211         * @param {Boolean} disabled
35212         */
35213         "disabledchange" : true,
35214         /**
35215         * @event collapse
35216         * Fires when this node is collapsed
35217         * @param {Node} this This node
35218         */
35219         "collapse" : true,
35220         /**
35221         * @event beforeclick
35222         * Fires before click processing. Return false to cancel the default action.
35223         * @param {Node} this This node
35224         * @param {Roo.EventObject} e The event object
35225         */
35226         "beforeclick":true,
35227         /**
35228         * @event checkchange
35229         * Fires when a node with a checkbox's checked property changes
35230         * @param {Node} this This node
35231         * @param {Boolean} checked
35232         */
35233         "checkchange":true,
35234         /**
35235         * @event click
35236         * Fires when this node is clicked
35237         * @param {Node} this This node
35238         * @param {Roo.EventObject} e The event object
35239         */
35240         "click":true,
35241         /**
35242         * @event dblclick
35243         * Fires when this node is double clicked
35244         * @param {Node} this This node
35245         * @param {Roo.EventObject} e The event object
35246         */
35247         "dblclick":true,
35248         /**
35249         * @event contextmenu
35250         * Fires when this node is right clicked
35251         * @param {Node} this This node
35252         * @param {Roo.EventObject} e The event object
35253         */
35254         "contextmenu":true,
35255         /**
35256         * @event beforechildrenrendered
35257         * Fires right before the child nodes for this node are rendered
35258         * @param {Node} this This node
35259         */
35260         "beforechildrenrendered":true
35261     });
35262
35263     var uiClass = this.attributes.uiProvider || Roo.tree.TreeNodeUI;
35264
35265     /**
35266      * Read-only. The UI for this node
35267      * @type TreeNodeUI
35268      */
35269     this.ui = new uiClass(this);
35270     
35271     // finally support items[]
35272     if (typeof(this.attributes.items) == 'undefined' || !this.attributes.items) {
35273         return;
35274     }
35275     
35276     
35277     Roo.each(this.attributes.items, function(c) {
35278         this.appendChild(Roo.factory(c,Roo.Tree));
35279     }, this);
35280     delete this.attributes.items;
35281     
35282     
35283     
35284 };
35285 Roo.extend(Roo.tree.TreeNode, Roo.data.Node, {
35286     preventHScroll: true,
35287     /**
35288      * Returns true if this node is expanded
35289      * @return {Boolean}
35290      */
35291     isExpanded : function(){
35292         return this.expanded;
35293     },
35294
35295     /**
35296      * Returns the UI object for this node
35297      * @return {TreeNodeUI}
35298      */
35299     getUI : function(){
35300         return this.ui;
35301     },
35302
35303     // private override
35304     setFirstChild : function(node){
35305         var of = this.firstChild;
35306         Roo.tree.TreeNode.superclass.setFirstChild.call(this, node);
35307         if(this.childrenRendered && of && node != of){
35308             of.renderIndent(true, true);
35309         }
35310         if(this.rendered){
35311             this.renderIndent(true, true);
35312         }
35313     },
35314
35315     // private override
35316     setLastChild : function(node){
35317         var ol = this.lastChild;
35318         Roo.tree.TreeNode.superclass.setLastChild.call(this, node);
35319         if(this.childrenRendered && ol && node != ol){
35320             ol.renderIndent(true, true);
35321         }
35322         if(this.rendered){
35323             this.renderIndent(true, true);
35324         }
35325     },
35326
35327     // these methods are overridden to provide lazy rendering support
35328     // private override
35329     appendChild : function()
35330     {
35331         var node = Roo.tree.TreeNode.superclass.appendChild.apply(this, arguments);
35332         if(node && this.childrenRendered){
35333             node.render();
35334         }
35335         this.ui.updateExpandIcon();
35336         return node;
35337     },
35338
35339     // private override
35340     removeChild : function(node){
35341         this.ownerTree.getSelectionModel().unselect(node);
35342         Roo.tree.TreeNode.superclass.removeChild.apply(this, arguments);
35343         // if it's been rendered remove dom node
35344         if(this.childrenRendered){
35345             node.ui.remove();
35346         }
35347         if(this.childNodes.length < 1){
35348             this.collapse(false, false);
35349         }else{
35350             this.ui.updateExpandIcon();
35351         }
35352         if(!this.firstChild) {
35353             this.childrenRendered = false;
35354         }
35355         return node;
35356     },
35357
35358     // private override
35359     insertBefore : function(node, refNode){
35360         var newNode = Roo.tree.TreeNode.superclass.insertBefore.apply(this, arguments);
35361         if(newNode && refNode && this.childrenRendered){
35362             node.render();
35363         }
35364         this.ui.updateExpandIcon();
35365         return newNode;
35366     },
35367
35368     /**
35369      * Sets the text for this node
35370      * @param {String} text
35371      */
35372     setText : function(text){
35373         var oldText = this.text;
35374         this.text = text;
35375         this.attributes.text = text;
35376         if(this.rendered){ // event without subscribing
35377             this.ui.onTextChange(this, text, oldText);
35378         }
35379         this.fireEvent("textchange", this, text, oldText);
35380     },
35381
35382     /**
35383      * Triggers selection of this node
35384      */
35385     select : function(){
35386         this.getOwnerTree().getSelectionModel().select(this);
35387     },
35388
35389     /**
35390      * Triggers deselection of this node
35391      */
35392     unselect : function(){
35393         this.getOwnerTree().getSelectionModel().unselect(this);
35394     },
35395
35396     /**
35397      * Returns true if this node is selected
35398      * @return {Boolean}
35399      */
35400     isSelected : function(){
35401         return this.getOwnerTree().getSelectionModel().isSelected(this);
35402     },
35403
35404     /**
35405      * Expand this node.
35406      * @param {Boolean} deep (optional) True to expand all children as well
35407      * @param {Boolean} anim (optional) false to cancel the default animation
35408      * @param {Function} callback (optional) A callback to be called when
35409      * expanding this node completes (does not wait for deep expand to complete).
35410      * Called with 1 parameter, this node.
35411      */
35412     expand : function(deep, anim, callback){
35413         if(!this.expanded){
35414             if(this.fireEvent("beforeexpand", this, deep, anim) === false){
35415                 return;
35416             }
35417             if(!this.childrenRendered){
35418                 this.renderChildren();
35419             }
35420             this.expanded = true;
35421             
35422             if(!this.isHiddenRoot() && (this.getOwnerTree() && this.getOwnerTree().animate && anim !== false) || anim){
35423                 this.ui.animExpand(function(){
35424                     this.fireEvent("expand", this);
35425                     if(typeof callback == "function"){
35426                         callback(this);
35427                     }
35428                     if(deep === true){
35429                         this.expandChildNodes(true);
35430                     }
35431                 }.createDelegate(this));
35432                 return;
35433             }else{
35434                 this.ui.expand();
35435                 this.fireEvent("expand", this);
35436                 if(typeof callback == "function"){
35437                     callback(this);
35438                 }
35439             }
35440         }else{
35441            if(typeof callback == "function"){
35442                callback(this);
35443            }
35444         }
35445         if(deep === true){
35446             this.expandChildNodes(true);
35447         }
35448     },
35449
35450     isHiddenRoot : function(){
35451         return this.isRoot && !this.getOwnerTree().rootVisible;
35452     },
35453
35454     /**
35455      * Collapse this node.
35456      * @param {Boolean} deep (optional) True to collapse all children as well
35457      * @param {Boolean} anim (optional) false to cancel the default animation
35458      */
35459     collapse : function(deep, anim){
35460         if(this.expanded && !this.isHiddenRoot()){
35461             if(this.fireEvent("beforecollapse", this, deep, anim) === false){
35462                 return;
35463             }
35464             this.expanded = false;
35465             if((this.getOwnerTree().animate && anim !== false) || anim){
35466                 this.ui.animCollapse(function(){
35467                     this.fireEvent("collapse", this);
35468                     if(deep === true){
35469                         this.collapseChildNodes(true);
35470                     }
35471                 }.createDelegate(this));
35472                 return;
35473             }else{
35474                 this.ui.collapse();
35475                 this.fireEvent("collapse", this);
35476             }
35477         }
35478         if(deep === true){
35479             var cs = this.childNodes;
35480             for(var i = 0, len = cs.length; i < len; i++) {
35481                 cs[i].collapse(true, false);
35482             }
35483         }
35484     },
35485
35486     // private
35487     delayedExpand : function(delay){
35488         if(!this.expandProcId){
35489             this.expandProcId = this.expand.defer(delay, this);
35490         }
35491     },
35492
35493     // private
35494     cancelExpand : function(){
35495         if(this.expandProcId){
35496             clearTimeout(this.expandProcId);
35497         }
35498         this.expandProcId = false;
35499     },
35500
35501     /**
35502      * Toggles expanded/collapsed state of the node
35503      */
35504     toggle : function(){
35505         if(this.expanded){
35506             this.collapse();
35507         }else{
35508             this.expand();
35509         }
35510     },
35511
35512     /**
35513      * Ensures all parent nodes are expanded
35514      */
35515     ensureVisible : function(callback){
35516         var tree = this.getOwnerTree();
35517         tree.expandPath(this.parentNode.getPath(), false, function(){
35518             tree.getTreeEl().scrollChildIntoView(this.ui.anchor);
35519             Roo.callback(callback);
35520         }.createDelegate(this));
35521     },
35522
35523     /**
35524      * Expand all child nodes
35525      * @param {Boolean} deep (optional) true if the child nodes should also expand their child nodes
35526      */
35527     expandChildNodes : function(deep){
35528         var cs = this.childNodes;
35529         for(var i = 0, len = cs.length; i < len; i++) {
35530                 cs[i].expand(deep);
35531         }
35532     },
35533
35534     /**
35535      * Collapse all child nodes
35536      * @param {Boolean} deep (optional) true if the child nodes should also collapse their child nodes
35537      */
35538     collapseChildNodes : function(deep){
35539         var cs = this.childNodes;
35540         for(var i = 0, len = cs.length; i < len; i++) {
35541                 cs[i].collapse(deep);
35542         }
35543     },
35544
35545     /**
35546      * Disables this node
35547      */
35548     disable : function(){
35549         this.disabled = true;
35550         this.unselect();
35551         if(this.rendered && this.ui.onDisableChange){ // event without subscribing
35552             this.ui.onDisableChange(this, true);
35553         }
35554         this.fireEvent("disabledchange", this, true);
35555     },
35556
35557     /**
35558      * Enables this node
35559      */
35560     enable : function(){
35561         this.disabled = false;
35562         if(this.rendered && this.ui.onDisableChange){ // event without subscribing
35563             this.ui.onDisableChange(this, false);
35564         }
35565         this.fireEvent("disabledchange", this, false);
35566     },
35567
35568     // private
35569     renderChildren : function(suppressEvent){
35570         if(suppressEvent !== false){
35571             this.fireEvent("beforechildrenrendered", this);
35572         }
35573         var cs = this.childNodes;
35574         for(var i = 0, len = cs.length; i < len; i++){
35575             cs[i].render(true);
35576         }
35577         this.childrenRendered = true;
35578     },
35579
35580     // private
35581     sort : function(fn, scope){
35582         Roo.tree.TreeNode.superclass.sort.apply(this, arguments);
35583         if(this.childrenRendered){
35584             var cs = this.childNodes;
35585             for(var i = 0, len = cs.length; i < len; i++){
35586                 cs[i].render(true);
35587             }
35588         }
35589     },
35590
35591     // private
35592     render : function(bulkRender){
35593         this.ui.render(bulkRender);
35594         if(!this.rendered){
35595             this.rendered = true;
35596             if(this.expanded){
35597                 this.expanded = false;
35598                 this.expand(false, false);
35599             }
35600         }
35601     },
35602
35603     // private
35604     renderIndent : function(deep, refresh){
35605         if(refresh){
35606             this.ui.childIndent = null;
35607         }
35608         this.ui.renderIndent();
35609         if(deep === true && this.childrenRendered){
35610             var cs = this.childNodes;
35611             for(var i = 0, len = cs.length; i < len; i++){
35612                 cs[i].renderIndent(true, refresh);
35613             }
35614         }
35615     }
35616 });/*
35617  * Based on:
35618  * Ext JS Library 1.1.1
35619  * Copyright(c) 2006-2007, Ext JS, LLC.
35620  *
35621  * Originally Released Under LGPL - original licence link has changed is not relivant.
35622  *
35623  * Fork - LGPL
35624  * <script type="text/javascript">
35625  */
35626  
35627 /**
35628  * @class Roo.tree.AsyncTreeNode
35629  * @extends Roo.tree.TreeNode
35630  * @cfg {TreeLoader} loader A TreeLoader to be used by this node (defaults to the loader defined on the tree)
35631  * @constructor
35632  * @param {Object/String} attributes The attributes/config for the node or just a string with the text for the node 
35633  */
35634  Roo.tree.AsyncTreeNode = function(config){
35635     this.loaded = false;
35636     this.loading = false;
35637     Roo.tree.AsyncTreeNode.superclass.constructor.apply(this, arguments);
35638     /**
35639     * @event beforeload
35640     * Fires before this node is loaded, return false to cancel
35641     * @param {Node} this This node
35642     */
35643     this.addEvents({'beforeload':true, 'load': true});
35644     /**
35645     * @event load
35646     * Fires when this node is loaded
35647     * @param {Node} this This node
35648     */
35649     /**
35650      * The loader used by this node (defaults to using the tree's defined loader)
35651      * @type TreeLoader
35652      * @property loader
35653      */
35654 };
35655 Roo.extend(Roo.tree.AsyncTreeNode, Roo.tree.TreeNode, {
35656     expand : function(deep, anim, callback){
35657         if(this.loading){ // if an async load is already running, waiting til it's done
35658             var timer;
35659             var f = function(){
35660                 if(!this.loading){ // done loading
35661                     clearInterval(timer);
35662                     this.expand(deep, anim, callback);
35663                 }
35664             }.createDelegate(this);
35665             timer = setInterval(f, 200);
35666             return;
35667         }
35668         if(!this.loaded){
35669             if(this.fireEvent("beforeload", this) === false){
35670                 return;
35671             }
35672             this.loading = true;
35673             this.ui.beforeLoad(this);
35674             var loader = this.loader || this.attributes.loader || this.getOwnerTree().getLoader();
35675             if(loader){
35676                 loader.load(this, this.loadComplete.createDelegate(this, [deep, anim, callback]));
35677                 return;
35678             }
35679         }
35680         Roo.tree.AsyncTreeNode.superclass.expand.call(this, deep, anim, callback);
35681     },
35682     
35683     /**
35684      * Returns true if this node is currently loading
35685      * @return {Boolean}
35686      */
35687     isLoading : function(){
35688         return this.loading;  
35689     },
35690     
35691     loadComplete : function(deep, anim, callback){
35692         this.loading = false;
35693         this.loaded = true;
35694         this.ui.afterLoad(this);
35695         this.fireEvent("load", this);
35696         this.expand(deep, anim, callback);
35697     },
35698     
35699     /**
35700      * Returns true if this node has been loaded
35701      * @return {Boolean}
35702      */
35703     isLoaded : function(){
35704         return this.loaded;
35705     },
35706     
35707     hasChildNodes : function(){
35708         if(!this.isLeaf() && !this.loaded){
35709             return true;
35710         }else{
35711             return Roo.tree.AsyncTreeNode.superclass.hasChildNodes.call(this);
35712         }
35713     },
35714
35715     /**
35716      * Trigger a reload for this node
35717      * @param {Function} callback
35718      */
35719     reload : function(callback){
35720         this.collapse(false, false);
35721         while(this.firstChild){
35722             this.removeChild(this.firstChild);
35723         }
35724         this.childrenRendered = false;
35725         this.loaded = false;
35726         if(this.isHiddenRoot()){
35727             this.expanded = false;
35728         }
35729         this.expand(false, false, callback);
35730     }
35731 });/*
35732  * Based on:
35733  * Ext JS Library 1.1.1
35734  * Copyright(c) 2006-2007, Ext JS, LLC.
35735  *
35736  * Originally Released Under LGPL - original licence link has changed is not relivant.
35737  *
35738  * Fork - LGPL
35739  * <script type="text/javascript">
35740  */
35741  
35742 /**
35743  * @class Roo.tree.TreeNodeUI
35744  * @constructor
35745  * @param {Object} node The node to render
35746  * The TreeNode UI implementation is separate from the
35747  * tree implementation. Unless you are customizing the tree UI,
35748  * you should never have to use this directly.
35749  */
35750 Roo.tree.TreeNodeUI = function(node){
35751     this.node = node;
35752     this.rendered = false;
35753     this.animating = false;
35754     this.emptyIcon = Roo.BLANK_IMAGE_URL;
35755 };
35756
35757 Roo.tree.TreeNodeUI.prototype = {
35758     removeChild : function(node){
35759         if(this.rendered){
35760             this.ctNode.removeChild(node.ui.getEl());
35761         }
35762     },
35763
35764     beforeLoad : function(){
35765          this.addClass("x-tree-node-loading");
35766     },
35767
35768     afterLoad : function(){
35769          this.removeClass("x-tree-node-loading");
35770     },
35771
35772     onTextChange : function(node, text, oldText){
35773         if(this.rendered){
35774             this.textNode.innerHTML = text;
35775         }
35776     },
35777
35778     onDisableChange : function(node, state){
35779         this.disabled = state;
35780         if(state){
35781             this.addClass("x-tree-node-disabled");
35782         }else{
35783             this.removeClass("x-tree-node-disabled");
35784         }
35785     },
35786
35787     onSelectedChange : function(state){
35788         if(state){
35789             this.focus();
35790             this.addClass("x-tree-selected");
35791         }else{
35792             //this.blur();
35793             this.removeClass("x-tree-selected");
35794         }
35795     },
35796
35797     onMove : function(tree, node, oldParent, newParent, index, refNode){
35798         this.childIndent = null;
35799         if(this.rendered){
35800             var targetNode = newParent.ui.getContainer();
35801             if(!targetNode){//target not rendered
35802                 this.holder = document.createElement("div");
35803                 this.holder.appendChild(this.wrap);
35804                 return;
35805             }
35806             var insertBefore = refNode ? refNode.ui.getEl() : null;
35807             if(insertBefore){
35808                 targetNode.insertBefore(this.wrap, insertBefore);
35809             }else{
35810                 targetNode.appendChild(this.wrap);
35811             }
35812             this.node.renderIndent(true);
35813         }
35814     },
35815
35816     addClass : function(cls){
35817         if(this.elNode){
35818             Roo.fly(this.elNode).addClass(cls);
35819         }
35820     },
35821
35822     removeClass : function(cls){
35823         if(this.elNode){
35824             Roo.fly(this.elNode).removeClass(cls);
35825         }
35826     },
35827
35828     remove : function(){
35829         if(this.rendered){
35830             this.holder = document.createElement("div");
35831             this.holder.appendChild(this.wrap);
35832         }
35833     },
35834
35835     fireEvent : function(){
35836         return this.node.fireEvent.apply(this.node, arguments);
35837     },
35838
35839     initEvents : function(){
35840         this.node.on("move", this.onMove, this);
35841         var E = Roo.EventManager;
35842         var a = this.anchor;
35843
35844         var el = Roo.fly(a, '_treeui');
35845
35846         if(Roo.isOpera){ // opera render bug ignores the CSS
35847             el.setStyle("text-decoration", "none");
35848         }
35849
35850         el.on("click", this.onClick, this);
35851         el.on("dblclick", this.onDblClick, this);
35852
35853         if(this.checkbox){
35854             Roo.EventManager.on(this.checkbox,
35855                     Roo.isIE ? 'click' : 'change', this.onCheckChange, this);
35856         }
35857
35858         el.on("contextmenu", this.onContextMenu, this);
35859
35860         var icon = Roo.fly(this.iconNode);
35861         icon.on("click", this.onClick, this);
35862         icon.on("dblclick", this.onDblClick, this);
35863         icon.on("contextmenu", this.onContextMenu, this);
35864         E.on(this.ecNode, "click", this.ecClick, this, true);
35865
35866         if(this.node.disabled){
35867             this.addClass("x-tree-node-disabled");
35868         }
35869         if(this.node.hidden){
35870             this.addClass("x-tree-node-disabled");
35871         }
35872         var ot = this.node.getOwnerTree();
35873         var dd = ot ? (ot.enableDD || ot.enableDrag || ot.enableDrop) : false;
35874         if(dd && (!this.node.isRoot || ot.rootVisible)){
35875             Roo.dd.Registry.register(this.elNode, {
35876                 node: this.node,
35877                 handles: this.getDDHandles(),
35878                 isHandle: false
35879             });
35880         }
35881     },
35882
35883     getDDHandles : function(){
35884         return [this.iconNode, this.textNode];
35885     },
35886
35887     hide : function(){
35888         if(this.rendered){
35889             this.wrap.style.display = "none";
35890         }
35891     },
35892
35893     show : function(){
35894         if(this.rendered){
35895             this.wrap.style.display = "";
35896         }
35897     },
35898
35899     onContextMenu : function(e){
35900         if (this.node.hasListener("contextmenu") || this.node.getOwnerTree().hasListener("contextmenu")) {
35901             e.preventDefault();
35902             this.focus();
35903             this.fireEvent("contextmenu", this.node, e);
35904         }
35905     },
35906
35907     onClick : function(e){
35908         if(this.dropping){
35909             e.stopEvent();
35910             return;
35911         }
35912         if(this.fireEvent("beforeclick", this.node, e) !== false){
35913             if(!this.disabled && this.node.attributes.href){
35914                 this.fireEvent("click", this.node, e);
35915                 return;
35916             }
35917             e.preventDefault();
35918             if(this.disabled){
35919                 return;
35920             }
35921
35922             if(this.node.attributes.singleClickExpand && !this.animating && this.node.hasChildNodes()){
35923                 this.node.toggle();
35924             }
35925
35926             this.fireEvent("click", this.node, e);
35927         }else{
35928             e.stopEvent();
35929         }
35930     },
35931
35932     onDblClick : function(e){
35933         e.preventDefault();
35934         if(this.disabled){
35935             return;
35936         }
35937         if(this.checkbox){
35938             this.toggleCheck();
35939         }
35940         if(!this.animating && this.node.hasChildNodes()){
35941             this.node.toggle();
35942         }
35943         this.fireEvent("dblclick", this.node, e);
35944     },
35945
35946     onCheckChange : function(){
35947         var checked = this.checkbox.checked;
35948         this.node.attributes.checked = checked;
35949         this.fireEvent('checkchange', this.node, checked);
35950     },
35951
35952     ecClick : function(e){
35953         if(!this.animating && this.node.hasChildNodes()){
35954             this.node.toggle();
35955         }
35956     },
35957
35958     startDrop : function(){
35959         this.dropping = true;
35960     },
35961
35962     // delayed drop so the click event doesn't get fired on a drop
35963     endDrop : function(){
35964        setTimeout(function(){
35965            this.dropping = false;
35966        }.createDelegate(this), 50);
35967     },
35968
35969     expand : function(){
35970         this.updateExpandIcon();
35971         this.ctNode.style.display = "";
35972     },
35973
35974     focus : function(){
35975         if(!this.node.preventHScroll){
35976             try{this.anchor.focus();
35977             }catch(e){}
35978         }else if(!Roo.isIE){
35979             try{
35980                 var noscroll = this.node.getOwnerTree().getTreeEl().dom;
35981                 var l = noscroll.scrollLeft;
35982                 this.anchor.focus();
35983                 noscroll.scrollLeft = l;
35984             }catch(e){}
35985         }
35986     },
35987
35988     toggleCheck : function(value){
35989         var cb = this.checkbox;
35990         if(cb){
35991             cb.checked = (value === undefined ? !cb.checked : value);
35992         }
35993     },
35994
35995     blur : function(){
35996         try{
35997             this.anchor.blur();
35998         }catch(e){}
35999     },
36000
36001     animExpand : function(callback){
36002         var ct = Roo.get(this.ctNode);
36003         ct.stopFx();
36004         if(!this.node.hasChildNodes()){
36005             this.updateExpandIcon();
36006             this.ctNode.style.display = "";
36007             Roo.callback(callback);
36008             return;
36009         }
36010         this.animating = true;
36011         this.updateExpandIcon();
36012
36013         ct.slideIn('t', {
36014            callback : function(){
36015                this.animating = false;
36016                Roo.callback(callback);
36017             },
36018             scope: this,
36019             duration: this.node.ownerTree.duration || .25
36020         });
36021     },
36022
36023     highlight : function(){
36024         var tree = this.node.getOwnerTree();
36025         Roo.fly(this.wrap).highlight(
36026             tree.hlColor || "C3DAF9",
36027             {endColor: tree.hlBaseColor}
36028         );
36029     },
36030
36031     collapse : function(){
36032         this.updateExpandIcon();
36033         this.ctNode.style.display = "none";
36034     },
36035
36036     animCollapse : function(callback){
36037         var ct = Roo.get(this.ctNode);
36038         ct.enableDisplayMode('block');
36039         ct.stopFx();
36040
36041         this.animating = true;
36042         this.updateExpandIcon();
36043
36044         ct.slideOut('t', {
36045             callback : function(){
36046                this.animating = false;
36047                Roo.callback(callback);
36048             },
36049             scope: this,
36050             duration: this.node.ownerTree.duration || .25
36051         });
36052     },
36053
36054     getContainer : function(){
36055         return this.ctNode;
36056     },
36057
36058     getEl : function(){
36059         return this.wrap;
36060     },
36061
36062     appendDDGhost : function(ghostNode){
36063         ghostNode.appendChild(this.elNode.cloneNode(true));
36064     },
36065
36066     getDDRepairXY : function(){
36067         return Roo.lib.Dom.getXY(this.iconNode);
36068     },
36069
36070     onRender : function(){
36071         this.render();
36072     },
36073
36074     render : function(bulkRender){
36075         var n = this.node, a = n.attributes;
36076         var targetNode = n.parentNode ?
36077               n.parentNode.ui.getContainer() : n.ownerTree.innerCt.dom;
36078
36079         if(!this.rendered){
36080             this.rendered = true;
36081
36082             this.renderElements(n, a, targetNode, bulkRender);
36083
36084             if(a.qtip){
36085                if(this.textNode.setAttributeNS){
36086                    this.textNode.setAttributeNS("ext", "qtip", a.qtip);
36087                    if(a.qtipTitle){
36088                        this.textNode.setAttributeNS("ext", "qtitle", a.qtipTitle);
36089                    }
36090                }else{
36091                    this.textNode.setAttribute("ext:qtip", a.qtip);
36092                    if(a.qtipTitle){
36093                        this.textNode.setAttribute("ext:qtitle", a.qtipTitle);
36094                    }
36095                }
36096             }else if(a.qtipCfg){
36097                 a.qtipCfg.target = Roo.id(this.textNode);
36098                 Roo.QuickTips.register(a.qtipCfg);
36099             }
36100             this.initEvents();
36101             if(!this.node.expanded){
36102                 this.updateExpandIcon();
36103             }
36104         }else{
36105             if(bulkRender === true) {
36106                 targetNode.appendChild(this.wrap);
36107             }
36108         }
36109     },
36110
36111     renderElements : function(n, a, targetNode, bulkRender)
36112     {
36113         // add some indent caching, this helps performance when rendering a large tree
36114         this.indentMarkup = n.parentNode ? n.parentNode.ui.getChildIndent() : '';
36115         var t = n.getOwnerTree();
36116         var txt = t && t.renderer ? t.renderer(n.attributes) : Roo.util.Format.htmlEncode(n.text);
36117         if (typeof(n.attributes.html) != 'undefined') {
36118             txt = n.attributes.html;
36119         }
36120         var tip = t && t.rendererTip ? t.rendererTip(n.attributes) : txt;
36121         var cb = typeof a.checked == 'boolean';
36122         var href = a.href ? a.href : Roo.isGecko ? "" : "#";
36123         var buf = ['<li class="x-tree-node"><div class="x-tree-node-el ', a.cls,'">',
36124             '<span class="x-tree-node-indent">',this.indentMarkup,"</span>",
36125             '<img src="', this.emptyIcon, '" class="x-tree-ec-icon" />',
36126             '<img src="', a.icon || this.emptyIcon, '" class="x-tree-node-icon',(a.icon ? " x-tree-node-inline-icon" : ""),(a.iconCls ? " "+a.iconCls : ""),'" unselectable="on" />',
36127             cb ? ('<input class="x-tree-node-cb" type="checkbox" ' + (a.checked ? 'checked="checked" />' : ' />')) : '',
36128             '<a hidefocus="on" href="',href,'" tabIndex="1" ',
36129              a.hrefTarget ? ' target="'+a.hrefTarget+'"' : "", 
36130                 '><span unselectable="on" qtip="' , tip ,'">',txt,"</span></a></div>",
36131             '<ul class="x-tree-node-ct" style="display:none;"></ul>',
36132             "</li>"];
36133
36134         if(bulkRender !== true && n.nextSibling && n.nextSibling.ui.getEl()){
36135             this.wrap = Roo.DomHelper.insertHtml("beforeBegin",
36136                                 n.nextSibling.ui.getEl(), buf.join(""));
36137         }else{
36138             this.wrap = Roo.DomHelper.insertHtml("beforeEnd", targetNode, buf.join(""));
36139         }
36140
36141         this.elNode = this.wrap.childNodes[0];
36142         this.ctNode = this.wrap.childNodes[1];
36143         var cs = this.elNode.childNodes;
36144         this.indentNode = cs[0];
36145         this.ecNode = cs[1];
36146         this.iconNode = cs[2];
36147         var index = 3;
36148         if(cb){
36149             this.checkbox = cs[3];
36150             index++;
36151         }
36152         this.anchor = cs[index];
36153         this.textNode = cs[index].firstChild;
36154     },
36155
36156     getAnchor : function(){
36157         return this.anchor;
36158     },
36159
36160     getTextEl : function(){
36161         return this.textNode;
36162     },
36163
36164     getIconEl : function(){
36165         return this.iconNode;
36166     },
36167
36168     isChecked : function(){
36169         return this.checkbox ? this.checkbox.checked : false;
36170     },
36171
36172     updateExpandIcon : function(){
36173         if(this.rendered){
36174             var n = this.node, c1, c2;
36175             var cls = n.isLast() ? "x-tree-elbow-end" : "x-tree-elbow";
36176             var hasChild = n.hasChildNodes();
36177             if(hasChild){
36178                 if(n.expanded){
36179                     cls += "-minus";
36180                     c1 = "x-tree-node-collapsed";
36181                     c2 = "x-tree-node-expanded";
36182                 }else{
36183                     cls += "-plus";
36184                     c1 = "x-tree-node-expanded";
36185                     c2 = "x-tree-node-collapsed";
36186                 }
36187                 if(this.wasLeaf){
36188                     this.removeClass("x-tree-node-leaf");
36189                     this.wasLeaf = false;
36190                 }
36191                 if(this.c1 != c1 || this.c2 != c2){
36192                     Roo.fly(this.elNode).replaceClass(c1, c2);
36193                     this.c1 = c1; this.c2 = c2;
36194                 }
36195             }else{
36196                 // this changes non-leafs into leafs if they have no children.
36197                 // it's not very rational behaviour..
36198                 
36199                 if(!this.wasLeaf && this.node.leaf){
36200                     Roo.fly(this.elNode).replaceClass("x-tree-node-expanded", "x-tree-node-leaf");
36201                     delete this.c1;
36202                     delete this.c2;
36203                     this.wasLeaf = true;
36204                 }
36205             }
36206             var ecc = "x-tree-ec-icon "+cls;
36207             if(this.ecc != ecc){
36208                 this.ecNode.className = ecc;
36209                 this.ecc = ecc;
36210             }
36211         }
36212     },
36213
36214     getChildIndent : function(){
36215         if(!this.childIndent){
36216             var buf = [];
36217             var p = this.node;
36218             while(p){
36219                 if(!p.isRoot || (p.isRoot && p.ownerTree.rootVisible)){
36220                     if(!p.isLast()) {
36221                         buf.unshift('<img src="'+this.emptyIcon+'" class="x-tree-elbow-line" />');
36222                     } else {
36223                         buf.unshift('<img src="'+this.emptyIcon+'" class="x-tree-icon" />');
36224                     }
36225                 }
36226                 p = p.parentNode;
36227             }
36228             this.childIndent = buf.join("");
36229         }
36230         return this.childIndent;
36231     },
36232
36233     renderIndent : function(){
36234         if(this.rendered){
36235             var indent = "";
36236             var p = this.node.parentNode;
36237             if(p){
36238                 indent = p.ui.getChildIndent();
36239             }
36240             if(this.indentMarkup != indent){ // don't rerender if not required
36241                 this.indentNode.innerHTML = indent;
36242                 this.indentMarkup = indent;
36243             }
36244             this.updateExpandIcon();
36245         }
36246     }
36247 };
36248
36249 Roo.tree.RootTreeNodeUI = function(){
36250     Roo.tree.RootTreeNodeUI.superclass.constructor.apply(this, arguments);
36251 };
36252 Roo.extend(Roo.tree.RootTreeNodeUI, Roo.tree.TreeNodeUI, {
36253     render : function(){
36254         if(!this.rendered){
36255             var targetNode = this.node.ownerTree.innerCt.dom;
36256             this.node.expanded = true;
36257             targetNode.innerHTML = '<div class="x-tree-root-node"></div>';
36258             this.wrap = this.ctNode = targetNode.firstChild;
36259         }
36260     },
36261     collapse : function(){
36262     },
36263     expand : function(){
36264     }
36265 });/*
36266  * Based on:
36267  * Ext JS Library 1.1.1
36268  * Copyright(c) 2006-2007, Ext JS, LLC.
36269  *
36270  * Originally Released Under LGPL - original licence link has changed is not relivant.
36271  *
36272  * Fork - LGPL
36273  * <script type="text/javascript">
36274  */
36275 /**
36276  * @class Roo.tree.TreeLoader
36277  * @extends Roo.util.Observable
36278  * A TreeLoader provides for lazy loading of an {@link Roo.tree.TreeNode}'s child
36279  * nodes from a specified URL. The response must be a javascript Array definition
36280  * who's elements are node definition objects. eg:
36281  * <pre><code>
36282 {  success : true,
36283    data :      [
36284    
36285     { 'id': 1, 'text': 'A folder Node', 'leaf': false },
36286     { 'id': 2, 'text': 'A leaf Node', 'leaf': true }
36287     ]
36288 }
36289
36290
36291 </code></pre>
36292  * <br><br>
36293  * The old style respose with just an array is still supported, but not recommended.
36294  * <br><br>
36295  *
36296  * A server request is sent, and child nodes are loaded only when a node is expanded.
36297  * The loading node's id is passed to the server under the parameter name "node" to
36298  * enable the server to produce the correct child nodes.
36299  * <br><br>
36300  * To pass extra parameters, an event handler may be attached to the "beforeload"
36301  * event, and the parameters specified in the TreeLoader's baseParams property:
36302  * <pre><code>
36303     myTreeLoader.on("beforeload", function(treeLoader, node) {
36304         this.baseParams.category = node.attributes.category;
36305     }, this);
36306     
36307 </code></pre>
36308  *
36309  * This would pass an HTTP parameter called "category" to the server containing
36310  * the value of the Node's "category" attribute.
36311  * @constructor
36312  * Creates a new Treeloader.
36313  * @param {Object} config A config object containing config properties.
36314  */
36315 Roo.tree.TreeLoader = function(config){
36316     this.baseParams = {};
36317     this.requestMethod = "POST";
36318     Roo.apply(this, config);
36319
36320     this.addEvents({
36321     
36322         /**
36323          * @event beforeload
36324          * Fires before a network request is made to retrieve the Json text which specifies a node's children.
36325          * @param {Object} This TreeLoader object.
36326          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
36327          * @param {Object} callback The callback function specified in the {@link #load} call.
36328          */
36329         beforeload : true,
36330         /**
36331          * @event load
36332          * Fires when the node has been successfuly loaded.
36333          * @param {Object} This TreeLoader object.
36334          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
36335          * @param {Object} response The response object containing the data from the server.
36336          */
36337         load : true,
36338         /**
36339          * @event loadexception
36340          * Fires if the network request failed.
36341          * @param {Object} This TreeLoader object.
36342          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
36343          * @param {Object} response The response object containing the data from the server.
36344          */
36345         loadexception : true,
36346         /**
36347          * @event create
36348          * Fires before a node is created, enabling you to return custom Node types 
36349          * @param {Object} This TreeLoader object.
36350          * @param {Object} attr - the data returned from the AJAX call (modify it to suit)
36351          */
36352         create : true
36353     });
36354
36355     Roo.tree.TreeLoader.superclass.constructor.call(this);
36356 };
36357
36358 Roo.extend(Roo.tree.TreeLoader, Roo.util.Observable, {
36359     /**
36360     * @cfg {String} dataUrl The URL from which to request a Json string which
36361     * specifies an array of node definition object representing the child nodes
36362     * to be loaded.
36363     */
36364     /**
36365     * @cfg {String} requestMethod either GET or POST
36366     * defaults to POST (due to BC)
36367     * to be loaded.
36368     */
36369     /**
36370     * @cfg {Object} baseParams (optional) An object containing properties which
36371     * specify HTTP parameters to be passed to each request for child nodes.
36372     */
36373     /**
36374     * @cfg {Object} baseAttrs (optional) An object containing attributes to be added to all nodes
36375     * created by this loader. If the attributes sent by the server have an attribute in this object,
36376     * they take priority.
36377     */
36378     /**
36379     * @cfg {Object} uiProviders (optional) An object containing properties which
36380     * 
36381     * DEPRECATED - use 'create' event handler to modify attributes - which affect creation.
36382     * specify custom {@link Roo.tree.TreeNodeUI} implementations. If the optional
36383     * <i>uiProvider</i> attribute of a returned child node is a string rather
36384     * than a reference to a TreeNodeUI implementation, this that string value
36385     * is used as a property name in the uiProviders object. You can define the provider named
36386     * 'default' , and this will be used for all nodes (if no uiProvider is delivered by the node data)
36387     */
36388     uiProviders : {},
36389
36390     /**
36391     * @cfg {Boolean} clearOnLoad (optional) Default to true. Remove previously existing
36392     * child nodes before loading.
36393     */
36394     clearOnLoad : true,
36395
36396     /**
36397     * @cfg {String} root (optional) Default to false. Use this to read data from an object 
36398     * property on loading, rather than expecting an array. (eg. more compatible to a standard
36399     * Grid query { data : [ .....] }
36400     */
36401     
36402     root : false,
36403      /**
36404     * @cfg {String} queryParam (optional) 
36405     * Name of the query as it will be passed on the querystring (defaults to 'node')
36406     * eg. the request will be ?node=[id]
36407     */
36408     
36409     
36410     queryParam: false,
36411     
36412     /**
36413      * Load an {@link Roo.tree.TreeNode} from the URL specified in the constructor.
36414      * This is called automatically when a node is expanded, but may be used to reload
36415      * a node (or append new children if the {@link #clearOnLoad} option is false.)
36416      * @param {Roo.tree.TreeNode} node
36417      * @param {Function} callback
36418      */
36419     load : function(node, callback){
36420         if(this.clearOnLoad){
36421             while(node.firstChild){
36422                 node.removeChild(node.firstChild);
36423             }
36424         }
36425         if(node.attributes.children){ // preloaded json children
36426             var cs = node.attributes.children;
36427             for(var i = 0, len = cs.length; i < len; i++){
36428                 node.appendChild(this.createNode(cs[i]));
36429             }
36430             if(typeof callback == "function"){
36431                 callback();
36432             }
36433         }else if(this.dataUrl){
36434             this.requestData(node, callback);
36435         }
36436     },
36437
36438     getParams: function(node){
36439         var buf = [], bp = this.baseParams;
36440         for(var key in bp){
36441             if(typeof bp[key] != "function"){
36442                 buf.push(encodeURIComponent(key), "=", encodeURIComponent(bp[key]), "&");
36443             }
36444         }
36445         var n = this.queryParam === false ? 'node' : this.queryParam;
36446         buf.push(n + "=", encodeURIComponent(node.id));
36447         return buf.join("");
36448     },
36449
36450     requestData : function(node, callback){
36451         if(this.fireEvent("beforeload", this, node, callback) !== false){
36452             this.transId = Roo.Ajax.request({
36453                 method:this.requestMethod,
36454                 url: this.dataUrl||this.url,
36455                 success: this.handleResponse,
36456                 failure: this.handleFailure,
36457                 scope: this,
36458                 argument: {callback: callback, node: node},
36459                 params: this.getParams(node)
36460             });
36461         }else{
36462             // if the load is cancelled, make sure we notify
36463             // the node that we are done
36464             if(typeof callback == "function"){
36465                 callback();
36466             }
36467         }
36468     },
36469
36470     isLoading : function(){
36471         return this.transId ? true : false;
36472     },
36473
36474     abort : function(){
36475         if(this.isLoading()){
36476             Roo.Ajax.abort(this.transId);
36477         }
36478     },
36479
36480     // private
36481     createNode : function(attr)
36482     {
36483         // apply baseAttrs, nice idea Corey!
36484         if(this.baseAttrs){
36485             Roo.applyIf(attr, this.baseAttrs);
36486         }
36487         if(this.applyLoader !== false){
36488             attr.loader = this;
36489         }
36490         // uiProvider = depreciated..
36491         
36492         if(typeof(attr.uiProvider) == 'string'){
36493            attr.uiProvider = this.uiProviders[attr.uiProvider] || 
36494                 /**  eval:var:attr */ eval(attr.uiProvider);
36495         }
36496         if(typeof(this.uiProviders['default']) != 'undefined') {
36497             attr.uiProvider = this.uiProviders['default'];
36498         }
36499         
36500         this.fireEvent('create', this, attr);
36501         
36502         attr.leaf  = typeof(attr.leaf) == 'string' ? attr.leaf * 1 : attr.leaf;
36503         return(attr.leaf ?
36504                         new Roo.tree.TreeNode(attr) :
36505                         new Roo.tree.AsyncTreeNode(attr));
36506     },
36507
36508     processResponse : function(response, node, callback)
36509     {
36510         var json = response.responseText;
36511         try {
36512             
36513             var o = Roo.decode(json);
36514             
36515             if (this.root === false && typeof(o.success) != undefined) {
36516                 this.root = 'data'; // the default behaviour for list like data..
36517                 }
36518                 
36519             if (this.root !== false &&  !o.success) {
36520                 // it's a failure condition.
36521                 var a = response.argument;
36522                 this.fireEvent("loadexception", this, a.node, response);
36523                 Roo.log("Load failed - should have a handler really");
36524                 return;
36525             }
36526             
36527             
36528             
36529             if (this.root !== false) {
36530                  o = o[this.root];
36531             }
36532             
36533             for(var i = 0, len = o.length; i < len; i++){
36534                 var n = this.createNode(o[i]);
36535                 if(n){
36536                     node.appendChild(n);
36537                 }
36538             }
36539             if(typeof callback == "function"){
36540                 callback(this, node);
36541             }
36542         }catch(e){
36543             this.handleFailure(response);
36544         }
36545     },
36546
36547     handleResponse : function(response){
36548         this.transId = false;
36549         var a = response.argument;
36550         this.processResponse(response, a.node, a.callback);
36551         this.fireEvent("load", this, a.node, response);
36552     },
36553
36554     handleFailure : function(response)
36555     {
36556         // should handle failure better..
36557         this.transId = false;
36558         var a = response.argument;
36559         this.fireEvent("loadexception", this, a.node, response);
36560         if(typeof a.callback == "function"){
36561             a.callback(this, a.node);
36562         }
36563     }
36564 });/*
36565  * Based on:
36566  * Ext JS Library 1.1.1
36567  * Copyright(c) 2006-2007, Ext JS, LLC.
36568  *
36569  * Originally Released Under LGPL - original licence link has changed is not relivant.
36570  *
36571  * Fork - LGPL
36572  * <script type="text/javascript">
36573  */
36574
36575 /**
36576 * @class Roo.tree.TreeFilter
36577 * Note this class is experimental and doesn't update the indent (lines) or expand collapse icons of the nodes
36578 * @param {TreePanel} tree
36579 * @param {Object} config (optional)
36580  */
36581 Roo.tree.TreeFilter = function(tree, config){
36582     this.tree = tree;
36583     this.filtered = {};
36584     Roo.apply(this, config);
36585 };
36586
36587 Roo.tree.TreeFilter.prototype = {
36588     clearBlank:false,
36589     reverse:false,
36590     autoClear:false,
36591     remove:false,
36592
36593      /**
36594      * Filter the data by a specific attribute.
36595      * @param {String/RegExp} value Either string that the attribute value
36596      * should start with or a RegExp to test against the attribute
36597      * @param {String} attr (optional) The attribute passed in your node's attributes collection. Defaults to "text".
36598      * @param {TreeNode} startNode (optional) The node to start the filter at.
36599      */
36600     filter : function(value, attr, startNode){
36601         attr = attr || "text";
36602         var f;
36603         if(typeof value == "string"){
36604             var vlen = value.length;
36605             // auto clear empty filter
36606             if(vlen == 0 && this.clearBlank){
36607                 this.clear();
36608                 return;
36609             }
36610             value = value.toLowerCase();
36611             f = function(n){
36612                 return n.attributes[attr].substr(0, vlen).toLowerCase() == value;
36613             };
36614         }else if(value.exec){ // regex?
36615             f = function(n){
36616                 return value.test(n.attributes[attr]);
36617             };
36618         }else{
36619             throw 'Illegal filter type, must be string or regex';
36620         }
36621         this.filterBy(f, null, startNode);
36622         },
36623
36624     /**
36625      * Filter by a function. The passed function will be called with each
36626      * node in the tree (or from the startNode). If the function returns true, the node is kept
36627      * otherwise it is filtered. If a node is filtered, its children are also filtered.
36628      * @param {Function} fn The filter function
36629      * @param {Object} scope (optional) The scope of the function (defaults to the current node)
36630      */
36631     filterBy : function(fn, scope, startNode){
36632         startNode = startNode || this.tree.root;
36633         if(this.autoClear){
36634             this.clear();
36635         }
36636         var af = this.filtered, rv = this.reverse;
36637         var f = function(n){
36638             if(n == startNode){
36639                 return true;
36640             }
36641             if(af[n.id]){
36642                 return false;
36643             }
36644             var m = fn.call(scope || n, n);
36645             if(!m || rv){
36646                 af[n.id] = n;
36647                 n.ui.hide();
36648                 return false;
36649             }
36650             return true;
36651         };
36652         startNode.cascade(f);
36653         if(this.remove){
36654            for(var id in af){
36655                if(typeof id != "function"){
36656                    var n = af[id];
36657                    if(n && n.parentNode){
36658                        n.parentNode.removeChild(n);
36659                    }
36660                }
36661            }
36662         }
36663     },
36664
36665     /**
36666      * Clears the current filter. Note: with the "remove" option
36667      * set a filter cannot be cleared.
36668      */
36669     clear : function(){
36670         var t = this.tree;
36671         var af = this.filtered;
36672         for(var id in af){
36673             if(typeof id != "function"){
36674                 var n = af[id];
36675                 if(n){
36676                     n.ui.show();
36677                 }
36678             }
36679         }
36680         this.filtered = {};
36681     }
36682 };
36683 /*
36684  * Based on:
36685  * Ext JS Library 1.1.1
36686  * Copyright(c) 2006-2007, Ext JS, LLC.
36687  *
36688  * Originally Released Under LGPL - original licence link has changed is not relivant.
36689  *
36690  * Fork - LGPL
36691  * <script type="text/javascript">
36692  */
36693  
36694
36695 /**
36696  * @class Roo.tree.TreeSorter
36697  * Provides sorting of nodes in a TreePanel
36698  * 
36699  * @cfg {Boolean} folderSort True to sort leaf nodes under non leaf nodes
36700  * @cfg {String} property The named attribute on the node to sort by (defaults to text)
36701  * @cfg {String} dir The direction to sort (asc or desc) (defaults to asc)
36702  * @cfg {String} leafAttr The attribute used to determine leaf nodes in folder sort (defaults to "leaf")
36703  * @cfg {Boolean} caseSensitive true for case sensitive sort (defaults to false)
36704  * @cfg {Function} sortType A custom "casting" function used to convert node values before sorting
36705  * @constructor
36706  * @param {TreePanel} tree
36707  * @param {Object} config
36708  */
36709 Roo.tree.TreeSorter = function(tree, config){
36710     Roo.apply(this, config);
36711     tree.on("beforechildrenrendered", this.doSort, this);
36712     tree.on("append", this.updateSort, this);
36713     tree.on("insert", this.updateSort, this);
36714     
36715     var dsc = this.dir && this.dir.toLowerCase() == "desc";
36716     var p = this.property || "text";
36717     var sortType = this.sortType;
36718     var fs = this.folderSort;
36719     var cs = this.caseSensitive === true;
36720     var leafAttr = this.leafAttr || 'leaf';
36721
36722     this.sortFn = function(n1, n2){
36723         if(fs){
36724             if(n1.attributes[leafAttr] && !n2.attributes[leafAttr]){
36725                 return 1;
36726             }
36727             if(!n1.attributes[leafAttr] && n2.attributes[leafAttr]){
36728                 return -1;
36729             }
36730         }
36731         var v1 = sortType ? sortType(n1) : (cs ? n1.attributes[p] : n1.attributes[p].toUpperCase());
36732         var v2 = sortType ? sortType(n2) : (cs ? n2.attributes[p] : n2.attributes[p].toUpperCase());
36733         if(v1 < v2){
36734                         return dsc ? +1 : -1;
36735                 }else if(v1 > v2){
36736                         return dsc ? -1 : +1;
36737         }else{
36738                 return 0;
36739         }
36740     };
36741 };
36742
36743 Roo.tree.TreeSorter.prototype = {
36744     doSort : function(node){
36745         node.sort(this.sortFn);
36746     },
36747     
36748     compareNodes : function(n1, n2){
36749         return (n1.text.toUpperCase() > n2.text.toUpperCase() ? 1 : -1);
36750     },
36751     
36752     updateSort : function(tree, node){
36753         if(node.childrenRendered){
36754             this.doSort.defer(1, this, [node]);
36755         }
36756     }
36757 };/*
36758  * Based on:
36759  * Ext JS Library 1.1.1
36760  * Copyright(c) 2006-2007, Ext JS, LLC.
36761  *
36762  * Originally Released Under LGPL - original licence link has changed is not relivant.
36763  *
36764  * Fork - LGPL
36765  * <script type="text/javascript">
36766  */
36767
36768 if(Roo.dd.DropZone){
36769     
36770 Roo.tree.TreeDropZone = function(tree, config){
36771     this.allowParentInsert = false;
36772     this.allowContainerDrop = false;
36773     this.appendOnly = false;
36774     Roo.tree.TreeDropZone.superclass.constructor.call(this, tree.innerCt, config);
36775     this.tree = tree;
36776     this.lastInsertClass = "x-tree-no-status";
36777     this.dragOverData = {};
36778 };
36779
36780 Roo.extend(Roo.tree.TreeDropZone, Roo.dd.DropZone, {
36781     ddGroup : "TreeDD",
36782     scroll:  true,
36783     
36784     expandDelay : 1000,
36785     
36786     expandNode : function(node){
36787         if(node.hasChildNodes() && !node.isExpanded()){
36788             node.expand(false, null, this.triggerCacheRefresh.createDelegate(this));
36789         }
36790     },
36791     
36792     queueExpand : function(node){
36793         this.expandProcId = this.expandNode.defer(this.expandDelay, this, [node]);
36794     },
36795     
36796     cancelExpand : function(){
36797         if(this.expandProcId){
36798             clearTimeout(this.expandProcId);
36799             this.expandProcId = false;
36800         }
36801     },
36802     
36803     isValidDropPoint : function(n, pt, dd, e, data){
36804         if(!n || !data){ return false; }
36805         var targetNode = n.node;
36806         var dropNode = data.node;
36807         // default drop rules
36808         if(!(targetNode && targetNode.isTarget && pt)){
36809             return false;
36810         }
36811         if(pt == "append" && targetNode.allowChildren === false){
36812             return false;
36813         }
36814         if((pt == "above" || pt == "below") && (targetNode.parentNode && targetNode.parentNode.allowChildren === false)){
36815             return false;
36816         }
36817         if(dropNode && (targetNode == dropNode || dropNode.contains(targetNode))){
36818             return false;
36819         }
36820         // reuse the object
36821         var overEvent = this.dragOverData;
36822         overEvent.tree = this.tree;
36823         overEvent.target = targetNode;
36824         overEvent.data = data;
36825         overEvent.point = pt;
36826         overEvent.source = dd;
36827         overEvent.rawEvent = e;
36828         overEvent.dropNode = dropNode;
36829         overEvent.cancel = false;  
36830         var result = this.tree.fireEvent("nodedragover", overEvent);
36831         return overEvent.cancel === false && result !== false;
36832     },
36833     
36834     getDropPoint : function(e, n, dd)
36835     {
36836         var tn = n.node;
36837         if(tn.isRoot){
36838             return tn.allowChildren !== false ? "append" : false; // always append for root
36839         }
36840         var dragEl = n.ddel;
36841         var t = Roo.lib.Dom.getY(dragEl), b = t + dragEl.offsetHeight;
36842         var y = Roo.lib.Event.getPageY(e);
36843         //var noAppend = tn.allowChildren === false || tn.isLeaf();
36844         
36845         // we may drop nodes anywhere, as long as allowChildren has not been set to false..
36846         var noAppend = tn.allowChildren === false;
36847         if(this.appendOnly || tn.parentNode.allowChildren === false){
36848             return noAppend ? false : "append";
36849         }
36850         var noBelow = false;
36851         if(!this.allowParentInsert){
36852             noBelow = tn.hasChildNodes() && tn.isExpanded();
36853         }
36854         var q = (b - t) / (noAppend ? 2 : 3);
36855         if(y >= t && y < (t + q)){
36856             return "above";
36857         }else if(!noBelow && (noAppend || y >= b-q && y <= b)){
36858             return "below";
36859         }else{
36860             return "append";
36861         }
36862     },
36863     
36864     onNodeEnter : function(n, dd, e, data)
36865     {
36866         this.cancelExpand();
36867     },
36868     
36869     onNodeOver : function(n, dd, e, data)
36870     {
36871        
36872         var pt = this.getDropPoint(e, n, dd);
36873         var node = n.node;
36874         
36875         // auto node expand check
36876         if(!this.expandProcId && pt == "append" && node.hasChildNodes() && !n.node.isExpanded()){
36877             this.queueExpand(node);
36878         }else if(pt != "append"){
36879             this.cancelExpand();
36880         }
36881         
36882         // set the insert point style on the target node
36883         var returnCls = this.dropNotAllowed;
36884         if(this.isValidDropPoint(n, pt, dd, e, data)){
36885            if(pt){
36886                var el = n.ddel;
36887                var cls;
36888                if(pt == "above"){
36889                    returnCls = n.node.isFirst() ? "x-tree-drop-ok-above" : "x-tree-drop-ok-between";
36890                    cls = "x-tree-drag-insert-above";
36891                }else if(pt == "below"){
36892                    returnCls = n.node.isLast() ? "x-tree-drop-ok-below" : "x-tree-drop-ok-between";
36893                    cls = "x-tree-drag-insert-below";
36894                }else{
36895                    returnCls = "x-tree-drop-ok-append";
36896                    cls = "x-tree-drag-append";
36897                }
36898                if(this.lastInsertClass != cls){
36899                    Roo.fly(el).replaceClass(this.lastInsertClass, cls);
36900                    this.lastInsertClass = cls;
36901                }
36902            }
36903        }
36904        return returnCls;
36905     },
36906     
36907     onNodeOut : function(n, dd, e, data){
36908         
36909         this.cancelExpand();
36910         this.removeDropIndicators(n);
36911     },
36912     
36913     onNodeDrop : function(n, dd, e, data){
36914         var point = this.getDropPoint(e, n, dd);
36915         var targetNode = n.node;
36916         targetNode.ui.startDrop();
36917         if(!this.isValidDropPoint(n, point, dd, e, data)){
36918             targetNode.ui.endDrop();
36919             return false;
36920         }
36921         // first try to find the drop node
36922         var dropNode = data.node || (dd.getTreeNode ? dd.getTreeNode(data, targetNode, point, e) : null);
36923         var dropEvent = {
36924             tree : this.tree,
36925             target: targetNode,
36926             data: data,
36927             point: point,
36928             source: dd,
36929             rawEvent: e,
36930             dropNode: dropNode,
36931             cancel: !dropNode   
36932         };
36933         var retval = this.tree.fireEvent("beforenodedrop", dropEvent);
36934         if(retval === false || dropEvent.cancel === true || !dropEvent.dropNode){
36935             targetNode.ui.endDrop();
36936             return false;
36937         }
36938         // allow target changing
36939         targetNode = dropEvent.target;
36940         if(point == "append" && !targetNode.isExpanded()){
36941             targetNode.expand(false, null, function(){
36942                 this.completeDrop(dropEvent);
36943             }.createDelegate(this));
36944         }else{
36945             this.completeDrop(dropEvent);
36946         }
36947         return true;
36948     },
36949     
36950     completeDrop : function(de){
36951         var ns = de.dropNode, p = de.point, t = de.target;
36952         if(!(ns instanceof Array)){
36953             ns = [ns];
36954         }
36955         var n;
36956         for(var i = 0, len = ns.length; i < len; i++){
36957             n = ns[i];
36958             if(p == "above"){
36959                 t.parentNode.insertBefore(n, t);
36960             }else if(p == "below"){
36961                 t.parentNode.insertBefore(n, t.nextSibling);
36962             }else{
36963                 t.appendChild(n);
36964             }
36965         }
36966         n.ui.focus();
36967         if(this.tree.hlDrop){
36968             n.ui.highlight();
36969         }
36970         t.ui.endDrop();
36971         this.tree.fireEvent("nodedrop", de);
36972     },
36973     
36974     afterNodeMoved : function(dd, data, e, targetNode, dropNode){
36975         if(this.tree.hlDrop){
36976             dropNode.ui.focus();
36977             dropNode.ui.highlight();
36978         }
36979         this.tree.fireEvent("nodedrop", this.tree, targetNode, data, dd, e);
36980     },
36981     
36982     getTree : function(){
36983         return this.tree;
36984     },
36985     
36986     removeDropIndicators : function(n){
36987         if(n && n.ddel){
36988             var el = n.ddel;
36989             Roo.fly(el).removeClass([
36990                     "x-tree-drag-insert-above",
36991                     "x-tree-drag-insert-below",
36992                     "x-tree-drag-append"]);
36993             this.lastInsertClass = "_noclass";
36994         }
36995     },
36996     
36997     beforeDragDrop : function(target, e, id){
36998         this.cancelExpand();
36999         return true;
37000     },
37001     
37002     afterRepair : function(data){
37003         if(data && Roo.enableFx){
37004             data.node.ui.highlight();
37005         }
37006         this.hideProxy();
37007     } 
37008     
37009 });
37010
37011 }
37012 /*
37013  * Based on:
37014  * Ext JS Library 1.1.1
37015  * Copyright(c) 2006-2007, Ext JS, LLC.
37016  *
37017  * Originally Released Under LGPL - original licence link has changed is not relivant.
37018  *
37019  * Fork - LGPL
37020  * <script type="text/javascript">
37021  */
37022  
37023
37024 if(Roo.dd.DragZone){
37025 Roo.tree.TreeDragZone = function(tree, config){
37026     Roo.tree.TreeDragZone.superclass.constructor.call(this, tree.getTreeEl(), config);
37027     this.tree = tree;
37028 };
37029
37030 Roo.extend(Roo.tree.TreeDragZone, Roo.dd.DragZone, {
37031     ddGroup : "TreeDD",
37032    
37033     onBeforeDrag : function(data, e){
37034         var n = data.node;
37035         return n && n.draggable && !n.disabled;
37036     },
37037      
37038     
37039     onInitDrag : function(e){
37040         var data = this.dragData;
37041         this.tree.getSelectionModel().select(data.node);
37042         this.proxy.update("");
37043         data.node.ui.appendDDGhost(this.proxy.ghost.dom);
37044         this.tree.fireEvent("startdrag", this.tree, data.node, e);
37045     },
37046     
37047     getRepairXY : function(e, data){
37048         return data.node.ui.getDDRepairXY();
37049     },
37050     
37051     onEndDrag : function(data, e){
37052         this.tree.fireEvent("enddrag", this.tree, data.node, e);
37053         
37054         
37055     },
37056     
37057     onValidDrop : function(dd, e, id){
37058         this.tree.fireEvent("dragdrop", this.tree, this.dragData.node, dd, e);
37059         this.hideProxy();
37060     },
37061     
37062     beforeInvalidDrop : function(e, id){
37063         // this scrolls the original position back into view
37064         var sm = this.tree.getSelectionModel();
37065         sm.clearSelections();
37066         sm.select(this.dragData.node);
37067     }
37068 });
37069 }/*
37070  * Based on:
37071  * Ext JS Library 1.1.1
37072  * Copyright(c) 2006-2007, Ext JS, LLC.
37073  *
37074  * Originally Released Under LGPL - original licence link has changed is not relivant.
37075  *
37076  * Fork - LGPL
37077  * <script type="text/javascript">
37078  */
37079 /**
37080  * @class Roo.tree.TreeEditor
37081  * @extends Roo.Editor
37082  * Provides editor functionality for inline tree node editing.  Any valid {@link Roo.form.Field} can be used
37083  * as the editor field.
37084  * @constructor
37085  * @param {Object} config (used to be the tree panel.)
37086  * @param {Object} oldconfig DEPRECIATED Either a prebuilt {@link Roo.form.Field} instance or a Field config object
37087  * 
37088  * @cfg {Roo.tree.TreePanel} tree The tree to bind to.
37089  * @cfg {Roo.form.TextField|Object} field The field configuration
37090  *
37091  * 
37092  */
37093 Roo.tree.TreeEditor = function(config, oldconfig) { // was -- (tree, config){
37094     var tree = config;
37095     var field;
37096     if (oldconfig) { // old style..
37097         field = oldconfig.events ? oldconfig : new Roo.form.TextField(oldconfig);
37098     } else {
37099         // new style..
37100         tree = config.tree;
37101         config.field = config.field  || {};
37102         config.field.xtype = 'TextField';
37103         field = Roo.factory(config.field, Roo.form);
37104     }
37105     config = config || {};
37106     
37107     
37108     this.addEvents({
37109         /**
37110          * @event beforenodeedit
37111          * Fires when editing is initiated, but before the value changes.  Editing can be canceled by returning
37112          * false from the handler of this event.
37113          * @param {Editor} this
37114          * @param {Roo.tree.Node} node 
37115          */
37116         "beforenodeedit" : true
37117     });
37118     
37119     //Roo.log(config);
37120     Roo.tree.TreeEditor.superclass.constructor.call(this, field, config);
37121
37122     this.tree = tree;
37123
37124     tree.on('beforeclick', this.beforeNodeClick, this);
37125     tree.getTreeEl().on('mousedown', this.hide, this);
37126     this.on('complete', this.updateNode, this);
37127     this.on('beforestartedit', this.fitToTree, this);
37128     this.on('startedit', this.bindScroll, this, {delay:10});
37129     this.on('specialkey', this.onSpecialKey, this);
37130 };
37131
37132 Roo.extend(Roo.tree.TreeEditor, Roo.Editor, {
37133     /**
37134      * @cfg {String} alignment
37135      * The position to align to (see {@link Roo.Element#alignTo} for more details, defaults to "l-l").
37136      */
37137     alignment: "l-l",
37138     // inherit
37139     autoSize: false,
37140     /**
37141      * @cfg {Boolean} hideEl
37142      * True to hide the bound element while the editor is displayed (defaults to false)
37143      */
37144     hideEl : false,
37145     /**
37146      * @cfg {String} cls
37147      * CSS class to apply to the editor (defaults to "x-small-editor x-tree-editor")
37148      */
37149     cls: "x-small-editor x-tree-editor",
37150     /**
37151      * @cfg {Boolean} shim
37152      * True to shim the editor if selects/iframes could be displayed beneath it (defaults to false)
37153      */
37154     shim:false,
37155     // inherit
37156     shadow:"frame",
37157     /**
37158      * @cfg {Number} maxWidth
37159      * The maximum width in pixels of the editor field (defaults to 250).  Note that if the maxWidth would exceed
37160      * the containing tree element's size, it will be automatically limited for you to the container width, taking
37161      * scroll and client offsets into account prior to each edit.
37162      */
37163     maxWidth: 250,
37164
37165     editDelay : 350,
37166
37167     // private
37168     fitToTree : function(ed, el){
37169         var td = this.tree.getTreeEl().dom, nd = el.dom;
37170         if(td.scrollLeft >  nd.offsetLeft){ // ensure the node left point is visible
37171             td.scrollLeft = nd.offsetLeft;
37172         }
37173         var w = Math.min(
37174                 this.maxWidth,
37175                 (td.clientWidth > 20 ? td.clientWidth : td.offsetWidth) - Math.max(0, nd.offsetLeft-td.scrollLeft) - /*cushion*/5);
37176         this.setSize(w, '');
37177         
37178         return this.fireEvent('beforenodeedit', this, this.editNode);
37179         
37180     },
37181
37182     // private
37183     triggerEdit : function(node){
37184         this.completeEdit();
37185         this.editNode = node;
37186         this.startEdit(node.ui.textNode, node.text);
37187     },
37188
37189     // private
37190     bindScroll : function(){
37191         this.tree.getTreeEl().on('scroll', this.cancelEdit, this);
37192     },
37193
37194     // private
37195     beforeNodeClick : function(node, e){
37196         var sinceLast = (this.lastClick ? this.lastClick.getElapsed() : 0);
37197         this.lastClick = new Date();
37198         if(sinceLast > this.editDelay && this.tree.getSelectionModel().isSelected(node)){
37199             e.stopEvent();
37200             this.triggerEdit(node);
37201             return false;
37202         }
37203         return true;
37204     },
37205
37206     // private
37207     updateNode : function(ed, value){
37208         this.tree.getTreeEl().un('scroll', this.cancelEdit, this);
37209         this.editNode.setText(value);
37210     },
37211
37212     // private
37213     onHide : function(){
37214         Roo.tree.TreeEditor.superclass.onHide.call(this);
37215         if(this.editNode){
37216             this.editNode.ui.focus();
37217         }
37218     },
37219
37220     // private
37221     onSpecialKey : function(field, e){
37222         var k = e.getKey();
37223         if(k == e.ESC){
37224             e.stopEvent();
37225             this.cancelEdit();
37226         }else if(k == e.ENTER && !e.hasModifier()){
37227             e.stopEvent();
37228             this.completeEdit();
37229         }
37230     }
37231 });//<Script type="text/javascript">
37232 /*
37233  * Based on:
37234  * Ext JS Library 1.1.1
37235  * Copyright(c) 2006-2007, Ext JS, LLC.
37236  *
37237  * Originally Released Under LGPL - original licence link has changed is not relivant.
37238  *
37239  * Fork - LGPL
37240  * <script type="text/javascript">
37241  */
37242  
37243 /**
37244  * Not documented??? - probably should be...
37245  */
37246
37247 Roo.tree.ColumnNodeUI = Roo.extend(Roo.tree.TreeNodeUI, {
37248     //focus: Roo.emptyFn, // prevent odd scrolling behavior
37249     
37250     renderElements : function(n, a, targetNode, bulkRender){
37251         //consel.log("renderElements?");
37252         this.indentMarkup = n.parentNode ? n.parentNode.ui.getChildIndent() : '';
37253
37254         var t = n.getOwnerTree();
37255         var tid = Pman.Tab.Document_TypesTree.tree.el.id;
37256         
37257         var cols = t.columns;
37258         var bw = t.borderWidth;
37259         var c = cols[0];
37260         var href = a.href ? a.href : Roo.isGecko ? "" : "#";
37261          var cb = typeof a.checked == "boolean";
37262         var tx = String.format('{0}',n.text || (c.renderer ? c.renderer(a[c.dataIndex], n, a) : a[c.dataIndex]));
37263         var colcls = 'x-t-' + tid + '-c0';
37264         var buf = [
37265             '<li class="x-tree-node">',
37266             
37267                 
37268                 '<div class="x-tree-node-el ', a.cls,'">',
37269                     // extran...
37270                     '<div class="x-tree-col ', colcls, '" style="width:', c.width-bw, 'px;">',
37271                 
37272                 
37273                         '<span class="x-tree-node-indent">',this.indentMarkup,'</span>',
37274                         '<img src="', this.emptyIcon, '" class="x-tree-ec-icon  " />',
37275                         '<img src="', a.icon || this.emptyIcon, '" class="x-tree-node-icon',
37276                            (a.icon ? ' x-tree-node-inline-icon' : ''),
37277                            (a.iconCls ? ' '+a.iconCls : ''),
37278                            '" unselectable="on" />',
37279                         (cb ? ('<input class="x-tree-node-cb" type="checkbox" ' + 
37280                              (a.checked ? 'checked="checked" />' : ' />')) : ''),
37281                              
37282                         '<a class="x-tree-node-anchor" hidefocus="on" href="',href,'" tabIndex="1" ',
37283                             (a.hrefTarget ? ' target="' +a.hrefTarget + '"' : ''), '>',
37284                             '<span unselectable="on" qtip="' + tx + '">',
37285                              tx,
37286                              '</span></a>' ,
37287                     '</div>',
37288                      '<a class="x-tree-node-anchor" hidefocus="on" href="',href,'" tabIndex="1" ',
37289                             (a.hrefTarget ? ' target="' +a.hrefTarget + '"' : ''), '>'
37290                  ];
37291         for(var i = 1, len = cols.length; i < len; i++){
37292             c = cols[i];
37293             colcls = 'x-t-' + tid + '-c' +i;
37294             tx = String.format('{0}', (c.renderer ? c.renderer(a[c.dataIndex], n, a) : a[c.dataIndex]));
37295             buf.push('<div class="x-tree-col ', colcls, ' ' ,(c.cls?c.cls:''),'" style="width:',c.width-bw,'px;">',
37296                         '<div class="x-tree-col-text" qtip="' + tx +'">',tx,"</div>",
37297                       "</div>");
37298          }
37299          
37300          buf.push(
37301             '</a>',
37302             '<div class="x-clear"></div></div>',
37303             '<ul class="x-tree-node-ct" style="display:none;"></ul>',
37304             "</li>");
37305         
37306         if(bulkRender !== true && n.nextSibling && n.nextSibling.ui.getEl()){
37307             this.wrap = Roo.DomHelper.insertHtml("beforeBegin",
37308                                 n.nextSibling.ui.getEl(), buf.join(""));
37309         }else{
37310             this.wrap = Roo.DomHelper.insertHtml("beforeEnd", targetNode, buf.join(""));
37311         }
37312         var el = this.wrap.firstChild;
37313         this.elRow = el;
37314         this.elNode = el.firstChild;
37315         this.ranchor = el.childNodes[1];
37316         this.ctNode = this.wrap.childNodes[1];
37317         var cs = el.firstChild.childNodes;
37318         this.indentNode = cs[0];
37319         this.ecNode = cs[1];
37320         this.iconNode = cs[2];
37321         var index = 3;
37322         if(cb){
37323             this.checkbox = cs[3];
37324             index++;
37325         }
37326         this.anchor = cs[index];
37327         
37328         this.textNode = cs[index].firstChild;
37329         
37330         //el.on("click", this.onClick, this);
37331         //el.on("dblclick", this.onDblClick, this);
37332         
37333         
37334        // console.log(this);
37335     },
37336     initEvents : function(){
37337         Roo.tree.ColumnNodeUI.superclass.initEvents.call(this);
37338         
37339             
37340         var a = this.ranchor;
37341
37342         var el = Roo.get(a);
37343
37344         if(Roo.isOpera){ // opera render bug ignores the CSS
37345             el.setStyle("text-decoration", "none");
37346         }
37347
37348         el.on("click", this.onClick, this);
37349         el.on("dblclick", this.onDblClick, this);
37350         el.on("contextmenu", this.onContextMenu, this);
37351         
37352     },
37353     
37354     /*onSelectedChange : function(state){
37355         if(state){
37356             this.focus();
37357             this.addClass("x-tree-selected");
37358         }else{
37359             //this.blur();
37360             this.removeClass("x-tree-selected");
37361         }
37362     },*/
37363     addClass : function(cls){
37364         if(this.elRow){
37365             Roo.fly(this.elRow).addClass(cls);
37366         }
37367         
37368     },
37369     
37370     
37371     removeClass : function(cls){
37372         if(this.elRow){
37373             Roo.fly(this.elRow).removeClass(cls);
37374         }
37375     }
37376
37377     
37378     
37379 });//<Script type="text/javascript">
37380
37381 /*
37382  * Based on:
37383  * Ext JS Library 1.1.1
37384  * Copyright(c) 2006-2007, Ext JS, LLC.
37385  *
37386  * Originally Released Under LGPL - original licence link has changed is not relivant.
37387  *
37388  * Fork - LGPL
37389  * <script type="text/javascript">
37390  */
37391  
37392
37393 /**
37394  * @class Roo.tree.ColumnTree
37395  * @extends Roo.data.TreePanel
37396  * @cfg {Object} columns  Including width, header, renderer, cls, dataIndex 
37397  * @cfg {int} borderWidth  compined right/left border allowance
37398  * @constructor
37399  * @param {String/HTMLElement/Element} el The container element
37400  * @param {Object} config
37401  */
37402 Roo.tree.ColumnTree =  function(el, config)
37403 {
37404    Roo.tree.ColumnTree.superclass.constructor.call(this, el , config);
37405    this.addEvents({
37406         /**
37407         * @event resize
37408         * Fire this event on a container when it resizes
37409         * @param {int} w Width
37410         * @param {int} h Height
37411         */
37412        "resize" : true
37413     });
37414     this.on('resize', this.onResize, this);
37415 };
37416
37417 Roo.extend(Roo.tree.ColumnTree, Roo.tree.TreePanel, {
37418     //lines:false,
37419     
37420     
37421     borderWidth: Roo.isBorderBox ? 0 : 2, 
37422     headEls : false,
37423     
37424     render : function(){
37425         // add the header.....
37426        
37427         Roo.tree.ColumnTree.superclass.render.apply(this);
37428         
37429         this.el.addClass('x-column-tree');
37430         
37431         this.headers = this.el.createChild(
37432             {cls:'x-tree-headers'},this.innerCt.dom);
37433    
37434         var cols = this.columns, c;
37435         var totalWidth = 0;
37436         this.headEls = [];
37437         var  len = cols.length;
37438         for(var i = 0; i < len; i++){
37439              c = cols[i];
37440              totalWidth += c.width;
37441             this.headEls.push(this.headers.createChild({
37442                  cls:'x-tree-hd ' + (c.cls?c.cls+'-hd':''),
37443                  cn: {
37444                      cls:'x-tree-hd-text',
37445                      html: c.header
37446                  },
37447                  style:'width:'+(c.width-this.borderWidth)+'px;'
37448              }));
37449         }
37450         this.headers.createChild({cls:'x-clear'});
37451         // prevent floats from wrapping when clipped
37452         this.headers.setWidth(totalWidth);
37453         //this.innerCt.setWidth(totalWidth);
37454         this.innerCt.setStyle({ overflow: 'auto' });
37455         this.onResize(this.width, this.height);
37456              
37457         
37458     },
37459     onResize : function(w,h)
37460     {
37461         this.height = h;
37462         this.width = w;
37463         // resize cols..
37464         this.innerCt.setWidth(this.width);
37465         this.innerCt.setHeight(this.height-20);
37466         
37467         // headers...
37468         var cols = this.columns, c;
37469         var totalWidth = 0;
37470         var expEl = false;
37471         var len = cols.length;
37472         for(var i = 0; i < len; i++){
37473             c = cols[i];
37474             if (this.autoExpandColumn !== false && c.dataIndex == this.autoExpandColumn) {
37475                 // it's the expander..
37476                 expEl  = this.headEls[i];
37477                 continue;
37478             }
37479             totalWidth += c.width;
37480             
37481         }
37482         if (expEl) {
37483             expEl.setWidth(  ((w - totalWidth)-this.borderWidth - 20));
37484         }
37485         this.headers.setWidth(w-20);
37486
37487         
37488         
37489         
37490     }
37491 });
37492 /*
37493  * Based on:
37494  * Ext JS Library 1.1.1
37495  * Copyright(c) 2006-2007, Ext JS, LLC.
37496  *
37497  * Originally Released Under LGPL - original licence link has changed is not relivant.
37498  *
37499  * Fork - LGPL
37500  * <script type="text/javascript">
37501  */
37502  
37503 /**
37504  * @class Roo.menu.Menu
37505  * @extends Roo.util.Observable
37506  * A menu object.  This is the container to which you add all other menu items.  Menu can also serve a as a base class
37507  * when you want a specialzed menu based off of another component (like {@link Roo.menu.DateMenu} for example).
37508  * @constructor
37509  * Creates a new Menu
37510  * @param {Object} config Configuration options
37511  */
37512 Roo.menu.Menu = function(config){
37513     
37514     Roo.menu.Menu.superclass.constructor.call(this, config);
37515     
37516     this.id = this.id || Roo.id();
37517     this.addEvents({
37518         /**
37519          * @event beforeshow
37520          * Fires before this menu is displayed
37521          * @param {Roo.menu.Menu} this
37522          */
37523         beforeshow : true,
37524         /**
37525          * @event beforehide
37526          * Fires before this menu is hidden
37527          * @param {Roo.menu.Menu} this
37528          */
37529         beforehide : true,
37530         /**
37531          * @event show
37532          * Fires after this menu is displayed
37533          * @param {Roo.menu.Menu} this
37534          */
37535         show : true,
37536         /**
37537          * @event hide
37538          * Fires after this menu is hidden
37539          * @param {Roo.menu.Menu} this
37540          */
37541         hide : true,
37542         /**
37543          * @event click
37544          * Fires when this menu is clicked (or when the enter key is pressed while it is active)
37545          * @param {Roo.menu.Menu} this
37546          * @param {Roo.menu.Item} menuItem The menu item that was clicked
37547          * @param {Roo.EventObject} e
37548          */
37549         click : true,
37550         /**
37551          * @event mouseover
37552          * Fires when the mouse is hovering over this menu
37553          * @param {Roo.menu.Menu} this
37554          * @param {Roo.EventObject} e
37555          * @param {Roo.menu.Item} menuItem The menu item that was clicked
37556          */
37557         mouseover : true,
37558         /**
37559          * @event mouseout
37560          * Fires when the mouse exits this menu
37561          * @param {Roo.menu.Menu} this
37562          * @param {Roo.EventObject} e
37563          * @param {Roo.menu.Item} menuItem The menu item that was clicked
37564          */
37565         mouseout : true,
37566         /**
37567          * @event itemclick
37568          * Fires when a menu item contained in this menu is clicked
37569          * @param {Roo.menu.BaseItem} baseItem The BaseItem that was clicked
37570          * @param {Roo.EventObject} e
37571          */
37572         itemclick: true
37573     });
37574     if (this.registerMenu) {
37575         Roo.menu.MenuMgr.register(this);
37576     }
37577     
37578     var mis = this.items;
37579     this.items = new Roo.util.MixedCollection();
37580     if(mis){
37581         this.add.apply(this, mis);
37582     }
37583 };
37584
37585 Roo.extend(Roo.menu.Menu, Roo.util.Observable, {
37586     /**
37587      * @cfg {Number} minWidth The minimum width of the menu in pixels (defaults to 120)
37588      */
37589     minWidth : 120,
37590     /**
37591      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop"
37592      * for bottom-right shadow (defaults to "sides")
37593      */
37594     shadow : "sides",
37595     /**
37596      * @cfg {String} subMenuAlign The {@link Roo.Element#alignTo} anchor position value to use for submenus of
37597      * this menu (defaults to "tl-tr?")
37598      */
37599     subMenuAlign : "tl-tr?",
37600     /**
37601      * @cfg {String} defaultAlign The default {@link Roo.Element#alignTo) anchor position value for this menu
37602      * relative to its element of origin (defaults to "tl-bl?")
37603      */
37604     defaultAlign : "tl-bl?",
37605     /**
37606      * @cfg {Boolean} allowOtherMenus True to allow multiple menus to be displayed at the same time (defaults to false)
37607      */
37608     allowOtherMenus : false,
37609     /**
37610      * @cfg {Boolean} registerMenu True (default) - means that clicking on screen etc. hides it.
37611      */
37612     registerMenu : true,
37613
37614     hidden:true,
37615
37616     // private
37617     render : function(){
37618         if(this.el){
37619             return;
37620         }
37621         var el = this.el = new Roo.Layer({
37622             cls: "x-menu",
37623             shadow:this.shadow,
37624             constrain: false,
37625             parentEl: this.parentEl || document.body,
37626             zindex:15000
37627         });
37628
37629         this.keyNav = new Roo.menu.MenuNav(this);
37630
37631         if(this.plain){
37632             el.addClass("x-menu-plain");
37633         }
37634         if(this.cls){
37635             el.addClass(this.cls);
37636         }
37637         // generic focus element
37638         this.focusEl = el.createChild({
37639             tag: "a", cls: "x-menu-focus", href: "#", onclick: "return false;", tabIndex:"-1"
37640         });
37641         var ul = el.createChild({tag: "ul", cls: "x-menu-list"});
37642         //disabling touch- as it's causing issues ..
37643         //ul.on(Roo.isTouch ? 'touchstart' : 'click'   , this.onClick, this);
37644         ul.on('click'   , this.onClick, this);
37645         
37646         
37647         ul.on("mouseover", this.onMouseOver, this);
37648         ul.on("mouseout", this.onMouseOut, this);
37649         this.items.each(function(item){
37650             if (item.hidden) {
37651                 return;
37652             }
37653             
37654             var li = document.createElement("li");
37655             li.className = "x-menu-list-item";
37656             ul.dom.appendChild(li);
37657             item.render(li, this);
37658         }, this);
37659         this.ul = ul;
37660         this.autoWidth();
37661     },
37662
37663     // private
37664     autoWidth : function(){
37665         var el = this.el, ul = this.ul;
37666         if(!el){
37667             return;
37668         }
37669         var w = this.width;
37670         if(w){
37671             el.setWidth(w);
37672         }else if(Roo.isIE){
37673             el.setWidth(this.minWidth);
37674             var t = el.dom.offsetWidth; // force recalc
37675             el.setWidth(ul.getWidth()+el.getFrameWidth("lr"));
37676         }
37677     },
37678
37679     // private
37680     delayAutoWidth : function(){
37681         if(this.rendered){
37682             if(!this.awTask){
37683                 this.awTask = new Roo.util.DelayedTask(this.autoWidth, this);
37684             }
37685             this.awTask.delay(20);
37686         }
37687     },
37688
37689     // private
37690     findTargetItem : function(e){
37691         var t = e.getTarget(".x-menu-list-item", this.ul,  true);
37692         if(t && t.menuItemId){
37693             return this.items.get(t.menuItemId);
37694         }
37695     },
37696
37697     // private
37698     onClick : function(e){
37699         Roo.log("menu.onClick");
37700         var t = this.findTargetItem(e);
37701         if(!t){
37702             return;
37703         }
37704         Roo.log(e);
37705         if (Roo.isTouch && e.type == 'touchstart' && t.menu  && !t.disabled) {
37706             if(t == this.activeItem && t.shouldDeactivate(e)){
37707                 this.activeItem.deactivate();
37708                 delete this.activeItem;
37709                 return;
37710             }
37711             if(t.canActivate){
37712                 this.setActiveItem(t, true);
37713             }
37714             return;
37715             
37716             
37717         }
37718         
37719         t.onClick(e);
37720         this.fireEvent("click", this, t, e);
37721     },
37722
37723     // private
37724     setActiveItem : function(item, autoExpand){
37725         if(item != this.activeItem){
37726             if(this.activeItem){
37727                 this.activeItem.deactivate();
37728             }
37729             this.activeItem = item;
37730             item.activate(autoExpand);
37731         }else if(autoExpand){
37732             item.expandMenu();
37733         }
37734     },
37735
37736     // private
37737     tryActivate : function(start, step){
37738         var items = this.items;
37739         for(var i = start, len = items.length; i >= 0 && i < len; i+= step){
37740             var item = items.get(i);
37741             if(!item.disabled && item.canActivate){
37742                 this.setActiveItem(item, false);
37743                 return item;
37744             }
37745         }
37746         return false;
37747     },
37748
37749     // private
37750     onMouseOver : function(e){
37751         var t;
37752         if(t = this.findTargetItem(e)){
37753             if(t.canActivate && !t.disabled){
37754                 this.setActiveItem(t, true);
37755             }
37756         }
37757         this.fireEvent("mouseover", this, e, t);
37758     },
37759
37760     // private
37761     onMouseOut : function(e){
37762         var t;
37763         if(t = this.findTargetItem(e)){
37764             if(t == this.activeItem && t.shouldDeactivate(e)){
37765                 this.activeItem.deactivate();
37766                 delete this.activeItem;
37767             }
37768         }
37769         this.fireEvent("mouseout", this, e, t);
37770     },
37771
37772     /**
37773      * Read-only.  Returns true if the menu is currently displayed, else false.
37774      * @type Boolean
37775      */
37776     isVisible : function(){
37777         return this.el && !this.hidden;
37778     },
37779
37780     /**
37781      * Displays this menu relative to another element
37782      * @param {String/HTMLElement/Roo.Element} element The element to align to
37783      * @param {String} position (optional) The {@link Roo.Element#alignTo} anchor position to use in aligning to
37784      * the element (defaults to this.defaultAlign)
37785      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
37786      */
37787     show : function(el, pos, parentMenu){
37788         this.parentMenu = parentMenu;
37789         if(!this.el){
37790             this.render();
37791         }
37792         this.fireEvent("beforeshow", this);
37793         this.showAt(this.el.getAlignToXY(el, pos || this.defaultAlign), parentMenu, false);
37794     },
37795
37796     /**
37797      * Displays this menu at a specific xy position
37798      * @param {Array} xyPosition Contains X & Y [x, y] values for the position at which to show the menu (coordinates are page-based)
37799      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
37800      */
37801     showAt : function(xy, parentMenu, /* private: */_e){
37802         this.parentMenu = parentMenu;
37803         if(!this.el){
37804             this.render();
37805         }
37806         if(_e !== false){
37807             this.fireEvent("beforeshow", this);
37808             xy = this.el.adjustForConstraints(xy);
37809         }
37810         this.el.setXY(xy);
37811         this.el.show();
37812         this.hidden = false;
37813         this.focus();
37814         this.fireEvent("show", this);
37815     },
37816
37817     focus : function(){
37818         if(!this.hidden){
37819             this.doFocus.defer(50, this);
37820         }
37821     },
37822
37823     doFocus : function(){
37824         if(!this.hidden){
37825             this.focusEl.focus();
37826         }
37827     },
37828
37829     /**
37830      * Hides this menu and optionally all parent menus
37831      * @param {Boolean} deep (optional) True to hide all parent menus recursively, if any (defaults to false)
37832      */
37833     hide : function(deep){
37834         if(this.el && this.isVisible()){
37835             this.fireEvent("beforehide", this);
37836             if(this.activeItem){
37837                 this.activeItem.deactivate();
37838                 this.activeItem = null;
37839             }
37840             this.el.hide();
37841             this.hidden = true;
37842             this.fireEvent("hide", this);
37843         }
37844         if(deep === true && this.parentMenu){
37845             this.parentMenu.hide(true);
37846         }
37847     },
37848
37849     /**
37850      * Addds one or more items of any type supported by the Menu class, or that can be converted into menu items.
37851      * Any of the following are valid:
37852      * <ul>
37853      * <li>Any menu item object based on {@link Roo.menu.Item}</li>
37854      * <li>An HTMLElement object which will be converted to a menu item</li>
37855      * <li>A menu item config object that will be created as a new menu item</li>
37856      * <li>A string, which can either be '-' or 'separator' to add a menu separator, otherwise
37857      * it will be converted into a {@link Roo.menu.TextItem} and added</li>
37858      * </ul>
37859      * Usage:
37860      * <pre><code>
37861 // Create the menu
37862 var menu = new Roo.menu.Menu();
37863
37864 // Create a menu item to add by reference
37865 var menuItem = new Roo.menu.Item({ text: 'New Item!' });
37866
37867 // Add a bunch of items at once using different methods.
37868 // Only the last item added will be returned.
37869 var item = menu.add(
37870     menuItem,                // add existing item by ref
37871     'Dynamic Item',          // new TextItem
37872     '-',                     // new separator
37873     { text: 'Config Item' }  // new item by config
37874 );
37875 </code></pre>
37876      * @param {Mixed} args One or more menu items, menu item configs or other objects that can be converted to menu items
37877      * @return {Roo.menu.Item} The menu item that was added, or the last one if multiple items were added
37878      */
37879     add : function(){
37880         var a = arguments, l = a.length, item;
37881         for(var i = 0; i < l; i++){
37882             var el = a[i];
37883             if ((typeof(el) == "object") && el.xtype && el.xns) {
37884                 el = Roo.factory(el, Roo.menu);
37885             }
37886             
37887             if(el.render){ // some kind of Item
37888                 item = this.addItem(el);
37889             }else if(typeof el == "string"){ // string
37890                 if(el == "separator" || el == "-"){
37891                     item = this.addSeparator();
37892                 }else{
37893                     item = this.addText(el);
37894                 }
37895             }else if(el.tagName || el.el){ // element
37896                 item = this.addElement(el);
37897             }else if(typeof el == "object"){ // must be menu item config?
37898                 item = this.addMenuItem(el);
37899             }
37900         }
37901         return item;
37902     },
37903
37904     /**
37905      * Returns this menu's underlying {@link Roo.Element} object
37906      * @return {Roo.Element} The element
37907      */
37908     getEl : function(){
37909         if(!this.el){
37910             this.render();
37911         }
37912         return this.el;
37913     },
37914
37915     /**
37916      * Adds a separator bar to the menu
37917      * @return {Roo.menu.Item} The menu item that was added
37918      */
37919     addSeparator : function(){
37920         return this.addItem(new Roo.menu.Separator());
37921     },
37922
37923     /**
37924      * Adds an {@link Roo.Element} object to the menu
37925      * @param {String/HTMLElement/Roo.Element} el The element or DOM node to add, or its id
37926      * @return {Roo.menu.Item} The menu item that was added
37927      */
37928     addElement : function(el){
37929         return this.addItem(new Roo.menu.BaseItem(el));
37930     },
37931
37932     /**
37933      * Adds an existing object based on {@link Roo.menu.Item} to the menu
37934      * @param {Roo.menu.Item} item The menu item to add
37935      * @return {Roo.menu.Item} The menu item that was added
37936      */
37937     addItem : function(item){
37938         this.items.add(item);
37939         if(this.ul){
37940             var li = document.createElement("li");
37941             li.className = "x-menu-list-item";
37942             this.ul.dom.appendChild(li);
37943             item.render(li, this);
37944             this.delayAutoWidth();
37945         }
37946         return item;
37947     },
37948
37949     /**
37950      * Creates a new {@link Roo.menu.Item} based an the supplied config object and adds it to the menu
37951      * @param {Object} config A MenuItem config object
37952      * @return {Roo.menu.Item} The menu item that was added
37953      */
37954     addMenuItem : function(config){
37955         if(!(config instanceof Roo.menu.Item)){
37956             if(typeof config.checked == "boolean"){ // must be check menu item config?
37957                 config = new Roo.menu.CheckItem(config);
37958             }else{
37959                 config = new Roo.menu.Item(config);
37960             }
37961         }
37962         return this.addItem(config);
37963     },
37964
37965     /**
37966      * Creates a new {@link Roo.menu.TextItem} with the supplied text and adds it to the menu
37967      * @param {String} text The text to display in the menu item
37968      * @return {Roo.menu.Item} The menu item that was added
37969      */
37970     addText : function(text){
37971         return this.addItem(new Roo.menu.TextItem({ text : text }));
37972     },
37973
37974     /**
37975      * Inserts an existing object based on {@link Roo.menu.Item} to the menu at a specified index
37976      * @param {Number} index The index in the menu's list of current items where the new item should be inserted
37977      * @param {Roo.menu.Item} item The menu item to add
37978      * @return {Roo.menu.Item} The menu item that was added
37979      */
37980     insert : function(index, item){
37981         this.items.insert(index, item);
37982         if(this.ul){
37983             var li = document.createElement("li");
37984             li.className = "x-menu-list-item";
37985             this.ul.dom.insertBefore(li, this.ul.dom.childNodes[index]);
37986             item.render(li, this);
37987             this.delayAutoWidth();
37988         }
37989         return item;
37990     },
37991
37992     /**
37993      * Removes an {@link Roo.menu.Item} from the menu and destroys the object
37994      * @param {Roo.menu.Item} item The menu item to remove
37995      */
37996     remove : function(item){
37997         this.items.removeKey(item.id);
37998         item.destroy();
37999     },
38000
38001     /**
38002      * Removes and destroys all items in the menu
38003      */
38004     removeAll : function(){
38005         var f;
38006         while(f = this.items.first()){
38007             this.remove(f);
38008         }
38009     }
38010 });
38011
38012 // MenuNav is a private utility class used internally by the Menu
38013 Roo.menu.MenuNav = function(menu){
38014     Roo.menu.MenuNav.superclass.constructor.call(this, menu.el);
38015     this.scope = this.menu = menu;
38016 };
38017
38018 Roo.extend(Roo.menu.MenuNav, Roo.KeyNav, {
38019     doRelay : function(e, h){
38020         var k = e.getKey();
38021         if(!this.menu.activeItem && e.isNavKeyPress() && k != e.SPACE && k != e.RETURN){
38022             this.menu.tryActivate(0, 1);
38023             return false;
38024         }
38025         return h.call(this.scope || this, e, this.menu);
38026     },
38027
38028     up : function(e, m){
38029         if(!m.tryActivate(m.items.indexOf(m.activeItem)-1, -1)){
38030             m.tryActivate(m.items.length-1, -1);
38031         }
38032     },
38033
38034     down : function(e, m){
38035         if(!m.tryActivate(m.items.indexOf(m.activeItem)+1, 1)){
38036             m.tryActivate(0, 1);
38037         }
38038     },
38039
38040     right : function(e, m){
38041         if(m.activeItem){
38042             m.activeItem.expandMenu(true);
38043         }
38044     },
38045
38046     left : function(e, m){
38047         m.hide();
38048         if(m.parentMenu && m.parentMenu.activeItem){
38049             m.parentMenu.activeItem.activate();
38050         }
38051     },
38052
38053     enter : function(e, m){
38054         if(m.activeItem){
38055             e.stopPropagation();
38056             m.activeItem.onClick(e);
38057             m.fireEvent("click", this, m.activeItem);
38058             return true;
38059         }
38060     }
38061 });/*
38062  * Based on:
38063  * Ext JS Library 1.1.1
38064  * Copyright(c) 2006-2007, Ext JS, LLC.
38065  *
38066  * Originally Released Under LGPL - original licence link has changed is not relivant.
38067  *
38068  * Fork - LGPL
38069  * <script type="text/javascript">
38070  */
38071  
38072 /**
38073  * @class Roo.menu.MenuMgr
38074  * Provides a common registry of all menu items on a page so that they can be easily accessed by id.
38075  * @singleton
38076  */
38077 Roo.menu.MenuMgr = function(){
38078    var menus, active, groups = {}, attached = false, lastShow = new Date();
38079
38080    // private - called when first menu is created
38081    function init(){
38082        menus = {};
38083        active = new Roo.util.MixedCollection();
38084        Roo.get(document).addKeyListener(27, function(){
38085            if(active.length > 0){
38086                hideAll();
38087            }
38088        });
38089    }
38090
38091    // private
38092    function hideAll(){
38093        if(active && active.length > 0){
38094            var c = active.clone();
38095            c.each(function(m){
38096                m.hide();
38097            });
38098        }
38099    }
38100
38101    // private
38102    function onHide(m){
38103        active.remove(m);
38104        if(active.length < 1){
38105            Roo.get(document).un("mousedown", onMouseDown);
38106            attached = false;
38107        }
38108    }
38109
38110    // private
38111    function onShow(m){
38112        var last = active.last();
38113        lastShow = new Date();
38114        active.add(m);
38115        if(!attached){
38116            Roo.get(document).on("mousedown", onMouseDown);
38117            attached = true;
38118        }
38119        if(m.parentMenu){
38120           m.getEl().setZIndex(parseInt(m.parentMenu.getEl().getStyle("z-index"), 10) + 3);
38121           m.parentMenu.activeChild = m;
38122        }else if(last && last.isVisible()){
38123           m.getEl().setZIndex(parseInt(last.getEl().getStyle("z-index"), 10) + 3);
38124        }
38125    }
38126
38127    // private
38128    function onBeforeHide(m){
38129        if(m.activeChild){
38130            m.activeChild.hide();
38131        }
38132        if(m.autoHideTimer){
38133            clearTimeout(m.autoHideTimer);
38134            delete m.autoHideTimer;
38135        }
38136    }
38137
38138    // private
38139    function onBeforeShow(m){
38140        var pm = m.parentMenu;
38141        if(!pm && !m.allowOtherMenus){
38142            hideAll();
38143        }else if(pm && pm.activeChild && active != m){
38144            pm.activeChild.hide();
38145        }
38146    }
38147
38148    // private
38149    function onMouseDown(e){
38150        if(lastShow.getElapsed() > 50 && active.length > 0 && !e.getTarget(".x-menu")){
38151            hideAll();
38152        }
38153    }
38154
38155    // private
38156    function onBeforeCheck(mi, state){
38157        if(state){
38158            var g = groups[mi.group];
38159            for(var i = 0, l = g.length; i < l; i++){
38160                if(g[i] != mi){
38161                    g[i].setChecked(false);
38162                }
38163            }
38164        }
38165    }
38166
38167    return {
38168
38169        /**
38170         * Hides all menus that are currently visible
38171         */
38172        hideAll : function(){
38173             hideAll();  
38174        },
38175
38176        // private
38177        register : function(menu){
38178            if(!menus){
38179                init();
38180            }
38181            menus[menu.id] = menu;
38182            menu.on("beforehide", onBeforeHide);
38183            menu.on("hide", onHide);
38184            menu.on("beforeshow", onBeforeShow);
38185            menu.on("show", onShow);
38186            var g = menu.group;
38187            if(g && menu.events["checkchange"]){
38188                if(!groups[g]){
38189                    groups[g] = [];
38190                }
38191                groups[g].push(menu);
38192                menu.on("checkchange", onCheck);
38193            }
38194        },
38195
38196         /**
38197          * Returns a {@link Roo.menu.Menu} object
38198          * @param {String/Object} menu The string menu id, an existing menu object reference, or a Menu config that will
38199          * be used to generate and return a new Menu instance.
38200          */
38201        get : function(menu){
38202            if(typeof menu == "string"){ // menu id
38203                return menus[menu];
38204            }else if(menu.events){  // menu instance
38205                return menu;
38206            }else if(typeof menu.length == 'number'){ // array of menu items?
38207                return new Roo.menu.Menu({items:menu});
38208            }else{ // otherwise, must be a config
38209                return new Roo.menu.Menu(menu);
38210            }
38211        },
38212
38213        // private
38214        unregister : function(menu){
38215            delete menus[menu.id];
38216            menu.un("beforehide", onBeforeHide);
38217            menu.un("hide", onHide);
38218            menu.un("beforeshow", onBeforeShow);
38219            menu.un("show", onShow);
38220            var g = menu.group;
38221            if(g && menu.events["checkchange"]){
38222                groups[g].remove(menu);
38223                menu.un("checkchange", onCheck);
38224            }
38225        },
38226
38227        // private
38228        registerCheckable : function(menuItem){
38229            var g = menuItem.group;
38230            if(g){
38231                if(!groups[g]){
38232                    groups[g] = [];
38233                }
38234                groups[g].push(menuItem);
38235                menuItem.on("beforecheckchange", onBeforeCheck);
38236            }
38237        },
38238
38239        // private
38240        unregisterCheckable : function(menuItem){
38241            var g = menuItem.group;
38242            if(g){
38243                groups[g].remove(menuItem);
38244                menuItem.un("beforecheckchange", onBeforeCheck);
38245            }
38246        }
38247    };
38248 }();/*
38249  * Based on:
38250  * Ext JS Library 1.1.1
38251  * Copyright(c) 2006-2007, Ext JS, LLC.
38252  *
38253  * Originally Released Under LGPL - original licence link has changed is not relivant.
38254  *
38255  * Fork - LGPL
38256  * <script type="text/javascript">
38257  */
38258  
38259
38260 /**
38261  * @class Roo.menu.BaseItem
38262  * @extends Roo.Component
38263  * The base class for all items that render into menus.  BaseItem provides default rendering, activated state
38264  * management and base configuration options shared by all menu components.
38265  * @constructor
38266  * Creates a new BaseItem
38267  * @param {Object} config Configuration options
38268  */
38269 Roo.menu.BaseItem = function(config){
38270     Roo.menu.BaseItem.superclass.constructor.call(this, config);
38271
38272     this.addEvents({
38273         /**
38274          * @event click
38275          * Fires when this item is clicked
38276          * @param {Roo.menu.BaseItem} this
38277          * @param {Roo.EventObject} e
38278          */
38279         click: true,
38280         /**
38281          * @event activate
38282          * Fires when this item is activated
38283          * @param {Roo.menu.BaseItem} this
38284          */
38285         activate : true,
38286         /**
38287          * @event deactivate
38288          * Fires when this item is deactivated
38289          * @param {Roo.menu.BaseItem} this
38290          */
38291         deactivate : true
38292     });
38293
38294     if(this.handler){
38295         this.on("click", this.handler, this.scope, true);
38296     }
38297 };
38298
38299 Roo.extend(Roo.menu.BaseItem, Roo.Component, {
38300     /**
38301      * @cfg {Function} handler
38302      * A function that will handle the click event of this menu item (defaults to undefined)
38303      */
38304     /**
38305      * @cfg {Boolean} canActivate True if this item can be visually activated (defaults to false)
38306      */
38307     canActivate : false,
38308     
38309      /**
38310      * @cfg {Boolean} hidden True to prevent creation of this menu item (defaults to false)
38311      */
38312     hidden: false,
38313     
38314     /**
38315      * @cfg {String} activeClass The CSS class to use when the item becomes activated (defaults to "x-menu-item-active")
38316      */
38317     activeClass : "x-menu-item-active",
38318     /**
38319      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to true)
38320      */
38321     hideOnClick : true,
38322     /**
38323      * @cfg {Number} hideDelay Length of time in milliseconds to wait before hiding after a click (defaults to 100)
38324      */
38325     hideDelay : 100,
38326
38327     // private
38328     ctype: "Roo.menu.BaseItem",
38329
38330     // private
38331     actionMode : "container",
38332
38333     // private
38334     render : function(container, parentMenu){
38335         this.parentMenu = parentMenu;
38336         Roo.menu.BaseItem.superclass.render.call(this, container);
38337         this.container.menuItemId = this.id;
38338     },
38339
38340     // private
38341     onRender : function(container, position){
38342         this.el = Roo.get(this.el);
38343         container.dom.appendChild(this.el.dom);
38344     },
38345
38346     // private
38347     onClick : function(e){
38348         if(!this.disabled && this.fireEvent("click", this, e) !== false
38349                 && this.parentMenu.fireEvent("itemclick", this, e) !== false){
38350             this.handleClick(e);
38351         }else{
38352             e.stopEvent();
38353         }
38354     },
38355
38356     // private
38357     activate : function(){
38358         if(this.disabled){
38359             return false;
38360         }
38361         var li = this.container;
38362         li.addClass(this.activeClass);
38363         this.region = li.getRegion().adjust(2, 2, -2, -2);
38364         this.fireEvent("activate", this);
38365         return true;
38366     },
38367
38368     // private
38369     deactivate : function(){
38370         this.container.removeClass(this.activeClass);
38371         this.fireEvent("deactivate", this);
38372     },
38373
38374     // private
38375     shouldDeactivate : function(e){
38376         return !this.region || !this.region.contains(e.getPoint());
38377     },
38378
38379     // private
38380     handleClick : function(e){
38381         if(this.hideOnClick){
38382             this.parentMenu.hide.defer(this.hideDelay, this.parentMenu, [true]);
38383         }
38384     },
38385
38386     // private
38387     expandMenu : function(autoActivate){
38388         // do nothing
38389     },
38390
38391     // private
38392     hideMenu : function(){
38393         // do nothing
38394     }
38395 });/*
38396  * Based on:
38397  * Ext JS Library 1.1.1
38398  * Copyright(c) 2006-2007, Ext JS, LLC.
38399  *
38400  * Originally Released Under LGPL - original licence link has changed is not relivant.
38401  *
38402  * Fork - LGPL
38403  * <script type="text/javascript">
38404  */
38405  
38406 /**
38407  * @class Roo.menu.Adapter
38408  * @extends Roo.menu.BaseItem
38409  * 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.
38410  * It provides basic rendering, activation management and enable/disable logic required to work in menus.
38411  * @constructor
38412  * Creates a new Adapter
38413  * @param {Object} config Configuration options
38414  */
38415 Roo.menu.Adapter = function(component, config){
38416     Roo.menu.Adapter.superclass.constructor.call(this, config);
38417     this.component = component;
38418 };
38419 Roo.extend(Roo.menu.Adapter, Roo.menu.BaseItem, {
38420     // private
38421     canActivate : true,
38422
38423     // private
38424     onRender : function(container, position){
38425         this.component.render(container);
38426         this.el = this.component.getEl();
38427     },
38428
38429     // private
38430     activate : function(){
38431         if(this.disabled){
38432             return false;
38433         }
38434         this.component.focus();
38435         this.fireEvent("activate", this);
38436         return true;
38437     },
38438
38439     // private
38440     deactivate : function(){
38441         this.fireEvent("deactivate", this);
38442     },
38443
38444     // private
38445     disable : function(){
38446         this.component.disable();
38447         Roo.menu.Adapter.superclass.disable.call(this);
38448     },
38449
38450     // private
38451     enable : function(){
38452         this.component.enable();
38453         Roo.menu.Adapter.superclass.enable.call(this);
38454     }
38455 });/*
38456  * Based on:
38457  * Ext JS Library 1.1.1
38458  * Copyright(c) 2006-2007, Ext JS, LLC.
38459  *
38460  * Originally Released Under LGPL - original licence link has changed is not relivant.
38461  *
38462  * Fork - LGPL
38463  * <script type="text/javascript">
38464  */
38465
38466 /**
38467  * @class Roo.menu.TextItem
38468  * @extends Roo.menu.BaseItem
38469  * Adds a static text string to a menu, usually used as either a heading or group separator.
38470  * Note: old style constructor with text is still supported.
38471  * 
38472  * @constructor
38473  * Creates a new TextItem
38474  * @param {Object} cfg Configuration
38475  */
38476 Roo.menu.TextItem = function(cfg){
38477     if (typeof(cfg) == 'string') {
38478         this.text = cfg;
38479     } else {
38480         Roo.apply(this,cfg);
38481     }
38482     
38483     Roo.menu.TextItem.superclass.constructor.call(this);
38484 };
38485
38486 Roo.extend(Roo.menu.TextItem, Roo.menu.BaseItem, {
38487     /**
38488      * @cfg {String} text Text to show on item.
38489      */
38490     text : '',
38491     
38492     /**
38493      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to false)
38494      */
38495     hideOnClick : false,
38496     /**
38497      * @cfg {String} itemCls The default CSS class to use for text items (defaults to "x-menu-text")
38498      */
38499     itemCls : "x-menu-text",
38500
38501     // private
38502     onRender : function(){
38503         var s = document.createElement("span");
38504         s.className = this.itemCls;
38505         s.innerHTML = this.text;
38506         this.el = s;
38507         Roo.menu.TextItem.superclass.onRender.apply(this, arguments);
38508     }
38509 });/*
38510  * Based on:
38511  * Ext JS Library 1.1.1
38512  * Copyright(c) 2006-2007, Ext JS, LLC.
38513  *
38514  * Originally Released Under LGPL - original licence link has changed is not relivant.
38515  *
38516  * Fork - LGPL
38517  * <script type="text/javascript">
38518  */
38519
38520 /**
38521  * @class Roo.menu.Separator
38522  * @extends Roo.menu.BaseItem
38523  * Adds a separator bar to a menu, used to divide logical groups of menu items. Generally you will
38524  * add one of these by using "-" in you call to add() or in your items config rather than creating one directly.
38525  * @constructor
38526  * @param {Object} config Configuration options
38527  */
38528 Roo.menu.Separator = function(config){
38529     Roo.menu.Separator.superclass.constructor.call(this, config);
38530 };
38531
38532 Roo.extend(Roo.menu.Separator, Roo.menu.BaseItem, {
38533     /**
38534      * @cfg {String} itemCls The default CSS class to use for separators (defaults to "x-menu-sep")
38535      */
38536     itemCls : "x-menu-sep",
38537     /**
38538      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to false)
38539      */
38540     hideOnClick : false,
38541
38542     // private
38543     onRender : function(li){
38544         var s = document.createElement("span");
38545         s.className = this.itemCls;
38546         s.innerHTML = "&#160;";
38547         this.el = s;
38548         li.addClass("x-menu-sep-li");
38549         Roo.menu.Separator.superclass.onRender.apply(this, arguments);
38550     }
38551 });/*
38552  * Based on:
38553  * Ext JS Library 1.1.1
38554  * Copyright(c) 2006-2007, Ext JS, LLC.
38555  *
38556  * Originally Released Under LGPL - original licence link has changed is not relivant.
38557  *
38558  * Fork - LGPL
38559  * <script type="text/javascript">
38560  */
38561 /**
38562  * @class Roo.menu.Item
38563  * @extends Roo.menu.BaseItem
38564  * A base class for all menu items that require menu-related functionality (like sub-menus) and are not static
38565  * display items.  Item extends the base functionality of {@link Roo.menu.BaseItem} by adding menu-specific
38566  * activation and click handling.
38567  * @constructor
38568  * Creates a new Item
38569  * @param {Object} config Configuration options
38570  */
38571 Roo.menu.Item = function(config){
38572     Roo.menu.Item.superclass.constructor.call(this, config);
38573     if(this.menu){
38574         this.menu = Roo.menu.MenuMgr.get(this.menu);
38575     }
38576 };
38577 Roo.extend(Roo.menu.Item, Roo.menu.BaseItem, {
38578     
38579     /**
38580      * @cfg {String} text
38581      * The text to show on the menu item.
38582      */
38583     text: '',
38584      /**
38585      * @cfg {String} HTML to render in menu
38586      * The text to show on the menu item (HTML version).
38587      */
38588     html: '',
38589     /**
38590      * @cfg {String} icon
38591      * The path to an icon to display in this menu item (defaults to Roo.BLANK_IMAGE_URL)
38592      */
38593     icon: undefined,
38594     /**
38595      * @cfg {String} itemCls The default CSS class to use for menu items (defaults to "x-menu-item")
38596      */
38597     itemCls : "x-menu-item",
38598     /**
38599      * @cfg {Boolean} canActivate True if this item can be visually activated (defaults to true)
38600      */
38601     canActivate : true,
38602     /**
38603      * @cfg {Number} showDelay Length of time in milliseconds to wait before showing this item (defaults to 200)
38604      */
38605     showDelay: 200,
38606     // doc'd in BaseItem
38607     hideDelay: 200,
38608
38609     // private
38610     ctype: "Roo.menu.Item",
38611     
38612     // private
38613     onRender : function(container, position){
38614         var el = document.createElement("a");
38615         el.hideFocus = true;
38616         el.unselectable = "on";
38617         el.href = this.href || "#";
38618         if(this.hrefTarget){
38619             el.target = this.hrefTarget;
38620         }
38621         el.className = this.itemCls + (this.menu ?  " x-menu-item-arrow" : "") + (this.cls ?  " " + this.cls : "");
38622         
38623         var html = this.html.length ? this.html  : String.format('{0}',this.text);
38624         
38625         el.innerHTML = String.format(
38626                 '<img src="{0}" class="x-menu-item-icon {1}" />' + html,
38627                 this.icon || Roo.BLANK_IMAGE_URL, this.iconCls || '');
38628         this.el = el;
38629         Roo.menu.Item.superclass.onRender.call(this, container, position);
38630     },
38631
38632     /**
38633      * Sets the text to display in this menu item
38634      * @param {String} text The text to display
38635      * @param {Boolean} isHTML true to indicate text is pure html.
38636      */
38637     setText : function(text, isHTML){
38638         if (isHTML) {
38639             this.html = text;
38640         } else {
38641             this.text = text;
38642             this.html = '';
38643         }
38644         if(this.rendered){
38645             var html = this.html.length ? this.html  : String.format('{0}',this.text);
38646      
38647             this.el.update(String.format(
38648                 '<img src="{0}" class="x-menu-item-icon {2}">' + html,
38649                 this.icon || Roo.BLANK_IMAGE_URL, this.text, this.iconCls || ''));
38650             this.parentMenu.autoWidth();
38651         }
38652     },
38653
38654     // private
38655     handleClick : function(e){
38656         if(!this.href){ // if no link defined, stop the event automatically
38657             e.stopEvent();
38658         }
38659         Roo.menu.Item.superclass.handleClick.apply(this, arguments);
38660     },
38661
38662     // private
38663     activate : function(autoExpand){
38664         if(Roo.menu.Item.superclass.activate.apply(this, arguments)){
38665             this.focus();
38666             if(autoExpand){
38667                 this.expandMenu();
38668             }
38669         }
38670         return true;
38671     },
38672
38673     // private
38674     shouldDeactivate : function(e){
38675         if(Roo.menu.Item.superclass.shouldDeactivate.call(this, e)){
38676             if(this.menu && this.menu.isVisible()){
38677                 return !this.menu.getEl().getRegion().contains(e.getPoint());
38678             }
38679             return true;
38680         }
38681         return false;
38682     },
38683
38684     // private
38685     deactivate : function(){
38686         Roo.menu.Item.superclass.deactivate.apply(this, arguments);
38687         this.hideMenu();
38688     },
38689
38690     // private
38691     expandMenu : function(autoActivate){
38692         if(!this.disabled && this.menu){
38693             clearTimeout(this.hideTimer);
38694             delete this.hideTimer;
38695             if(!this.menu.isVisible() && !this.showTimer){
38696                 this.showTimer = this.deferExpand.defer(this.showDelay, this, [autoActivate]);
38697             }else if (this.menu.isVisible() && autoActivate){
38698                 this.menu.tryActivate(0, 1);
38699             }
38700         }
38701     },
38702
38703     // private
38704     deferExpand : function(autoActivate){
38705         delete this.showTimer;
38706         this.menu.show(this.container, this.parentMenu.subMenuAlign || "tl-tr?", this.parentMenu);
38707         if(autoActivate){
38708             this.menu.tryActivate(0, 1);
38709         }
38710     },
38711
38712     // private
38713     hideMenu : function(){
38714         clearTimeout(this.showTimer);
38715         delete this.showTimer;
38716         if(!this.hideTimer && this.menu && this.menu.isVisible()){
38717             this.hideTimer = this.deferHide.defer(this.hideDelay, this);
38718         }
38719     },
38720
38721     // private
38722     deferHide : function(){
38723         delete this.hideTimer;
38724         this.menu.hide();
38725     }
38726 });/*
38727  * Based on:
38728  * Ext JS Library 1.1.1
38729  * Copyright(c) 2006-2007, Ext JS, LLC.
38730  *
38731  * Originally Released Under LGPL - original licence link has changed is not relivant.
38732  *
38733  * Fork - LGPL
38734  * <script type="text/javascript">
38735  */
38736  
38737 /**
38738  * @class Roo.menu.CheckItem
38739  * @extends Roo.menu.Item
38740  * Adds a menu item that contains a checkbox by default, but can also be part of a radio group.
38741  * @constructor
38742  * Creates a new CheckItem
38743  * @param {Object} config Configuration options
38744  */
38745 Roo.menu.CheckItem = function(config){
38746     Roo.menu.CheckItem.superclass.constructor.call(this, config);
38747     this.addEvents({
38748         /**
38749          * @event beforecheckchange
38750          * Fires before the checked value is set, providing an opportunity to cancel if needed
38751          * @param {Roo.menu.CheckItem} this
38752          * @param {Boolean} checked The new checked value that will be set
38753          */
38754         "beforecheckchange" : true,
38755         /**
38756          * @event checkchange
38757          * Fires after the checked value has been set
38758          * @param {Roo.menu.CheckItem} this
38759          * @param {Boolean} checked The checked value that was set
38760          */
38761         "checkchange" : true
38762     });
38763     if(this.checkHandler){
38764         this.on('checkchange', this.checkHandler, this.scope);
38765     }
38766 };
38767 Roo.extend(Roo.menu.CheckItem, Roo.menu.Item, {
38768     /**
38769      * @cfg {String} group
38770      * All check items with the same group name will automatically be grouped into a single-select
38771      * radio button group (defaults to '')
38772      */
38773     /**
38774      * @cfg {String} itemCls The default CSS class to use for check items (defaults to "x-menu-item x-menu-check-item")
38775      */
38776     itemCls : "x-menu-item x-menu-check-item",
38777     /**
38778      * @cfg {String} groupClass The default CSS class to use for radio group check items (defaults to "x-menu-group-item")
38779      */
38780     groupClass : "x-menu-group-item",
38781
38782     /**
38783      * @cfg {Boolean} checked True to initialize this checkbox as checked (defaults to false).  Note that
38784      * if this checkbox is part of a radio group (group = true) only the last item in the group that is
38785      * initialized with checked = true will be rendered as checked.
38786      */
38787     checked: false,
38788
38789     // private
38790     ctype: "Roo.menu.CheckItem",
38791
38792     // private
38793     onRender : function(c){
38794         Roo.menu.CheckItem.superclass.onRender.apply(this, arguments);
38795         if(this.group){
38796             this.el.addClass(this.groupClass);
38797         }
38798         Roo.menu.MenuMgr.registerCheckable(this);
38799         if(this.checked){
38800             this.checked = false;
38801             this.setChecked(true, true);
38802         }
38803     },
38804
38805     // private
38806     destroy : function(){
38807         if(this.rendered){
38808             Roo.menu.MenuMgr.unregisterCheckable(this);
38809         }
38810         Roo.menu.CheckItem.superclass.destroy.apply(this, arguments);
38811     },
38812
38813     /**
38814      * Set the checked state of this item
38815      * @param {Boolean} checked The new checked value
38816      * @param {Boolean} suppressEvent (optional) True to prevent the checkchange event from firing (defaults to false)
38817      */
38818     setChecked : function(state, suppressEvent){
38819         if(this.checked != state && this.fireEvent("beforecheckchange", this, state) !== false){
38820             if(this.container){
38821                 this.container[state ? "addClass" : "removeClass"]("x-menu-item-checked");
38822             }
38823             this.checked = state;
38824             if(suppressEvent !== true){
38825                 this.fireEvent("checkchange", this, state);
38826             }
38827         }
38828     },
38829
38830     // private
38831     handleClick : function(e){
38832        if(!this.disabled && !(this.checked && this.group)){// disable unselect on radio item
38833            this.setChecked(!this.checked);
38834        }
38835        Roo.menu.CheckItem.superclass.handleClick.apply(this, arguments);
38836     }
38837 });/*
38838  * Based on:
38839  * Ext JS Library 1.1.1
38840  * Copyright(c) 2006-2007, Ext JS, LLC.
38841  *
38842  * Originally Released Under LGPL - original licence link has changed is not relivant.
38843  *
38844  * Fork - LGPL
38845  * <script type="text/javascript">
38846  */
38847  
38848 /**
38849  * @class Roo.menu.DateItem
38850  * @extends Roo.menu.Adapter
38851  * A menu item that wraps the {@link Roo.DatPicker} component.
38852  * @constructor
38853  * Creates a new DateItem
38854  * @param {Object} config Configuration options
38855  */
38856 Roo.menu.DateItem = function(config){
38857     Roo.menu.DateItem.superclass.constructor.call(this, new Roo.DatePicker(config), config);
38858     /** The Roo.DatePicker object @type Roo.DatePicker */
38859     this.picker = this.component;
38860     this.addEvents({select: true});
38861     
38862     this.picker.on("render", function(picker){
38863         picker.getEl().swallowEvent("click");
38864         picker.container.addClass("x-menu-date-item");
38865     });
38866
38867     this.picker.on("select", this.onSelect, this);
38868 };
38869
38870 Roo.extend(Roo.menu.DateItem, Roo.menu.Adapter, {
38871     // private
38872     onSelect : function(picker, date){
38873         this.fireEvent("select", this, date, picker);
38874         Roo.menu.DateItem.superclass.handleClick.call(this);
38875     }
38876 });/*
38877  * Based on:
38878  * Ext JS Library 1.1.1
38879  * Copyright(c) 2006-2007, Ext JS, LLC.
38880  *
38881  * Originally Released Under LGPL - original licence link has changed is not relivant.
38882  *
38883  * Fork - LGPL
38884  * <script type="text/javascript">
38885  */
38886  
38887 /**
38888  * @class Roo.menu.ColorItem
38889  * @extends Roo.menu.Adapter
38890  * A menu item that wraps the {@link Roo.ColorPalette} component.
38891  * @constructor
38892  * Creates a new ColorItem
38893  * @param {Object} config Configuration options
38894  */
38895 Roo.menu.ColorItem = function(config){
38896     Roo.menu.ColorItem.superclass.constructor.call(this, new Roo.ColorPalette(config), config);
38897     /** The Roo.ColorPalette object @type Roo.ColorPalette */
38898     this.palette = this.component;
38899     this.relayEvents(this.palette, ["select"]);
38900     if(this.selectHandler){
38901         this.on('select', this.selectHandler, this.scope);
38902     }
38903 };
38904 Roo.extend(Roo.menu.ColorItem, Roo.menu.Adapter);/*
38905  * Based on:
38906  * Ext JS Library 1.1.1
38907  * Copyright(c) 2006-2007, Ext JS, LLC.
38908  *
38909  * Originally Released Under LGPL - original licence link has changed is not relivant.
38910  *
38911  * Fork - LGPL
38912  * <script type="text/javascript">
38913  */
38914  
38915
38916 /**
38917  * @class Roo.menu.DateMenu
38918  * @extends Roo.menu.Menu
38919  * A menu containing a {@link Roo.menu.DateItem} component (which provides a date picker).
38920  * @constructor
38921  * Creates a new DateMenu
38922  * @param {Object} config Configuration options
38923  */
38924 Roo.menu.DateMenu = function(config){
38925     Roo.menu.DateMenu.superclass.constructor.call(this, config);
38926     this.plain = true;
38927     var di = new Roo.menu.DateItem(config);
38928     this.add(di);
38929     /**
38930      * The {@link Roo.DatePicker} instance for this DateMenu
38931      * @type DatePicker
38932      */
38933     this.picker = di.picker;
38934     /**
38935      * @event select
38936      * @param {DatePicker} picker
38937      * @param {Date} date
38938      */
38939     this.relayEvents(di, ["select"]);
38940     this.on('beforeshow', function(){
38941         if(this.picker){
38942             this.picker.hideMonthPicker(false);
38943         }
38944     }, this);
38945 };
38946 Roo.extend(Roo.menu.DateMenu, Roo.menu.Menu, {
38947     cls:'x-date-menu'
38948 });/*
38949  * Based on:
38950  * Ext JS Library 1.1.1
38951  * Copyright(c) 2006-2007, Ext JS, LLC.
38952  *
38953  * Originally Released Under LGPL - original licence link has changed is not relivant.
38954  *
38955  * Fork - LGPL
38956  * <script type="text/javascript">
38957  */
38958  
38959
38960 /**
38961  * @class Roo.menu.ColorMenu
38962  * @extends Roo.menu.Menu
38963  * A menu containing a {@link Roo.menu.ColorItem} component (which provides a basic color picker).
38964  * @constructor
38965  * Creates a new ColorMenu
38966  * @param {Object} config Configuration options
38967  */
38968 Roo.menu.ColorMenu = function(config){
38969     Roo.menu.ColorMenu.superclass.constructor.call(this, config);
38970     this.plain = true;
38971     var ci = new Roo.menu.ColorItem(config);
38972     this.add(ci);
38973     /**
38974      * The {@link Roo.ColorPalette} instance for this ColorMenu
38975      * @type ColorPalette
38976      */
38977     this.palette = ci.palette;
38978     /**
38979      * @event select
38980      * @param {ColorPalette} palette
38981      * @param {String} color
38982      */
38983     this.relayEvents(ci, ["select"]);
38984 };
38985 Roo.extend(Roo.menu.ColorMenu, Roo.menu.Menu);/*
38986  * Based on:
38987  * Ext JS Library 1.1.1
38988  * Copyright(c) 2006-2007, Ext JS, LLC.
38989  *
38990  * Originally Released Under LGPL - original licence link has changed is not relivant.
38991  *
38992  * Fork - LGPL
38993  * <script type="text/javascript">
38994  */
38995  
38996 /**
38997  * @class Roo.form.TextItem
38998  * @extends Roo.BoxComponent
38999  * Base class for form fields that provides default event handling, sizing, value handling and other functionality.
39000  * @constructor
39001  * Creates a new TextItem
39002  * @param {Object} config Configuration options
39003  */
39004 Roo.form.TextItem = function(config){
39005     Roo.form.TextItem.superclass.constructor.call(this, config);
39006 };
39007
39008 Roo.extend(Roo.form.TextItem, Roo.BoxComponent,  {
39009     
39010     /**
39011      * @cfg {String} tag the tag for this item (default div)
39012      */
39013     tag : 'div',
39014     /**
39015      * @cfg {String} html the content for this item
39016      */
39017     html : '',
39018     
39019     getAutoCreate : function()
39020     {
39021         var cfg = {
39022             id: this.id,
39023             tag: this.tag,
39024             html: this.html,
39025             cls: 'x-form-item'
39026         };
39027         
39028         return cfg;
39029         
39030     },
39031     
39032     onRender : function(ct, position)
39033     {
39034         Roo.form.TextItem.superclass.onRender.call(this, ct, position);
39035         
39036         if(!this.el){
39037             var cfg = this.getAutoCreate();
39038             if(!cfg.name){
39039                 cfg.name = typeof(this.name) == 'undefined' ? this.id : this.name;
39040             }
39041             if (!cfg.name.length) {
39042                 delete cfg.name;
39043             }
39044             this.el = ct.createChild(cfg, position);
39045         }
39046     },
39047     /*
39048      * setHTML
39049      * @param {String} html update the Contents of the element.
39050      */
39051     setHTML : function(html)
39052     {
39053         this.fieldEl.dom.innerHTML = html;
39054     }
39055     
39056 });/*
39057  * Based on:
39058  * Ext JS Library 1.1.1
39059  * Copyright(c) 2006-2007, Ext JS, LLC.
39060  *
39061  * Originally Released Under LGPL - original licence link has changed is not relivant.
39062  *
39063  * Fork - LGPL
39064  * <script type="text/javascript">
39065  */
39066  
39067 /**
39068  * @class Roo.form.Field
39069  * @extends Roo.BoxComponent
39070  * Base class for form fields that provides default event handling, sizing, value handling and other functionality.
39071  * @constructor
39072  * Creates a new Field
39073  * @param {Object} config Configuration options
39074  */
39075 Roo.form.Field = function(config){
39076     Roo.form.Field.superclass.constructor.call(this, config);
39077 };
39078
39079 Roo.extend(Roo.form.Field, Roo.BoxComponent,  {
39080     /**
39081      * @cfg {String} fieldLabel Label to use when rendering a form.
39082      */
39083        /**
39084      * @cfg {String} qtip Mouse over tip
39085      */
39086      
39087     /**
39088      * @cfg {String} invalidClass The CSS class to use when marking a field invalid (defaults to "x-form-invalid")
39089      */
39090     invalidClass : "x-form-invalid",
39091     /**
39092      * @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")
39093      */
39094     invalidText : "The value in this field is invalid",
39095     /**
39096      * @cfg {String} focusClass The CSS class to use when the field receives focus (defaults to "x-form-focus")
39097      */
39098     focusClass : "x-form-focus",
39099     /**
39100      * @cfg {String/Boolean} validationEvent The event that should initiate field validation. Set to false to disable
39101       automatic validation (defaults to "keyup").
39102      */
39103     validationEvent : "keyup",
39104     /**
39105      * @cfg {Boolean} validateOnBlur Whether the field should validate when it loses focus (defaults to true).
39106      */
39107     validateOnBlur : true,
39108     /**
39109      * @cfg {Number} validationDelay The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)
39110      */
39111     validationDelay : 250,
39112     /**
39113      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
39114      * {tag: "input", type: "text", size: "20", autocomplete: "off"})
39115      */
39116     defaultAutoCreate : {tag: "input", type: "text", size: "20", autocomplete: "new-password"},
39117     /**
39118      * @cfg {String} fieldClass The default CSS class for the field (defaults to "x-form-field")
39119      */
39120     fieldClass : "x-form-field",
39121     /**
39122      * @cfg {String} msgTarget The location where error text should display.  Should be one of the following values (defaults to 'qtip'):
39123      *<pre>
39124 Value         Description
39125 -----------   ----------------------------------------------------------------------
39126 qtip          Display a quick tip when the user hovers over the field
39127 title         Display a default browser title attribute popup
39128 under         Add a block div beneath the field containing the error text
39129 side          Add an error icon to the right of the field with a popup on hover
39130 [element id]  Add the error text directly to the innerHTML of the specified element
39131 </pre>
39132      */
39133     msgTarget : 'qtip',
39134     /**
39135      * @cfg {String} msgFx <b>Experimental</b> The effect used when displaying a validation message under the field (defaults to 'normal').
39136      */
39137     msgFx : 'normal',
39138
39139     /**
39140      * @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.
39141      */
39142     readOnly : false,
39143
39144     /**
39145      * @cfg {Boolean} disabled True to disable the field (defaults to false).
39146      */
39147     disabled : false,
39148
39149     /**
39150      * @cfg {String} inputType The type attribute for input fields -- e.g. radio, text, password (defaults to "text").
39151      */
39152     inputType : undefined,
39153     
39154     /**
39155      * @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).
39156          */
39157         tabIndex : undefined,
39158         
39159     // private
39160     isFormField : true,
39161
39162     // private
39163     hasFocus : false,
39164     /**
39165      * @property {Roo.Element} fieldEl
39166      * Element Containing the rendered Field (with label etc.)
39167      */
39168     /**
39169      * @cfg {Mixed} value A value to initialize this field with.
39170      */
39171     value : undefined,
39172
39173     /**
39174      * @cfg {String} name The field's HTML name attribute.
39175      */
39176     /**
39177      * @cfg {String} cls A CSS class to apply to the field's underlying element.
39178      */
39179     // private
39180     loadedValue : false,
39181      
39182      
39183         // private ??
39184         initComponent : function(){
39185         Roo.form.Field.superclass.initComponent.call(this);
39186         this.addEvents({
39187             /**
39188              * @event focus
39189              * Fires when this field receives input focus.
39190              * @param {Roo.form.Field} this
39191              */
39192             focus : true,
39193             /**
39194              * @event blur
39195              * Fires when this field loses input focus.
39196              * @param {Roo.form.Field} this
39197              */
39198             blur : true,
39199             /**
39200              * @event specialkey
39201              * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
39202              * {@link Roo.EventObject#getKey} to determine which key was pressed.
39203              * @param {Roo.form.Field} this
39204              * @param {Roo.EventObject} e The event object
39205              */
39206             specialkey : true,
39207             /**
39208              * @event change
39209              * Fires just before the field blurs if the field value has changed.
39210              * @param {Roo.form.Field} this
39211              * @param {Mixed} newValue The new value
39212              * @param {Mixed} oldValue The original value
39213              */
39214             change : true,
39215             /**
39216              * @event invalid
39217              * Fires after the field has been marked as invalid.
39218              * @param {Roo.form.Field} this
39219              * @param {String} msg The validation message
39220              */
39221             invalid : true,
39222             /**
39223              * @event valid
39224              * Fires after the field has been validated with no errors.
39225              * @param {Roo.form.Field} this
39226              */
39227             valid : true,
39228              /**
39229              * @event keyup
39230              * Fires after the key up
39231              * @param {Roo.form.Field} this
39232              * @param {Roo.EventObject}  e The event Object
39233              */
39234             keyup : true
39235         });
39236     },
39237
39238     /**
39239      * Returns the name attribute of the field if available
39240      * @return {String} name The field name
39241      */
39242     getName: function(){
39243          return this.rendered && this.el.dom.name ? this.el.dom.name : (this.hiddenName || '');
39244     },
39245
39246     // private
39247     onRender : function(ct, position){
39248         Roo.form.Field.superclass.onRender.call(this, ct, position);
39249         if(!this.el){
39250             var cfg = this.getAutoCreate();
39251             if(!cfg.name){
39252                 cfg.name = typeof(this.name) == 'undefined' ? this.id : this.name;
39253             }
39254             if (!cfg.name.length) {
39255                 delete cfg.name;
39256             }
39257             if(this.inputType){
39258                 cfg.type = this.inputType;
39259             }
39260             this.el = ct.createChild(cfg, position);
39261         }
39262         var type = this.el.dom.type;
39263         if(type){
39264             if(type == 'password'){
39265                 type = 'text';
39266             }
39267             this.el.addClass('x-form-'+type);
39268         }
39269         if(this.readOnly){
39270             this.el.dom.readOnly = true;
39271         }
39272         if(this.tabIndex !== undefined){
39273             this.el.dom.setAttribute('tabIndex', this.tabIndex);
39274         }
39275
39276         this.el.addClass([this.fieldClass, this.cls]);
39277         this.initValue();
39278     },
39279
39280     /**
39281      * Apply the behaviors of this component to an existing element. <b>This is used instead of render().</b>
39282      * @param {String/HTMLElement/Element} el The id of the node, a DOM node or an existing Element
39283      * @return {Roo.form.Field} this
39284      */
39285     applyTo : function(target){
39286         this.allowDomMove = false;
39287         this.el = Roo.get(target);
39288         this.render(this.el.dom.parentNode);
39289         return this;
39290     },
39291
39292     // private
39293     initValue : function(){
39294         if(this.value !== undefined){
39295             this.setValue(this.value);
39296         }else if(this.el.dom.value.length > 0){
39297             this.setValue(this.el.dom.value);
39298         }
39299     },
39300
39301     /**
39302      * Returns true if this field has been changed since it was originally loaded and is not disabled.
39303      * DEPRICATED  - it never worked well - use hasChanged/resetHasChanged.
39304      */
39305     isDirty : function() {
39306         if(this.disabled) {
39307             return false;
39308         }
39309         return String(this.getValue()) !== String(this.originalValue);
39310     },
39311
39312     /**
39313      * stores the current value in loadedValue
39314      */
39315     resetHasChanged : function()
39316     {
39317         this.loadedValue = String(this.getValue());
39318     },
39319     /**
39320      * checks the current value against the 'loaded' value.
39321      * Note - will return false if 'resetHasChanged' has not been called first.
39322      */
39323     hasChanged : function()
39324     {
39325         if(this.disabled || this.readOnly) {
39326             return false;
39327         }
39328         return this.loadedValue !== false && String(this.getValue()) !== this.loadedValue;
39329     },
39330     
39331     
39332     
39333     // private
39334     afterRender : function(){
39335         Roo.form.Field.superclass.afterRender.call(this);
39336         this.initEvents();
39337     },
39338
39339     // private
39340     fireKey : function(e){
39341         //Roo.log('field ' + e.getKey());
39342         if(e.isNavKeyPress()){
39343             this.fireEvent("specialkey", this, e);
39344         }
39345     },
39346
39347     /**
39348      * Resets the current field value to the originally loaded value and clears any validation messages
39349      */
39350     reset : function(){
39351         this.setValue(this.resetValue);
39352         this.originalValue = this.getValue();
39353         this.clearInvalid();
39354     },
39355
39356     // private
39357     initEvents : function(){
39358         // safari killled keypress - so keydown is now used..
39359         this.el.on("keydown" , this.fireKey,  this);
39360         this.el.on("focus", this.onFocus,  this);
39361         this.el.on("blur", this.onBlur,  this);
39362         this.el.relayEvent('keyup', this);
39363
39364         // reference to original value for reset
39365         this.originalValue = this.getValue();
39366         this.resetValue =  this.getValue();
39367     },
39368
39369     // private
39370     onFocus : function(){
39371         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
39372             this.el.addClass(this.focusClass);
39373         }
39374         if(!this.hasFocus){
39375             this.hasFocus = true;
39376             this.startValue = this.getValue();
39377             this.fireEvent("focus", this);
39378         }
39379     },
39380
39381     beforeBlur : Roo.emptyFn,
39382
39383     // private
39384     onBlur : function(){
39385         this.beforeBlur();
39386         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
39387             this.el.removeClass(this.focusClass);
39388         }
39389         this.hasFocus = false;
39390         if(this.validationEvent !== false && this.validateOnBlur && this.validationEvent != "blur"){
39391             this.validate();
39392         }
39393         var v = this.getValue();
39394         if(String(v) !== String(this.startValue)){
39395             this.fireEvent('change', this, v, this.startValue);
39396         }
39397         this.fireEvent("blur", this);
39398     },
39399
39400     /**
39401      * Returns whether or not the field value is currently valid
39402      * @param {Boolean} preventMark True to disable marking the field invalid
39403      * @return {Boolean} True if the value is valid, else false
39404      */
39405     isValid : function(preventMark){
39406         if(this.disabled){
39407             return true;
39408         }
39409         var restore = this.preventMark;
39410         this.preventMark = preventMark === true;
39411         var v = this.validateValue(this.processValue(this.getRawValue()));
39412         this.preventMark = restore;
39413         return v;
39414     },
39415
39416     /**
39417      * Validates the field value
39418      * @return {Boolean} True if the value is valid, else false
39419      */
39420     validate : function(){
39421         if(this.disabled || this.validateValue(this.processValue(this.getRawValue()))){
39422             this.clearInvalid();
39423             return true;
39424         }
39425         return false;
39426     },
39427
39428     processValue : function(value){
39429         return value;
39430     },
39431
39432     // private
39433     // Subclasses should provide the validation implementation by overriding this
39434     validateValue : function(value){
39435         return true;
39436     },
39437
39438     /**
39439      * Mark this field as invalid
39440      * @param {String} msg The validation message
39441      */
39442     markInvalid : function(msg){
39443         if(!this.rendered || this.preventMark){ // not rendered
39444             return;
39445         }
39446         
39447         var obj = (typeof(this.combo) != 'undefined') ? this.combo : this; // fix the combox array!!
39448         
39449         obj.el.addClass(this.invalidClass);
39450         msg = msg || this.invalidText;
39451         switch(this.msgTarget){
39452             case 'qtip':
39453                 obj.el.dom.qtip = msg;
39454                 obj.el.dom.qclass = 'x-form-invalid-tip';
39455                 if(Roo.QuickTips){ // fix for floating editors interacting with DND
39456                     Roo.QuickTips.enable();
39457                 }
39458                 break;
39459             case 'title':
39460                 this.el.dom.title = msg;
39461                 break;
39462             case 'under':
39463                 if(!this.errorEl){
39464                     var elp = this.el.findParent('.x-form-element', 5, true);
39465                     this.errorEl = elp.createChild({cls:'x-form-invalid-msg'});
39466                     this.errorEl.setWidth(elp.getWidth(true)-20);
39467                 }
39468                 this.errorEl.update(msg);
39469                 Roo.form.Field.msgFx[this.msgFx].show(this.errorEl, this);
39470                 break;
39471             case 'side':
39472                 if(!this.errorIcon){
39473                     var elp = this.el.findParent('.x-form-element', 5, true);
39474                     this.errorIcon = elp.createChild({cls:'x-form-invalid-icon'});
39475                 }
39476                 this.alignErrorIcon();
39477                 this.errorIcon.dom.qtip = msg;
39478                 this.errorIcon.dom.qclass = 'x-form-invalid-tip';
39479                 this.errorIcon.show();
39480                 this.on('resize', this.alignErrorIcon, this);
39481                 break;
39482             default:
39483                 var t = Roo.getDom(this.msgTarget);
39484                 t.innerHTML = msg;
39485                 t.style.display = this.msgDisplay;
39486                 break;
39487         }
39488         this.fireEvent('invalid', this, msg);
39489     },
39490
39491     // private
39492     alignErrorIcon : function(){
39493         this.errorIcon.alignTo(this.el, 'tl-tr', [2, 0]);
39494     },
39495
39496     /**
39497      * Clear any invalid styles/messages for this field
39498      */
39499     clearInvalid : function(){
39500         if(!this.rendered || this.preventMark){ // not rendered
39501             return;
39502         }
39503         var obj = (typeof(this.combo) != 'undefined') ? this.combo : this; // fix the combox array!!
39504         
39505         obj.el.removeClass(this.invalidClass);
39506         switch(this.msgTarget){
39507             case 'qtip':
39508                 obj.el.dom.qtip = '';
39509                 break;
39510             case 'title':
39511                 this.el.dom.title = '';
39512                 break;
39513             case 'under':
39514                 if(this.errorEl){
39515                     Roo.form.Field.msgFx[this.msgFx].hide(this.errorEl, this);
39516                 }
39517                 break;
39518             case 'side':
39519                 if(this.errorIcon){
39520                     this.errorIcon.dom.qtip = '';
39521                     this.errorIcon.hide();
39522                     this.un('resize', this.alignErrorIcon, this);
39523                 }
39524                 break;
39525             default:
39526                 var t = Roo.getDom(this.msgTarget);
39527                 t.innerHTML = '';
39528                 t.style.display = 'none';
39529                 break;
39530         }
39531         this.fireEvent('valid', this);
39532     },
39533
39534     /**
39535      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
39536      * @return {Mixed} value The field value
39537      */
39538     getRawValue : function(){
39539         var v = this.el.getValue();
39540         
39541         return v;
39542     },
39543
39544     /**
39545      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
39546      * @return {Mixed} value The field value
39547      */
39548     getValue : function(){
39549         var v = this.el.getValue();
39550          
39551         return v;
39552     },
39553
39554     /**
39555      * Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}.
39556      * @param {Mixed} value The value to set
39557      */
39558     setRawValue : function(v){
39559         return this.el.dom.value = (v === null || v === undefined ? '' : v);
39560     },
39561
39562     /**
39563      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
39564      * @param {Mixed} value The value to set
39565      */
39566     setValue : function(v){
39567         this.value = v;
39568         if(this.rendered){
39569             this.el.dom.value = (v === null || v === undefined ? '' : v);
39570              this.validate();
39571         }
39572     },
39573
39574     adjustSize : function(w, h){
39575         var s = Roo.form.Field.superclass.adjustSize.call(this, w, h);
39576         s.width = this.adjustWidth(this.el.dom.tagName, s.width);
39577         return s;
39578     },
39579
39580     adjustWidth : function(tag, w){
39581         tag = tag.toLowerCase();
39582         if(typeof w == 'number' && Roo.isStrict && !Roo.isSafari){
39583             if(Roo.isIE && (tag == 'input' || tag == 'textarea')){
39584                 if(tag == 'input'){
39585                     return w + 2;
39586                 }
39587                 if(tag == 'textarea'){
39588                     return w-2;
39589                 }
39590             }else if(Roo.isOpera){
39591                 if(tag == 'input'){
39592                     return w + 2;
39593                 }
39594                 if(tag == 'textarea'){
39595                     return w-2;
39596                 }
39597             }
39598         }
39599         return w;
39600     }
39601 });
39602
39603
39604 // anything other than normal should be considered experimental
39605 Roo.form.Field.msgFx = {
39606     normal : {
39607         show: function(msgEl, f){
39608             msgEl.setDisplayed('block');
39609         },
39610
39611         hide : function(msgEl, f){
39612             msgEl.setDisplayed(false).update('');
39613         }
39614     },
39615
39616     slide : {
39617         show: function(msgEl, f){
39618             msgEl.slideIn('t', {stopFx:true});
39619         },
39620
39621         hide : function(msgEl, f){
39622             msgEl.slideOut('t', {stopFx:true,useDisplay:true});
39623         }
39624     },
39625
39626     slideRight : {
39627         show: function(msgEl, f){
39628             msgEl.fixDisplay();
39629             msgEl.alignTo(f.el, 'tl-tr');
39630             msgEl.slideIn('l', {stopFx:true});
39631         },
39632
39633         hide : function(msgEl, f){
39634             msgEl.slideOut('l', {stopFx:true,useDisplay:true});
39635         }
39636     }
39637 };/*
39638  * Based on:
39639  * Ext JS Library 1.1.1
39640  * Copyright(c) 2006-2007, Ext JS, LLC.
39641  *
39642  * Originally Released Under LGPL - original licence link has changed is not relivant.
39643  *
39644  * Fork - LGPL
39645  * <script type="text/javascript">
39646  */
39647  
39648
39649 /**
39650  * @class Roo.form.TextField
39651  * @extends Roo.form.Field
39652  * Basic text field.  Can be used as a direct replacement for traditional text inputs, or as the base
39653  * class for more sophisticated input controls (like {@link Roo.form.TextArea} and {@link Roo.form.ComboBox}).
39654  * @constructor
39655  * Creates a new TextField
39656  * @param {Object} config Configuration options
39657  */
39658 Roo.form.TextField = function(config){
39659     Roo.form.TextField.superclass.constructor.call(this, config);
39660     this.addEvents({
39661         /**
39662          * @event autosize
39663          * Fires when the autosize function is triggered.  The field may or may not have actually changed size
39664          * according to the default logic, but this event provides a hook for the developer to apply additional
39665          * logic at runtime to resize the field if needed.
39666              * @param {Roo.form.Field} this This text field
39667              * @param {Number} width The new field width
39668              */
39669         autosize : true
39670     });
39671 };
39672
39673 Roo.extend(Roo.form.TextField, Roo.form.Field,  {
39674     /**
39675      * @cfg {Boolean} grow True if this field should automatically grow and shrink to its content
39676      */
39677     grow : false,
39678     /**
39679      * @cfg {Number} growMin The minimum width to allow when grow = true (defaults to 30)
39680      */
39681     growMin : 30,
39682     /**
39683      * @cfg {Number} growMax The maximum width to allow when grow = true (defaults to 800)
39684      */
39685     growMax : 800,
39686     /**
39687      * @cfg {String} vtype A validation type name as defined in {@link Roo.form.VTypes} (defaults to null)
39688      */
39689     vtype : null,
39690     /**
39691      * @cfg {String} maskRe An input mask regular expression that will be used to filter keystrokes that don't match (defaults to null)
39692      */
39693     maskRe : null,
39694     /**
39695      * @cfg {Boolean} disableKeyFilter True to disable input keystroke filtering (defaults to false)
39696      */
39697     disableKeyFilter : false,
39698     /**
39699      * @cfg {Boolean} allowBlank False to validate that the value length > 0 (defaults to true)
39700      */
39701     allowBlank : true,
39702     /**
39703      * @cfg {Number} minLength Minimum input field length required (defaults to 0)
39704      */
39705     minLength : 0,
39706     /**
39707      * @cfg {Number} maxLength Maximum input field length allowed (defaults to Number.MAX_VALUE)
39708      */
39709     maxLength : Number.MAX_VALUE,
39710     /**
39711      * @cfg {String} minLengthText Error text to display if the minimum length validation fails (defaults to "The minimum length for this field is {minLength}")
39712      */
39713     minLengthText : "The minimum length for this field is {0}",
39714     /**
39715      * @cfg {String} maxLengthText Error text to display if the maximum length validation fails (defaults to "The maximum length for this field is {maxLength}")
39716      */
39717     maxLengthText : "The maximum length for this field is {0}",
39718     /**
39719      * @cfg {Boolean} selectOnFocus True to automatically select any existing field text when the field receives input focus (defaults to false)
39720      */
39721     selectOnFocus : false,
39722     /**
39723      * @cfg {Boolean} allowLeadingSpace True to prevent the stripping of leading white space 
39724      */    
39725     allowLeadingSpace : false,
39726     /**
39727      * @cfg {String} blankText Error text to display if the allow blank validation fails (defaults to "This field is required")
39728      */
39729     blankText : "This field is required",
39730     /**
39731      * @cfg {Function} validator A custom validation function to be called during field validation (defaults to null).
39732      * If available, this function will be called only after the basic validators all return true, and will be passed the
39733      * current field value and expected to return boolean true if the value is valid or a string error message if invalid.
39734      */
39735     validator : null,
39736     /**
39737      * @cfg {RegExp} regex A JavaScript RegExp object to be tested against the field value during validation (defaults to null).
39738      * If available, this regex will be evaluated only after the basic validators all return true, and will be passed the
39739      * current field value.  If the test fails, the field will be marked invalid using {@link #regexText}.
39740      */
39741     regex : null,
39742     /**
39743      * @cfg {String} regexText The error text to display if {@link #regex} is used and the test fails during validation (defaults to "")
39744      */
39745     regexText : "",
39746     /**
39747      * @cfg {String} emptyText The default text to display in an empty field - placeholder... (defaults to null).
39748      */
39749     emptyText : null,
39750    
39751
39752     // private
39753     initEvents : function()
39754     {
39755         if (this.emptyText) {
39756             this.el.attr('placeholder', this.emptyText);
39757         }
39758         
39759         Roo.form.TextField.superclass.initEvents.call(this);
39760         if(this.validationEvent == 'keyup'){
39761             this.validationTask = new Roo.util.DelayedTask(this.validate, this);
39762             this.el.on('keyup', this.filterValidation, this);
39763         }
39764         else if(this.validationEvent !== false){
39765             this.el.on(this.validationEvent, this.validate, this, {buffer: this.validationDelay});
39766         }
39767         
39768         if(this.selectOnFocus){
39769             this.on("focus", this.preFocus, this);
39770         }
39771         if (!this.allowLeadingSpace) {
39772             this.on('blur', this.cleanLeadingSpace, this);
39773         }
39774         
39775         if(this.maskRe || (this.vtype && this.disableKeyFilter !== true && (this.maskRe = Roo.form.VTypes[this.vtype+'Mask']))){
39776             this.el.on("keypress", this.filterKeys, this);
39777         }
39778         if(this.grow){
39779             this.el.on("keyup", this.onKeyUp,  this, {buffer:50});
39780             this.el.on("click", this.autoSize,  this);
39781         }
39782         if(this.el.is('input[type=password]') && Roo.isSafari){
39783             this.el.on('keydown', this.SafariOnKeyDown, this);
39784         }
39785     },
39786
39787     processValue : function(value){
39788         if(this.stripCharsRe){
39789             var newValue = value.replace(this.stripCharsRe, '');
39790             if(newValue !== value){
39791                 this.setRawValue(newValue);
39792                 return newValue;
39793             }
39794         }
39795         return value;
39796     },
39797
39798     filterValidation : function(e){
39799         if(!e.isNavKeyPress()){
39800             this.validationTask.delay(this.validationDelay);
39801         }
39802     },
39803
39804     // private
39805     onKeyUp : function(e){
39806         if(!e.isNavKeyPress()){
39807             this.autoSize();
39808         }
39809     },
39810     // private - clean the leading white space
39811     cleanLeadingSpace : function(e)
39812     {
39813         if ( this.inputType == 'file') {
39814             return;
39815         }
39816         
39817         this.setValue((this.getValue() + '').replace(/^\s+/,''));
39818     },
39819     /**
39820      * Resets the current field value to the originally-loaded value and clears any validation messages.
39821      *  
39822      */
39823     reset : function(){
39824         Roo.form.TextField.superclass.reset.call(this);
39825        
39826     }, 
39827     // private
39828     preFocus : function(){
39829         
39830         if(this.selectOnFocus){
39831             this.el.dom.select();
39832         }
39833     },
39834
39835     
39836     // private
39837     filterKeys : function(e){
39838         var k = e.getKey();
39839         if(!Roo.isIE && (e.isNavKeyPress() || k == e.BACKSPACE || (k == e.DELETE && e.button == -1))){
39840             return;
39841         }
39842         var c = e.getCharCode(), cc = String.fromCharCode(c);
39843         if(Roo.isIE && (e.isSpecialKey() || !cc)){
39844             return;
39845         }
39846         if(!this.maskRe.test(cc)){
39847             e.stopEvent();
39848         }
39849     },
39850
39851     setValue : function(v){
39852         
39853         Roo.form.TextField.superclass.setValue.apply(this, arguments);
39854         
39855         this.autoSize();
39856     },
39857
39858     /**
39859      * Validates a value according to the field's validation rules and marks the field as invalid
39860      * if the validation fails
39861      * @param {Mixed} value The value to validate
39862      * @return {Boolean} True if the value is valid, else false
39863      */
39864     validateValue : function(value){
39865         if(value.length < 1)  { // if it's blank
39866              if(this.allowBlank){
39867                 this.clearInvalid();
39868                 return true;
39869              }else{
39870                 this.markInvalid(this.blankText);
39871                 return false;
39872              }
39873         }
39874         if(value.length < this.minLength){
39875             this.markInvalid(String.format(this.minLengthText, this.minLength));
39876             return false;
39877         }
39878         if(value.length > this.maxLength){
39879             this.markInvalid(String.format(this.maxLengthText, this.maxLength));
39880             return false;
39881         }
39882         if(this.vtype){
39883             var vt = Roo.form.VTypes;
39884             if(!vt[this.vtype](value, this)){
39885                 this.markInvalid(this.vtypeText || vt[this.vtype +'Text']);
39886                 return false;
39887             }
39888         }
39889         if(typeof this.validator == "function"){
39890             var msg = this.validator(value);
39891             if(msg !== true){
39892                 this.markInvalid(msg);
39893                 return false;
39894             }
39895         }
39896         if(this.regex && !this.regex.test(value)){
39897             this.markInvalid(this.regexText);
39898             return false;
39899         }
39900         return true;
39901     },
39902
39903     /**
39904      * Selects text in this field
39905      * @param {Number} start (optional) The index where the selection should start (defaults to 0)
39906      * @param {Number} end (optional) The index where the selection should end (defaults to the text length)
39907      */
39908     selectText : function(start, end){
39909         var v = this.getRawValue();
39910         if(v.length > 0){
39911             start = start === undefined ? 0 : start;
39912             end = end === undefined ? v.length : end;
39913             var d = this.el.dom;
39914             if(d.setSelectionRange){
39915                 d.setSelectionRange(start, end);
39916             }else if(d.createTextRange){
39917                 var range = d.createTextRange();
39918                 range.moveStart("character", start);
39919                 range.moveEnd("character", v.length-end);
39920                 range.select();
39921             }
39922         }
39923     },
39924
39925     /**
39926      * Automatically grows the field to accomodate the width of the text up to the maximum field width allowed.
39927      * This only takes effect if grow = true, and fires the autosize event.
39928      */
39929     autoSize : function(){
39930         if(!this.grow || !this.rendered){
39931             return;
39932         }
39933         if(!this.metrics){
39934             this.metrics = Roo.util.TextMetrics.createInstance(this.el);
39935         }
39936         var el = this.el;
39937         var v = el.dom.value;
39938         var d = document.createElement('div');
39939         d.appendChild(document.createTextNode(v));
39940         v = d.innerHTML;
39941         d = null;
39942         v += "&#160;";
39943         var w = Math.min(this.growMax, Math.max(this.metrics.getWidth(v) + /* add extra padding */ 10, this.growMin));
39944         this.el.setWidth(w);
39945         this.fireEvent("autosize", this, w);
39946     },
39947     
39948     // private
39949     SafariOnKeyDown : function(event)
39950     {
39951         // this is a workaround for a password hang bug on chrome/ webkit.
39952         
39953         var isSelectAll = false;
39954         
39955         if(this.el.dom.selectionEnd > 0){
39956             isSelectAll = (this.el.dom.selectionEnd - this.el.dom.selectionStart - this.getValue().length == 0) ? true : false;
39957         }
39958         if(((event.getKey() == 8 || event.getKey() == 46) && this.getValue().length ==1)){ // backspace and delete key
39959             event.preventDefault();
39960             this.setValue('');
39961             return;
39962         }
39963         
39964         if(isSelectAll && event.getCharCode() > 31){ // backspace and delete key
39965             
39966             event.preventDefault();
39967             // this is very hacky as keydown always get's upper case.
39968             
39969             var cc = String.fromCharCode(event.getCharCode());
39970             
39971             
39972             this.setValue( event.shiftKey ?  cc : cc.toLowerCase());
39973             
39974         }
39975         
39976         
39977     }
39978 });/*
39979  * Based on:
39980  * Ext JS Library 1.1.1
39981  * Copyright(c) 2006-2007, Ext JS, LLC.
39982  *
39983  * Originally Released Under LGPL - original licence link has changed is not relivant.
39984  *
39985  * Fork - LGPL
39986  * <script type="text/javascript">
39987  */
39988  
39989 /**
39990  * @class Roo.form.Hidden
39991  * @extends Roo.form.TextField
39992  * Simple Hidden element used on forms 
39993  * 
39994  * usage: form.add(new Roo.form.HiddenField({ 'name' : 'test1' }));
39995  * 
39996  * @constructor
39997  * Creates a new Hidden form element.
39998  * @param {Object} config Configuration options
39999  */
40000
40001
40002
40003 // easy hidden field...
40004 Roo.form.Hidden = function(config){
40005     Roo.form.Hidden.superclass.constructor.call(this, config);
40006 };
40007   
40008 Roo.extend(Roo.form.Hidden, Roo.form.TextField, {
40009     fieldLabel:      '',
40010     inputType:      'hidden',
40011     width:          50,
40012     allowBlank:     true,
40013     labelSeparator: '',
40014     hidden:         true,
40015     itemCls :       'x-form-item-display-none'
40016
40017
40018 });
40019
40020
40021 /*
40022  * Based on:
40023  * Ext JS Library 1.1.1
40024  * Copyright(c) 2006-2007, Ext JS, LLC.
40025  *
40026  * Originally Released Under LGPL - original licence link has changed is not relivant.
40027  *
40028  * Fork - LGPL
40029  * <script type="text/javascript">
40030  */
40031  
40032 /**
40033  * @class Roo.form.TriggerField
40034  * @extends Roo.form.TextField
40035  * Provides a convenient wrapper for TextFields that adds a clickable trigger button (looks like a combobox by default).
40036  * The trigger has no default action, so you must assign a function to implement the trigger click handler by
40037  * overriding {@link #onTriggerClick}. You can create a TriggerField directly, as it renders exactly like a combobox
40038  * for which you can provide a custom implementation.  For example:
40039  * <pre><code>
40040 var trigger = new Roo.form.TriggerField();
40041 trigger.onTriggerClick = myTriggerFn;
40042 trigger.applyTo('my-field');
40043 </code></pre>
40044  *
40045  * However, in general you will most likely want to use TriggerField as the base class for a reusable component.
40046  * {@link Roo.form.DateField} and {@link Roo.form.ComboBox} are perfect examples of this.
40047  * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
40048  * class 'x-form-trigger' by default and triggerClass will be <b>appended</b> if specified.
40049  * @constructor
40050  * Create a new TriggerField.
40051  * @param {Object} config Configuration options (valid {@Roo.form.TextField} config options will also be applied
40052  * to the base TextField)
40053  */
40054 Roo.form.TriggerField = function(config){
40055     this.mimicing = false;
40056     Roo.form.TriggerField.superclass.constructor.call(this, config);
40057 };
40058
40059 Roo.extend(Roo.form.TriggerField, Roo.form.TextField,  {
40060     /**
40061      * @cfg {String} triggerClass A CSS class to apply to the trigger
40062      */
40063     /**
40064      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
40065      * {tag: "input", type: "text", size: "16", autocomplete: "off"})
40066      */
40067     defaultAutoCreate : {tag: "input", type: "text", size: "16", autocomplete: "new-password"},
40068     /**
40069      * @cfg {Boolean} hideTrigger True to hide the trigger element and display only the base text field (defaults to false)
40070      */
40071     hideTrigger:false,
40072
40073     /** @cfg {Boolean} grow @hide */
40074     /** @cfg {Number} growMin @hide */
40075     /** @cfg {Number} growMax @hide */
40076
40077     /**
40078      * @hide 
40079      * @method
40080      */
40081     autoSize: Roo.emptyFn,
40082     // private
40083     monitorTab : true,
40084     // private
40085     deferHeight : true,
40086
40087     
40088     actionMode : 'wrap',
40089     // private
40090     onResize : function(w, h){
40091         Roo.form.TriggerField.superclass.onResize.apply(this, arguments);
40092         if(typeof w == 'number'){
40093             var x = w - this.trigger.getWidth();
40094             this.el.setWidth(this.adjustWidth('input', x));
40095             this.trigger.setStyle('left', x+'px');
40096         }
40097     },
40098
40099     // private
40100     adjustSize : Roo.BoxComponent.prototype.adjustSize,
40101
40102     // private
40103     getResizeEl : function(){
40104         return this.wrap;
40105     },
40106
40107     // private
40108     getPositionEl : function(){
40109         return this.wrap;
40110     },
40111
40112     // private
40113     alignErrorIcon : function(){
40114         this.errorIcon.alignTo(this.wrap, 'tl-tr', [2, 0]);
40115     },
40116
40117     // private
40118     onRender : function(ct, position){
40119         Roo.form.TriggerField.superclass.onRender.call(this, ct, position);
40120         this.wrap = this.el.wrap({cls: "x-form-field-wrap"});
40121         this.trigger = this.wrap.createChild(this.triggerConfig ||
40122                 {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.triggerClass});
40123         if(this.hideTrigger){
40124             this.trigger.setDisplayed(false);
40125         }
40126         this.initTrigger();
40127         if(!this.width){
40128             this.wrap.setWidth(this.el.getWidth()+this.trigger.getWidth());
40129         }
40130     },
40131
40132     // private
40133     initTrigger : function(){
40134         this.trigger.on("click", this.onTriggerClick, this, {preventDefault:true});
40135         this.trigger.addClassOnOver('x-form-trigger-over');
40136         this.trigger.addClassOnClick('x-form-trigger-click');
40137     },
40138
40139     // private
40140     onDestroy : function(){
40141         if(this.trigger){
40142             this.trigger.removeAllListeners();
40143             this.trigger.remove();
40144         }
40145         if(this.wrap){
40146             this.wrap.remove();
40147         }
40148         Roo.form.TriggerField.superclass.onDestroy.call(this);
40149     },
40150
40151     // private
40152     onFocus : function(){
40153         Roo.form.TriggerField.superclass.onFocus.call(this);
40154         if(!this.mimicing){
40155             this.wrap.addClass('x-trigger-wrap-focus');
40156             this.mimicing = true;
40157             Roo.get(Roo.isIE ? document.body : document).on("mousedown", this.mimicBlur, this);
40158             if(this.monitorTab){
40159                 this.el.on("keydown", this.checkTab, this);
40160             }
40161         }
40162     },
40163
40164     // private
40165     checkTab : function(e){
40166         if(e.getKey() == e.TAB){
40167             this.triggerBlur();
40168         }
40169     },
40170
40171     // private
40172     onBlur : function(){
40173         // do nothing
40174     },
40175
40176     // private
40177     mimicBlur : function(e, t){
40178         if(!this.wrap.contains(t) && this.validateBlur()){
40179             this.triggerBlur();
40180         }
40181     },
40182
40183     // private
40184     triggerBlur : function(){
40185         this.mimicing = false;
40186         Roo.get(Roo.isIE ? document.body : document).un("mousedown", this.mimicBlur);
40187         if(this.monitorTab){
40188             this.el.un("keydown", this.checkTab, this);
40189         }
40190         this.wrap.removeClass('x-trigger-wrap-focus');
40191         Roo.form.TriggerField.superclass.onBlur.call(this);
40192     },
40193
40194     // private
40195     // This should be overriden by any subclass that needs to check whether or not the field can be blurred.
40196     validateBlur : function(e, t){
40197         return true;
40198     },
40199
40200     // private
40201     onDisable : function(){
40202         Roo.form.TriggerField.superclass.onDisable.call(this);
40203         if(this.wrap){
40204             this.wrap.addClass('x-item-disabled');
40205         }
40206     },
40207
40208     // private
40209     onEnable : function(){
40210         Roo.form.TriggerField.superclass.onEnable.call(this);
40211         if(this.wrap){
40212             this.wrap.removeClass('x-item-disabled');
40213         }
40214     },
40215
40216     // private
40217     onShow : function(){
40218         var ae = this.getActionEl();
40219         
40220         if(ae){
40221             ae.dom.style.display = '';
40222             ae.dom.style.visibility = 'visible';
40223         }
40224     },
40225
40226     // private
40227     
40228     onHide : function(){
40229         var ae = this.getActionEl();
40230         ae.dom.style.display = 'none';
40231     },
40232
40233     /**
40234      * The function that should handle the trigger's click event.  This method does nothing by default until overridden
40235      * by an implementing function.
40236      * @method
40237      * @param {EventObject} e
40238      */
40239     onTriggerClick : Roo.emptyFn
40240 });
40241
40242 // TwinTriggerField is not a public class to be used directly.  It is meant as an abstract base class
40243 // to be extended by an implementing class.  For an example of implementing this class, see the custom
40244 // SearchField implementation here: http://extjs.com/deploy/ext/examples/form/custom.html
40245 Roo.form.TwinTriggerField = Roo.extend(Roo.form.TriggerField, {
40246     initComponent : function(){
40247         Roo.form.TwinTriggerField.superclass.initComponent.call(this);
40248
40249         this.triggerConfig = {
40250             tag:'span', cls:'x-form-twin-triggers', cn:[
40251             {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.trigger1Class},
40252             {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.trigger2Class}
40253         ]};
40254     },
40255
40256     getTrigger : function(index){
40257         return this.triggers[index];
40258     },
40259
40260     initTrigger : function(){
40261         var ts = this.trigger.select('.x-form-trigger', true);
40262         this.wrap.setStyle('overflow', 'hidden');
40263         var triggerField = this;
40264         ts.each(function(t, all, index){
40265             t.hide = function(){
40266                 var w = triggerField.wrap.getWidth();
40267                 this.dom.style.display = 'none';
40268                 triggerField.el.setWidth(w-triggerField.trigger.getWidth());
40269             };
40270             t.show = function(){
40271                 var w = triggerField.wrap.getWidth();
40272                 this.dom.style.display = '';
40273                 triggerField.el.setWidth(w-triggerField.trigger.getWidth());
40274             };
40275             var triggerIndex = 'Trigger'+(index+1);
40276
40277             if(this['hide'+triggerIndex]){
40278                 t.dom.style.display = 'none';
40279             }
40280             t.on("click", this['on'+triggerIndex+'Click'], this, {preventDefault:true});
40281             t.addClassOnOver('x-form-trigger-over');
40282             t.addClassOnClick('x-form-trigger-click');
40283         }, this);
40284         this.triggers = ts.elements;
40285     },
40286
40287     onTrigger1Click : Roo.emptyFn,
40288     onTrigger2Click : Roo.emptyFn
40289 });/*
40290  * Based on:
40291  * Ext JS Library 1.1.1
40292  * Copyright(c) 2006-2007, Ext JS, LLC.
40293  *
40294  * Originally Released Under LGPL - original licence link has changed is not relivant.
40295  *
40296  * Fork - LGPL
40297  * <script type="text/javascript">
40298  */
40299  
40300 /**
40301  * @class Roo.form.TextArea
40302  * @extends Roo.form.TextField
40303  * Multiline text field.  Can be used as a direct replacement for traditional textarea fields, plus adds
40304  * support for auto-sizing.
40305  * @constructor
40306  * Creates a new TextArea
40307  * @param {Object} config Configuration options
40308  */
40309 Roo.form.TextArea = function(config){
40310     Roo.form.TextArea.superclass.constructor.call(this, config);
40311     // these are provided exchanges for backwards compat
40312     // minHeight/maxHeight were replaced by growMin/growMax to be
40313     // compatible with TextField growing config values
40314     if(this.minHeight !== undefined){
40315         this.growMin = this.minHeight;
40316     }
40317     if(this.maxHeight !== undefined){
40318         this.growMax = this.maxHeight;
40319     }
40320 };
40321
40322 Roo.extend(Roo.form.TextArea, Roo.form.TextField,  {
40323     /**
40324      * @cfg {Number} growMin The minimum height to allow when grow = true (defaults to 60)
40325      */
40326     growMin : 60,
40327     /**
40328      * @cfg {Number} growMax The maximum height to allow when grow = true (defaults to 1000)
40329      */
40330     growMax: 1000,
40331     /**
40332      * @cfg {Boolean} preventScrollbars True to prevent scrollbars from appearing regardless of how much text is
40333      * in the field (equivalent to setting overflow: hidden, defaults to false)
40334      */
40335     preventScrollbars: false,
40336     /**
40337      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
40338      * {tag: "textarea", style: "width:300px;height:60px;", autocomplete: "off"})
40339      */
40340
40341     // private
40342     onRender : function(ct, position){
40343         if(!this.el){
40344             this.defaultAutoCreate = {
40345                 tag: "textarea",
40346                 style:"width:300px;height:60px;",
40347                 autocomplete: "new-password"
40348             };
40349         }
40350         Roo.form.TextArea.superclass.onRender.call(this, ct, position);
40351         if(this.grow){
40352             this.textSizeEl = Roo.DomHelper.append(document.body, {
40353                 tag: "pre", cls: "x-form-grow-sizer"
40354             });
40355             if(this.preventScrollbars){
40356                 this.el.setStyle("overflow", "hidden");
40357             }
40358             this.el.setHeight(this.growMin);
40359         }
40360     },
40361
40362     onDestroy : function(){
40363         if(this.textSizeEl){
40364             this.textSizeEl.parentNode.removeChild(this.textSizeEl);
40365         }
40366         Roo.form.TextArea.superclass.onDestroy.call(this);
40367     },
40368
40369     // private
40370     onKeyUp : function(e){
40371         if(!e.isNavKeyPress() || e.getKey() == e.ENTER){
40372             this.autoSize();
40373         }
40374     },
40375
40376     /**
40377      * Automatically grows the field to accomodate the height of the text up to the maximum field height allowed.
40378      * This only takes effect if grow = true, and fires the autosize event if the height changes.
40379      */
40380     autoSize : function(){
40381         if(!this.grow || !this.textSizeEl){
40382             return;
40383         }
40384         var el = this.el;
40385         var v = el.dom.value;
40386         var ts = this.textSizeEl;
40387
40388         ts.innerHTML = '';
40389         ts.appendChild(document.createTextNode(v));
40390         v = ts.innerHTML;
40391
40392         Roo.fly(ts).setWidth(this.el.getWidth());
40393         if(v.length < 1){
40394             v = "&#160;&#160;";
40395         }else{
40396             if(Roo.isIE){
40397                 v = v.replace(/\n/g, '<p>&#160;</p>');
40398             }
40399             v += "&#160;\n&#160;";
40400         }
40401         ts.innerHTML = v;
40402         var h = Math.min(this.growMax, Math.max(ts.offsetHeight, this.growMin));
40403         if(h != this.lastHeight){
40404             this.lastHeight = h;
40405             this.el.setHeight(h);
40406             this.fireEvent("autosize", this, h);
40407         }
40408     }
40409 });/*
40410  * Based on:
40411  * Ext JS Library 1.1.1
40412  * Copyright(c) 2006-2007, Ext JS, LLC.
40413  *
40414  * Originally Released Under LGPL - original licence link has changed is not relivant.
40415  *
40416  * Fork - LGPL
40417  * <script type="text/javascript">
40418  */
40419  
40420
40421 /**
40422  * @class Roo.form.NumberField
40423  * @extends Roo.form.TextField
40424  * Numeric text field that provides automatic keystroke filtering and numeric validation.
40425  * @constructor
40426  * Creates a new NumberField
40427  * @param {Object} config Configuration options
40428  */
40429 Roo.form.NumberField = function(config){
40430     Roo.form.NumberField.superclass.constructor.call(this, config);
40431 };
40432
40433 Roo.extend(Roo.form.NumberField, Roo.form.TextField,  {
40434     /**
40435      * @cfg {String} fieldClass The default CSS class for the field (defaults to "x-form-field x-form-num-field")
40436      */
40437     fieldClass: "x-form-field x-form-num-field",
40438     /**
40439      * @cfg {Boolean} allowDecimals False to disallow decimal values (defaults to true)
40440      */
40441     allowDecimals : true,
40442     /**
40443      * @cfg {String} decimalSeparator Character(s) to allow as the decimal separator (defaults to '.')
40444      */
40445     decimalSeparator : ".",
40446     /**
40447      * @cfg {Number} decimalPrecision The maximum precision to display after the decimal separator (defaults to 2)
40448      */
40449     decimalPrecision : 2,
40450     /**
40451      * @cfg {Boolean} allowNegative False to prevent entering a negative sign (defaults to true)
40452      */
40453     allowNegative : true,
40454     /**
40455      * @cfg {Number} minValue The minimum allowed value (defaults to Number.NEGATIVE_INFINITY)
40456      */
40457     minValue : Number.NEGATIVE_INFINITY,
40458     /**
40459      * @cfg {Number} maxValue The maximum allowed value (defaults to Number.MAX_VALUE)
40460      */
40461     maxValue : Number.MAX_VALUE,
40462     /**
40463      * @cfg {String} minText Error text to display if the minimum value validation fails (defaults to "The minimum value for this field is {minValue}")
40464      */
40465     minText : "The minimum value for this field is {0}",
40466     /**
40467      * @cfg {String} maxText Error text to display if the maximum value validation fails (defaults to "The maximum value for this field is {maxValue}")
40468      */
40469     maxText : "The maximum value for this field is {0}",
40470     /**
40471      * @cfg {String} nanText Error text to display if the value is not a valid number.  For example, this can happen
40472      * if a valid character like '.' or '-' is left in the field with no number (defaults to "{value} is not a valid number")
40473      */
40474     nanText : "{0} is not a valid number",
40475
40476     // private
40477     initEvents : function(){
40478         Roo.form.NumberField.superclass.initEvents.call(this);
40479         var allowed = "0123456789";
40480         if(this.allowDecimals){
40481             allowed += this.decimalSeparator;
40482         }
40483         if(this.allowNegative){
40484             allowed += "-";
40485         }
40486         this.stripCharsRe = new RegExp('[^'+allowed+']', 'gi');
40487         var keyPress = function(e){
40488             var k = e.getKey();
40489             if(!Roo.isIE && (e.isSpecialKey() || k == e.BACKSPACE || k == e.DELETE)){
40490                 return;
40491             }
40492             var c = e.getCharCode();
40493             if(allowed.indexOf(String.fromCharCode(c)) === -1){
40494                 e.stopEvent();
40495             }
40496         };
40497         this.el.on("keypress", keyPress, this);
40498     },
40499
40500     // private
40501     validateValue : function(value){
40502         if(!Roo.form.NumberField.superclass.validateValue.call(this, value)){
40503             return false;
40504         }
40505         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
40506              return true;
40507         }
40508         var num = this.parseValue(value);
40509         if(isNaN(num)){
40510             this.markInvalid(String.format(this.nanText, value));
40511             return false;
40512         }
40513         if(num < this.minValue){
40514             this.markInvalid(String.format(this.minText, this.minValue));
40515             return false;
40516         }
40517         if(num > this.maxValue){
40518             this.markInvalid(String.format(this.maxText, this.maxValue));
40519             return false;
40520         }
40521         return true;
40522     },
40523
40524     getValue : function(){
40525         return this.fixPrecision(this.parseValue(Roo.form.NumberField.superclass.getValue.call(this)));
40526     },
40527
40528     // private
40529     parseValue : function(value){
40530         value = parseFloat(String(value).replace(this.decimalSeparator, "."));
40531         return isNaN(value) ? '' : value;
40532     },
40533
40534     // private
40535     fixPrecision : function(value){
40536         var nan = isNaN(value);
40537         if(!this.allowDecimals || this.decimalPrecision == -1 || nan || !value){
40538             return nan ? '' : value;
40539         }
40540         return parseFloat(value).toFixed(this.decimalPrecision);
40541     },
40542
40543     setValue : function(v){
40544         v = this.fixPrecision(v);
40545         Roo.form.NumberField.superclass.setValue.call(this, String(v).replace(".", this.decimalSeparator));
40546     },
40547
40548     // private
40549     decimalPrecisionFcn : function(v){
40550         return Math.floor(v);
40551     },
40552
40553     beforeBlur : function(){
40554         var v = this.parseValue(this.getRawValue());
40555         if(v){
40556             this.setValue(v);
40557         }
40558     }
40559 });/*
40560  * Based on:
40561  * Ext JS Library 1.1.1
40562  * Copyright(c) 2006-2007, Ext JS, LLC.
40563  *
40564  * Originally Released Under LGPL - original licence link has changed is not relivant.
40565  *
40566  * Fork - LGPL
40567  * <script type="text/javascript">
40568  */
40569  
40570 /**
40571  * @class Roo.form.DateField
40572  * @extends Roo.form.TriggerField
40573  * Provides a date input field with a {@link Roo.DatePicker} dropdown and automatic date validation.
40574 * @constructor
40575 * Create a new DateField
40576 * @param {Object} config
40577  */
40578 Roo.form.DateField = function(config)
40579 {
40580     Roo.form.DateField.superclass.constructor.call(this, config);
40581     
40582       this.addEvents({
40583          
40584         /**
40585          * @event select
40586          * Fires when a date is selected
40587              * @param {Roo.form.DateField} combo This combo box
40588              * @param {Date} date The date selected
40589              */
40590         'select' : true
40591          
40592     });
40593     
40594     
40595     if(typeof this.minValue == "string") {
40596         this.minValue = this.parseDate(this.minValue);
40597     }
40598     if(typeof this.maxValue == "string") {
40599         this.maxValue = this.parseDate(this.maxValue);
40600     }
40601     this.ddMatch = null;
40602     if(this.disabledDates){
40603         var dd = this.disabledDates;
40604         var re = "(?:";
40605         for(var i = 0; i < dd.length; i++){
40606             re += dd[i];
40607             if(i != dd.length-1) {
40608                 re += "|";
40609             }
40610         }
40611         this.ddMatch = new RegExp(re + ")");
40612     }
40613 };
40614
40615 Roo.extend(Roo.form.DateField, Roo.form.TriggerField,  {
40616     /**
40617      * @cfg {String} format
40618      * The default date format string which can be overriden for localization support.  The format must be
40619      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
40620      */
40621     format : "m/d/y",
40622     /**
40623      * @cfg {String} altFormats
40624      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
40625      * format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
40626      */
40627     altFormats : "m/d/Y|m-d-y|m-d-Y|m/d|m-d|md|mdy|mdY|d",
40628     /**
40629      * @cfg {Array} disabledDays
40630      * An array of days to disable, 0 based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
40631      */
40632     disabledDays : null,
40633     /**
40634      * @cfg {String} disabledDaysText
40635      * The tooltip to display when the date falls on a disabled day (defaults to 'Disabled')
40636      */
40637     disabledDaysText : "Disabled",
40638     /**
40639      * @cfg {Array} disabledDates
40640      * An array of "dates" to disable, as strings. These strings will be used to build a dynamic regular
40641      * expression so they are very powerful. Some examples:
40642      * <ul>
40643      * <li>["03/08/2003", "09/16/2003"] would disable those exact dates</li>
40644      * <li>["03/08", "09/16"] would disable those days for every year</li>
40645      * <li>["^03/08"] would only match the beginning (useful if you are using short years)</li>
40646      * <li>["03/../2006"] would disable every day in March 2006</li>
40647      * <li>["^03"] would disable every day in every March</li>
40648      * </ul>
40649      * In order to support regular expressions, if you are using a date format that has "." in it, you will have to
40650      * escape the dot when restricting dates. For example: ["03\\.08\\.03"].
40651      */
40652     disabledDates : null,
40653     /**
40654      * @cfg {String} disabledDatesText
40655      * The tooltip text to display when the date falls on a disabled date (defaults to 'Disabled')
40656      */
40657     disabledDatesText : "Disabled",
40658     /**
40659      * @cfg {Date/String} minValue
40660      * The minimum allowed date. Can be either a Javascript date object or a string date in a
40661      * valid format (defaults to null).
40662      */
40663     minValue : null,
40664     /**
40665      * @cfg {Date/String} maxValue
40666      * The maximum allowed date. Can be either a Javascript date object or a string date in a
40667      * valid format (defaults to null).
40668      */
40669     maxValue : null,
40670     /**
40671      * @cfg {String} minText
40672      * The error text to display when the date in the cell is before minValue (defaults to
40673      * 'The date in this field must be after {minValue}').
40674      */
40675     minText : "The date in this field must be equal to or after {0}",
40676     /**
40677      * @cfg {String} maxText
40678      * The error text to display when the date in the cell is after maxValue (defaults to
40679      * 'The date in this field must be before {maxValue}').
40680      */
40681     maxText : "The date in this field must be equal to or before {0}",
40682     /**
40683      * @cfg {String} invalidText
40684      * The error text to display when the date in the field is invalid (defaults to
40685      * '{value} is not a valid date - it must be in the format {format}').
40686      */
40687     invalidText : "{0} is not a valid date - it must be in the format {1}",
40688     /**
40689      * @cfg {String} triggerClass
40690      * An additional CSS class used to style the trigger button.  The trigger will always get the
40691      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-date-trigger'
40692      * which displays a calendar icon).
40693      */
40694     triggerClass : 'x-form-date-trigger',
40695     
40696
40697     /**
40698      * @cfg {Boolean} useIso
40699      * if enabled, then the date field will use a hidden field to store the 
40700      * real value as iso formated date. default (false)
40701      */ 
40702     useIso : false,
40703     /**
40704      * @cfg {String/Object} autoCreate
40705      * A DomHelper element spec, or true for a default element spec (defaults to
40706      * {tag: "input", type: "text", size: "10", autocomplete: "off"})
40707      */ 
40708     // private
40709     defaultAutoCreate : {tag: "input", type: "text", size: "10", autocomplete: "off"},
40710     
40711     // private
40712     hiddenField: false,
40713     
40714     onRender : function(ct, position)
40715     {
40716         Roo.form.DateField.superclass.onRender.call(this, ct, position);
40717         if (this.useIso) {
40718             //this.el.dom.removeAttribute('name'); 
40719             Roo.log("Changing name?");
40720             this.el.dom.setAttribute('name', this.name + '____hidden___' ); 
40721             this.hiddenField = this.el.insertSibling({ tag:'input', type:'hidden', name: this.name },
40722                     'before', true);
40723             this.hiddenField.value = this.value ? this.formatDate(this.value, 'Y-m-d') : '';
40724             // prevent input submission
40725             this.hiddenName = this.name;
40726         }
40727             
40728             
40729     },
40730     
40731     // private
40732     validateValue : function(value)
40733     {
40734         value = this.formatDate(value);
40735         if(!Roo.form.DateField.superclass.validateValue.call(this, value)){
40736             Roo.log('super failed');
40737             return false;
40738         }
40739         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
40740              return true;
40741         }
40742         var svalue = value;
40743         value = this.parseDate(value);
40744         if(!value){
40745             Roo.log('parse date failed' + svalue);
40746             this.markInvalid(String.format(this.invalidText, svalue, this.format));
40747             return false;
40748         }
40749         var time = value.getTime();
40750         if(this.minValue && time < this.minValue.getTime()){
40751             this.markInvalid(String.format(this.minText, this.formatDate(this.minValue)));
40752             return false;
40753         }
40754         if(this.maxValue && time > this.maxValue.getTime()){
40755             this.markInvalid(String.format(this.maxText, this.formatDate(this.maxValue)));
40756             return false;
40757         }
40758         if(this.disabledDays){
40759             var day = value.getDay();
40760             for(var i = 0; i < this.disabledDays.length; i++) {
40761                 if(day === this.disabledDays[i]){
40762                     this.markInvalid(this.disabledDaysText);
40763                     return false;
40764                 }
40765             }
40766         }
40767         var fvalue = this.formatDate(value);
40768         if(this.ddMatch && this.ddMatch.test(fvalue)){
40769             this.markInvalid(String.format(this.disabledDatesText, fvalue));
40770             return false;
40771         }
40772         return true;
40773     },
40774
40775     // private
40776     // Provides logic to override the default TriggerField.validateBlur which just returns true
40777     validateBlur : function(){
40778         return !this.menu || !this.menu.isVisible();
40779     },
40780     
40781     getName: function()
40782     {
40783         // returns hidden if it's set..
40784         if (!this.rendered) {return ''};
40785         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
40786         
40787     },
40788
40789     /**
40790      * Returns the current date value of the date field.
40791      * @return {Date} The date value
40792      */
40793     getValue : function(){
40794         
40795         return  this.hiddenField ?
40796                 this.hiddenField.value :
40797                 this.parseDate(Roo.form.DateField.superclass.getValue.call(this)) || "";
40798     },
40799
40800     /**
40801      * Sets the value of the date field.  You can pass a date object or any string that can be parsed into a valid
40802      * date, using DateField.format as the date format, according to the same rules as {@link Date#parseDate}
40803      * (the default format used is "m/d/y").
40804      * <br />Usage:
40805      * <pre><code>
40806 //All of these calls set the same date value (May 4, 2006)
40807
40808 //Pass a date object:
40809 var dt = new Date('5/4/06');
40810 dateField.setValue(dt);
40811
40812 //Pass a date string (default format):
40813 dateField.setValue('5/4/06');
40814
40815 //Pass a date string (custom format):
40816 dateField.format = 'Y-m-d';
40817 dateField.setValue('2006-5-4');
40818 </code></pre>
40819      * @param {String/Date} date The date or valid date string
40820      */
40821     setValue : function(date){
40822         if (this.hiddenField) {
40823             this.hiddenField.value = this.formatDate(this.parseDate(date), 'Y-m-d');
40824         }
40825         Roo.form.DateField.superclass.setValue.call(this, this.formatDate(this.parseDate(date)));
40826         // make sure the value field is always stored as a date..
40827         this.value = this.parseDate(date);
40828         
40829         
40830     },
40831
40832     // private
40833     parseDate : function(value){
40834         if(!value || value instanceof Date){
40835             return value;
40836         }
40837         var v = Date.parseDate(value, this.format);
40838          if (!v && this.useIso) {
40839             v = Date.parseDate(value, 'Y-m-d');
40840         }
40841         if(!v && this.altFormats){
40842             if(!this.altFormatsArray){
40843                 this.altFormatsArray = this.altFormats.split("|");
40844             }
40845             for(var i = 0, len = this.altFormatsArray.length; i < len && !v; i++){
40846                 v = Date.parseDate(value, this.altFormatsArray[i]);
40847             }
40848         }
40849         return v;
40850     },
40851
40852     // private
40853     formatDate : function(date, fmt){
40854         return (!date || !(date instanceof Date)) ?
40855                date : date.dateFormat(fmt || this.format);
40856     },
40857
40858     // private
40859     menuListeners : {
40860         select: function(m, d){
40861             
40862             this.setValue(d);
40863             this.fireEvent('select', this, d);
40864         },
40865         show : function(){ // retain focus styling
40866             this.onFocus();
40867         },
40868         hide : function(){
40869             this.focus.defer(10, this);
40870             var ml = this.menuListeners;
40871             this.menu.un("select", ml.select,  this);
40872             this.menu.un("show", ml.show,  this);
40873             this.menu.un("hide", ml.hide,  this);
40874         }
40875     },
40876
40877     // private
40878     // Implements the default empty TriggerField.onTriggerClick function to display the DatePicker
40879     onTriggerClick : function(){
40880         if(this.disabled){
40881             return;
40882         }
40883         if(this.menu == null){
40884             this.menu = new Roo.menu.DateMenu();
40885         }
40886         Roo.apply(this.menu.picker,  {
40887             showClear: this.allowBlank,
40888             minDate : this.minValue,
40889             maxDate : this.maxValue,
40890             disabledDatesRE : this.ddMatch,
40891             disabledDatesText : this.disabledDatesText,
40892             disabledDays : this.disabledDays,
40893             disabledDaysText : this.disabledDaysText,
40894             format : this.useIso ? 'Y-m-d' : this.format,
40895             minText : String.format(this.minText, this.formatDate(this.minValue)),
40896             maxText : String.format(this.maxText, this.formatDate(this.maxValue))
40897         });
40898         this.menu.on(Roo.apply({}, this.menuListeners, {
40899             scope:this
40900         }));
40901         this.menu.picker.setValue(this.getValue() || new Date());
40902         this.menu.show(this.el, "tl-bl?");
40903     },
40904
40905     beforeBlur : function(){
40906         var v = this.parseDate(this.getRawValue());
40907         if(v){
40908             this.setValue(v);
40909         }
40910     },
40911
40912     /*@
40913      * overide
40914      * 
40915      */
40916     isDirty : function() {
40917         if(this.disabled) {
40918             return false;
40919         }
40920         
40921         if(typeof(this.startValue) === 'undefined'){
40922             return false;
40923         }
40924         
40925         return String(this.getValue()) !== String(this.startValue);
40926         
40927     },
40928     // @overide
40929     cleanLeadingSpace : function(e)
40930     {
40931        return;
40932     }
40933     
40934 });/*
40935  * Based on:
40936  * Ext JS Library 1.1.1
40937  * Copyright(c) 2006-2007, Ext JS, LLC.
40938  *
40939  * Originally Released Under LGPL - original licence link has changed is not relivant.
40940  *
40941  * Fork - LGPL
40942  * <script type="text/javascript">
40943  */
40944  
40945 /**
40946  * @class Roo.form.MonthField
40947  * @extends Roo.form.TriggerField
40948  * Provides a date input field with a {@link Roo.DatePicker} dropdown and automatic date validation.
40949 * @constructor
40950 * Create a new MonthField
40951 * @param {Object} config
40952  */
40953 Roo.form.MonthField = function(config){
40954     
40955     Roo.form.MonthField.superclass.constructor.call(this, config);
40956     
40957       this.addEvents({
40958          
40959         /**
40960          * @event select
40961          * Fires when a date is selected
40962              * @param {Roo.form.MonthFieeld} combo This combo box
40963              * @param {Date} date The date selected
40964              */
40965         'select' : true
40966          
40967     });
40968     
40969     
40970     if(typeof this.minValue == "string") {
40971         this.minValue = this.parseDate(this.minValue);
40972     }
40973     if(typeof this.maxValue == "string") {
40974         this.maxValue = this.parseDate(this.maxValue);
40975     }
40976     this.ddMatch = null;
40977     if(this.disabledDates){
40978         var dd = this.disabledDates;
40979         var re = "(?:";
40980         for(var i = 0; i < dd.length; i++){
40981             re += dd[i];
40982             if(i != dd.length-1) {
40983                 re += "|";
40984             }
40985         }
40986         this.ddMatch = new RegExp(re + ")");
40987     }
40988 };
40989
40990 Roo.extend(Roo.form.MonthField, Roo.form.TriggerField,  {
40991     /**
40992      * @cfg {String} format
40993      * The default date format string which can be overriden for localization support.  The format must be
40994      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
40995      */
40996     format : "M Y",
40997     /**
40998      * @cfg {String} altFormats
40999      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
41000      * format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
41001      */
41002     altFormats : "M Y|m/Y|m-y|m-Y|my|mY",
41003     /**
41004      * @cfg {Array} disabledDays
41005      * An array of days to disable, 0 based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
41006      */
41007     disabledDays : [0,1,2,3,4,5,6],
41008     /**
41009      * @cfg {String} disabledDaysText
41010      * The tooltip to display when the date falls on a disabled day (defaults to 'Disabled')
41011      */
41012     disabledDaysText : "Disabled",
41013     /**
41014      * @cfg {Array} disabledDates
41015      * An array of "dates" to disable, as strings. These strings will be used to build a dynamic regular
41016      * expression so they are very powerful. Some examples:
41017      * <ul>
41018      * <li>["03/08/2003", "09/16/2003"] would disable those exact dates</li>
41019      * <li>["03/08", "09/16"] would disable those days for every year</li>
41020      * <li>["^03/08"] would only match the beginning (useful if you are using short years)</li>
41021      * <li>["03/../2006"] would disable every day in March 2006</li>
41022      * <li>["^03"] would disable every day in every March</li>
41023      * </ul>
41024      * In order to support regular expressions, if you are using a date format that has "." in it, you will have to
41025      * escape the dot when restricting dates. For example: ["03\\.08\\.03"].
41026      */
41027     disabledDates : null,
41028     /**
41029      * @cfg {String} disabledDatesText
41030      * The tooltip text to display when the date falls on a disabled date (defaults to 'Disabled')
41031      */
41032     disabledDatesText : "Disabled",
41033     /**
41034      * @cfg {Date/String} minValue
41035      * The minimum allowed date. Can be either a Javascript date object or a string date in a
41036      * valid format (defaults to null).
41037      */
41038     minValue : null,
41039     /**
41040      * @cfg {Date/String} maxValue
41041      * The maximum allowed date. Can be either a Javascript date object or a string date in a
41042      * valid format (defaults to null).
41043      */
41044     maxValue : null,
41045     /**
41046      * @cfg {String} minText
41047      * The error text to display when the date in the cell is before minValue (defaults to
41048      * 'The date in this field must be after {minValue}').
41049      */
41050     minText : "The date in this field must be equal to or after {0}",
41051     /**
41052      * @cfg {String} maxTextf
41053      * The error text to display when the date in the cell is after maxValue (defaults to
41054      * 'The date in this field must be before {maxValue}').
41055      */
41056     maxText : "The date in this field must be equal to or before {0}",
41057     /**
41058      * @cfg {String} invalidText
41059      * The error text to display when the date in the field is invalid (defaults to
41060      * '{value} is not a valid date - it must be in the format {format}').
41061      */
41062     invalidText : "{0} is not a valid date - it must be in the format {1}",
41063     /**
41064      * @cfg {String} triggerClass
41065      * An additional CSS class used to style the trigger button.  The trigger will always get the
41066      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-date-trigger'
41067      * which displays a calendar icon).
41068      */
41069     triggerClass : 'x-form-date-trigger',
41070     
41071
41072     /**
41073      * @cfg {Boolean} useIso
41074      * if enabled, then the date field will use a hidden field to store the 
41075      * real value as iso formated date. default (true)
41076      */ 
41077     useIso : true,
41078     /**
41079      * @cfg {String/Object} autoCreate
41080      * A DomHelper element spec, or true for a default element spec (defaults to
41081      * {tag: "input", type: "text", size: "10", autocomplete: "off"})
41082      */ 
41083     // private
41084     defaultAutoCreate : {tag: "input", type: "text", size: "10", autocomplete: "new-password"},
41085     
41086     // private
41087     hiddenField: false,
41088     
41089     hideMonthPicker : false,
41090     
41091     onRender : function(ct, position)
41092     {
41093         Roo.form.MonthField.superclass.onRender.call(this, ct, position);
41094         if (this.useIso) {
41095             this.el.dom.removeAttribute('name'); 
41096             this.hiddenField = this.el.insertSibling({ tag:'input', type:'hidden', name: this.name },
41097                     'before', true);
41098             this.hiddenField.value = this.value ? this.formatDate(this.value, 'Y-m-d') : '';
41099             // prevent input submission
41100             this.hiddenName = this.name;
41101         }
41102             
41103             
41104     },
41105     
41106     // private
41107     validateValue : function(value)
41108     {
41109         value = this.formatDate(value);
41110         if(!Roo.form.MonthField.superclass.validateValue.call(this, value)){
41111             return false;
41112         }
41113         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
41114              return true;
41115         }
41116         var svalue = value;
41117         value = this.parseDate(value);
41118         if(!value){
41119             this.markInvalid(String.format(this.invalidText, svalue, this.format));
41120             return false;
41121         }
41122         var time = value.getTime();
41123         if(this.minValue && time < this.minValue.getTime()){
41124             this.markInvalid(String.format(this.minText, this.formatDate(this.minValue)));
41125             return false;
41126         }
41127         if(this.maxValue && time > this.maxValue.getTime()){
41128             this.markInvalid(String.format(this.maxText, this.formatDate(this.maxValue)));
41129             return false;
41130         }
41131         /*if(this.disabledDays){
41132             var day = value.getDay();
41133             for(var i = 0; i < this.disabledDays.length; i++) {
41134                 if(day === this.disabledDays[i]){
41135                     this.markInvalid(this.disabledDaysText);
41136                     return false;
41137                 }
41138             }
41139         }
41140         */
41141         var fvalue = this.formatDate(value);
41142         /*if(this.ddMatch && this.ddMatch.test(fvalue)){
41143             this.markInvalid(String.format(this.disabledDatesText, fvalue));
41144             return false;
41145         }
41146         */
41147         return true;
41148     },
41149
41150     // private
41151     // Provides logic to override the default TriggerField.validateBlur which just returns true
41152     validateBlur : function(){
41153         return !this.menu || !this.menu.isVisible();
41154     },
41155
41156     /**
41157      * Returns the current date value of the date field.
41158      * @return {Date} The date value
41159      */
41160     getValue : function(){
41161         
41162         
41163         
41164         return  this.hiddenField ?
41165                 this.hiddenField.value :
41166                 this.parseDate(Roo.form.MonthField.superclass.getValue.call(this)) || "";
41167     },
41168
41169     /**
41170      * Sets the value of the date field.  You can pass a date object or any string that can be parsed into a valid
41171      * date, using MonthField.format as the date format, according to the same rules as {@link Date#parseDate}
41172      * (the default format used is "m/d/y").
41173      * <br />Usage:
41174      * <pre><code>
41175 //All of these calls set the same date value (May 4, 2006)
41176
41177 //Pass a date object:
41178 var dt = new Date('5/4/06');
41179 monthField.setValue(dt);
41180
41181 //Pass a date string (default format):
41182 monthField.setValue('5/4/06');
41183
41184 //Pass a date string (custom format):
41185 monthField.format = 'Y-m-d';
41186 monthField.setValue('2006-5-4');
41187 </code></pre>
41188      * @param {String/Date} date The date or valid date string
41189      */
41190     setValue : function(date){
41191         Roo.log('month setValue' + date);
41192         // can only be first of month..
41193         
41194         var val = this.parseDate(date);
41195         
41196         if (this.hiddenField) {
41197             this.hiddenField.value = this.formatDate(this.parseDate(date), 'Y-m-d');
41198         }
41199         Roo.form.MonthField.superclass.setValue.call(this, this.formatDate(this.parseDate(date)));
41200         this.value = this.parseDate(date);
41201     },
41202
41203     // private
41204     parseDate : function(value){
41205         if(!value || value instanceof Date){
41206             value = value ? Date.parseDate(value.format('Y-m') + '-01', 'Y-m-d') : null;
41207             return value;
41208         }
41209         var v = Date.parseDate(value, this.format);
41210         if (!v && this.useIso) {
41211             v = Date.parseDate(value, 'Y-m-d');
41212         }
41213         if (v) {
41214             // 
41215             v = Date.parseDate(v.format('Y-m') +'-01', 'Y-m-d');
41216         }
41217         
41218         
41219         if(!v && this.altFormats){
41220             if(!this.altFormatsArray){
41221                 this.altFormatsArray = this.altFormats.split("|");
41222             }
41223             for(var i = 0, len = this.altFormatsArray.length; i < len && !v; i++){
41224                 v = Date.parseDate(value, this.altFormatsArray[i]);
41225             }
41226         }
41227         return v;
41228     },
41229
41230     // private
41231     formatDate : function(date, fmt){
41232         return (!date || !(date instanceof Date)) ?
41233                date : date.dateFormat(fmt || this.format);
41234     },
41235
41236     // private
41237     menuListeners : {
41238         select: function(m, d){
41239             this.setValue(d);
41240             this.fireEvent('select', this, d);
41241         },
41242         show : function(){ // retain focus styling
41243             this.onFocus();
41244         },
41245         hide : function(){
41246             this.focus.defer(10, this);
41247             var ml = this.menuListeners;
41248             this.menu.un("select", ml.select,  this);
41249             this.menu.un("show", ml.show,  this);
41250             this.menu.un("hide", ml.hide,  this);
41251         }
41252     },
41253     // private
41254     // Implements the default empty TriggerField.onTriggerClick function to display the DatePicker
41255     onTriggerClick : function(){
41256         if(this.disabled){
41257             return;
41258         }
41259         if(this.menu == null){
41260             this.menu = new Roo.menu.DateMenu();
41261            
41262         }
41263         
41264         Roo.apply(this.menu.picker,  {
41265             
41266             showClear: this.allowBlank,
41267             minDate : this.minValue,
41268             maxDate : this.maxValue,
41269             disabledDatesRE : this.ddMatch,
41270             disabledDatesText : this.disabledDatesText,
41271             
41272             format : this.useIso ? 'Y-m-d' : this.format,
41273             minText : String.format(this.minText, this.formatDate(this.minValue)),
41274             maxText : String.format(this.maxText, this.formatDate(this.maxValue))
41275             
41276         });
41277          this.menu.on(Roo.apply({}, this.menuListeners, {
41278             scope:this
41279         }));
41280        
41281         
41282         var m = this.menu;
41283         var p = m.picker;
41284         
41285         // hide month picker get's called when we called by 'before hide';
41286         
41287         var ignorehide = true;
41288         p.hideMonthPicker  = function(disableAnim){
41289             if (ignorehide) {
41290                 return;
41291             }
41292              if(this.monthPicker){
41293                 Roo.log("hideMonthPicker called");
41294                 if(disableAnim === true){
41295                     this.monthPicker.hide();
41296                 }else{
41297                     this.monthPicker.slideOut('t', {duration:.2});
41298                     p.setValue(new Date(m.picker.mpSelYear, m.picker.mpSelMonth, 1));
41299                     p.fireEvent("select", this, this.value);
41300                     m.hide();
41301                 }
41302             }
41303         }
41304         
41305         Roo.log('picker set value');
41306         Roo.log(this.getValue());
41307         p.setValue(this.getValue() ? this.parseDate(this.getValue()) : new Date());
41308         m.show(this.el, 'tl-bl?');
41309         ignorehide  = false;
41310         // this will trigger hideMonthPicker..
41311         
41312         
41313         // hidden the day picker
41314         Roo.select('.x-date-picker table', true).first().dom.style.visibility = "hidden";
41315         
41316         
41317         
41318       
41319         
41320         p.showMonthPicker.defer(100, p);
41321     
41322         
41323        
41324     },
41325
41326     beforeBlur : function(){
41327         var v = this.parseDate(this.getRawValue());
41328         if(v){
41329             this.setValue(v);
41330         }
41331     }
41332
41333     /** @cfg {Boolean} grow @hide */
41334     /** @cfg {Number} growMin @hide */
41335     /** @cfg {Number} growMax @hide */
41336     /**
41337      * @hide
41338      * @method autoSize
41339      */
41340 });/*
41341  * Based on:
41342  * Ext JS Library 1.1.1
41343  * Copyright(c) 2006-2007, Ext JS, LLC.
41344  *
41345  * Originally Released Under LGPL - original licence link has changed is not relivant.
41346  *
41347  * Fork - LGPL
41348  * <script type="text/javascript">
41349  */
41350  
41351
41352 /**
41353  * @class Roo.form.ComboBox
41354  * @extends Roo.form.TriggerField
41355  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
41356  * @constructor
41357  * Create a new ComboBox.
41358  * @param {Object} config Configuration options
41359  */
41360 Roo.form.ComboBox = function(config){
41361     Roo.form.ComboBox.superclass.constructor.call(this, config);
41362     this.addEvents({
41363         /**
41364          * @event expand
41365          * Fires when the dropdown list is expanded
41366              * @param {Roo.form.ComboBox} combo This combo box
41367              */
41368         'expand' : true,
41369         /**
41370          * @event collapse
41371          * Fires when the dropdown list is collapsed
41372              * @param {Roo.form.ComboBox} combo This combo box
41373              */
41374         'collapse' : true,
41375         /**
41376          * @event beforeselect
41377          * Fires before a list item is selected. Return false to cancel the selection.
41378              * @param {Roo.form.ComboBox} combo This combo box
41379              * @param {Roo.data.Record} record The data record returned from the underlying store
41380              * @param {Number} index The index of the selected item in the dropdown list
41381              */
41382         'beforeselect' : true,
41383         /**
41384          * @event select
41385          * Fires when a list item is selected
41386              * @param {Roo.form.ComboBox} combo This combo box
41387              * @param {Roo.data.Record} record The data record returned from the underlying store (or false on clear)
41388              * @param {Number} index The index of the selected item in the dropdown list
41389              */
41390         'select' : true,
41391         /**
41392          * @event beforequery
41393          * Fires before all queries are processed. Return false to cancel the query or set cancel to true.
41394          * The event object passed has these properties:
41395              * @param {Roo.form.ComboBox} combo This combo box
41396              * @param {String} query The query
41397              * @param {Boolean} forceAll true to force "all" query
41398              * @param {Boolean} cancel true to cancel the query
41399              * @param {Object} e The query event object
41400              */
41401         'beforequery': true,
41402          /**
41403          * @event add
41404          * Fires when the 'add' icon is pressed (add a listener to enable add button)
41405              * @param {Roo.form.ComboBox} combo This combo box
41406              */
41407         'add' : true,
41408         /**
41409          * @event edit
41410          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
41411              * @param {Roo.form.ComboBox} combo This combo box
41412              * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
41413              */
41414         'edit' : true
41415         
41416         
41417     });
41418     if(this.transform){
41419         this.allowDomMove = false;
41420         var s = Roo.getDom(this.transform);
41421         if(!this.hiddenName){
41422             this.hiddenName = s.name;
41423         }
41424         if(!this.store){
41425             this.mode = 'local';
41426             var d = [], opts = s.options;
41427             for(var i = 0, len = opts.length;i < len; i++){
41428                 var o = opts[i];
41429                 var value = (Roo.isIE ? o.getAttributeNode('value').specified : o.hasAttribute('value')) ? o.value : o.text;
41430                 if(o.selected) {
41431                     this.value = value;
41432                 }
41433                 d.push([value, o.text]);
41434             }
41435             this.store = new Roo.data.SimpleStore({
41436                 'id': 0,
41437                 fields: ['value', 'text'],
41438                 data : d
41439             });
41440             this.valueField = 'value';
41441             this.displayField = 'text';
41442         }
41443         s.name = Roo.id(); // wipe out the name in case somewhere else they have a reference
41444         if(!this.lazyRender){
41445             this.target = true;
41446             this.el = Roo.DomHelper.insertBefore(s, this.autoCreate || this.defaultAutoCreate);
41447             s.parentNode.removeChild(s); // remove it
41448             this.render(this.el.parentNode);
41449         }else{
41450             s.parentNode.removeChild(s); // remove it
41451         }
41452
41453     }
41454     if (this.store) {
41455         this.store = Roo.factory(this.store, Roo.data);
41456     }
41457     
41458     this.selectedIndex = -1;
41459     if(this.mode == 'local'){
41460         if(config.queryDelay === undefined){
41461             this.queryDelay = 10;
41462         }
41463         if(config.minChars === undefined){
41464             this.minChars = 0;
41465         }
41466     }
41467 };
41468
41469 Roo.extend(Roo.form.ComboBox, Roo.form.TriggerField, {
41470     /**
41471      * @cfg {String/HTMLElement/Element} transform The id, DOM node or element of an existing select to convert to a ComboBox
41472      */
41473     /**
41474      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
41475      * rendering into an Roo.Editor, defaults to false)
41476      */
41477     /**
41478      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
41479      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
41480      */
41481     /**
41482      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
41483      */
41484     /**
41485      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
41486      * the dropdown list (defaults to undefined, with no header element)
41487      */
41488
41489      /**
41490      * @cfg {String/Roo.Template} tpl The template to use to render the output
41491      */
41492      
41493     // private
41494     defaultAutoCreate : {tag: "input", type: "text", size: "24", autocomplete: "off"},
41495     /**
41496      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
41497      */
41498     listWidth: undefined,
41499     /**
41500      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
41501      * mode = 'remote' or 'text' if mode = 'local')
41502      */
41503     displayField: undefined,
41504     /**
41505      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
41506      * mode = 'remote' or 'value' if mode = 'local'). 
41507      * Note: use of a valueField requires the user make a selection
41508      * in order for a value to be mapped.
41509      */
41510     valueField: undefined,
41511     
41512     
41513     /**
41514      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
41515      * field's data value (defaults to the underlying DOM element's name)
41516      */
41517     hiddenName: undefined,
41518     /**
41519      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
41520      */
41521     listClass: '',
41522     /**
41523      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
41524      */
41525     selectedClass: 'x-combo-selected',
41526     /**
41527      * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
41528      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-arrow-trigger'
41529      * which displays a downward arrow icon).
41530      */
41531     triggerClass : 'x-form-arrow-trigger',
41532     /**
41533      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
41534      */
41535     shadow:'sides',
41536     /**
41537      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
41538      * anchor positions (defaults to 'tl-bl')
41539      */
41540     listAlign: 'tl-bl?',
41541     /**
41542      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
41543      */
41544     maxHeight: 300,
41545     /**
41546      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
41547      * query specified by the allQuery config option (defaults to 'query')
41548      */
41549     triggerAction: 'query',
41550     /**
41551      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
41552      * (defaults to 4, does not apply if editable = false)
41553      */
41554     minChars : 4,
41555     /**
41556      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
41557      * delay (typeAheadDelay) if it matches a known value (defaults to false)
41558      */
41559     typeAhead: false,
41560     /**
41561      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
41562      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
41563      */
41564     queryDelay: 500,
41565     /**
41566      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
41567      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
41568      */
41569     pageSize: 0,
41570     /**
41571      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
41572      * when editable = true (defaults to false)
41573      */
41574     selectOnFocus:false,
41575     /**
41576      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
41577      */
41578     queryParam: 'query',
41579     /**
41580      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
41581      * when mode = 'remote' (defaults to 'Loading...')
41582      */
41583     loadingText: 'Loading...',
41584     /**
41585      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
41586      */
41587     resizable: false,
41588     /**
41589      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
41590      */
41591     handleHeight : 8,
41592     /**
41593      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
41594      * traditional select (defaults to true)
41595      */
41596     editable: true,
41597     /**
41598      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
41599      */
41600     allQuery: '',
41601     /**
41602      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
41603      */
41604     mode: 'remote',
41605     /**
41606      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
41607      * listWidth has a higher value)
41608      */
41609     minListWidth : 70,
41610     /**
41611      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
41612      * allow the user to set arbitrary text into the field (defaults to false)
41613      */
41614     forceSelection:false,
41615     /**
41616      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
41617      * if typeAhead = true (defaults to 250)
41618      */
41619     typeAheadDelay : 250,
41620     /**
41621      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
41622      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
41623      */
41624     valueNotFoundText : undefined,
41625     /**
41626      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
41627      */
41628     blockFocus : false,
41629     
41630     /**
41631      * @cfg {Boolean} disableClear Disable showing of clear button.
41632      */
41633     disableClear : false,
41634     /**
41635      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
41636      */
41637     alwaysQuery : false,
41638     
41639     //private
41640     addicon : false,
41641     editicon: false,
41642     
41643     // element that contains real text value.. (when hidden is used..)
41644      
41645     // private
41646     onRender : function(ct, position)
41647     {
41648         Roo.form.ComboBox.superclass.onRender.call(this, ct, position);
41649         
41650         if(this.hiddenName){
41651             this.hiddenField = this.el.insertSibling({tag:'input', type:'hidden', name: this.hiddenName, id:  (this.hiddenId||this.hiddenName)},
41652                     'before', true);
41653             this.hiddenField.value =
41654                 this.hiddenValue !== undefined ? this.hiddenValue :
41655                 this.value !== undefined ? this.value : '';
41656
41657             // prevent input submission
41658             this.el.dom.removeAttribute('name');
41659              
41660              
41661         }
41662         
41663         if(Roo.isGecko){
41664             this.el.dom.setAttribute('autocomplete', 'off');
41665         }
41666
41667         var cls = 'x-combo-list';
41668
41669         this.list = new Roo.Layer({
41670             shadow: this.shadow, cls: [cls, this.listClass].join(' '), constrain:false
41671         });
41672
41673         var lw = this.listWidth || Math.max(this.wrap.getWidth(), this.minListWidth);
41674         this.list.setWidth(lw);
41675         this.list.swallowEvent('mousewheel');
41676         this.assetHeight = 0;
41677
41678         if(this.title){
41679             this.header = this.list.createChild({cls:cls+'-hd', html: this.title});
41680             this.assetHeight += this.header.getHeight();
41681         }
41682
41683         this.innerList = this.list.createChild({cls:cls+'-inner'});
41684         this.innerList.on('mouseover', this.onViewOver, this);
41685         this.innerList.on('mousemove', this.onViewMove, this);
41686         this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
41687         
41688         if(this.allowBlank && !this.pageSize && !this.disableClear){
41689             this.footer = this.list.createChild({cls:cls+'-ft'});
41690             this.pageTb = new Roo.Toolbar(this.footer);
41691            
41692         }
41693         if(this.pageSize){
41694             this.footer = this.list.createChild({cls:cls+'-ft'});
41695             this.pageTb = new Roo.PagingToolbar(this.footer, this.store,
41696                     {pageSize: this.pageSize});
41697             
41698         }
41699         
41700         if (this.pageTb && this.allowBlank && !this.disableClear) {
41701             var _this = this;
41702             this.pageTb.add(new Roo.Toolbar.Fill(), {
41703                 cls: 'x-btn-icon x-btn-clear',
41704                 text: '&#160;',
41705                 handler: function()
41706                 {
41707                     _this.collapse();
41708                     _this.clearValue();
41709                     _this.onSelect(false, -1);
41710                 }
41711             });
41712         }
41713         if (this.footer) {
41714             this.assetHeight += this.footer.getHeight();
41715         }
41716         
41717
41718         if(!this.tpl){
41719             this.tpl = '<div class="'+cls+'-item">{' + this.displayField + '}</div>';
41720         }
41721
41722         this.view = new Roo.View(this.innerList, this.tpl, {
41723             singleSelect:true,
41724             store: this.store,
41725             selectedClass: this.selectedClass
41726         });
41727
41728         this.view.on('click', this.onViewClick, this);
41729
41730         this.store.on('beforeload', this.onBeforeLoad, this);
41731         this.store.on('load', this.onLoad, this);
41732         this.store.on('loadexception', this.onLoadException, this);
41733
41734         if(this.resizable){
41735             this.resizer = new Roo.Resizable(this.list,  {
41736                pinned:true, handles:'se'
41737             });
41738             this.resizer.on('resize', function(r, w, h){
41739                 this.maxHeight = h-this.handleHeight-this.list.getFrameWidth('tb')-this.assetHeight;
41740                 this.listWidth = w;
41741                 this.innerList.setWidth(w - this.list.getFrameWidth('lr'));
41742                 this.restrictHeight();
41743             }, this);
41744             this[this.pageSize?'footer':'innerList'].setStyle('margin-bottom', this.handleHeight+'px');
41745         }
41746         if(!this.editable){
41747             this.editable = true;
41748             this.setEditable(false);
41749         }  
41750         
41751         
41752         if (typeof(this.events.add.listeners) != 'undefined') {
41753             
41754             this.addicon = this.wrap.createChild(
41755                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-add' });  
41756        
41757             this.addicon.on('click', function(e) {
41758                 this.fireEvent('add', this);
41759             }, this);
41760         }
41761         if (typeof(this.events.edit.listeners) != 'undefined') {
41762             
41763             this.editicon = this.wrap.createChild(
41764                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-edit' });  
41765             if (this.addicon) {
41766                 this.editicon.setStyle('margin-left', '40px');
41767             }
41768             this.editicon.on('click', function(e) {
41769                 
41770                 // we fire even  if inothing is selected..
41771                 this.fireEvent('edit', this, this.lastData );
41772                 
41773             }, this);
41774         }
41775         
41776         
41777         
41778     },
41779
41780     // private
41781     initEvents : function(){
41782         Roo.form.ComboBox.superclass.initEvents.call(this);
41783
41784         this.keyNav = new Roo.KeyNav(this.el, {
41785             "up" : function(e){
41786                 this.inKeyMode = true;
41787                 this.selectPrev();
41788             },
41789
41790             "down" : function(e){
41791                 if(!this.isExpanded()){
41792                     this.onTriggerClick();
41793                 }else{
41794                     this.inKeyMode = true;
41795                     this.selectNext();
41796                 }
41797             },
41798
41799             "enter" : function(e){
41800                 this.onViewClick();
41801                 //return true;
41802             },
41803
41804             "esc" : function(e){
41805                 this.collapse();
41806             },
41807
41808             "tab" : function(e){
41809                 this.onViewClick(false);
41810                 this.fireEvent("specialkey", this, e);
41811                 return true;
41812             },
41813
41814             scope : this,
41815
41816             doRelay : function(foo, bar, hname){
41817                 if(hname == 'down' || this.scope.isExpanded()){
41818                    return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
41819                 }
41820                 return true;
41821             },
41822
41823             forceKeyDown: true
41824         });
41825         this.queryDelay = Math.max(this.queryDelay || 10,
41826                 this.mode == 'local' ? 10 : 250);
41827         this.dqTask = new Roo.util.DelayedTask(this.initQuery, this);
41828         if(this.typeAhead){
41829             this.taTask = new Roo.util.DelayedTask(this.onTypeAhead, this);
41830         }
41831         if(this.editable !== false){
41832             this.el.on("keyup", this.onKeyUp, this);
41833         }
41834         if(this.forceSelection){
41835             this.on('blur', this.doForce, this);
41836         }
41837     },
41838
41839     onDestroy : function(){
41840         if(this.view){
41841             this.view.setStore(null);
41842             this.view.el.removeAllListeners();
41843             this.view.el.remove();
41844             this.view.purgeListeners();
41845         }
41846         if(this.list){
41847             this.list.destroy();
41848         }
41849         if(this.store){
41850             this.store.un('beforeload', this.onBeforeLoad, this);
41851             this.store.un('load', this.onLoad, this);
41852             this.store.un('loadexception', this.onLoadException, this);
41853         }
41854         Roo.form.ComboBox.superclass.onDestroy.call(this);
41855     },
41856
41857     // private
41858     fireKey : function(e){
41859         if(e.isNavKeyPress() && !this.list.isVisible()){
41860             this.fireEvent("specialkey", this, e);
41861         }
41862     },
41863
41864     // private
41865     onResize: function(w, h){
41866         Roo.form.ComboBox.superclass.onResize.apply(this, arguments);
41867         
41868         if(typeof w != 'number'){
41869             // we do not handle it!?!?
41870             return;
41871         }
41872         var tw = this.trigger.getWidth();
41873         tw += this.addicon ? this.addicon.getWidth() : 0;
41874         tw += this.editicon ? this.editicon.getWidth() : 0;
41875         var x = w - tw;
41876         this.el.setWidth( this.adjustWidth('input', x));
41877             
41878         this.trigger.setStyle('left', x+'px');
41879         
41880         if(this.list && this.listWidth === undefined){
41881             var lw = Math.max(x + this.trigger.getWidth(), this.minListWidth);
41882             this.list.setWidth(lw);
41883             this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
41884         }
41885         
41886     
41887         
41888     },
41889
41890     /**
41891      * Allow or prevent the user from directly editing the field text.  If false is passed,
41892      * the user will only be able to select from the items defined in the dropdown list.  This method
41893      * is the runtime equivalent of setting the 'editable' config option at config time.
41894      * @param {Boolean} value True to allow the user to directly edit the field text
41895      */
41896     setEditable : function(value){
41897         if(value == this.editable){
41898             return;
41899         }
41900         this.editable = value;
41901         if(!value){
41902             this.el.dom.setAttribute('readOnly', true);
41903             this.el.on('mousedown', this.onTriggerClick,  this);
41904             this.el.addClass('x-combo-noedit');
41905         }else{
41906             this.el.dom.setAttribute('readOnly', false);
41907             this.el.un('mousedown', this.onTriggerClick,  this);
41908             this.el.removeClass('x-combo-noedit');
41909         }
41910     },
41911
41912     // private
41913     onBeforeLoad : function(){
41914         if(!this.hasFocus){
41915             return;
41916         }
41917         this.innerList.update(this.loadingText ?
41918                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
41919         this.restrictHeight();
41920         this.selectedIndex = -1;
41921     },
41922
41923     // private
41924     onLoad : function(){
41925         if(!this.hasFocus){
41926             return;
41927         }
41928         if(this.store.getCount() > 0){
41929             this.expand();
41930             this.restrictHeight();
41931             if(this.lastQuery == this.allQuery){
41932                 if(this.editable){
41933                     this.el.dom.select();
41934                 }
41935                 if(!this.selectByValue(this.value, true)){
41936                     this.select(0, true);
41937                 }
41938             }else{
41939                 this.selectNext();
41940                 if(this.typeAhead && this.lastKey != Roo.EventObject.BACKSPACE && this.lastKey != Roo.EventObject.DELETE){
41941                     this.taTask.delay(this.typeAheadDelay);
41942                 }
41943             }
41944         }else{
41945             this.onEmptyResults();
41946         }
41947         //this.el.focus();
41948     },
41949     // private
41950     onLoadException : function()
41951     {
41952         this.collapse();
41953         Roo.log(this.store.reader.jsonData);
41954         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
41955             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
41956         }
41957         
41958         
41959     },
41960     // private
41961     onTypeAhead : function(){
41962         if(this.store.getCount() > 0){
41963             var r = this.store.getAt(0);
41964             var newValue = r.data[this.displayField];
41965             var len = newValue.length;
41966             var selStart = this.getRawValue().length;
41967             if(selStart != len){
41968                 this.setRawValue(newValue);
41969                 this.selectText(selStart, newValue.length);
41970             }
41971         }
41972     },
41973
41974     // private
41975     onSelect : function(record, index){
41976         if(this.fireEvent('beforeselect', this, record, index) !== false){
41977             this.setFromData(index > -1 ? record.data : false);
41978             this.collapse();
41979             this.fireEvent('select', this, record, index);
41980         }
41981     },
41982
41983     /**
41984      * Returns the currently selected field value or empty string if no value is set.
41985      * @return {String} value The selected value
41986      */
41987     getValue : function(){
41988         if(this.valueField){
41989             return typeof this.value != 'undefined' ? this.value : '';
41990         }
41991         return Roo.form.ComboBox.superclass.getValue.call(this);
41992     },
41993
41994     /**
41995      * Clears any text/value currently set in the field
41996      */
41997     clearValue : function(){
41998         if(this.hiddenField){
41999             this.hiddenField.value = '';
42000         }
42001         this.value = '';
42002         this.setRawValue('');
42003         this.lastSelectionText = '';
42004         
42005     },
42006
42007     /**
42008      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
42009      * will be displayed in the field.  If the value does not match the data value of an existing item,
42010      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
42011      * Otherwise the field will be blank (although the value will still be set).
42012      * @param {String} value The value to match
42013      */
42014     setValue : function(v){
42015         var text = v;
42016         if(this.valueField){
42017             var r = this.findRecord(this.valueField, v);
42018             if(r){
42019                 text = r.data[this.displayField];
42020             }else if(this.valueNotFoundText !== undefined){
42021                 text = this.valueNotFoundText;
42022             }
42023         }
42024         this.lastSelectionText = text;
42025         if(this.hiddenField){
42026             this.hiddenField.value = v;
42027         }
42028         Roo.form.ComboBox.superclass.setValue.call(this, text);
42029         this.value = v;
42030     },
42031     /**
42032      * @property {Object} the last set data for the element
42033      */
42034     
42035     lastData : false,
42036     /**
42037      * Sets the value of the field based on a object which is related to the record format for the store.
42038      * @param {Object} value the value to set as. or false on reset?
42039      */
42040     setFromData : function(o){
42041         var dv = ''; // display value
42042         var vv = ''; // value value..
42043         this.lastData = o;
42044         if (this.displayField) {
42045             dv = !o || typeof(o[this.displayField]) == 'undefined' ? '' : o[this.displayField];
42046         } else {
42047             // this is an error condition!!!
42048             Roo.log('no  displayField value set for '+ (this.name ? this.name : this.id));
42049         }
42050         
42051         if(this.valueField){
42052             vv = !o || typeof(o[this.valueField]) == 'undefined' ? dv : o[this.valueField];
42053         }
42054         if(this.hiddenField){
42055             this.hiddenField.value = vv;
42056             
42057             this.lastSelectionText = dv;
42058             Roo.form.ComboBox.superclass.setValue.call(this, dv);
42059             this.value = vv;
42060             return;
42061         }
42062         // no hidden field.. - we store the value in 'value', but still display
42063         // display field!!!!
42064         this.lastSelectionText = dv;
42065         Roo.form.ComboBox.superclass.setValue.call(this, dv);
42066         this.value = vv;
42067         
42068         
42069     },
42070     // private
42071     reset : function(){
42072         // overridden so that last data is reset..
42073         this.setValue(this.resetValue);
42074         this.originalValue = this.getValue();
42075         this.clearInvalid();
42076         this.lastData = false;
42077         if (this.view) {
42078             this.view.clearSelections();
42079         }
42080     },
42081     // private
42082     findRecord : function(prop, value){
42083         var record;
42084         if(this.store.getCount() > 0){
42085             this.store.each(function(r){
42086                 if(r.data[prop] == value){
42087                     record = r;
42088                     return false;
42089                 }
42090                 return true;
42091             });
42092         }
42093         return record;
42094     },
42095     
42096     getName: function()
42097     {
42098         // returns hidden if it's set..
42099         if (!this.rendered) {return ''};
42100         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
42101         
42102     },
42103     // private
42104     onViewMove : function(e, t){
42105         this.inKeyMode = false;
42106     },
42107
42108     // private
42109     onViewOver : function(e, t){
42110         if(this.inKeyMode){ // prevent key nav and mouse over conflicts
42111             return;
42112         }
42113         var item = this.view.findItemFromChild(t);
42114         if(item){
42115             var index = this.view.indexOf(item);
42116             this.select(index, false);
42117         }
42118     },
42119
42120     // private
42121     onViewClick : function(doFocus)
42122     {
42123         var index = this.view.getSelectedIndexes()[0];
42124         var r = this.store.getAt(index);
42125         if(r){
42126             this.onSelect(r, index);
42127         }
42128         if(doFocus !== false && !this.blockFocus){
42129             this.el.focus();
42130         }
42131     },
42132
42133     // private
42134     restrictHeight : function(){
42135         this.innerList.dom.style.height = '';
42136         var inner = this.innerList.dom;
42137         var h = Math.max(inner.clientHeight, inner.offsetHeight, inner.scrollHeight);
42138         this.innerList.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
42139         this.list.beginUpdate();
42140         this.list.setHeight(this.innerList.getHeight()+this.list.getFrameWidth('tb')+(this.resizable?this.handleHeight:0)+this.assetHeight);
42141         this.list.alignTo(this.el, this.listAlign);
42142         this.list.endUpdate();
42143     },
42144
42145     // private
42146     onEmptyResults : function(){
42147         this.collapse();
42148     },
42149
42150     /**
42151      * Returns true if the dropdown list is expanded, else false.
42152      */
42153     isExpanded : function(){
42154         return this.list.isVisible();
42155     },
42156
42157     /**
42158      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
42159      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
42160      * @param {String} value The data value of the item to select
42161      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
42162      * selected item if it is not currently in view (defaults to true)
42163      * @return {Boolean} True if the value matched an item in the list, else false
42164      */
42165     selectByValue : function(v, scrollIntoView){
42166         if(v !== undefined && v !== null){
42167             var r = this.findRecord(this.valueField || this.displayField, v);
42168             if(r){
42169                 this.select(this.store.indexOf(r), scrollIntoView);
42170                 return true;
42171             }
42172         }
42173         return false;
42174     },
42175
42176     /**
42177      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
42178      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
42179      * @param {Number} index The zero-based index of the list item to select
42180      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
42181      * selected item if it is not currently in view (defaults to true)
42182      */
42183     select : function(index, scrollIntoView){
42184         this.selectedIndex = index;
42185         this.view.select(index);
42186         if(scrollIntoView !== false){
42187             var el = this.view.getNode(index);
42188             if(el){
42189                 this.innerList.scrollChildIntoView(el, false);
42190             }
42191         }
42192     },
42193
42194     // private
42195     selectNext : function(){
42196         var ct = this.store.getCount();
42197         if(ct > 0){
42198             if(this.selectedIndex == -1){
42199                 this.select(0);
42200             }else if(this.selectedIndex < ct-1){
42201                 this.select(this.selectedIndex+1);
42202             }
42203         }
42204     },
42205
42206     // private
42207     selectPrev : function(){
42208         var ct = this.store.getCount();
42209         if(ct > 0){
42210             if(this.selectedIndex == -1){
42211                 this.select(0);
42212             }else if(this.selectedIndex != 0){
42213                 this.select(this.selectedIndex-1);
42214             }
42215         }
42216     },
42217
42218     // private
42219     onKeyUp : function(e){
42220         if(this.editable !== false && !e.isSpecialKey()){
42221             this.lastKey = e.getKey();
42222             this.dqTask.delay(this.queryDelay);
42223         }
42224     },
42225
42226     // private
42227     validateBlur : function(){
42228         return !this.list || !this.list.isVisible();   
42229     },
42230
42231     // private
42232     initQuery : function(){
42233         this.doQuery(this.getRawValue());
42234     },
42235
42236     // private
42237     doForce : function(){
42238         if(this.el.dom.value.length > 0){
42239             this.el.dom.value =
42240                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
42241              
42242         }
42243     },
42244
42245     /**
42246      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
42247      * query allowing the query action to be canceled if needed.
42248      * @param {String} query The SQL query to execute
42249      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
42250      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
42251      * saved in the current store (defaults to false)
42252      */
42253     doQuery : function(q, forceAll){
42254         if(q === undefined || q === null){
42255             q = '';
42256         }
42257         var qe = {
42258             query: q,
42259             forceAll: forceAll,
42260             combo: this,
42261             cancel:false
42262         };
42263         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
42264             return false;
42265         }
42266         q = qe.query;
42267         forceAll = qe.forceAll;
42268         if(forceAll === true || (q.length >= this.minChars)){
42269             if(this.lastQuery != q || this.alwaysQuery){
42270                 this.lastQuery = q;
42271                 if(this.mode == 'local'){
42272                     this.selectedIndex = -1;
42273                     if(forceAll){
42274                         this.store.clearFilter();
42275                     }else{
42276                         this.store.filter(this.displayField, q);
42277                     }
42278                     this.onLoad();
42279                 }else{
42280                     this.store.baseParams[this.queryParam] = q;
42281                     this.store.load({
42282                         params: this.getParams(q)
42283                     });
42284                     this.expand();
42285                 }
42286             }else{
42287                 this.selectedIndex = -1;
42288                 this.onLoad();   
42289             }
42290         }
42291     },
42292
42293     // private
42294     getParams : function(q){
42295         var p = {};
42296         //p[this.queryParam] = q;
42297         if(this.pageSize){
42298             p.start = 0;
42299             p.limit = this.pageSize;
42300         }
42301         return p;
42302     },
42303
42304     /**
42305      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
42306      */
42307     collapse : function(){
42308         if(!this.isExpanded()){
42309             return;
42310         }
42311         this.list.hide();
42312         Roo.get(document).un('mousedown', this.collapseIf, this);
42313         Roo.get(document).un('mousewheel', this.collapseIf, this);
42314         if (!this.editable) {
42315             Roo.get(document).un('keydown', this.listKeyPress, this);
42316         }
42317         this.fireEvent('collapse', this);
42318     },
42319
42320     // private
42321     collapseIf : function(e){
42322         if(!e.within(this.wrap) && !e.within(this.list)){
42323             this.collapse();
42324         }
42325     },
42326
42327     /**
42328      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
42329      */
42330     expand : function(){
42331         if(this.isExpanded() || !this.hasFocus){
42332             return;
42333         }
42334         this.list.alignTo(this.el, this.listAlign);
42335         this.list.show();
42336         Roo.get(document).on('mousedown', this.collapseIf, this);
42337         Roo.get(document).on('mousewheel', this.collapseIf, this);
42338         if (!this.editable) {
42339             Roo.get(document).on('keydown', this.listKeyPress, this);
42340         }
42341         
42342         this.fireEvent('expand', this);
42343     },
42344
42345     // private
42346     // Implements the default empty TriggerField.onTriggerClick function
42347     onTriggerClick : function(){
42348         if(this.disabled){
42349             return;
42350         }
42351         if(this.isExpanded()){
42352             this.collapse();
42353             if (!this.blockFocus) {
42354                 this.el.focus();
42355             }
42356             
42357         }else {
42358             this.hasFocus = true;
42359             if(this.triggerAction == 'all') {
42360                 this.doQuery(this.allQuery, true);
42361             } else {
42362                 this.doQuery(this.getRawValue());
42363             }
42364             if (!this.blockFocus) {
42365                 this.el.focus();
42366             }
42367         }
42368     },
42369     listKeyPress : function(e)
42370     {
42371         //Roo.log('listkeypress');
42372         // scroll to first matching element based on key pres..
42373         if (e.isSpecialKey()) {
42374             return false;
42375         }
42376         var k = String.fromCharCode(e.getKey()).toUpperCase();
42377         //Roo.log(k);
42378         var match  = false;
42379         var csel = this.view.getSelectedNodes();
42380         var cselitem = false;
42381         if (csel.length) {
42382             var ix = this.view.indexOf(csel[0]);
42383             cselitem  = this.store.getAt(ix);
42384             if (!cselitem.get(this.displayField) || cselitem.get(this.displayField).substring(0,1).toUpperCase() != k) {
42385                 cselitem = false;
42386             }
42387             
42388         }
42389         
42390         this.store.each(function(v) { 
42391             if (cselitem) {
42392                 // start at existing selection.
42393                 if (cselitem.id == v.id) {
42394                     cselitem = false;
42395                 }
42396                 return;
42397             }
42398                 
42399             if (v.get(this.displayField) && v.get(this.displayField).substring(0,1).toUpperCase() == k) {
42400                 match = this.store.indexOf(v);
42401                 return false;
42402             }
42403         }, this);
42404         
42405         if (match === false) {
42406             return true; // no more action?
42407         }
42408         // scroll to?
42409         this.view.select(match);
42410         var sn = Roo.get(this.view.getSelectedNodes()[0]);
42411         sn.scrollIntoView(sn.dom.parentNode, false);
42412     } 
42413
42414     /** 
42415     * @cfg {Boolean} grow 
42416     * @hide 
42417     */
42418     /** 
42419     * @cfg {Number} growMin 
42420     * @hide 
42421     */
42422     /** 
42423     * @cfg {Number} growMax 
42424     * @hide 
42425     */
42426     /**
42427      * @hide
42428      * @method autoSize
42429      */
42430 });/*
42431  * Copyright(c) 2010-2012, Roo J Solutions Limited
42432  *
42433  * Licence LGPL
42434  *
42435  */
42436
42437 /**
42438  * @class Roo.form.ComboBoxArray
42439  * @extends Roo.form.TextField
42440  * A facebook style adder... for lists of email / people / countries  etc...
42441  * pick multiple items from a combo box, and shows each one.
42442  *
42443  *  Fred [x]  Brian [x]  [Pick another |v]
42444  *
42445  *
42446  *  For this to work: it needs various extra information
42447  *    - normal combo problay has
42448  *      name, hiddenName
42449  *    + displayField, valueField
42450  *
42451  *    For our purpose...
42452  *
42453  *
42454  *   If we change from 'extends' to wrapping...
42455  *   
42456  *  
42457  *
42458  
42459  
42460  * @constructor
42461  * Create a new ComboBoxArray.
42462  * @param {Object} config Configuration options
42463  */
42464  
42465
42466 Roo.form.ComboBoxArray = function(config)
42467 {
42468     this.addEvents({
42469         /**
42470          * @event beforeremove
42471          * Fires before remove the value from the list
42472              * @param {Roo.form.ComboBoxArray} _self This combo box array
42473              * @param {Roo.form.ComboBoxArray.Item} item removed item
42474              */
42475         'beforeremove' : true,
42476         /**
42477          * @event remove
42478          * Fires when remove the value from the list
42479              * @param {Roo.form.ComboBoxArray} _self This combo box array
42480              * @param {Roo.form.ComboBoxArray.Item} item removed item
42481              */
42482         'remove' : true
42483         
42484         
42485     });
42486     
42487     Roo.form.ComboBoxArray.superclass.constructor.call(this, config);
42488     
42489     this.items = new Roo.util.MixedCollection(false);
42490     
42491     // construct the child combo...
42492     
42493     
42494     
42495     
42496    
42497     
42498 }
42499
42500  
42501 Roo.extend(Roo.form.ComboBoxArray, Roo.form.TextField,
42502
42503     /**
42504      * @cfg {Roo.form.Combo} combo The combo box that is wrapped
42505      */
42506     
42507     lastData : false,
42508     
42509     // behavies liek a hiddne field
42510     inputType:      'hidden',
42511     /**
42512      * @cfg {Number} width The width of the box that displays the selected element
42513      */ 
42514     width:          300,
42515
42516     
42517     
42518     /**
42519      * @cfg {String} name    The name of the visable items on this form (eg. titles not ids)
42520      */
42521     name : false,
42522     /**
42523      * @cfg {String} hiddenName    The hidden name of the field, often contains an comma seperated list of names
42524      */
42525     hiddenName : false,
42526       /**
42527      * @cfg {String} seperator    The value seperator normally ',' 
42528      */
42529     seperator : ',',
42530     
42531     // private the array of items that are displayed..
42532     items  : false,
42533     // private - the hidden field el.
42534     hiddenEl : false,
42535     // private - the filed el..
42536     el : false,
42537     
42538     //validateValue : function() { return true; }, // all values are ok!
42539     //onAddClick: function() { },
42540     
42541     onRender : function(ct, position) 
42542     {
42543         
42544         // create the standard hidden element
42545         //Roo.form.ComboBoxArray.superclass.onRender.call(this, ct, position);
42546         
42547         
42548         // give fake names to child combo;
42549         this.combo.hiddenName = this.hiddenName ? (this.hiddenName+'-subcombo') : this.hiddenName;
42550         this.combo.name = this.name ? (this.name+'-subcombo') : this.name;
42551         
42552         this.combo = Roo.factory(this.combo, Roo.form);
42553         this.combo.onRender(ct, position);
42554         if (typeof(this.combo.width) != 'undefined') {
42555             this.combo.onResize(this.combo.width,0);
42556         }
42557         
42558         this.combo.initEvents();
42559         
42560         // assigned so form know we need to do this..
42561         this.store          = this.combo.store;
42562         this.valueField     = this.combo.valueField;
42563         this.displayField   = this.combo.displayField ;
42564         
42565         
42566         this.combo.wrap.addClass('x-cbarray-grp');
42567         
42568         var cbwrap = this.combo.wrap.createChild(
42569             {tag: 'div', cls: 'x-cbarray-cb'},
42570             this.combo.el.dom
42571         );
42572         
42573              
42574         this.hiddenEl = this.combo.wrap.createChild({
42575             tag: 'input',  type:'hidden' , name: this.hiddenName, value : ''
42576         });
42577         this.el = this.combo.wrap.createChild({
42578             tag: 'input',  type:'hidden' , name: this.name, value : ''
42579         });
42580          //   this.el.dom.removeAttribute("name");
42581         
42582         
42583         this.outerWrap = this.combo.wrap;
42584         this.wrap = cbwrap;
42585         
42586         this.outerWrap.setWidth(this.width);
42587         this.outerWrap.dom.removeChild(this.el.dom);
42588         
42589         this.wrap.dom.appendChild(this.el.dom);
42590         this.outerWrap.dom.removeChild(this.combo.trigger.dom);
42591         this.combo.wrap.dom.appendChild(this.combo.trigger.dom);
42592         
42593         this.combo.trigger.setStyle('position','relative');
42594         this.combo.trigger.setStyle('left', '0px');
42595         this.combo.trigger.setStyle('top', '2px');
42596         
42597         this.combo.el.setStyle('vertical-align', 'text-bottom');
42598         
42599         //this.trigger.setStyle('vertical-align', 'top');
42600         
42601         // this should use the code from combo really... on('add' ....)
42602         if (this.adder) {
42603             
42604         
42605             this.adder = this.outerWrap.createChild(
42606                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-adder', style: 'margin-left:2px'});  
42607             var _t = this;
42608             this.adder.on('click', function(e) {
42609                 _t.fireEvent('adderclick', this, e);
42610             }, _t);
42611         }
42612         //var _t = this;
42613         //this.adder.on('click', this.onAddClick, _t);
42614         
42615         
42616         this.combo.on('select', function(cb, rec, ix) {
42617             this.addItem(rec.data);
42618             
42619             cb.setValue('');
42620             cb.el.dom.value = '';
42621             //cb.lastData = rec.data;
42622             // add to list
42623             
42624         }, this);
42625         
42626         
42627     },
42628     
42629     
42630     getName: function()
42631     {
42632         // returns hidden if it's set..
42633         if (!this.rendered) {return ''};
42634         return  this.hiddenName ? this.hiddenName : this.name;
42635         
42636     },
42637     
42638     
42639     onResize: function(w, h){
42640         
42641         return;
42642         // not sure if this is needed..
42643         //this.combo.onResize(w,h);
42644         
42645         if(typeof w != 'number'){
42646             // we do not handle it!?!?
42647             return;
42648         }
42649         var tw = this.combo.trigger.getWidth();
42650         tw += this.addicon ? this.addicon.getWidth() : 0;
42651         tw += this.editicon ? this.editicon.getWidth() : 0;
42652         var x = w - tw;
42653         this.combo.el.setWidth( this.combo.adjustWidth('input', x));
42654             
42655         this.combo.trigger.setStyle('left', '0px');
42656         
42657         if(this.list && this.listWidth === undefined){
42658             var lw = Math.max(x + this.combo.trigger.getWidth(), this.combo.minListWidth);
42659             this.list.setWidth(lw);
42660             this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
42661         }
42662         
42663     
42664         
42665     },
42666     
42667     addItem: function(rec)
42668     {
42669         var valueField = this.combo.valueField;
42670         var displayField = this.combo.displayField;
42671         
42672         if (this.items.indexOfKey(rec[valueField]) > -1) {
42673             //console.log("GOT " + rec.data.id);
42674             return;
42675         }
42676         
42677         var x = new Roo.form.ComboBoxArray.Item({
42678             //id : rec[this.idField],
42679             data : rec,
42680             displayField : displayField ,
42681             tipField : displayField ,
42682             cb : this
42683         });
42684         // use the 
42685         this.items.add(rec[valueField],x);
42686         // add it before the element..
42687         this.updateHiddenEl();
42688         x.render(this.outerWrap, this.wrap.dom);
42689         // add the image handler..
42690     },
42691     
42692     updateHiddenEl : function()
42693     {
42694         this.validate();
42695         if (!this.hiddenEl) {
42696             return;
42697         }
42698         var ar = [];
42699         var idField = this.combo.valueField;
42700         
42701         this.items.each(function(f) {
42702             ar.push(f.data[idField]);
42703         });
42704         this.hiddenEl.dom.value = ar.join(this.seperator);
42705         this.validate();
42706     },
42707     
42708     reset : function()
42709     {
42710         this.items.clear();
42711         
42712         Roo.each(this.outerWrap.select('.x-cbarray-item', true).elements, function(el){
42713            el.remove();
42714         });
42715         
42716         this.el.dom.value = '';
42717         if (this.hiddenEl) {
42718             this.hiddenEl.dom.value = '';
42719         }
42720         
42721     },
42722     getValue: function()
42723     {
42724         return this.hiddenEl ? this.hiddenEl.dom.value : '';
42725     },
42726     setValue: function(v) // not a valid action - must use addItems..
42727     {
42728         
42729         this.reset();
42730          
42731         if (this.store.isLocal && (typeof(v) == 'string')) {
42732             // then we can use the store to find the values..
42733             // comma seperated at present.. this needs to allow JSON based encoding..
42734             this.hiddenEl.value  = v;
42735             var v_ar = [];
42736             Roo.each(v.split(this.seperator), function(k) {
42737                 Roo.log("CHECK " + this.valueField + ',' + k);
42738                 var li = this.store.query(this.valueField, k);
42739                 if (!li.length) {
42740                     return;
42741                 }
42742                 var add = {};
42743                 add[this.valueField] = k;
42744                 add[this.displayField] = li.item(0).data[this.displayField];
42745                 
42746                 this.addItem(add);
42747             }, this) 
42748              
42749         }
42750         if (typeof(v) == 'object' ) {
42751             // then let's assume it's an array of objects..
42752             Roo.each(v, function(l) {
42753                 var add = l;
42754                 if (typeof(l) == 'string') {
42755                     add = {};
42756                     add[this.valueField] = l;
42757                     add[this.displayField] = l
42758                 }
42759                 this.addItem(add);
42760             }, this);
42761              
42762         }
42763         
42764         
42765     },
42766     setFromData: function(v)
42767     {
42768         // this recieves an object, if setValues is called.
42769         this.reset();
42770         this.el.dom.value = v[this.displayField];
42771         this.hiddenEl.dom.value = v[this.valueField];
42772         if (typeof(v[this.valueField]) != 'string' || !v[this.valueField].length) {
42773             return;
42774         }
42775         var kv = v[this.valueField];
42776         var dv = v[this.displayField];
42777         kv = typeof(kv) != 'string' ? '' : kv;
42778         dv = typeof(dv) != 'string' ? '' : dv;
42779         
42780         
42781         var keys = kv.split(this.seperator);
42782         var display = dv.split(this.seperator);
42783         for (var i = 0 ; i < keys.length; i++) {
42784             add = {};
42785             add[this.valueField] = keys[i];
42786             add[this.displayField] = display[i];
42787             this.addItem(add);
42788         }
42789       
42790         
42791     },
42792     
42793     /**
42794      * Validates the combox array value
42795      * @return {Boolean} True if the value is valid, else false
42796      */
42797     validate : function(){
42798         if(this.disabled || this.validateValue(this.processValue(this.getValue()))){
42799             this.clearInvalid();
42800             return true;
42801         }
42802         return false;
42803     },
42804     
42805     validateValue : function(value){
42806         return Roo.form.ComboBoxArray.superclass.validateValue.call(this, this.getValue());
42807         
42808     },
42809     
42810     /*@
42811      * overide
42812      * 
42813      */
42814     isDirty : function() {
42815         if(this.disabled) {
42816             return false;
42817         }
42818         
42819         try {
42820             var d = Roo.decode(String(this.originalValue));
42821         } catch (e) {
42822             return String(this.getValue()) !== String(this.originalValue);
42823         }
42824         
42825         var originalValue = [];
42826         
42827         for (var i = 0; i < d.length; i++){
42828             originalValue.push(d[i][this.valueField]);
42829         }
42830         
42831         return String(this.getValue()) !== String(originalValue.join(this.seperator));
42832         
42833     }
42834     
42835 });
42836
42837
42838
42839 /**
42840  * @class Roo.form.ComboBoxArray.Item
42841  * @extends Roo.BoxComponent
42842  * A selected item in the list
42843  *  Fred [x]  Brian [x]  [Pick another |v]
42844  * 
42845  * @constructor
42846  * Create a new item.
42847  * @param {Object} config Configuration options
42848  */
42849  
42850 Roo.form.ComboBoxArray.Item = function(config) {
42851     config.id = Roo.id();
42852     Roo.form.ComboBoxArray.Item.superclass.constructor.call(this, config);
42853 }
42854
42855 Roo.extend(Roo.form.ComboBoxArray.Item, Roo.BoxComponent, {
42856     data : {},
42857     cb: false,
42858     displayField : false,
42859     tipField : false,
42860     
42861     
42862     defaultAutoCreate : {
42863         tag: 'div',
42864         cls: 'x-cbarray-item',
42865         cn : [ 
42866             { tag: 'div' },
42867             {
42868                 tag: 'img',
42869                 width:16,
42870                 height : 16,
42871                 src : Roo.BLANK_IMAGE_URL ,
42872                 align: 'center'
42873             }
42874         ]
42875         
42876     },
42877     
42878  
42879     onRender : function(ct, position)
42880     {
42881         Roo.form.Field.superclass.onRender.call(this, ct, position);
42882         
42883         if(!this.el){
42884             var cfg = this.getAutoCreate();
42885             this.el = ct.createChild(cfg, position);
42886         }
42887         
42888         this.el.child('img').dom.setAttribute('src', Roo.BLANK_IMAGE_URL);
42889         
42890         this.el.child('div').dom.innerHTML = this.cb.renderer ? 
42891             this.cb.renderer(this.data) :
42892             String.format('{0}',this.data[this.displayField]);
42893         
42894             
42895         this.el.child('div').dom.setAttribute('qtip',
42896                         String.format('{0}',this.data[this.tipField])
42897         );
42898         
42899         this.el.child('img').on('click', this.remove, this);
42900         
42901     },
42902    
42903     remove : function()
42904     {
42905         if(this.cb.disabled){
42906             return;
42907         }
42908         
42909         if(false !== this.cb.fireEvent('beforeremove', this.cb, this)){
42910             this.cb.items.remove(this);
42911             this.el.child('img').un('click', this.remove, this);
42912             this.el.remove();
42913             this.cb.updateHiddenEl();
42914
42915             this.cb.fireEvent('remove', this.cb, this);
42916         }
42917         
42918     }
42919 });/*
42920  * RooJS Library 1.1.1
42921  * Copyright(c) 2008-2011  Alan Knowles
42922  *
42923  * License - LGPL
42924  */
42925  
42926
42927 /**
42928  * @class Roo.form.ComboNested
42929  * @extends Roo.form.ComboBox
42930  * A combobox for that allows selection of nested items in a list,
42931  * eg.
42932  *
42933  *  Book
42934  *    -> red
42935  *    -> green
42936  *  Table
42937  *    -> square
42938  *      ->red
42939  *      ->green
42940  *    -> rectangle
42941  *      ->green
42942  *      
42943  * 
42944  * @constructor
42945  * Create a new ComboNested
42946  * @param {Object} config Configuration options
42947  */
42948 Roo.form.ComboNested = function(config){
42949     Roo.form.ComboCheck.superclass.constructor.call(this, config);
42950     // should verify some data...
42951     // like
42952     // hiddenName = required..
42953     // displayField = required
42954     // valudField == required
42955     var req= [ 'hiddenName', 'displayField', 'valueField' ];
42956     var _t = this;
42957     Roo.each(req, function(e) {
42958         if ((typeof(_t[e]) == 'undefined' ) || !_t[e].length) {
42959             throw "Roo.form.ComboNested : missing value for: " + e;
42960         }
42961     });
42962      
42963     
42964 };
42965
42966 Roo.extend(Roo.form.ComboNested, Roo.form.ComboBox, {
42967    
42968     /*
42969      * @config {Number} max Number of columns to show
42970      */
42971     
42972     maxColumns : 3,
42973    
42974     list : null, // the outermost div..
42975     innerLists : null, // the
42976     views : null,
42977     stores : null,
42978     // private
42979     loadingChildren : false,
42980     
42981     onRender : function(ct, position)
42982     {
42983         Roo.form.ComboBox.superclass.onRender.call(this, ct, position); // skip parent call - got to above..
42984         
42985         if(this.hiddenName){
42986             this.hiddenField = this.el.insertSibling({tag:'input', type:'hidden', name: this.hiddenName, id:  (this.hiddenId||this.hiddenName)},
42987                     'before', true);
42988             this.hiddenField.value =
42989                 this.hiddenValue !== undefined ? this.hiddenValue :
42990                 this.value !== undefined ? this.value : '';
42991
42992             // prevent input submission
42993             this.el.dom.removeAttribute('name');
42994              
42995              
42996         }
42997         
42998         if(Roo.isGecko){
42999             this.el.dom.setAttribute('autocomplete', 'off');
43000         }
43001
43002         var cls = 'x-combo-list';
43003
43004         this.list = new Roo.Layer({
43005             shadow: this.shadow, cls: [cls, this.listClass].join(' '), constrain:false
43006         });
43007
43008         var lw = this.listWidth || Math.max(this.wrap.getWidth(), this.minListWidth);
43009         this.list.setWidth(lw);
43010         this.list.swallowEvent('mousewheel');
43011         this.assetHeight = 0;
43012
43013         if(this.title){
43014             this.header = this.list.createChild({cls:cls+'-hd', html: this.title});
43015             this.assetHeight += this.header.getHeight();
43016         }
43017         this.innerLists = [];
43018         this.views = [];
43019         this.stores = [];
43020         for (var i =0 ; i < this.maxColumns; i++) {
43021             this.onRenderList( cls, i);
43022         }
43023         
43024         // always needs footer, as we are going to have an 'OK' button.
43025         this.footer = this.list.createChild({cls:cls+'-ft'});
43026         this.pageTb = new Roo.Toolbar(this.footer);  
43027         var _this = this;
43028         this.pageTb.add(  {
43029             
43030             text: 'Done',
43031             handler: function()
43032             {
43033                 _this.collapse();
43034             }
43035         });
43036         
43037         if ( this.allowBlank && !this.disableClear) {
43038             
43039             this.pageTb.add(new Roo.Toolbar.Fill(), {
43040                 cls: 'x-btn-icon x-btn-clear',
43041                 text: '&#160;',
43042                 handler: function()
43043                 {
43044                     _this.collapse();
43045                     _this.clearValue();
43046                     _this.onSelect(false, -1);
43047                 }
43048             });
43049         }
43050         if (this.footer) {
43051             this.assetHeight += this.footer.getHeight();
43052         }
43053         
43054     },
43055     onRenderList : function (  cls, i)
43056     {
43057         
43058         var lw = Math.floor(
43059                 ((this.listWidth * this.maxColumns || Math.max(this.wrap.getWidth(), this.minListWidth)) - this.list.getFrameWidth('lr')) / this.maxColumns
43060         );
43061         
43062         this.list.setWidth(lw); // default to '1'
43063
43064         var il = this.innerLists[i] = this.list.createChild({cls:cls+'-inner'});
43065         //il.on('mouseover', this.onViewOver, this, { list:  i });
43066         //il.on('mousemove', this.onViewMove, this, { list:  i });
43067         il.setWidth(lw);
43068         il.setStyle({ 'overflow-x' : 'hidden'});
43069
43070         if(!this.tpl){
43071             this.tpl = new Roo.Template({
43072                 html :  '<div class="'+cls+'-item '+cls+'-item-{cn:this.isEmpty}">{' + this.displayField + '}</div>',
43073                 isEmpty: function (value, allValues) {
43074                     //Roo.log(value);
43075                     var dl = typeof(value.data) != 'undefined' ? value.data.length : value.length; ///json is a nested response..
43076                     return dl ? 'has-children' : 'no-children'
43077                 }
43078             });
43079         }
43080         
43081         var store  = this.store;
43082         if (i > 0) {
43083             store  = new Roo.data.SimpleStore({
43084                 //fields : this.store.reader.meta.fields,
43085                 reader : this.store.reader,
43086                 data : [ ]
43087             });
43088         }
43089         this.stores[i]  = store;
43090                   
43091         var view = this.views[i] = new Roo.View(
43092             il,
43093             this.tpl,
43094             {
43095                 singleSelect:true,
43096                 store: store,
43097                 selectedClass: this.selectedClass
43098             }
43099         );
43100         view.getEl().setWidth(lw);
43101         view.getEl().setStyle({
43102             position: i < 1 ? 'relative' : 'absolute',
43103             top: 0,
43104             left: (i * lw ) + 'px',
43105             display : i > 0 ? 'none' : 'block'
43106         });
43107         view.on('selectionchange', this.onSelectChange.createDelegate(this, {list : i }, true));
43108         view.on('dblclick', this.onDoubleClick.createDelegate(this, {list : i }, true));
43109         //view.on('click', this.onViewClick, this, { list : i });
43110
43111         store.on('beforeload', this.onBeforeLoad, this);
43112         store.on('load',  this.onLoad, this, { list  : i});
43113         store.on('loadexception', this.onLoadException, this);
43114
43115         // hide the other vies..
43116         
43117         
43118         
43119     },
43120       
43121     restrictHeight : function()
43122     {
43123         var mh = 0;
43124         Roo.each(this.innerLists, function(il,i) {
43125             var el = this.views[i].getEl();
43126             el.dom.style.height = '';
43127             var inner = el.dom;
43128             var h = Math.max(il.clientHeight, il.offsetHeight, il.scrollHeight);
43129             // only adjust heights on other ones..
43130             mh = Math.max(h, mh);
43131             if (i < 1) {
43132                 
43133                 el.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
43134                 il.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
43135                
43136             }
43137             
43138             
43139         }, this);
43140         
43141         this.list.beginUpdate();
43142         this.list.setHeight(mh+this.list.getFrameWidth('tb')+this.assetHeight);
43143         this.list.alignTo(this.el, this.listAlign);
43144         this.list.endUpdate();
43145         
43146     },
43147      
43148     
43149     // -- store handlers..
43150     // private
43151     onBeforeLoad : function()
43152     {
43153         if(!this.hasFocus){
43154             return;
43155         }
43156         this.innerLists[0].update(this.loadingText ?
43157                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
43158         this.restrictHeight();
43159         this.selectedIndex = -1;
43160     },
43161     // private
43162     onLoad : function(a,b,c,d)
43163     {
43164         if (!this.loadingChildren) {
43165             // then we are loading the top level. - hide the children
43166             for (var i = 1;i < this.views.length; i++) {
43167                 this.views[i].getEl().setStyle({ display : 'none' });
43168             }
43169             var lw = Math.floor(
43170                 ((this.listWidth * this.maxColumns || Math.max(this.wrap.getWidth(), this.minListWidth)) - this.list.getFrameWidth('lr')) / this.maxColumns
43171             );
43172         
43173              this.list.setWidth(lw); // default to '1'
43174
43175             
43176         }
43177         if(!this.hasFocus){
43178             return;
43179         }
43180         
43181         if(this.store.getCount() > 0) {
43182             this.expand();
43183             this.restrictHeight();   
43184         } else {
43185             this.onEmptyResults();
43186         }
43187         
43188         if (!this.loadingChildren) {
43189             this.selectActive();
43190         }
43191         /*
43192         this.stores[1].loadData([]);
43193         this.stores[2].loadData([]);
43194         this.views
43195         */    
43196     
43197         //this.el.focus();
43198     },
43199     
43200     
43201     // private
43202     onLoadException : function()
43203     {
43204         this.collapse();
43205         Roo.log(this.store.reader.jsonData);
43206         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
43207             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
43208         }
43209         
43210         
43211     },
43212     // no cleaning of leading spaces on blur here.
43213     cleanLeadingSpace : function(e) { },
43214     
43215
43216     onSelectChange : function (view, sels, opts )
43217     {
43218         var ix = view.getSelectedIndexes();
43219          
43220         if (opts.list > this.maxColumns - 2) {
43221             if (view.store.getCount()<  1) {
43222                 this.views[opts.list ].getEl().setStyle({ display :   'none' });
43223
43224             } else  {
43225                 if (ix.length) {
43226                     // used to clear ?? but if we are loading unselected 
43227                     this.setFromData(view.store.getAt(ix[0]).data);
43228                 }
43229                 
43230             }
43231             
43232             return;
43233         }
43234         
43235         if (!ix.length) {
43236             // this get's fired when trigger opens..
43237            // this.setFromData({});
43238             var str = this.stores[opts.list+1];
43239             str.data.clear(); // removeall wihtout the fire events..
43240             return;
43241         }
43242         
43243         var rec = view.store.getAt(ix[0]);
43244          
43245         this.setFromData(rec.data);
43246         this.fireEvent('select', this, rec, ix[0]);
43247         
43248         var lw = Math.floor(
43249              (
43250                 (this.listWidth * this.maxColumns || Math.max(this.wrap.getWidth(), this.minListWidth)) - this.list.getFrameWidth('lr')
43251              ) / this.maxColumns
43252         );
43253         this.loadingChildren = true;
43254         this.stores[opts.list+1].loadDataFromChildren( rec );
43255         this.loadingChildren = false;
43256         var dl = this.stores[opts.list+1]. getTotalCount();
43257         
43258         this.views[opts.list+1].getEl().setHeight( this.innerLists[0].getHeight());
43259         
43260         this.views[opts.list+1].getEl().setStyle({ display : dl ? 'block' : 'none' });
43261         for (var i = opts.list+2; i < this.views.length;i++) {
43262             this.views[i].getEl().setStyle({ display : 'none' });
43263         }
43264         
43265         this.innerLists[opts.list+1].setHeight( this.innerLists[0].getHeight());
43266         this.list.setWidth(lw * (opts.list + (dl ? 2 : 1)));
43267         
43268         if (this.isLoading) {
43269            // this.selectActive(opts.list);
43270         }
43271          
43272     },
43273     
43274     
43275     
43276     
43277     onDoubleClick : function()
43278     {
43279         this.collapse(); //??
43280     },
43281     
43282      
43283     
43284     
43285     
43286     // private
43287     recordToStack : function(store, prop, value, stack)
43288     {
43289         var cstore = new Roo.data.SimpleStore({
43290             //fields : this.store.reader.meta.fields, // we need array reader.. for
43291             reader : this.store.reader,
43292             data : [ ]
43293         });
43294         var _this = this;
43295         var record  = false;
43296         var srec = false;
43297         if(store.getCount() < 1){
43298             return false;
43299         }
43300         store.each(function(r){
43301             if(r.data[prop] == value){
43302                 record = r;
43303             srec = r;
43304                 return false;
43305             }
43306             if (r.data.cn && r.data.cn.length) {
43307                 cstore.loadDataFromChildren( r);
43308                 var cret = _this.recordToStack(cstore, prop, value, stack);
43309                 if (cret !== false) {
43310                     record = cret;
43311                     srec = r;
43312                     return false;
43313                 }
43314             }
43315              
43316             return true;
43317         });
43318         if (record == false) {
43319             return false
43320         }
43321         stack.unshift(srec);
43322         return record;
43323     },
43324     
43325     /*
43326      * find the stack of stores that match our value.
43327      *
43328      * 
43329      */
43330     
43331     selectActive : function ()
43332     {
43333         // if store is not loaded, then we will need to wait for that to happen first.
43334         var stack = [];
43335         this.recordToStack(this.store, this.valueField, this.getValue(), stack);
43336         for (var i = 0; i < stack.length; i++ ) {
43337             this.views[i].select(stack[i].store.indexOf(stack[i]), false, false );
43338         }
43339         
43340     }
43341         
43342          
43343     
43344     
43345     
43346     
43347 });/*
43348  * Based on:
43349  * Ext JS Library 1.1.1
43350  * Copyright(c) 2006-2007, Ext JS, LLC.
43351  *
43352  * Originally Released Under LGPL - original licence link has changed is not relivant.
43353  *
43354  * Fork - LGPL
43355  * <script type="text/javascript">
43356  */
43357 /**
43358  * @class Roo.form.Checkbox
43359  * @extends Roo.form.Field
43360  * Single checkbox field.  Can be used as a direct replacement for traditional checkbox fields.
43361  * @constructor
43362  * Creates a new Checkbox
43363  * @param {Object} config Configuration options
43364  */
43365 Roo.form.Checkbox = function(config){
43366     Roo.form.Checkbox.superclass.constructor.call(this, config);
43367     this.addEvents({
43368         /**
43369          * @event check
43370          * Fires when the checkbox is checked or unchecked.
43371              * @param {Roo.form.Checkbox} this This checkbox
43372              * @param {Boolean} checked The new checked value
43373              */
43374         check : true
43375     });
43376 };
43377
43378 Roo.extend(Roo.form.Checkbox, Roo.form.Field,  {
43379     /**
43380      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
43381      */
43382     focusClass : undefined,
43383     /**
43384      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
43385      */
43386     fieldClass: "x-form-field",
43387     /**
43388      * @cfg {Boolean} checked True if the the checkbox should render already checked (defaults to false)
43389      */
43390     checked: false,
43391     /**
43392      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
43393      * {tag: "input", type: "checkbox", autocomplete: "off"})
43394      */
43395     defaultAutoCreate : { tag: "input", type: 'hidden', autocomplete: "off"},
43396     /**
43397      * @cfg {String} boxLabel The text that appears beside the checkbox
43398      */
43399     boxLabel : "",
43400     /**
43401      * @cfg {String} inputValue The value that should go into the generated input element's value attribute
43402      */  
43403     inputValue : '1',
43404     /**
43405      * @cfg {String} valueOff The value that should go into the generated input element's value when unchecked.
43406      */
43407      valueOff: '0', // value when not checked..
43408
43409     actionMode : 'viewEl', 
43410     //
43411     // private
43412     itemCls : 'x-menu-check-item x-form-item',
43413     groupClass : 'x-menu-group-item',
43414     inputType : 'hidden',
43415     
43416     
43417     inSetChecked: false, // check that we are not calling self...
43418     
43419     inputElement: false, // real input element?
43420     basedOn: false, // ????
43421     
43422     isFormField: true, // not sure where this is needed!!!!
43423
43424     onResize : function(){
43425         Roo.form.Checkbox.superclass.onResize.apply(this, arguments);
43426         if(!this.boxLabel){
43427             this.el.alignTo(this.wrap, 'c-c');
43428         }
43429     },
43430
43431     initEvents : function(){
43432         Roo.form.Checkbox.superclass.initEvents.call(this);
43433         this.el.on("click", this.onClick,  this);
43434         this.el.on("change", this.onClick,  this);
43435     },
43436
43437
43438     getResizeEl : function(){
43439         return this.wrap;
43440     },
43441
43442     getPositionEl : function(){
43443         return this.wrap;
43444     },
43445
43446     // private
43447     onRender : function(ct, position){
43448         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
43449         /*
43450         if(this.inputValue !== undefined){
43451             this.el.dom.value = this.inputValue;
43452         }
43453         */
43454         //this.wrap = this.el.wrap({cls: "x-form-check-wrap"});
43455         this.wrap = this.el.wrap({cls: 'x-menu-check-item '});
43456         var viewEl = this.wrap.createChild({ 
43457             tag: 'img', cls: 'x-menu-item-icon', style: 'margin: 0px;' ,src : Roo.BLANK_IMAGE_URL });
43458         this.viewEl = viewEl;   
43459         this.wrap.on('click', this.onClick,  this); 
43460         
43461         this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
43462         this.el.on('propertychange', this.setFromHidden,  this);  //ie
43463         
43464         
43465         
43466         if(this.boxLabel){
43467             this.wrap.createChild({tag: 'label', htmlFor: this.el.id, cls: 'x-form-cb-label', html: this.boxLabel});
43468         //    viewEl.on('click', this.onClick,  this); 
43469         }
43470         //if(this.checked){
43471             this.setChecked(this.checked);
43472         //}else{
43473             //this.checked = this.el.dom;
43474         //}
43475
43476     },
43477
43478     // private
43479     initValue : Roo.emptyFn,
43480
43481     /**
43482      * Returns the checked state of the checkbox.
43483      * @return {Boolean} True if checked, else false
43484      */
43485     getValue : function(){
43486         if(this.el){
43487             return String(this.el.dom.value) == String(this.inputValue ) ? this.inputValue : this.valueOff;
43488         }
43489         return this.valueOff;
43490         
43491     },
43492
43493         // private
43494     onClick : function(){ 
43495         if (this.disabled) {
43496             return;
43497         }
43498         this.setChecked(!this.checked);
43499
43500         //if(this.el.dom.checked != this.checked){
43501         //    this.setValue(this.el.dom.checked);
43502        // }
43503     },
43504
43505     /**
43506      * Sets the checked state of the checkbox.
43507      * On is always based on a string comparison between inputValue and the param.
43508      * @param {Boolean/String} value - the value to set 
43509      * @param {Boolean/String} suppressEvent - whether to suppress the checkchange event.
43510      */
43511     setValue : function(v,suppressEvent){
43512         
43513         
43514         //this.checked = (v === true || v === 'true' || v == '1' || String(v).toLowerCase() == 'on');
43515         //if(this.el && this.el.dom){
43516         //    this.el.dom.checked = this.checked;
43517         //    this.el.dom.defaultChecked = this.checked;
43518         //}
43519         this.setChecked(String(v) === String(this.inputValue), suppressEvent);
43520         //this.fireEvent("check", this, this.checked);
43521     },
43522     // private..
43523     setChecked : function(state,suppressEvent)
43524     {
43525         if (this.inSetChecked) {
43526             this.checked = state;
43527             return;
43528         }
43529         
43530     
43531         if(this.wrap){
43532             this.wrap[state ? 'addClass' : 'removeClass']('x-menu-item-checked');
43533         }
43534         this.checked = state;
43535         if(suppressEvent !== true){
43536             this.fireEvent('check', this, state);
43537         }
43538         this.inSetChecked = true;
43539         this.el.dom.value = state ? this.inputValue : this.valueOff;
43540         this.inSetChecked = false;
43541         
43542     },
43543     // handle setting of hidden value by some other method!!?!?
43544     setFromHidden: function()
43545     {
43546         if(!this.el){
43547             return;
43548         }
43549         //console.log("SET FROM HIDDEN");
43550         //alert('setFrom hidden');
43551         this.setValue(this.el.dom.value);
43552     },
43553     
43554     onDestroy : function()
43555     {
43556         if(this.viewEl){
43557             Roo.get(this.viewEl).remove();
43558         }
43559          
43560         Roo.form.Checkbox.superclass.onDestroy.call(this);
43561     },
43562     
43563     setBoxLabel : function(str)
43564     {
43565         this.wrap.select('.x-form-cb-label', true).first().dom.innerHTML = str;
43566     }
43567
43568 });/*
43569  * Based on:
43570  * Ext JS Library 1.1.1
43571  * Copyright(c) 2006-2007, Ext JS, LLC.
43572  *
43573  * Originally Released Under LGPL - original licence link has changed is not relivant.
43574  *
43575  * Fork - LGPL
43576  * <script type="text/javascript">
43577  */
43578  
43579 /**
43580  * @class Roo.form.Radio
43581  * @extends Roo.form.Checkbox
43582  * Single radio field.  Same as Checkbox, but provided as a convenience for automatically setting the input type.
43583  * Radio grouping is handled automatically by the browser if you give each radio in a group the same name.
43584  * @constructor
43585  * Creates a new Radio
43586  * @param {Object} config Configuration options
43587  */
43588 Roo.form.Radio = function(){
43589     Roo.form.Radio.superclass.constructor.apply(this, arguments);
43590 };
43591 Roo.extend(Roo.form.Radio, Roo.form.Checkbox, {
43592     inputType: 'radio',
43593
43594     /**
43595      * If this radio is part of a group, it will return the selected value
43596      * @return {String}
43597      */
43598     getGroupValue : function(){
43599         return this.el.up('form').child('input[name='+this.el.dom.name+']:checked', true).value;
43600     },
43601     
43602     
43603     onRender : function(ct, position){
43604         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
43605         
43606         if(this.inputValue !== undefined){
43607             this.el.dom.value = this.inputValue;
43608         }
43609          
43610         this.wrap = this.el.wrap({cls: "x-form-check-wrap"});
43611         //this.wrap = this.el.wrap({cls: 'x-menu-check-item '});
43612         //var viewEl = this.wrap.createChild({ 
43613         //    tag: 'img', cls: 'x-menu-item-icon', style: 'margin: 0px;' ,src : Roo.BLANK_IMAGE_URL });
43614         //this.viewEl = viewEl;   
43615         //this.wrap.on('click', this.onClick,  this); 
43616         
43617         //this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
43618         //this.el.on('propertychange', this.setFromHidden,  this);  //ie
43619         
43620         
43621         
43622         if(this.boxLabel){
43623             this.wrap.createChild({tag: 'label', htmlFor: this.el.id, cls: 'x-form-cb-label', html: this.boxLabel});
43624         //    viewEl.on('click', this.onClick,  this); 
43625         }
43626          if(this.checked){
43627             this.el.dom.checked =   'checked' ;
43628         }
43629          
43630     } 
43631     
43632     
43633 });//<script type="text/javascript">
43634
43635 /*
43636  * Based  Ext JS Library 1.1.1
43637  * Copyright(c) 2006-2007, Ext JS, LLC.
43638  * LGPL
43639  *
43640  */
43641  
43642 /**
43643  * @class Roo.HtmlEditorCore
43644  * @extends Roo.Component
43645  * Provides a the editing component for the HTML editors in Roo. (bootstrap and Roo.form)
43646  *
43647  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
43648  */
43649
43650 Roo.HtmlEditorCore = function(config){
43651     
43652     
43653     Roo.HtmlEditorCore.superclass.constructor.call(this, config);
43654     
43655     
43656     this.addEvents({
43657         /**
43658          * @event initialize
43659          * Fires when the editor is fully initialized (including the iframe)
43660          * @param {Roo.HtmlEditorCore} this
43661          */
43662         initialize: true,
43663         /**
43664          * @event activate
43665          * Fires when the editor is first receives the focus. Any insertion must wait
43666          * until after this event.
43667          * @param {Roo.HtmlEditorCore} this
43668          */
43669         activate: true,
43670          /**
43671          * @event beforesync
43672          * Fires before the textarea is updated with content from the editor iframe. Return false
43673          * to cancel the sync.
43674          * @param {Roo.HtmlEditorCore} this
43675          * @param {String} html
43676          */
43677         beforesync: true,
43678          /**
43679          * @event beforepush
43680          * Fires before the iframe editor is updated with content from the textarea. Return false
43681          * to cancel the push.
43682          * @param {Roo.HtmlEditorCore} this
43683          * @param {String} html
43684          */
43685         beforepush: true,
43686          /**
43687          * @event sync
43688          * Fires when the textarea is updated with content from the editor iframe.
43689          * @param {Roo.HtmlEditorCore} this
43690          * @param {String} html
43691          */
43692         sync: true,
43693          /**
43694          * @event push
43695          * Fires when the iframe editor is updated with content from the textarea.
43696          * @param {Roo.HtmlEditorCore} this
43697          * @param {String} html
43698          */
43699         push: true,
43700         
43701         /**
43702          * @event editorevent
43703          * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
43704          * @param {Roo.HtmlEditorCore} this
43705          */
43706         editorevent: true
43707         
43708     });
43709     
43710     // at this point this.owner is set, so we can start working out the whitelisted / blacklisted elements
43711     
43712     // defaults : white / black...
43713     this.applyBlacklists();
43714     
43715     
43716     
43717 };
43718
43719
43720 Roo.extend(Roo.HtmlEditorCore, Roo.Component,  {
43721
43722
43723      /**
43724      * @cfg {Roo.form.HtmlEditor|Roo.bootstrap.HtmlEditor} the owner field 
43725      */
43726     
43727     owner : false,
43728     
43729      /**
43730      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
43731      *                        Roo.resizable.
43732      */
43733     resizable : false,
43734      /**
43735      * @cfg {Number} height (in pixels)
43736      */   
43737     height: 300,
43738    /**
43739      * @cfg {Number} width (in pixels)
43740      */   
43741     width: 500,
43742     
43743     /**
43744      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
43745      * 
43746      */
43747     stylesheets: false,
43748     
43749     // id of frame..
43750     frameId: false,
43751     
43752     // private properties
43753     validationEvent : false,
43754     deferHeight: true,
43755     initialized : false,
43756     activated : false,
43757     sourceEditMode : false,
43758     onFocus : Roo.emptyFn,
43759     iframePad:3,
43760     hideMode:'offsets',
43761     
43762     clearUp: true,
43763     
43764     // blacklist + whitelisted elements..
43765     black: false,
43766     white: false,
43767      
43768     bodyCls : '',
43769
43770     /**
43771      * Protected method that will not generally be called directly. It
43772      * is called when the editor initializes the iframe with HTML contents. Override this method if you
43773      * want to change the initialization markup of the iframe (e.g. to add stylesheets).
43774      */
43775     getDocMarkup : function(){
43776         // body styles..
43777         var st = '';
43778         
43779         // inherit styels from page...?? 
43780         if (this.stylesheets === false) {
43781             
43782             Roo.get(document.head).select('style').each(function(node) {
43783                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
43784             });
43785             
43786             Roo.get(document.head).select('link').each(function(node) { 
43787                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
43788             });
43789             
43790         } else if (!this.stylesheets.length) {
43791                 // simple..
43792                 st = '<style type="text/css">' +
43793                     'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
43794                    '</style>';
43795         } else {
43796             for (var i in this.stylesheets) { 
43797                 st += '<link rel="stylesheet" href="' + this.stylesheets[i] +'" type="text/css">';
43798             }
43799             
43800         }
43801         
43802         st +=  '<style type="text/css">' +
43803             'IMG { cursor: pointer } ' +
43804         '</style>';
43805
43806         var cls = 'roo-htmleditor-body';
43807         
43808         if(this.bodyCls.length){
43809             cls += ' ' + this.bodyCls;
43810         }
43811         
43812         return '<html><head>' + st  +
43813             //<style type="text/css">' +
43814             //'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
43815             //'</style>' +
43816             ' </head><body contenteditable="true" data-enable-grammerly="true" class="' +  cls + '"></body></html>';
43817     },
43818
43819     // private
43820     onRender : function(ct, position)
43821     {
43822         var _t = this;
43823         //Roo.HtmlEditorCore.superclass.onRender.call(this, ct, position);
43824         this.el = this.owner.inputEl ? this.owner.inputEl() : this.owner.el;
43825         
43826         
43827         this.el.dom.style.border = '0 none';
43828         this.el.dom.setAttribute('tabIndex', -1);
43829         this.el.addClass('x-hidden hide');
43830         
43831         
43832         
43833         if(Roo.isIE){ // fix IE 1px bogus margin
43834             this.el.applyStyles('margin-top:-1px;margin-bottom:-1px;')
43835         }
43836        
43837         
43838         this.frameId = Roo.id();
43839         
43840          
43841         
43842         var iframe = this.owner.wrap.createChild({
43843             tag: 'iframe',
43844             cls: 'form-control', // bootstrap..
43845             id: this.frameId,
43846             name: this.frameId,
43847             frameBorder : 'no',
43848             'src' : Roo.SSL_SECURE_URL ? Roo.SSL_SECURE_URL  :  "javascript:false"
43849         }, this.el
43850         );
43851         
43852         
43853         this.iframe = iframe.dom;
43854
43855          this.assignDocWin();
43856         
43857         this.doc.designMode = 'on';
43858        
43859         this.doc.open();
43860         this.doc.write(this.getDocMarkup());
43861         this.doc.close();
43862
43863         
43864         var task = { // must defer to wait for browser to be ready
43865             run : function(){
43866                 //console.log("run task?" + this.doc.readyState);
43867                 this.assignDocWin();
43868                 if(this.doc.body || this.doc.readyState == 'complete'){
43869                     try {
43870                         this.doc.designMode="on";
43871                     } catch (e) {
43872                         return;
43873                     }
43874                     Roo.TaskMgr.stop(task);
43875                     this.initEditor.defer(10, this);
43876                 }
43877             },
43878             interval : 10,
43879             duration: 10000,
43880             scope: this
43881         };
43882         Roo.TaskMgr.start(task);
43883
43884     },
43885
43886     // private
43887     onResize : function(w, h)
43888     {
43889          Roo.log('resize: ' +w + ',' + h );
43890         //Roo.HtmlEditorCore.superclass.onResize.apply(this, arguments);
43891         if(!this.iframe){
43892             return;
43893         }
43894         if(typeof w == 'number'){
43895             
43896             this.iframe.style.width = w + 'px';
43897         }
43898         if(typeof h == 'number'){
43899             
43900             this.iframe.style.height = h + 'px';
43901             if(this.doc){
43902                 (this.doc.body || this.doc.documentElement).style.height = (h - (this.iframePad*2)) + 'px';
43903             }
43904         }
43905         
43906     },
43907
43908     /**
43909      * Toggles the editor between standard and source edit mode.
43910      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
43911      */
43912     toggleSourceEdit : function(sourceEditMode){
43913         
43914         this.sourceEditMode = sourceEditMode === true;
43915         
43916         if(this.sourceEditMode){
43917  
43918             Roo.get(this.iframe).addClass(['x-hidden','hide']);     //FIXME - what's the BS styles for these
43919             
43920         }else{
43921             Roo.get(this.iframe).removeClass(['x-hidden','hide']);
43922             //this.iframe.className = '';
43923             this.deferFocus();
43924         }
43925         //this.setSize(this.owner.wrap.getSize());
43926         //this.fireEvent('editmodechange', this, this.sourceEditMode);
43927     },
43928
43929     
43930   
43931
43932     /**
43933      * Protected method that will not generally be called directly. If you need/want
43934      * custom HTML cleanup, this is the method you should override.
43935      * @param {String} html The HTML to be cleaned
43936      * return {String} The cleaned HTML
43937      */
43938     cleanHtml : function(html){
43939         html = String(html);
43940         if(html.length > 5){
43941             if(Roo.isSafari){ // strip safari nonsense
43942                 html = html.replace(/\sclass="(?:Apple-style-span|khtml-block-placeholder)"/gi, '');
43943             }
43944         }
43945         if(html == '&nbsp;'){
43946             html = '';
43947         }
43948         return html;
43949     },
43950
43951     /**
43952      * HTML Editor -> Textarea
43953      * Protected method that will not generally be called directly. Syncs the contents
43954      * of the editor iframe with the textarea.
43955      */
43956     syncValue : function(){
43957         if(this.initialized){
43958             var bd = (this.doc.body || this.doc.documentElement);
43959             //this.cleanUpPaste(); -- this is done else where and causes havoc..
43960             var html = bd.innerHTML;
43961             if(Roo.isSafari){
43962                 var bs = bd.getAttribute('style'); // Safari puts text-align styles on the body element!
43963                 var m = bs ? bs.match(/text-align:(.*?);/i) : false;
43964                 if(m && m[1]){
43965                     html = '<div style="'+m[0]+'">' + html + '</div>';
43966                 }
43967             }
43968             html = this.cleanHtml(html);
43969             // fix up the special chars.. normaly like back quotes in word...
43970             // however we do not want to do this with chinese..
43971             html = html.replace(/[\uD800-\uDBFF][\uDC00-\uDFFF]|[\u0080-\uFFFF]/g, function(match) {
43972                 
43973                 var cc = match.charCodeAt();
43974
43975                 // Get the character value, handling surrogate pairs
43976                 if (match.length == 2) {
43977                     // It's a surrogate pair, calculate the Unicode code point
43978                     var high = match.charCodeAt(0) - 0xD800;
43979                     var low  = match.charCodeAt(1) - 0xDC00;
43980                     cc = (high * 0x400) + low + 0x10000;
43981                 }  else if (
43982                     (cc >= 0x4E00 && cc < 0xA000 ) ||
43983                     (cc >= 0x3400 && cc < 0x4E00 ) ||
43984                     (cc >= 0xf900 && cc < 0xfb00 )
43985                 ) {
43986                         return match;
43987                 }  
43988          
43989                 // No, use a numeric entity. Here we brazenly (and possibly mistakenly)
43990                 return "&#" + cc + ";";
43991                 
43992                 
43993             });
43994             
43995             
43996              
43997             if(this.owner.fireEvent('beforesync', this, html) !== false){
43998                 this.el.dom.value = html;
43999                 this.owner.fireEvent('sync', this, html);
44000             }
44001         }
44002     },
44003
44004     /**
44005      * Protected method that will not generally be called directly. Pushes the value of the textarea
44006      * into the iframe editor.
44007      */
44008     pushValue : function(){
44009         if(this.initialized){
44010             var v = this.el.dom.value.trim();
44011             
44012 //            if(v.length < 1){
44013 //                v = '&#160;';
44014 //            }
44015             
44016             if(this.owner.fireEvent('beforepush', this, v) !== false){
44017                 var d = (this.doc.body || this.doc.documentElement);
44018                 d.innerHTML = v;
44019                 this.cleanUpPaste();
44020                 this.el.dom.value = d.innerHTML;
44021                 this.owner.fireEvent('push', this, v);
44022             }
44023         }
44024     },
44025
44026     // private
44027     deferFocus : function(){
44028         this.focus.defer(10, this);
44029     },
44030
44031     // doc'ed in Field
44032     focus : function(){
44033         if(this.win && !this.sourceEditMode){
44034             this.win.focus();
44035         }else{
44036             this.el.focus();
44037         }
44038     },
44039     
44040     assignDocWin: function()
44041     {
44042         var iframe = this.iframe;
44043         
44044          if(Roo.isIE){
44045             this.doc = iframe.contentWindow.document;
44046             this.win = iframe.contentWindow;
44047         } else {
44048 //            if (!Roo.get(this.frameId)) {
44049 //                return;
44050 //            }
44051 //            this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
44052 //            this.win = Roo.get(this.frameId).dom.contentWindow;
44053             
44054             if (!Roo.get(this.frameId) && !iframe.contentDocument) {
44055                 return;
44056             }
44057             
44058             this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
44059             this.win = (iframe.contentWindow || Roo.get(this.frameId).dom.contentWindow);
44060         }
44061     },
44062     
44063     // private
44064     initEditor : function(){
44065         //console.log("INIT EDITOR");
44066         this.assignDocWin();
44067         
44068         
44069         
44070         this.doc.designMode="on";
44071         this.doc.open();
44072         this.doc.write(this.getDocMarkup());
44073         this.doc.close();
44074         
44075         var dbody = (this.doc.body || this.doc.documentElement);
44076         //var ss = this.el.getStyles('font-size', 'font-family', 'background-image', 'background-repeat');
44077         // this copies styles from the containing element into thsi one..
44078         // not sure why we need all of this..
44079         //var ss = this.el.getStyles('font-size', 'background-image', 'background-repeat');
44080         
44081         //var ss = this.el.getStyles( 'background-image', 'background-repeat');
44082         //ss['background-attachment'] = 'fixed'; // w3c
44083         dbody.bgProperties = 'fixed'; // ie
44084         //Roo.DomHelper.applyStyles(dbody, ss);
44085         Roo.EventManager.on(this.doc, {
44086             //'mousedown': this.onEditorEvent,
44087             'mouseup': this.onEditorEvent,
44088             'dblclick': this.onEditorEvent,
44089             'click': this.onEditorEvent,
44090             'keyup': this.onEditorEvent,
44091             buffer:100,
44092             scope: this
44093         });
44094         if(Roo.isGecko){
44095             Roo.EventManager.on(this.doc, 'keypress', this.mozKeyPress, this);
44096         }
44097         if(Roo.isIE || Roo.isSafari || Roo.isOpera){
44098             Roo.EventManager.on(this.doc, 'keydown', this.fixKeys, this);
44099         }
44100         this.initialized = true;
44101
44102         this.owner.fireEvent('initialize', this);
44103         this.pushValue();
44104     },
44105
44106     // private
44107     onDestroy : function(){
44108         
44109         
44110         
44111         if(this.rendered){
44112             
44113             //for (var i =0; i < this.toolbars.length;i++) {
44114             //    // fixme - ask toolbars for heights?
44115             //    this.toolbars[i].onDestroy();
44116            // }
44117             
44118             //this.wrap.dom.innerHTML = '';
44119             //this.wrap.remove();
44120         }
44121     },
44122
44123     // private
44124     onFirstFocus : function(){
44125         
44126         this.assignDocWin();
44127         
44128         
44129         this.activated = true;
44130          
44131     
44132         if(Roo.isGecko){ // prevent silly gecko errors
44133             this.win.focus();
44134             var s = this.win.getSelection();
44135             if(!s.focusNode || s.focusNode.nodeType != 3){
44136                 var r = s.getRangeAt(0);
44137                 r.selectNodeContents((this.doc.body || this.doc.documentElement));
44138                 r.collapse(true);
44139                 this.deferFocus();
44140             }
44141             try{
44142                 this.execCmd('useCSS', true);
44143                 this.execCmd('styleWithCSS', false);
44144             }catch(e){}
44145         }
44146         this.owner.fireEvent('activate', this);
44147     },
44148
44149     // private
44150     adjustFont: function(btn){
44151         var adjust = btn.cmd == 'increasefontsize' ? 1 : -1;
44152         //if(Roo.isSafari){ // safari
44153         //    adjust *= 2;
44154        // }
44155         var v = parseInt(this.doc.queryCommandValue('FontSize')|| 3, 10);
44156         if(Roo.isSafari){ // safari
44157             var sm = { 10 : 1, 13: 2, 16:3, 18:4, 24: 5, 32:6, 48: 7 };
44158             v =  (v < 10) ? 10 : v;
44159             v =  (v > 48) ? 48 : v;
44160             v = typeof(sm[v]) == 'undefined' ? 1 : sm[v];
44161             
44162         }
44163         
44164         
44165         v = Math.max(1, v+adjust);
44166         
44167         this.execCmd('FontSize', v  );
44168     },
44169
44170     onEditorEvent : function(e)
44171     {
44172         this.owner.fireEvent('editorevent', this, e);
44173       //  this.updateToolbar();
44174         this.syncValue(); //we can not sync so often.. sync cleans, so this breaks stuff
44175     },
44176
44177     insertTag : function(tg)
44178     {
44179         // could be a bit smarter... -> wrap the current selected tRoo..
44180         if (tg.toLowerCase() == 'span' ||
44181             tg.toLowerCase() == 'code' ||
44182             tg.toLowerCase() == 'sup' ||
44183             tg.toLowerCase() == 'sub' 
44184             ) {
44185             
44186             range = this.createRange(this.getSelection());
44187             var wrappingNode = this.doc.createElement(tg.toLowerCase());
44188             wrappingNode.appendChild(range.extractContents());
44189             range.insertNode(wrappingNode);
44190
44191             return;
44192             
44193             
44194             
44195         }
44196         this.execCmd("formatblock",   tg);
44197         
44198     },
44199     
44200     insertText : function(txt)
44201     {
44202         
44203         
44204         var range = this.createRange();
44205         range.deleteContents();
44206                //alert(Sender.getAttribute('label'));
44207                
44208         range.insertNode(this.doc.createTextNode(txt));
44209     } ,
44210     
44211      
44212
44213     /**
44214      * Executes a Midas editor command on the editor document and performs necessary focus and
44215      * toolbar updates. <b>This should only be called after the editor is initialized.</b>
44216      * @param {String} cmd The Midas command
44217      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
44218      */
44219     relayCmd : function(cmd, value){
44220         this.win.focus();
44221         this.execCmd(cmd, value);
44222         this.owner.fireEvent('editorevent', this);
44223         //this.updateToolbar();
44224         this.owner.deferFocus();
44225     },
44226
44227     /**
44228      * Executes a Midas editor command directly on the editor document.
44229      * For visual commands, you should use {@link #relayCmd} instead.
44230      * <b>This should only be called after the editor is initialized.</b>
44231      * @param {String} cmd The Midas command
44232      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
44233      */
44234     execCmd : function(cmd, value){
44235         this.doc.execCommand(cmd, false, value === undefined ? null : value);
44236         this.syncValue();
44237     },
44238  
44239  
44240    
44241     /**
44242      * Inserts the passed text at the current cursor position. Note: the editor must be initialized and activated
44243      * to insert tRoo.
44244      * @param {String} text | dom node.. 
44245      */
44246     insertAtCursor : function(text)
44247     {
44248         
44249         if(!this.activated){
44250             return;
44251         }
44252         /*
44253         if(Roo.isIE){
44254             this.win.focus();
44255             var r = this.doc.selection.createRange();
44256             if(r){
44257                 r.collapse(true);
44258                 r.pasteHTML(text);
44259                 this.syncValue();
44260                 this.deferFocus();
44261             
44262             }
44263             return;
44264         }
44265         */
44266         if(Roo.isGecko || Roo.isOpera || Roo.isSafari){
44267             this.win.focus();
44268             
44269             
44270             // from jquery ui (MIT licenced)
44271             var range, node;
44272             var win = this.win;
44273             
44274             if (win.getSelection && win.getSelection().getRangeAt) {
44275                 range = win.getSelection().getRangeAt(0);
44276                 node = typeof(text) == 'string' ? range.createContextualFragment(text) : text;
44277                 range.insertNode(node);
44278             } else if (win.document.selection && win.document.selection.createRange) {
44279                 // no firefox support
44280                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
44281                 win.document.selection.createRange().pasteHTML(txt);
44282             } else {
44283                 // no firefox support
44284                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
44285                 this.execCmd('InsertHTML', txt);
44286             } 
44287             
44288             this.syncValue();
44289             
44290             this.deferFocus();
44291         }
44292     },
44293  // private
44294     mozKeyPress : function(e){
44295         if(e.ctrlKey){
44296             var c = e.getCharCode(), cmd;
44297           
44298             if(c > 0){
44299                 c = String.fromCharCode(c).toLowerCase();
44300                 switch(c){
44301                     case 'b':
44302                         cmd = 'bold';
44303                         break;
44304                     case 'i':
44305                         cmd = 'italic';
44306                         break;
44307                     
44308                     case 'u':
44309                         cmd = 'underline';
44310                         break;
44311                     
44312                     case 'v':
44313                         this.cleanUpPaste.defer(100, this);
44314                         return;
44315                         
44316                 }
44317                 if(cmd){
44318                     this.win.focus();
44319                     this.execCmd(cmd);
44320                     this.deferFocus();
44321                     e.preventDefault();
44322                 }
44323                 
44324             }
44325         }
44326     },
44327
44328     // private
44329     fixKeys : function(){ // load time branching for fastest keydown performance
44330         if(Roo.isIE){
44331             return function(e){
44332                 var k = e.getKey(), r;
44333                 if(k == e.TAB){
44334                     e.stopEvent();
44335                     r = this.doc.selection.createRange();
44336                     if(r){
44337                         r.collapse(true);
44338                         r.pasteHTML('&#160;&#160;&#160;&#160;');
44339                         this.deferFocus();
44340                     }
44341                     return;
44342                 }
44343                 
44344                 if(k == e.ENTER){
44345                     r = this.doc.selection.createRange();
44346                     if(r){
44347                         var target = r.parentElement();
44348                         if(!target || target.tagName.toLowerCase() != 'li'){
44349                             e.stopEvent();
44350                             r.pasteHTML('<br />');
44351                             r.collapse(false);
44352                             r.select();
44353                         }
44354                     }
44355                 }
44356                 if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
44357                     this.cleanUpPaste.defer(100, this);
44358                     return;
44359                 }
44360                 
44361                 
44362             };
44363         }else if(Roo.isOpera){
44364             return function(e){
44365                 var k = e.getKey();
44366                 if(k == e.TAB){
44367                     e.stopEvent();
44368                     this.win.focus();
44369                     this.execCmd('InsertHTML','&#160;&#160;&#160;&#160;');
44370                     this.deferFocus();
44371                 }
44372                 if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
44373                     this.cleanUpPaste.defer(100, this);
44374                     return;
44375                 }
44376                 
44377             };
44378         }else if(Roo.isSafari){
44379             return function(e){
44380                 var k = e.getKey();
44381                 
44382                 if(k == e.TAB){
44383                     e.stopEvent();
44384                     this.execCmd('InsertText','\t');
44385                     this.deferFocus();
44386                     return;
44387                 }
44388                if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
44389                     this.cleanUpPaste.defer(100, this);
44390                     return;
44391                 }
44392                 
44393              };
44394         }
44395     }(),
44396     
44397     getAllAncestors: function()
44398     {
44399         var p = this.getSelectedNode();
44400         var a = [];
44401         if (!p) {
44402             a.push(p); // push blank onto stack..
44403             p = this.getParentElement();
44404         }
44405         
44406         
44407         while (p && (p.nodeType == 1) && (p.tagName.toLowerCase() != 'body')) {
44408             a.push(p);
44409             p = p.parentNode;
44410         }
44411         a.push(this.doc.body);
44412         return a;
44413     },
44414     lastSel : false,
44415     lastSelNode : false,
44416     
44417     
44418     getSelection : function() 
44419     {
44420         this.assignDocWin();
44421         return Roo.isIE ? this.doc.selection : this.win.getSelection();
44422     },
44423     
44424     getSelectedNode: function() 
44425     {
44426         // this may only work on Gecko!!!
44427         
44428         // should we cache this!!!!
44429         
44430         
44431         
44432          
44433         var range = this.createRange(this.getSelection()).cloneRange();
44434         
44435         if (Roo.isIE) {
44436             var parent = range.parentElement();
44437             while (true) {
44438                 var testRange = range.duplicate();
44439                 testRange.moveToElementText(parent);
44440                 if (testRange.inRange(range)) {
44441                     break;
44442                 }
44443                 if ((parent.nodeType != 1) || (parent.tagName.toLowerCase() == 'body')) {
44444                     break;
44445                 }
44446                 parent = parent.parentElement;
44447             }
44448             return parent;
44449         }
44450         
44451         // is ancestor a text element.
44452         var ac =  range.commonAncestorContainer;
44453         if (ac.nodeType == 3) {
44454             ac = ac.parentNode;
44455         }
44456         
44457         var ar = ac.childNodes;
44458          
44459         var nodes = [];
44460         var other_nodes = [];
44461         var has_other_nodes = false;
44462         for (var i=0;i<ar.length;i++) {
44463             if ((ar[i].nodeType == 3) && (!ar[i].data.length)) { // empty text ? 
44464                 continue;
44465             }
44466             // fullly contained node.
44467             
44468             if (this.rangeIntersectsNode(range,ar[i]) && this.rangeCompareNode(range,ar[i]) == 3) {
44469                 nodes.push(ar[i]);
44470                 continue;
44471             }
44472             
44473             // probably selected..
44474             if ((ar[i].nodeType == 1) && this.rangeIntersectsNode(range,ar[i]) && (this.rangeCompareNode(range,ar[i]) > 0)) {
44475                 other_nodes.push(ar[i]);
44476                 continue;
44477             }
44478             // outer..
44479             if (!this.rangeIntersectsNode(range,ar[i])|| (this.rangeCompareNode(range,ar[i]) == 0))  {
44480                 continue;
44481             }
44482             
44483             
44484             has_other_nodes = true;
44485         }
44486         if (!nodes.length && other_nodes.length) {
44487             nodes= other_nodes;
44488         }
44489         if (has_other_nodes || !nodes.length || (nodes.length > 1)) {
44490             return false;
44491         }
44492         
44493         return nodes[0];
44494     },
44495     createRange: function(sel)
44496     {
44497         // this has strange effects when using with 
44498         // top toolbar - not sure if it's a great idea.
44499         //this.editor.contentWindow.focus();
44500         if (typeof sel != "undefined") {
44501             try {
44502                 return sel.getRangeAt ? sel.getRangeAt(0) : sel.createRange();
44503             } catch(e) {
44504                 return this.doc.createRange();
44505             }
44506         } else {
44507             return this.doc.createRange();
44508         }
44509     },
44510     getParentElement: function()
44511     {
44512         
44513         this.assignDocWin();
44514         var sel = Roo.isIE ? this.doc.selection : this.win.getSelection();
44515         
44516         var range = this.createRange(sel);
44517          
44518         try {
44519             var p = range.commonAncestorContainer;
44520             while (p.nodeType == 3) { // text node
44521                 p = p.parentNode;
44522             }
44523             return p;
44524         } catch (e) {
44525             return null;
44526         }
44527     
44528     },
44529     /***
44530      *
44531      * Range intersection.. the hard stuff...
44532      *  '-1' = before
44533      *  '0' = hits..
44534      *  '1' = after.
44535      *         [ -- selected range --- ]
44536      *   [fail]                        [fail]
44537      *
44538      *    basically..
44539      *      if end is before start or  hits it. fail.
44540      *      if start is after end or hits it fail.
44541      *
44542      *   if either hits (but other is outside. - then it's not 
44543      *   
44544      *    
44545      **/
44546     
44547     
44548     // @see http://www.thismuchiknow.co.uk/?p=64.
44549     rangeIntersectsNode : function(range, node)
44550     {
44551         var nodeRange = node.ownerDocument.createRange();
44552         try {
44553             nodeRange.selectNode(node);
44554         } catch (e) {
44555             nodeRange.selectNodeContents(node);
44556         }
44557     
44558         var rangeStartRange = range.cloneRange();
44559         rangeStartRange.collapse(true);
44560     
44561         var rangeEndRange = range.cloneRange();
44562         rangeEndRange.collapse(false);
44563     
44564         var nodeStartRange = nodeRange.cloneRange();
44565         nodeStartRange.collapse(true);
44566     
44567         var nodeEndRange = nodeRange.cloneRange();
44568         nodeEndRange.collapse(false);
44569     
44570         return rangeStartRange.compareBoundaryPoints(
44571                  Range.START_TO_START, nodeEndRange) == -1 &&
44572                rangeEndRange.compareBoundaryPoints(
44573                  Range.START_TO_START, nodeStartRange) == 1;
44574         
44575          
44576     },
44577     rangeCompareNode : function(range, node)
44578     {
44579         var nodeRange = node.ownerDocument.createRange();
44580         try {
44581             nodeRange.selectNode(node);
44582         } catch (e) {
44583             nodeRange.selectNodeContents(node);
44584         }
44585         
44586         
44587         range.collapse(true);
44588     
44589         nodeRange.collapse(true);
44590      
44591         var ss = range.compareBoundaryPoints( Range.START_TO_START, nodeRange);
44592         var ee = range.compareBoundaryPoints(  Range.END_TO_END, nodeRange);
44593          
44594         //Roo.log(node.tagName + ': ss='+ss +', ee='+ee)
44595         
44596         var nodeIsBefore   =  ss == 1;
44597         var nodeIsAfter    = ee == -1;
44598         
44599         if (nodeIsBefore && nodeIsAfter) {
44600             return 0; // outer
44601         }
44602         if (!nodeIsBefore && nodeIsAfter) {
44603             return 1; //right trailed.
44604         }
44605         
44606         if (nodeIsBefore && !nodeIsAfter) {
44607             return 2;  // left trailed.
44608         }
44609         // fully contined.
44610         return 3;
44611     },
44612
44613     // private? - in a new class?
44614     cleanUpPaste :  function()
44615     {
44616         // cleans up the whole document..
44617         Roo.log('cleanuppaste');
44618         
44619         this.cleanUpChildren(this.doc.body);
44620         var clean = this.cleanWordChars(this.doc.body.innerHTML);
44621         if (clean != this.doc.body.innerHTML) {
44622             this.doc.body.innerHTML = clean;
44623         }
44624         
44625     },
44626     
44627     cleanWordChars : function(input) {// change the chars to hex code
44628         var he = Roo.HtmlEditorCore;
44629         
44630         var output = input;
44631         Roo.each(he.swapCodes, function(sw) { 
44632             var swapper = new RegExp("\\u" + sw[0].toString(16), "g"); // hex codes
44633             
44634             output = output.replace(swapper, sw[1]);
44635         });
44636         
44637         return output;
44638     },
44639     
44640     
44641     cleanUpChildren : function (n)
44642     {
44643         if (!n.childNodes.length) {
44644             return;
44645         }
44646         for (var i = n.childNodes.length-1; i > -1 ; i--) {
44647            this.cleanUpChild(n.childNodes[i]);
44648         }
44649     },
44650     
44651     
44652         
44653     
44654     cleanUpChild : function (node)
44655     {
44656         var ed = this;
44657         //console.log(node);
44658         if (node.nodeName == "#text") {
44659             // clean up silly Windows -- stuff?
44660             return; 
44661         }
44662         if (node.nodeName == "#comment") {
44663             node.parentNode.removeChild(node);
44664             // clean up silly Windows -- stuff?
44665             return; 
44666         }
44667         var lcname = node.tagName.toLowerCase();
44668         // we ignore whitelists... ?? = not really the way to go, but we probably have not got a full
44669         // whitelist of tags..
44670         
44671         if (this.black.indexOf(lcname) > -1 && this.clearUp ) {
44672             // remove node.
44673             node.parentNode.removeChild(node);
44674             return;
44675             
44676         }
44677         
44678         var remove_keep_children= Roo.HtmlEditorCore.remove.indexOf(node.tagName.toLowerCase()) > -1;
44679         
44680         // spans with no attributes - just remove them..
44681         if ((!node.attributes || !node.attributes.length) && lcname == 'span') { 
44682             remove_keep_children = true;
44683         }
44684         
44685         // remove <a name=....> as rendering on yahoo mailer is borked with this.
44686         // this will have to be flaged elsewhere - perhaps ablack=name... on the mailer..
44687         
44688         //if (node.tagName.toLowerCase() == 'a' && !node.hasAttribute('href')) {
44689         //    remove_keep_children = true;
44690         //}
44691         
44692         if (remove_keep_children) {
44693             this.cleanUpChildren(node);
44694             // inserts everything just before this node...
44695             while (node.childNodes.length) {
44696                 var cn = node.childNodes[0];
44697                 node.removeChild(cn);
44698                 node.parentNode.insertBefore(cn, node);
44699             }
44700             node.parentNode.removeChild(node);
44701             return;
44702         }
44703         
44704         if (!node.attributes || !node.attributes.length) {
44705             
44706           
44707             
44708             
44709             this.cleanUpChildren(node);
44710             return;
44711         }
44712         
44713         function cleanAttr(n,v)
44714         {
44715             
44716             if (v.match(/^\./) || v.match(/^\//)) {
44717                 return;
44718             }
44719             if (v.match(/^(http|https):\/\//) || v.match(/^mailto:/) || v.match(/^ftp:/)) {
44720                 return;
44721             }
44722             if (v.match(/^#/)) {
44723                 return;
44724             }
44725             if (v.match(/^\{/)) { // allow template editing.
44726                 return;
44727             }
44728 //            Roo.log("(REMOVE TAG)"+ node.tagName +'.' + n + '=' + v);
44729             node.removeAttribute(n);
44730             
44731         }
44732         
44733         var cwhite = this.cwhite;
44734         var cblack = this.cblack;
44735             
44736         function cleanStyle(n,v)
44737         {
44738             if (v.match(/expression/)) { //XSS?? should we even bother..
44739                 node.removeAttribute(n);
44740                 return;
44741             }
44742             
44743             var parts = v.split(/;/);
44744             var clean = [];
44745             
44746             Roo.each(parts, function(p) {
44747                 p = p.replace(/^\s+/g,'').replace(/\s+$/g,'');
44748                 if (!p.length) {
44749                     return true;
44750                 }
44751                 var l = p.split(':').shift().replace(/\s+/g,'');
44752                 l = l.replace(/^\s+/g,'').replace(/\s+$/g,'');
44753                 
44754                 if ( cwhite.length && cblack.indexOf(l) > -1) {
44755 //                    Roo.log('(REMOVE CSS)' + node.tagName +'.' + n + ':'+l + '=' + v);
44756                     //node.removeAttribute(n);
44757                     return true;
44758                 }
44759                 //Roo.log()
44760                 // only allow 'c whitelisted system attributes'
44761                 if ( cwhite.length &&  cwhite.indexOf(l) < 0) {
44762 //                    Roo.log('(REMOVE CSS)' + node.tagName +'.' + n + ':'+l + '=' + v);
44763                     //node.removeAttribute(n);
44764                     return true;
44765                 }
44766                 
44767                 
44768                  
44769                 
44770                 clean.push(p);
44771                 return true;
44772             });
44773             if (clean.length) { 
44774                 node.setAttribute(n, clean.join(';'));
44775             } else {
44776                 node.removeAttribute(n);
44777             }
44778             
44779         }
44780         
44781         
44782         for (var i = node.attributes.length-1; i > -1 ; i--) {
44783             var a = node.attributes[i];
44784             //console.log(a);
44785             
44786             if (a.name.toLowerCase().substr(0,2)=='on')  {
44787                 node.removeAttribute(a.name);
44788                 continue;
44789             }
44790             if (Roo.HtmlEditorCore.ablack.indexOf(a.name.toLowerCase()) > -1) {
44791                 node.removeAttribute(a.name);
44792                 continue;
44793             }
44794             if (Roo.HtmlEditorCore.aclean.indexOf(a.name.toLowerCase()) > -1) {
44795                 cleanAttr(a.name,a.value); // fixme..
44796                 continue;
44797             }
44798             if (a.name == 'style') {
44799                 cleanStyle(a.name,a.value);
44800                 continue;
44801             }
44802             /// clean up MS crap..
44803             // tecnically this should be a list of valid class'es..
44804             
44805             
44806             if (a.name == 'class') {
44807                 if (a.value.match(/^Mso/)) {
44808                     node.removeAttribute('class');
44809                 }
44810                 
44811                 if (a.value.match(/^body$/)) {
44812                     node.removeAttribute('class');
44813                 }
44814                 continue;
44815             }
44816             
44817             // style cleanup!?
44818             // class cleanup?
44819             
44820         }
44821         
44822         
44823         this.cleanUpChildren(node);
44824         
44825         
44826     },
44827     
44828     /**
44829      * Clean up MS wordisms...
44830      */
44831     cleanWord : function(node)
44832     {
44833         if (!node) {
44834             this.cleanWord(this.doc.body);
44835             return;
44836         }
44837         
44838         if(
44839                 node.nodeName == 'SPAN' &&
44840                 !node.hasAttributes() &&
44841                 node.childNodes.length == 1 &&
44842                 node.firstChild.nodeName == "#text"  
44843         ) {
44844             var textNode = node.firstChild;
44845             node.removeChild(textNode);
44846             if (node.getAttribute('lang') != 'zh-CN') {   // do not space pad on chinese characters..
44847                 node.parentNode.insertBefore(node.ownerDocument.createTextNode(" "), node);
44848             }
44849             node.parentNode.insertBefore(textNode, node);
44850             if (node.getAttribute('lang') != 'zh-CN') {   // do not space pad on chinese characters..
44851                 node.parentNode.insertBefore(node.ownerDocument.createTextNode(" ") , node);
44852             }
44853             node.parentNode.removeChild(node);
44854         }
44855         
44856         if (node.nodeName == "#text") {
44857             // clean up silly Windows -- stuff?
44858             return; 
44859         }
44860         if (node.nodeName == "#comment") {
44861             node.parentNode.removeChild(node);
44862             // clean up silly Windows -- stuff?
44863             return; 
44864         }
44865         
44866         if (node.tagName.toLowerCase().match(/^(style|script|applet|embed|noframes|noscript)$/)) {
44867             node.parentNode.removeChild(node);
44868             return;
44869         }
44870         //Roo.log(node.tagName);
44871         // remove - but keep children..
44872         if (node.tagName.toLowerCase().match(/^(meta|link|\\?xml:|st1:|o:|v:|font)/)) {
44873             //Roo.log('-- removed');
44874             while (node.childNodes.length) {
44875                 var cn = node.childNodes[0];
44876                 node.removeChild(cn);
44877                 node.parentNode.insertBefore(cn, node);
44878                 // move node to parent - and clean it..
44879                 this.cleanWord(cn);
44880             }
44881             node.parentNode.removeChild(node);
44882             /// no need to iterate chidlren = it's got none..
44883             //this.iterateChildren(node, this.cleanWord);
44884             return;
44885         }
44886         // clean styles
44887         if (node.className.length) {
44888             
44889             var cn = node.className.split(/\W+/);
44890             var cna = [];
44891             Roo.each(cn, function(cls) {
44892                 if (cls.match(/Mso[a-zA-Z]+/)) {
44893                     return;
44894                 }
44895                 cna.push(cls);
44896             });
44897             node.className = cna.length ? cna.join(' ') : '';
44898             if (!cna.length) {
44899                 node.removeAttribute("class");
44900             }
44901         }
44902         
44903         if (node.hasAttribute("lang")) {
44904             node.removeAttribute("lang");
44905         }
44906         
44907         if (node.hasAttribute("style")) {
44908             
44909             var styles = node.getAttribute("style").split(";");
44910             var nstyle = [];
44911             Roo.each(styles, function(s) {
44912                 if (!s.match(/:/)) {
44913                     return;
44914                 }
44915                 var kv = s.split(":");
44916                 if (kv[0].match(/^(mso-|line|font|background|margin|padding|color)/)) {
44917                     return;
44918                 }
44919                 // what ever is left... we allow.
44920                 nstyle.push(s);
44921             });
44922             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
44923             if (!nstyle.length) {
44924                 node.removeAttribute('style');
44925             }
44926         }
44927         this.iterateChildren(node, this.cleanWord);
44928         
44929         
44930         
44931     },
44932     /**
44933      * iterateChildren of a Node, calling fn each time, using this as the scole..
44934      * @param {DomNode} node node to iterate children of.
44935      * @param {Function} fn method of this class to call on each item.
44936      */
44937     iterateChildren : function(node, fn)
44938     {
44939         if (!node.childNodes.length) {
44940                 return;
44941         }
44942         for (var i = node.childNodes.length-1; i > -1 ; i--) {
44943            fn.call(this, node.childNodes[i])
44944         }
44945     },
44946     
44947     
44948     /**
44949      * cleanTableWidths.
44950      *
44951      * Quite often pasting from word etc.. results in tables with column and widths.
44952      * This does not work well on fluid HTML layouts - like emails. - so this code should hunt an destroy them..
44953      *
44954      */
44955     cleanTableWidths : function(node)
44956     {
44957          
44958          
44959         if (!node) {
44960             this.cleanTableWidths(this.doc.body);
44961             return;
44962         }
44963         
44964         // ignore list...
44965         if (node.nodeName == "#text" || node.nodeName == "#comment") {
44966             return; 
44967         }
44968         Roo.log(node.tagName);
44969         if (!node.tagName.toLowerCase().match(/^(table|td|tr)$/)) {
44970             this.iterateChildren(node, this.cleanTableWidths);
44971             return;
44972         }
44973         if (node.hasAttribute('width')) {
44974             node.removeAttribute('width');
44975         }
44976         
44977          
44978         if (node.hasAttribute("style")) {
44979             // pretty basic...
44980             
44981             var styles = node.getAttribute("style").split(";");
44982             var nstyle = [];
44983             Roo.each(styles, function(s) {
44984                 if (!s.match(/:/)) {
44985                     return;
44986                 }
44987                 var kv = s.split(":");
44988                 if (kv[0].match(/^\s*(width|min-width)\s*$/)) {
44989                     return;
44990                 }
44991                 // what ever is left... we allow.
44992                 nstyle.push(s);
44993             });
44994             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
44995             if (!nstyle.length) {
44996                 node.removeAttribute('style');
44997             }
44998         }
44999         
45000         this.iterateChildren(node, this.cleanTableWidths);
45001         
45002         
45003     },
45004     
45005     
45006     
45007     
45008     domToHTML : function(currentElement, depth, nopadtext) {
45009         
45010         depth = depth || 0;
45011         nopadtext = nopadtext || false;
45012     
45013         if (!currentElement) {
45014             return this.domToHTML(this.doc.body);
45015         }
45016         
45017         //Roo.log(currentElement);
45018         var j;
45019         var allText = false;
45020         var nodeName = currentElement.nodeName;
45021         var tagName = Roo.util.Format.htmlEncode(currentElement.tagName);
45022         
45023         if  (nodeName == '#text') {
45024             
45025             return nopadtext ? currentElement.nodeValue : currentElement.nodeValue.trim();
45026         }
45027         
45028         
45029         var ret = '';
45030         if (nodeName != 'BODY') {
45031              
45032             var i = 0;
45033             // Prints the node tagName, such as <A>, <IMG>, etc
45034             if (tagName) {
45035                 var attr = [];
45036                 for(i = 0; i < currentElement.attributes.length;i++) {
45037                     // quoting?
45038                     var aname = currentElement.attributes.item(i).name;
45039                     if (!currentElement.attributes.item(i).value.length) {
45040                         continue;
45041                     }
45042                     attr.push(aname + '="' + Roo.util.Format.htmlEncode(currentElement.attributes.item(i).value) + '"' );
45043                 }
45044                 
45045                 ret = "<"+currentElement.tagName+ ( attr.length ? (' ' + attr.join(' ') ) : '') + ">";
45046             } 
45047             else {
45048                 
45049                 // eack
45050             }
45051         } else {
45052             tagName = false;
45053         }
45054         if (['IMG', 'BR', 'HR', 'INPUT'].indexOf(tagName) > -1) {
45055             return ret;
45056         }
45057         if (['PRE', 'TEXTAREA', 'TD', 'A', 'SPAN'].indexOf(tagName) > -1) { // or code?
45058             nopadtext = true;
45059         }
45060         
45061         
45062         // Traverse the tree
45063         i = 0;
45064         var currentElementChild = currentElement.childNodes.item(i);
45065         var allText = true;
45066         var innerHTML  = '';
45067         lastnode = '';
45068         while (currentElementChild) {
45069             // Formatting code (indent the tree so it looks nice on the screen)
45070             var nopad = nopadtext;
45071             if (lastnode == 'SPAN') {
45072                 nopad  = true;
45073             }
45074             // text
45075             if  (currentElementChild.nodeName == '#text') {
45076                 var toadd = Roo.util.Format.htmlEncode(currentElementChild.nodeValue);
45077                 toadd = nopadtext ? toadd : toadd.trim();
45078                 if (!nopad && toadd.length > 80) {
45079                     innerHTML  += "\n" + (new Array( depth + 1 )).join( "  "  );
45080                 }
45081                 innerHTML  += toadd;
45082                 
45083                 i++;
45084                 currentElementChild = currentElement.childNodes.item(i);
45085                 lastNode = '';
45086                 continue;
45087             }
45088             allText = false;
45089             
45090             innerHTML  += nopad ? '' : "\n" + (new Array( depth + 1 )).join( "  "  );
45091                 
45092             // Recursively traverse the tree structure of the child node
45093             innerHTML   += this.domToHTML(currentElementChild, depth+1, nopadtext);
45094             lastnode = currentElementChild.nodeName;
45095             i++;
45096             currentElementChild=currentElement.childNodes.item(i);
45097         }
45098         
45099         ret += innerHTML;
45100         
45101         if (!allText) {
45102                 // The remaining code is mostly for formatting the tree
45103             ret+= nopadtext ? '' : "\n" + (new Array( depth  )).join( "  "  );
45104         }
45105         
45106         
45107         if (tagName) {
45108             ret+= "</"+tagName+">";
45109         }
45110         return ret;
45111         
45112     },
45113         
45114     applyBlacklists : function()
45115     {
45116         var w = typeof(this.owner.white) != 'undefined' && this.owner.white ? this.owner.white  : [];
45117         var b = typeof(this.owner.black) != 'undefined' && this.owner.black ? this.owner.black :  [];
45118         
45119         this.white = [];
45120         this.black = [];
45121         Roo.each(Roo.HtmlEditorCore.white, function(tag) {
45122             if (b.indexOf(tag) > -1) {
45123                 return;
45124             }
45125             this.white.push(tag);
45126             
45127         }, this);
45128         
45129         Roo.each(w, function(tag) {
45130             if (b.indexOf(tag) > -1) {
45131                 return;
45132             }
45133             if (this.white.indexOf(tag) > -1) {
45134                 return;
45135             }
45136             this.white.push(tag);
45137             
45138         }, this);
45139         
45140         
45141         Roo.each(Roo.HtmlEditorCore.black, function(tag) {
45142             if (w.indexOf(tag) > -1) {
45143                 return;
45144             }
45145             this.black.push(tag);
45146             
45147         }, this);
45148         
45149         Roo.each(b, function(tag) {
45150             if (w.indexOf(tag) > -1) {
45151                 return;
45152             }
45153             if (this.black.indexOf(tag) > -1) {
45154                 return;
45155             }
45156             this.black.push(tag);
45157             
45158         }, this);
45159         
45160         
45161         w = typeof(this.owner.cwhite) != 'undefined' && this.owner.cwhite ? this.owner.cwhite  : [];
45162         b = typeof(this.owner.cblack) != 'undefined' && this.owner.cblack ? this.owner.cblack :  [];
45163         
45164         this.cwhite = [];
45165         this.cblack = [];
45166         Roo.each(Roo.HtmlEditorCore.cwhite, function(tag) {
45167             if (b.indexOf(tag) > -1) {
45168                 return;
45169             }
45170             this.cwhite.push(tag);
45171             
45172         }, this);
45173         
45174         Roo.each(w, function(tag) {
45175             if (b.indexOf(tag) > -1) {
45176                 return;
45177             }
45178             if (this.cwhite.indexOf(tag) > -1) {
45179                 return;
45180             }
45181             this.cwhite.push(tag);
45182             
45183         }, this);
45184         
45185         
45186         Roo.each(Roo.HtmlEditorCore.cblack, function(tag) {
45187             if (w.indexOf(tag) > -1) {
45188                 return;
45189             }
45190             this.cblack.push(tag);
45191             
45192         }, this);
45193         
45194         Roo.each(b, function(tag) {
45195             if (w.indexOf(tag) > -1) {
45196                 return;
45197             }
45198             if (this.cblack.indexOf(tag) > -1) {
45199                 return;
45200             }
45201             this.cblack.push(tag);
45202             
45203         }, this);
45204     },
45205     
45206     setStylesheets : function(stylesheets)
45207     {
45208         if(typeof(stylesheets) == 'string'){
45209             Roo.get(this.iframe.contentDocument.head).createChild({
45210                 tag : 'link',
45211                 rel : 'stylesheet',
45212                 type : 'text/css',
45213                 href : stylesheets
45214             });
45215             
45216             return;
45217         }
45218         var _this = this;
45219      
45220         Roo.each(stylesheets, function(s) {
45221             if(!s.length){
45222                 return;
45223             }
45224             
45225             Roo.get(_this.iframe.contentDocument.head).createChild({
45226                 tag : 'link',
45227                 rel : 'stylesheet',
45228                 type : 'text/css',
45229                 href : s
45230             });
45231         });
45232
45233         
45234     },
45235     
45236     removeStylesheets : function()
45237     {
45238         var _this = this;
45239         
45240         Roo.each(Roo.get(_this.iframe.contentDocument.head).select('link[rel=stylesheet]', true).elements, function(s){
45241             s.remove();
45242         });
45243     },
45244     
45245     setStyle : function(style)
45246     {
45247         Roo.get(this.iframe.contentDocument.head).createChild({
45248             tag : 'style',
45249             type : 'text/css',
45250             html : style
45251         });
45252
45253         return;
45254     }
45255     
45256     // hide stuff that is not compatible
45257     /**
45258      * @event blur
45259      * @hide
45260      */
45261     /**
45262      * @event change
45263      * @hide
45264      */
45265     /**
45266      * @event focus
45267      * @hide
45268      */
45269     /**
45270      * @event specialkey
45271      * @hide
45272      */
45273     /**
45274      * @cfg {String} fieldClass @hide
45275      */
45276     /**
45277      * @cfg {String} focusClass @hide
45278      */
45279     /**
45280      * @cfg {String} autoCreate @hide
45281      */
45282     /**
45283      * @cfg {String} inputType @hide
45284      */
45285     /**
45286      * @cfg {String} invalidClass @hide
45287      */
45288     /**
45289      * @cfg {String} invalidText @hide
45290      */
45291     /**
45292      * @cfg {String} msgFx @hide
45293      */
45294     /**
45295      * @cfg {String} validateOnBlur @hide
45296      */
45297 });
45298
45299 Roo.HtmlEditorCore.white = [
45300         'area', 'br', 'img', 'input', 'hr', 'wbr',
45301         
45302        'address', 'blockquote', 'center', 'dd',      'dir',       'div', 
45303        'dl',      'dt',         'h1',     'h2',      'h3',        'h4', 
45304        'h5',      'h6',         'hr',     'isindex', 'listing',   'marquee', 
45305        'menu',    'multicol',   'ol',     'p',       'plaintext', 'pre', 
45306        'table',   'ul',         'xmp', 
45307        
45308        'caption', 'col', 'colgroup', 'tbody', 'td', 'tfoot', 'th', 
45309       'thead',   'tr', 
45310      
45311       'dir', 'menu', 'ol', 'ul', 'dl',
45312        
45313       'embed',  'object'
45314 ];
45315
45316
45317 Roo.HtmlEditorCore.black = [
45318     //    'embed',  'object', // enable - backend responsiblity to clean thiese
45319         'applet', // 
45320         'base',   'basefont', 'bgsound', 'blink',  'body', 
45321         'frame',  'frameset', 'head',    'html',   'ilayer', 
45322         'iframe', 'layer',  'link',     'meta',    'object',   
45323         'script', 'style' ,'title',  'xml' // clean later..
45324 ];
45325 Roo.HtmlEditorCore.clean = [
45326     'script', 'style', 'title', 'xml'
45327 ];
45328 Roo.HtmlEditorCore.remove = [
45329     'font'
45330 ];
45331 // attributes..
45332
45333 Roo.HtmlEditorCore.ablack = [
45334     'on'
45335 ];
45336     
45337 Roo.HtmlEditorCore.aclean = [ 
45338     'action', 'background', 'codebase', 'dynsrc', 'href', 'lowsrc' 
45339 ];
45340
45341 // protocols..
45342 Roo.HtmlEditorCore.pwhite= [
45343         'http',  'https',  'mailto'
45344 ];
45345
45346 // white listed style attributes.
45347 Roo.HtmlEditorCore.cwhite= [
45348       //  'text-align', /// default is to allow most things..
45349       
45350          
45351 //        'font-size'//??
45352 ];
45353
45354 // black listed style attributes.
45355 Roo.HtmlEditorCore.cblack= [
45356       //  'font-size' -- this can be set by the project 
45357 ];
45358
45359
45360 Roo.HtmlEditorCore.swapCodes   =[ 
45361     [    8211, "&#8211;" ], 
45362     [    8212, "&#8212;" ], 
45363     [    8216,  "'" ],  
45364     [    8217, "'" ],  
45365     [    8220, '"' ],  
45366     [    8221, '"' ],  
45367     [    8226, "*" ],  
45368     [    8230, "..." ]
45369 ]; 
45370
45371     //<script type="text/javascript">
45372
45373 /*
45374  * Ext JS Library 1.1.1
45375  * Copyright(c) 2006-2007, Ext JS, LLC.
45376  * Licence LGPL
45377  * 
45378  */
45379  
45380  
45381 Roo.form.HtmlEditor = function(config){
45382     
45383     
45384     
45385     Roo.form.HtmlEditor.superclass.constructor.call(this, config);
45386     
45387     if (!this.toolbars) {
45388         this.toolbars = [];
45389     }
45390     this.editorcore = new Roo.HtmlEditorCore(Roo.apply({ owner : this} , config));
45391     
45392     
45393 };
45394
45395 /**
45396  * @class Roo.form.HtmlEditor
45397  * @extends Roo.form.Field
45398  * Provides a lightweight HTML Editor component.
45399  *
45400  * This has been tested on Fireforx / Chrome.. IE may not be so great..
45401  * 
45402  * <br><br><b>Note: The focus/blur and validation marking functionality inherited from Ext.form.Field is NOT
45403  * supported by this editor.</b><br/><br/>
45404  * An Editor is a sensitive component that can't be used in all spots standard fields can be used. Putting an Editor within
45405  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
45406  */
45407 Roo.extend(Roo.form.HtmlEditor, Roo.form.Field, {
45408     /**
45409      * @cfg {Boolean} clearUp
45410      */
45411     clearUp : true,
45412       /**
45413      * @cfg {Array} toolbars Array of toolbars. - defaults to just the Standard one
45414      */
45415     toolbars : false,
45416    
45417      /**
45418      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
45419      *                        Roo.resizable.
45420      */
45421     resizable : false,
45422      /**
45423      * @cfg {Number} height (in pixels)
45424      */   
45425     height: 300,
45426    /**
45427      * @cfg {Number} width (in pixels)
45428      */   
45429     width: 500,
45430     
45431     /**
45432      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
45433      * 
45434      */
45435     stylesheets: false,
45436     
45437     
45438      /**
45439      * @cfg {Array} blacklist of css styles style attributes (blacklist overrides whitelist)
45440      * 
45441      */
45442     cblack: false,
45443     /**
45444      * @cfg {Array} whitelist of css styles style attributes (blacklist overrides whitelist)
45445      * 
45446      */
45447     cwhite: false,
45448     
45449      /**
45450      * @cfg {Array} blacklist of html tags - in addition to standard blacklist.
45451      * 
45452      */
45453     black: false,
45454     /**
45455      * @cfg {Array} whitelist of html tags - in addition to statndard whitelist
45456      * 
45457      */
45458     white: false,
45459     
45460     // id of frame..
45461     frameId: false,
45462     
45463     // private properties
45464     validationEvent : false,
45465     deferHeight: true,
45466     initialized : false,
45467     activated : false,
45468     
45469     onFocus : Roo.emptyFn,
45470     iframePad:3,
45471     hideMode:'offsets',
45472     
45473     actionMode : 'container', // defaults to hiding it...
45474     
45475     defaultAutoCreate : { // modified by initCompnoent..
45476         tag: "textarea",
45477         style:"width:500px;height:300px;",
45478         autocomplete: "new-password"
45479     },
45480
45481     // private
45482     initComponent : function(){
45483         this.addEvents({
45484             /**
45485              * @event initialize
45486              * Fires when the editor is fully initialized (including the iframe)
45487              * @param {HtmlEditor} this
45488              */
45489             initialize: true,
45490             /**
45491              * @event activate
45492              * Fires when the editor is first receives the focus. Any insertion must wait
45493              * until after this event.
45494              * @param {HtmlEditor} this
45495              */
45496             activate: true,
45497              /**
45498              * @event beforesync
45499              * Fires before the textarea is updated with content from the editor iframe. Return false
45500              * to cancel the sync.
45501              * @param {HtmlEditor} this
45502              * @param {String} html
45503              */
45504             beforesync: true,
45505              /**
45506              * @event beforepush
45507              * Fires before the iframe editor is updated with content from the textarea. Return false
45508              * to cancel the push.
45509              * @param {HtmlEditor} this
45510              * @param {String} html
45511              */
45512             beforepush: true,
45513              /**
45514              * @event sync
45515              * Fires when the textarea is updated with content from the editor iframe.
45516              * @param {HtmlEditor} this
45517              * @param {String} html
45518              */
45519             sync: true,
45520              /**
45521              * @event push
45522              * Fires when the iframe editor is updated with content from the textarea.
45523              * @param {HtmlEditor} this
45524              * @param {String} html
45525              */
45526             push: true,
45527              /**
45528              * @event editmodechange
45529              * Fires when the editor switches edit modes
45530              * @param {HtmlEditor} this
45531              * @param {Boolean} sourceEdit True if source edit, false if standard editing.
45532              */
45533             editmodechange: true,
45534             /**
45535              * @event editorevent
45536              * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
45537              * @param {HtmlEditor} this
45538              */
45539             editorevent: true,
45540             /**
45541              * @event firstfocus
45542              * Fires when on first focus - needed by toolbars..
45543              * @param {HtmlEditor} this
45544              */
45545             firstfocus: true,
45546             /**
45547              * @event autosave
45548              * Auto save the htmlEditor value as a file into Events
45549              * @param {HtmlEditor} this
45550              */
45551             autosave: true,
45552             /**
45553              * @event savedpreview
45554              * preview the saved version of htmlEditor
45555              * @param {HtmlEditor} this
45556              */
45557             savedpreview: true,
45558             
45559             /**
45560             * @event stylesheetsclick
45561             * Fires when press the Sytlesheets button
45562             * @param {Roo.HtmlEditorCore} this
45563             */
45564             stylesheetsclick: true
45565         });
45566         this.defaultAutoCreate =  {
45567             tag: "textarea",
45568             style:'width: ' + this.width + 'px;height: ' + this.height + 'px;',
45569             autocomplete: "new-password"
45570         };
45571     },
45572
45573     /**
45574      * Protected method that will not generally be called directly. It
45575      * is called when the editor creates its toolbar. Override this method if you need to
45576      * add custom toolbar buttons.
45577      * @param {HtmlEditor} editor
45578      */
45579     createToolbar : function(editor){
45580         Roo.log("create toolbars");
45581         if (!editor.toolbars || !editor.toolbars.length) {
45582             editor.toolbars = [ new Roo.form.HtmlEditor.ToolbarStandard() ]; // can be empty?
45583         }
45584         
45585         for (var i =0 ; i < editor.toolbars.length;i++) {
45586             editor.toolbars[i] = Roo.factory(
45587                     typeof(editor.toolbars[i]) == 'string' ?
45588                         { xtype: editor.toolbars[i]} : editor.toolbars[i],
45589                 Roo.form.HtmlEditor);
45590             editor.toolbars[i].init(editor);
45591         }
45592          
45593         
45594     },
45595
45596      
45597     // private
45598     onRender : function(ct, position)
45599     {
45600         var _t = this;
45601         Roo.form.HtmlEditor.superclass.onRender.call(this, ct, position);
45602         
45603         this.wrap = this.el.wrap({
45604             cls:'x-html-editor-wrap', cn:{cls:'x-html-editor-tb'}
45605         });
45606         
45607         this.editorcore.onRender(ct, position);
45608          
45609         if (this.resizable) {
45610             this.resizeEl = new Roo.Resizable(this.wrap, {
45611                 pinned : true,
45612                 wrap: true,
45613                 dynamic : true,
45614                 minHeight : this.height,
45615                 height: this.height,
45616                 handles : this.resizable,
45617                 width: this.width,
45618                 listeners : {
45619                     resize : function(r, w, h) {
45620                         _t.onResize(w,h); // -something
45621                     }
45622                 }
45623             });
45624             
45625         }
45626         this.createToolbar(this);
45627        
45628         
45629         if(!this.width){
45630             this.setSize(this.wrap.getSize());
45631         }
45632         if (this.resizeEl) {
45633             this.resizeEl.resizeTo.defer(100, this.resizeEl,[ this.width,this.height ] );
45634             // should trigger onReize..
45635         }
45636         
45637         this.keyNav = new Roo.KeyNav(this.el, {
45638             
45639             "tab" : function(e){
45640                 e.preventDefault();
45641                 
45642                 var value = this.getValue();
45643                 
45644                 var start = this.el.dom.selectionStart;
45645                 var end = this.el.dom.selectionEnd;
45646                 
45647                 if(!e.shiftKey){
45648                     
45649                     this.setValue(value.substring(0, start) + "\t" + value.substring(end));
45650                     this.el.dom.setSelectionRange(end + 1, end + 1);
45651                     return;
45652                 }
45653                 
45654                 var f = value.substring(0, start).split("\t");
45655                 
45656                 if(f.pop().length != 0){
45657                     return;
45658                 }
45659                 
45660                 this.setValue(f.join("\t") + value.substring(end));
45661                 this.el.dom.setSelectionRange(start - 1, start - 1);
45662                 
45663             },
45664             
45665             "home" : function(e){
45666                 e.preventDefault();
45667                 
45668                 var curr = this.el.dom.selectionStart;
45669                 var lines = this.getValue().split("\n");
45670                 
45671                 if(!lines.length){
45672                     return;
45673                 }
45674                 
45675                 if(e.ctrlKey){
45676                     this.el.dom.setSelectionRange(0, 0);
45677                     return;
45678                 }
45679                 
45680                 var pos = 0;
45681                 
45682                 for (var i = 0; i < lines.length;i++) {
45683                     pos += lines[i].length;
45684                     
45685                     if(i != 0){
45686                         pos += 1;
45687                     }
45688                     
45689                     if(pos < curr){
45690                         continue;
45691                     }
45692                     
45693                     pos -= lines[i].length;
45694                     
45695                     break;
45696                 }
45697                 
45698                 if(!e.shiftKey){
45699                     this.el.dom.setSelectionRange(pos, pos);
45700                     return;
45701                 }
45702                 
45703                 this.el.dom.selectionStart = pos;
45704                 this.el.dom.selectionEnd = curr;
45705             },
45706             
45707             "end" : function(e){
45708                 e.preventDefault();
45709                 
45710                 var curr = this.el.dom.selectionStart;
45711                 var lines = this.getValue().split("\n");
45712                 
45713                 if(!lines.length){
45714                     return;
45715                 }
45716                 
45717                 if(e.ctrlKey){
45718                     this.el.dom.setSelectionRange(this.getValue().length, this.getValue().length);
45719                     return;
45720                 }
45721                 
45722                 var pos = 0;
45723                 
45724                 for (var i = 0; i < lines.length;i++) {
45725                     
45726                     pos += lines[i].length;
45727                     
45728                     if(i != 0){
45729                         pos += 1;
45730                     }
45731                     
45732                     if(pos < curr){
45733                         continue;
45734                     }
45735                     
45736                     break;
45737                 }
45738                 
45739                 if(!e.shiftKey){
45740                     this.el.dom.setSelectionRange(pos, pos);
45741                     return;
45742                 }
45743                 
45744                 this.el.dom.selectionStart = curr;
45745                 this.el.dom.selectionEnd = pos;
45746             },
45747
45748             scope : this,
45749
45750             doRelay : function(foo, bar, hname){
45751                 return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
45752             },
45753
45754             forceKeyDown: true
45755         });
45756         
45757 //        if(this.autosave && this.w){
45758 //            this.autoSaveFn = setInterval(this.autosave, 1000);
45759 //        }
45760     },
45761
45762     // private
45763     onResize : function(w, h)
45764     {
45765         Roo.form.HtmlEditor.superclass.onResize.apply(this, arguments);
45766         var ew = false;
45767         var eh = false;
45768         
45769         if(this.el ){
45770             if(typeof w == 'number'){
45771                 var aw = w - this.wrap.getFrameWidth('lr');
45772                 this.el.setWidth(this.adjustWidth('textarea', aw));
45773                 ew = aw;
45774             }
45775             if(typeof h == 'number'){
45776                 var tbh = 0;
45777                 for (var i =0; i < this.toolbars.length;i++) {
45778                     // fixme - ask toolbars for heights?
45779                     tbh += this.toolbars[i].tb.el.getHeight();
45780                     if (this.toolbars[i].footer) {
45781                         tbh += this.toolbars[i].footer.el.getHeight();
45782                     }
45783                 }
45784                 
45785                 
45786                 
45787                 
45788                 var ah = h - this.wrap.getFrameWidth('tb') - tbh;// this.tb.el.getHeight();
45789                 ah -= 5; // knock a few pixes off for look..
45790 //                Roo.log(ah);
45791                 this.el.setHeight(this.adjustWidth('textarea', ah));
45792                 var eh = ah;
45793             }
45794         }
45795         Roo.log('onResize:' + [w,h,ew,eh].join(',') );
45796         this.editorcore.onResize(ew,eh);
45797         
45798     },
45799
45800     /**
45801      * Toggles the editor between standard and source edit mode.
45802      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
45803      */
45804     toggleSourceEdit : function(sourceEditMode)
45805     {
45806         this.editorcore.toggleSourceEdit(sourceEditMode);
45807         
45808         if(this.editorcore.sourceEditMode){
45809             Roo.log('editor - showing textarea');
45810             
45811 //            Roo.log('in');
45812 //            Roo.log(this.syncValue());
45813             this.editorcore.syncValue();
45814             this.el.removeClass('x-hidden');
45815             this.el.dom.removeAttribute('tabIndex');
45816             this.el.focus();
45817             
45818             for (var i = 0; i < this.toolbars.length; i++) {
45819                 if(this.toolbars[i] instanceof Roo.form.HtmlEditor.ToolbarContext){
45820                     this.toolbars[i].tb.hide();
45821                     this.toolbars[i].footer.hide();
45822                 }
45823             }
45824             
45825         }else{
45826             Roo.log('editor - hiding textarea');
45827 //            Roo.log('out')
45828 //            Roo.log(this.pushValue()); 
45829             this.editorcore.pushValue();
45830             
45831             this.el.addClass('x-hidden');
45832             this.el.dom.setAttribute('tabIndex', -1);
45833             
45834             for (var i = 0; i < this.toolbars.length; i++) {
45835                 if(this.toolbars[i] instanceof Roo.form.HtmlEditor.ToolbarContext){
45836                     this.toolbars[i].tb.show();
45837                     this.toolbars[i].footer.show();
45838                 }
45839             }
45840             
45841             //this.deferFocus();
45842         }
45843         
45844         this.setSize(this.wrap.getSize());
45845         this.onResize(this.wrap.getSize().width, this.wrap.getSize().height);
45846         
45847         this.fireEvent('editmodechange', this, this.editorcore.sourceEditMode);
45848     },
45849  
45850     // private (for BoxComponent)
45851     adjustSize : Roo.BoxComponent.prototype.adjustSize,
45852
45853     // private (for BoxComponent)
45854     getResizeEl : function(){
45855         return this.wrap;
45856     },
45857
45858     // private (for BoxComponent)
45859     getPositionEl : function(){
45860         return this.wrap;
45861     },
45862
45863     // private
45864     initEvents : function(){
45865         this.originalValue = this.getValue();
45866     },
45867
45868     /**
45869      * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
45870      * @method
45871      */
45872     markInvalid : Roo.emptyFn,
45873     /**
45874      * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
45875      * @method
45876      */
45877     clearInvalid : Roo.emptyFn,
45878
45879     setValue : function(v){
45880         Roo.form.HtmlEditor.superclass.setValue.call(this, v);
45881         this.editorcore.pushValue();
45882     },
45883
45884      
45885     // private
45886     deferFocus : function(){
45887         this.focus.defer(10, this);
45888     },
45889
45890     // doc'ed in Field
45891     focus : function(){
45892         this.editorcore.focus();
45893         
45894     },
45895       
45896
45897     // private
45898     onDestroy : function(){
45899         
45900         
45901         
45902         if(this.rendered){
45903             
45904             for (var i =0; i < this.toolbars.length;i++) {
45905                 // fixme - ask toolbars for heights?
45906                 this.toolbars[i].onDestroy();
45907             }
45908             
45909             this.wrap.dom.innerHTML = '';
45910             this.wrap.remove();
45911         }
45912     },
45913
45914     // private
45915     onFirstFocus : function(){
45916         //Roo.log("onFirstFocus");
45917         this.editorcore.onFirstFocus();
45918          for (var i =0; i < this.toolbars.length;i++) {
45919             this.toolbars[i].onFirstFocus();
45920         }
45921         
45922     },
45923     
45924     // private
45925     syncValue : function()
45926     {
45927         this.editorcore.syncValue();
45928     },
45929     
45930     pushValue : function()
45931     {
45932         this.editorcore.pushValue();
45933     },
45934     
45935     setStylesheets : function(stylesheets)
45936     {
45937         this.editorcore.setStylesheets(stylesheets);
45938     },
45939     
45940     removeStylesheets : function()
45941     {
45942         this.editorcore.removeStylesheets();
45943     }
45944      
45945     
45946     // hide stuff that is not compatible
45947     /**
45948      * @event blur
45949      * @hide
45950      */
45951     /**
45952      * @event change
45953      * @hide
45954      */
45955     /**
45956      * @event focus
45957      * @hide
45958      */
45959     /**
45960      * @event specialkey
45961      * @hide
45962      */
45963     /**
45964      * @cfg {String} fieldClass @hide
45965      */
45966     /**
45967      * @cfg {String} focusClass @hide
45968      */
45969     /**
45970      * @cfg {String} autoCreate @hide
45971      */
45972     /**
45973      * @cfg {String} inputType @hide
45974      */
45975     /**
45976      * @cfg {String} invalidClass @hide
45977      */
45978     /**
45979      * @cfg {String} invalidText @hide
45980      */
45981     /**
45982      * @cfg {String} msgFx @hide
45983      */
45984     /**
45985      * @cfg {String} validateOnBlur @hide
45986      */
45987 });
45988  
45989     // <script type="text/javascript">
45990 /*
45991  * Based on
45992  * Ext JS Library 1.1.1
45993  * Copyright(c) 2006-2007, Ext JS, LLC.
45994  *  
45995  
45996  */
45997
45998 /**
45999  * @class Roo.form.HtmlEditorToolbar1
46000  * Basic Toolbar
46001  * 
46002  * Usage:
46003  *
46004  new Roo.form.HtmlEditor({
46005     ....
46006     toolbars : [
46007         new Roo.form.HtmlEditorToolbar1({
46008             disable : { fonts: 1 , format: 1, ..., ... , ...],
46009             btns : [ .... ]
46010         })
46011     }
46012      
46013  * 
46014  * @cfg {Object} disable List of elements to disable..
46015  * @cfg {Array} btns List of additional buttons.
46016  * 
46017  * 
46018  * NEEDS Extra CSS? 
46019  * .x-html-editor-tb .x-edit-none .x-btn-text { background: none; }
46020  */
46021  
46022 Roo.form.HtmlEditor.ToolbarStandard = function(config)
46023 {
46024     
46025     Roo.apply(this, config);
46026     
46027     // default disabled, based on 'good practice'..
46028     this.disable = this.disable || {};
46029     Roo.applyIf(this.disable, {
46030         fontSize : true,
46031         colors : true,
46032         specialElements : true
46033     });
46034     
46035     
46036     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
46037     // dont call parent... till later.
46038 }
46039
46040 Roo.apply(Roo.form.HtmlEditor.ToolbarStandard.prototype,  {
46041     
46042     tb: false,
46043     
46044     rendered: false,
46045     
46046     editor : false,
46047     editorcore : false,
46048     /**
46049      * @cfg {Object} disable  List of toolbar elements to disable
46050          
46051      */
46052     disable : false,
46053     
46054     
46055      /**
46056      * @cfg {String} createLinkText The default text for the create link prompt
46057      */
46058     createLinkText : 'Please enter the URL for the link:',
46059     /**
46060      * @cfg {String} defaultLinkValue The default value for the create link prompt (defaults to http:/ /)
46061      */
46062     defaultLinkValue : 'http:/'+'/',
46063    
46064     
46065       /**
46066      * @cfg {Array} fontFamilies An array of available font families
46067      */
46068     fontFamilies : [
46069         'Arial',
46070         'Courier New',
46071         'Tahoma',
46072         'Times New Roman',
46073         'Verdana'
46074     ],
46075     
46076     specialChars : [
46077            "&#169;",
46078           "&#174;",     
46079           "&#8482;",    
46080           "&#163;" ,    
46081          // "&#8212;",    
46082           "&#8230;",    
46083           "&#247;" ,    
46084         //  "&#225;" ,     ?? a acute?
46085            "&#8364;"    , //Euro
46086        //   "&#8220;"    ,
46087         //  "&#8221;"    ,
46088         //  "&#8226;"    ,
46089           "&#176;"  //   , // degrees
46090
46091          // "&#233;"     , // e ecute
46092          // "&#250;"     , // u ecute?
46093     ],
46094     
46095     specialElements : [
46096         {
46097             text: "Insert Table",
46098             xtype: 'MenuItem',
46099             xns : Roo.Menu,
46100             ihtml :  '<table><tr><td>Cell</td></tr></table>' 
46101                 
46102         },
46103         {    
46104             text: "Insert Image",
46105             xtype: 'MenuItem',
46106             xns : Roo.Menu,
46107             ihtml : '<img src="about:blank"/>'
46108             
46109         }
46110         
46111          
46112     ],
46113     
46114     
46115     inputElements : [ 
46116             "form", "input:text", "input:hidden", "input:checkbox", "input:radio", "input:password", 
46117             "input:submit", "input:button", "select", "textarea", "label" ],
46118     formats : [
46119         ["p"] ,  
46120         ["h1"],["h2"],["h3"],["h4"],["h5"],["h6"], 
46121         ["pre"],[ "code"], 
46122         ["abbr"],[ "acronym"],[ "address"],[ "cite"],[ "samp"],[ "var"],
46123         ['div'],['span'],
46124         ['sup'],['sub']
46125     ],
46126     
46127     cleanStyles : [
46128         "font-size"
46129     ],
46130      /**
46131      * @cfg {String} defaultFont default font to use.
46132      */
46133     defaultFont: 'tahoma',
46134    
46135     fontSelect : false,
46136     
46137     
46138     formatCombo : false,
46139     
46140     init : function(editor)
46141     {
46142         this.editor = editor;
46143         this.editorcore = editor.editorcore ? editor.editorcore : editor;
46144         var editorcore = this.editorcore;
46145         
46146         var _t = this;
46147         
46148         var fid = editorcore.frameId;
46149         var etb = this;
46150         function btn(id, toggle, handler){
46151             var xid = fid + '-'+ id ;
46152             return {
46153                 id : xid,
46154                 cmd : id,
46155                 cls : 'x-btn-icon x-edit-'+id,
46156                 enableToggle:toggle !== false,
46157                 scope: _t, // was editor...
46158                 handler:handler||_t.relayBtnCmd,
46159                 clickEvent:'mousedown',
46160                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
46161                 tabIndex:-1
46162             };
46163         }
46164         
46165         
46166         
46167         var tb = new Roo.Toolbar(editor.wrap.dom.firstChild);
46168         this.tb = tb;
46169          // stop form submits
46170         tb.el.on('click', function(e){
46171             e.preventDefault(); // what does this do?
46172         });
46173
46174         if(!this.disable.font) { // && !Roo.isSafari){
46175             /* why no safari for fonts 
46176             editor.fontSelect = tb.el.createChild({
46177                 tag:'select',
46178                 tabIndex: -1,
46179                 cls:'x-font-select',
46180                 html: this.createFontOptions()
46181             });
46182             
46183             editor.fontSelect.on('change', function(){
46184                 var font = editor.fontSelect.dom.value;
46185                 editor.relayCmd('fontname', font);
46186                 editor.deferFocus();
46187             }, editor);
46188             
46189             tb.add(
46190                 editor.fontSelect.dom,
46191                 '-'
46192             );
46193             */
46194             
46195         };
46196         if(!this.disable.formats){
46197             this.formatCombo = new Roo.form.ComboBox({
46198                 store: new Roo.data.SimpleStore({
46199                     id : 'tag',
46200                     fields: ['tag'],
46201                     data : this.formats // from states.js
46202                 }),
46203                 blockFocus : true,
46204                 name : '',
46205                 //autoCreate : {tag: "div",  size: "20"},
46206                 displayField:'tag',
46207                 typeAhead: false,
46208                 mode: 'local',
46209                 editable : false,
46210                 triggerAction: 'all',
46211                 emptyText:'Add tag',
46212                 selectOnFocus:true,
46213                 width:135,
46214                 listeners : {
46215                     'select': function(c, r, i) {
46216                         editorcore.insertTag(r.get('tag'));
46217                         editor.focus();
46218                     }
46219                 }
46220
46221             });
46222             tb.addField(this.formatCombo);
46223             
46224         }
46225         
46226         if(!this.disable.format){
46227             tb.add(
46228                 btn('bold'),
46229                 btn('italic'),
46230                 btn('underline'),
46231                 btn('strikethrough')
46232             );
46233         };
46234         if(!this.disable.fontSize){
46235             tb.add(
46236                 '-',
46237                 
46238                 
46239                 btn('increasefontsize', false, editorcore.adjustFont),
46240                 btn('decreasefontsize', false, editorcore.adjustFont)
46241             );
46242         };
46243         
46244         
46245         if(!this.disable.colors){
46246             tb.add(
46247                 '-', {
46248                     id:editorcore.frameId +'-forecolor',
46249                     cls:'x-btn-icon x-edit-forecolor',
46250                     clickEvent:'mousedown',
46251                     tooltip: this.buttonTips['forecolor'] || undefined,
46252                     tabIndex:-1,
46253                     menu : new Roo.menu.ColorMenu({
46254                         allowReselect: true,
46255                         focus: Roo.emptyFn,
46256                         value:'000000',
46257                         plain:true,
46258                         selectHandler: function(cp, color){
46259                             editorcore.execCmd('forecolor', Roo.isSafari || Roo.isIE ? '#'+color : color);
46260                             editor.deferFocus();
46261                         },
46262                         scope: editorcore,
46263                         clickEvent:'mousedown'
46264                     })
46265                 }, {
46266                     id:editorcore.frameId +'backcolor',
46267                     cls:'x-btn-icon x-edit-backcolor',
46268                     clickEvent:'mousedown',
46269                     tooltip: this.buttonTips['backcolor'] || undefined,
46270                     tabIndex:-1,
46271                     menu : new Roo.menu.ColorMenu({
46272                         focus: Roo.emptyFn,
46273                         value:'FFFFFF',
46274                         plain:true,
46275                         allowReselect: true,
46276                         selectHandler: function(cp, color){
46277                             if(Roo.isGecko){
46278                                 editorcore.execCmd('useCSS', false);
46279                                 editorcore.execCmd('hilitecolor', color);
46280                                 editorcore.execCmd('useCSS', true);
46281                                 editor.deferFocus();
46282                             }else{
46283                                 editorcore.execCmd(Roo.isOpera ? 'hilitecolor' : 'backcolor', 
46284                                     Roo.isSafari || Roo.isIE ? '#'+color : color);
46285                                 editor.deferFocus();
46286                             }
46287                         },
46288                         scope:editorcore,
46289                         clickEvent:'mousedown'
46290                     })
46291                 }
46292             );
46293         };
46294         // now add all the items...
46295         
46296
46297         if(!this.disable.alignments){
46298             tb.add(
46299                 '-',
46300                 btn('justifyleft'),
46301                 btn('justifycenter'),
46302                 btn('justifyright')
46303             );
46304         };
46305
46306         //if(!Roo.isSafari){
46307             if(!this.disable.links){
46308                 tb.add(
46309                     '-',
46310                     btn('createlink', false, this.createLink)    /// MOVE TO HERE?!!?!?!?!
46311                 );
46312             };
46313
46314             if(!this.disable.lists){
46315                 tb.add(
46316                     '-',
46317                     btn('insertorderedlist'),
46318                     btn('insertunorderedlist')
46319                 );
46320             }
46321             if(!this.disable.sourceEdit){
46322                 tb.add(
46323                     '-',
46324                     btn('sourceedit', true, function(btn){
46325                         this.toggleSourceEdit(btn.pressed);
46326                     })
46327                 );
46328             }
46329         //}
46330         
46331         var smenu = { };
46332         // special menu.. - needs to be tidied up..
46333         if (!this.disable.special) {
46334             smenu = {
46335                 text: "&#169;",
46336                 cls: 'x-edit-none',
46337                 
46338                 menu : {
46339                     items : []
46340                 }
46341             };
46342             for (var i =0; i < this.specialChars.length; i++) {
46343                 smenu.menu.items.push({
46344                     
46345                     html: this.specialChars[i],
46346                     handler: function(a,b) {
46347                         editorcore.insertAtCursor(String.fromCharCode(a.html.replace('&#','').replace(';', '')));
46348                         //editor.insertAtCursor(a.html);
46349                         
46350                     },
46351                     tabIndex:-1
46352                 });
46353             }
46354             
46355             
46356             tb.add(smenu);
46357             
46358             
46359         }
46360         
46361         var cmenu = { };
46362         if (!this.disable.cleanStyles) {
46363             cmenu = {
46364                 cls: 'x-btn-icon x-btn-clear',
46365                 
46366                 menu : {
46367                     items : []
46368                 }
46369             };
46370             for (var i =0; i < this.cleanStyles.length; i++) {
46371                 cmenu.menu.items.push({
46372                     actiontype : this.cleanStyles[i],
46373                     html: 'Remove ' + this.cleanStyles[i],
46374                     handler: function(a,b) {
46375 //                        Roo.log(a);
46376 //                        Roo.log(b);
46377                         var c = Roo.get(editorcore.doc.body);
46378                         c.select('[style]').each(function(s) {
46379                             s.dom.style.removeProperty(a.actiontype);
46380                         });
46381                         editorcore.syncValue();
46382                     },
46383                     tabIndex:-1
46384                 });
46385             }
46386              cmenu.menu.items.push({
46387                 actiontype : 'tablewidths',
46388                 html: 'Remove Table Widths',
46389                 handler: function(a,b) {
46390                     editorcore.cleanTableWidths();
46391                     editorcore.syncValue();
46392                 },
46393                 tabIndex:-1
46394             });
46395             cmenu.menu.items.push({
46396                 actiontype : 'word',
46397                 html: 'Remove MS Word Formating',
46398                 handler: function(a,b) {
46399                     editorcore.cleanWord();
46400                     editorcore.syncValue();
46401                 },
46402                 tabIndex:-1
46403             });
46404             
46405             cmenu.menu.items.push({
46406                 actiontype : 'all',
46407                 html: 'Remove All Styles',
46408                 handler: function(a,b) {
46409                     
46410                     var c = Roo.get(editorcore.doc.body);
46411                     c.select('[style]').each(function(s) {
46412                         s.dom.removeAttribute('style');
46413                     });
46414                     editorcore.syncValue();
46415                 },
46416                 tabIndex:-1
46417             });
46418             
46419             cmenu.menu.items.push({
46420                 actiontype : 'all',
46421                 html: 'Remove All CSS Classes',
46422                 handler: function(a,b) {
46423                     
46424                     var c = Roo.get(editorcore.doc.body);
46425                     c.select('[class]').each(function(s) {
46426                         s.dom.removeAttribute('class');
46427                     });
46428                     editorcore.cleanWord();
46429                     editorcore.syncValue();
46430                 },
46431                 tabIndex:-1
46432             });
46433             
46434              cmenu.menu.items.push({
46435                 actiontype : 'tidy',
46436                 html: 'Tidy HTML Source',
46437                 handler: function(a,b) {
46438                     editorcore.doc.body.innerHTML = editorcore.domToHTML();
46439                     editorcore.syncValue();
46440                 },
46441                 tabIndex:-1
46442             });
46443             
46444             
46445             tb.add(cmenu);
46446         }
46447          
46448         if (!this.disable.specialElements) {
46449             var semenu = {
46450                 text: "Other;",
46451                 cls: 'x-edit-none',
46452                 menu : {
46453                     items : []
46454                 }
46455             };
46456             for (var i =0; i < this.specialElements.length; i++) {
46457                 semenu.menu.items.push(
46458                     Roo.apply({ 
46459                         handler: function(a,b) {
46460                             editor.insertAtCursor(this.ihtml);
46461                         }
46462                     }, this.specialElements[i])
46463                 );
46464                     
46465             }
46466             
46467             tb.add(semenu);
46468             
46469             
46470         }
46471          
46472         
46473         if (this.btns) {
46474             for(var i =0; i< this.btns.length;i++) {
46475                 var b = Roo.factory(this.btns[i],Roo.form);
46476                 b.cls =  'x-edit-none';
46477                 
46478                 if(typeof(this.btns[i].cls) != 'undefined' && this.btns[i].cls.indexOf('x-init-enable') !== -1){
46479                     b.cls += ' x-init-enable';
46480                 }
46481                 
46482                 b.scope = editorcore;
46483                 tb.add(b);
46484             }
46485         
46486         }
46487         
46488         
46489         
46490         // disable everything...
46491         
46492         this.tb.items.each(function(item){
46493             
46494            if(
46495                 item.id != editorcore.frameId+ '-sourceedit' && 
46496                 (typeof(item.cls) != 'undefined' && item.cls.indexOf('x-init-enable') === -1)
46497             ){
46498                 
46499                 item.disable();
46500             }
46501         });
46502         this.rendered = true;
46503         
46504         // the all the btns;
46505         editor.on('editorevent', this.updateToolbar, this);
46506         // other toolbars need to implement this..
46507         //editor.on('editmodechange', this.updateToolbar, this);
46508     },
46509     
46510     
46511     relayBtnCmd : function(btn) {
46512         this.editorcore.relayCmd(btn.cmd);
46513     },
46514     // private used internally
46515     createLink : function(){
46516         Roo.log("create link?");
46517         var url = prompt(this.createLinkText, this.defaultLinkValue);
46518         if(url && url != 'http:/'+'/'){
46519             this.editorcore.relayCmd('createlink', url);
46520         }
46521     },
46522
46523     
46524     /**
46525      * Protected method that will not generally be called directly. It triggers
46526      * a toolbar update by reading the markup state of the current selection in the editor.
46527      */
46528     updateToolbar: function(){
46529
46530         if(!this.editorcore.activated){
46531             this.editor.onFirstFocus();
46532             return;
46533         }
46534
46535         var btns = this.tb.items.map, 
46536             doc = this.editorcore.doc,
46537             frameId = this.editorcore.frameId;
46538
46539         if(!this.disable.font && !Roo.isSafari){
46540             /*
46541             var name = (doc.queryCommandValue('FontName')||this.editor.defaultFont).toLowerCase();
46542             if(name != this.fontSelect.dom.value){
46543                 this.fontSelect.dom.value = name;
46544             }
46545             */
46546         }
46547         if(!this.disable.format){
46548             btns[frameId + '-bold'].toggle(doc.queryCommandState('bold'));
46549             btns[frameId + '-italic'].toggle(doc.queryCommandState('italic'));
46550             btns[frameId + '-underline'].toggle(doc.queryCommandState('underline'));
46551             btns[frameId + '-strikethrough'].toggle(doc.queryCommandState('strikethrough'));
46552         }
46553         if(!this.disable.alignments){
46554             btns[frameId + '-justifyleft'].toggle(doc.queryCommandState('justifyleft'));
46555             btns[frameId + '-justifycenter'].toggle(doc.queryCommandState('justifycenter'));
46556             btns[frameId + '-justifyright'].toggle(doc.queryCommandState('justifyright'));
46557         }
46558         if(!Roo.isSafari && !this.disable.lists){
46559             btns[frameId + '-insertorderedlist'].toggle(doc.queryCommandState('insertorderedlist'));
46560             btns[frameId + '-insertunorderedlist'].toggle(doc.queryCommandState('insertunorderedlist'));
46561         }
46562         
46563         var ans = this.editorcore.getAllAncestors();
46564         if (this.formatCombo) {
46565             
46566             
46567             var store = this.formatCombo.store;
46568             this.formatCombo.setValue("");
46569             for (var i =0; i < ans.length;i++) {
46570                 if (ans[i] && store.query('tag',ans[i].tagName.toLowerCase(), false).length) {
46571                     // select it..
46572                     this.formatCombo.setValue(ans[i].tagName.toLowerCase());
46573                     break;
46574                 }
46575             }
46576         }
46577         
46578         
46579         
46580         // hides menus... - so this cant be on a menu...
46581         Roo.menu.MenuMgr.hideAll();
46582
46583         //this.editorsyncValue();
46584     },
46585    
46586     
46587     createFontOptions : function(){
46588         var buf = [], fs = this.fontFamilies, ff, lc;
46589         
46590         
46591         
46592         for(var i = 0, len = fs.length; i< len; i++){
46593             ff = fs[i];
46594             lc = ff.toLowerCase();
46595             buf.push(
46596                 '<option value="',lc,'" style="font-family:',ff,';"',
46597                     (this.defaultFont == lc ? ' selected="true">' : '>'),
46598                     ff,
46599                 '</option>'
46600             );
46601         }
46602         return buf.join('');
46603     },
46604     
46605     toggleSourceEdit : function(sourceEditMode){
46606         
46607         Roo.log("toolbar toogle");
46608         if(sourceEditMode === undefined){
46609             sourceEditMode = !this.sourceEditMode;
46610         }
46611         this.sourceEditMode = sourceEditMode === true;
46612         var btn = this.tb.items.get(this.editorcore.frameId +'-sourceedit');
46613         // just toggle the button?
46614         if(btn.pressed !== this.sourceEditMode){
46615             btn.toggle(this.sourceEditMode);
46616             return;
46617         }
46618         
46619         if(sourceEditMode){
46620             Roo.log("disabling buttons");
46621             this.tb.items.each(function(item){
46622                 if(item.cmd != 'sourceedit' && (typeof(item.cls) != 'undefined' && item.cls.indexOf('x-init-enable') === -1)){
46623                     item.disable();
46624                 }
46625             });
46626           
46627         }else{
46628             Roo.log("enabling buttons");
46629             if(this.editorcore.initialized){
46630                 this.tb.items.each(function(item){
46631                     item.enable();
46632                 });
46633             }
46634             
46635         }
46636         Roo.log("calling toggole on editor");
46637         // tell the editor that it's been pressed..
46638         this.editor.toggleSourceEdit(sourceEditMode);
46639        
46640     },
46641      /**
46642      * Object collection of toolbar tooltips for the buttons in the editor. The key
46643      * is the command id associated with that button and the value is a valid QuickTips object.
46644      * For example:
46645 <pre><code>
46646 {
46647     bold : {
46648         title: 'Bold (Ctrl+B)',
46649         text: 'Make the selected text bold.',
46650         cls: 'x-html-editor-tip'
46651     },
46652     italic : {
46653         title: 'Italic (Ctrl+I)',
46654         text: 'Make the selected text italic.',
46655         cls: 'x-html-editor-tip'
46656     },
46657     ...
46658 </code></pre>
46659     * @type Object
46660      */
46661     buttonTips : {
46662         bold : {
46663             title: 'Bold (Ctrl+B)',
46664             text: 'Make the selected text bold.',
46665             cls: 'x-html-editor-tip'
46666         },
46667         italic : {
46668             title: 'Italic (Ctrl+I)',
46669             text: 'Make the selected text italic.',
46670             cls: 'x-html-editor-tip'
46671         },
46672         underline : {
46673             title: 'Underline (Ctrl+U)',
46674             text: 'Underline the selected text.',
46675             cls: 'x-html-editor-tip'
46676         },
46677         strikethrough : {
46678             title: 'Strikethrough',
46679             text: 'Strikethrough the selected text.',
46680             cls: 'x-html-editor-tip'
46681         },
46682         increasefontsize : {
46683             title: 'Grow Text',
46684             text: 'Increase the font size.',
46685             cls: 'x-html-editor-tip'
46686         },
46687         decreasefontsize : {
46688             title: 'Shrink Text',
46689             text: 'Decrease the font size.',
46690             cls: 'x-html-editor-tip'
46691         },
46692         backcolor : {
46693             title: 'Text Highlight Color',
46694             text: 'Change the background color of the selected text.',
46695             cls: 'x-html-editor-tip'
46696         },
46697         forecolor : {
46698             title: 'Font Color',
46699             text: 'Change the color of the selected text.',
46700             cls: 'x-html-editor-tip'
46701         },
46702         justifyleft : {
46703             title: 'Align Text Left',
46704             text: 'Align text to the left.',
46705             cls: 'x-html-editor-tip'
46706         },
46707         justifycenter : {
46708             title: 'Center Text',
46709             text: 'Center text in the editor.',
46710             cls: 'x-html-editor-tip'
46711         },
46712         justifyright : {
46713             title: 'Align Text Right',
46714             text: 'Align text to the right.',
46715             cls: 'x-html-editor-tip'
46716         },
46717         insertunorderedlist : {
46718             title: 'Bullet List',
46719             text: 'Start a bulleted list.',
46720             cls: 'x-html-editor-tip'
46721         },
46722         insertorderedlist : {
46723             title: 'Numbered List',
46724             text: 'Start a numbered list.',
46725             cls: 'x-html-editor-tip'
46726         },
46727         createlink : {
46728             title: 'Hyperlink',
46729             text: 'Make the selected text a hyperlink.',
46730             cls: 'x-html-editor-tip'
46731         },
46732         sourceedit : {
46733             title: 'Source Edit',
46734             text: 'Switch to source editing mode.',
46735             cls: 'x-html-editor-tip'
46736         }
46737     },
46738     // private
46739     onDestroy : function(){
46740         if(this.rendered){
46741             
46742             this.tb.items.each(function(item){
46743                 if(item.menu){
46744                     item.menu.removeAll();
46745                     if(item.menu.el){
46746                         item.menu.el.destroy();
46747                     }
46748                 }
46749                 item.destroy();
46750             });
46751              
46752         }
46753     },
46754     onFirstFocus: function() {
46755         this.tb.items.each(function(item){
46756            item.enable();
46757         });
46758     }
46759 });
46760
46761
46762
46763
46764 // <script type="text/javascript">
46765 /*
46766  * Based on
46767  * Ext JS Library 1.1.1
46768  * Copyright(c) 2006-2007, Ext JS, LLC.
46769  *  
46770  
46771  */
46772
46773  
46774 /**
46775  * @class Roo.form.HtmlEditor.ToolbarContext
46776  * Context Toolbar
46777  * 
46778  * Usage:
46779  *
46780  new Roo.form.HtmlEditor({
46781     ....
46782     toolbars : [
46783         { xtype: 'ToolbarStandard', styles : {} }
46784         { xtype: 'ToolbarContext', disable : {} }
46785     ]
46786 })
46787
46788      
46789  * 
46790  * @config : {Object} disable List of elements to disable.. (not done yet.)
46791  * @config : {Object} styles  Map of styles available.
46792  * 
46793  */
46794
46795 Roo.form.HtmlEditor.ToolbarContext = function(config)
46796 {
46797     
46798     Roo.apply(this, config);
46799     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
46800     // dont call parent... till later.
46801     this.styles = this.styles || {};
46802 }
46803
46804  
46805
46806 Roo.form.HtmlEditor.ToolbarContext.types = {
46807     'IMG' : {
46808         width : {
46809             title: "Width",
46810             width: 40
46811         },
46812         height:  {
46813             title: "Height",
46814             width: 40
46815         },
46816         align: {
46817             title: "Align",
46818             opts : [ [""],[ "left"],[ "right"],[ "center"],[ "top"]],
46819             width : 80
46820             
46821         },
46822         border: {
46823             title: "Border",
46824             width: 40
46825         },
46826         alt: {
46827             title: "Alt",
46828             width: 120
46829         },
46830         src : {
46831             title: "Src",
46832             width: 220
46833         }
46834         
46835     },
46836     'A' : {
46837         name : {
46838             title: "Name",
46839             width: 50
46840         },
46841         target:  {
46842             title: "Target",
46843             width: 120
46844         },
46845         href:  {
46846             title: "Href",
46847             width: 220
46848         } // border?
46849         
46850     },
46851     'TABLE' : {
46852         rows : {
46853             title: "Rows",
46854             width: 20
46855         },
46856         cols : {
46857             title: "Cols",
46858             width: 20
46859         },
46860         width : {
46861             title: "Width",
46862             width: 40
46863         },
46864         height : {
46865             title: "Height",
46866             width: 40
46867         },
46868         border : {
46869             title: "Border",
46870             width: 20
46871         }
46872     },
46873     'TD' : {
46874         width : {
46875             title: "Width",
46876             width: 40
46877         },
46878         height : {
46879             title: "Height",
46880             width: 40
46881         },   
46882         align: {
46883             title: "Align",
46884             opts : [[""],[ "left"],[ "center"],[ "right"],[ "justify"],[ "char"]],
46885             width: 80
46886         },
46887         valign: {
46888             title: "Valign",
46889             opts : [[""],[ "top"],[ "middle"],[ "bottom"],[ "baseline"]],
46890             width: 80
46891         },
46892         colspan: {
46893             title: "Colspan",
46894             width: 20
46895             
46896         },
46897          'font-family'  : {
46898             title : "Font",
46899             style : 'fontFamily',
46900             displayField: 'display',
46901             optname : 'font-family',
46902             width: 140
46903         }
46904     },
46905     'INPUT' : {
46906         name : {
46907             title: "name",
46908             width: 120
46909         },
46910         value : {
46911             title: "Value",
46912             width: 120
46913         },
46914         width : {
46915             title: "Width",
46916             width: 40
46917         }
46918     },
46919     'LABEL' : {
46920         'for' : {
46921             title: "For",
46922             width: 120
46923         }
46924     },
46925     'TEXTAREA' : {
46926           name : {
46927             title: "name",
46928             width: 120
46929         },
46930         rows : {
46931             title: "Rows",
46932             width: 20
46933         },
46934         cols : {
46935             title: "Cols",
46936             width: 20
46937         }
46938     },
46939     'SELECT' : {
46940         name : {
46941             title: "name",
46942             width: 120
46943         },
46944         selectoptions : {
46945             title: "Options",
46946             width: 200
46947         }
46948     },
46949     
46950     // should we really allow this??
46951     // should this just be 
46952     'BODY' : {
46953         title : {
46954             title: "Title",
46955             width: 200,
46956             disabled : true
46957         }
46958     },
46959     'SPAN' : {
46960         'font-family'  : {
46961             title : "Font",
46962             style : 'fontFamily',
46963             displayField: 'display',
46964             optname : 'font-family',
46965             width: 140
46966         }
46967     },
46968     'DIV' : {
46969         'font-family'  : {
46970             title : "Font",
46971             style : 'fontFamily',
46972             displayField: 'display',
46973             optname : 'font-family',
46974             width: 140
46975         }
46976     },
46977      'P' : {
46978         'font-family'  : {
46979             title : "Font",
46980             style : 'fontFamily',
46981             displayField: 'display',
46982             optname : 'font-family',
46983             width: 140
46984         }
46985     },
46986     
46987     '*' : {
46988         // empty..
46989     }
46990
46991 };
46992
46993 // this should be configurable.. - you can either set it up using stores, or modify options somehwere..
46994 Roo.form.HtmlEditor.ToolbarContext.stores = false;
46995
46996 Roo.form.HtmlEditor.ToolbarContext.options = {
46997         'font-family'  : [ 
46998                 [ 'Helvetica,Arial,sans-serif', 'Helvetica'],
46999                 [ 'Courier New', 'Courier New'],
47000                 [ 'Tahoma', 'Tahoma'],
47001                 [ 'Times New Roman,serif', 'Times'],
47002                 [ 'Verdana','Verdana' ]
47003         ]
47004 };
47005
47006 // fixme - these need to be configurable..
47007  
47008
47009 //Roo.form.HtmlEditor.ToolbarContext.types
47010
47011
47012 Roo.apply(Roo.form.HtmlEditor.ToolbarContext.prototype,  {
47013     
47014     tb: false,
47015     
47016     rendered: false,
47017     
47018     editor : false,
47019     editorcore : false,
47020     /**
47021      * @cfg {Object} disable  List of toolbar elements to disable
47022          
47023      */
47024     disable : false,
47025     /**
47026      * @cfg {Object} styles List of styles 
47027      *    eg. { '*' : [ 'headline' ] , 'TD' : [ 'underline', 'double-underline' ] } 
47028      *
47029      * These must be defined in the page, so they get rendered correctly..
47030      * .headline { }
47031      * TD.underline { }
47032      * 
47033      */
47034     styles : false,
47035     
47036     options: false,
47037     
47038     toolbars : false,
47039     
47040     init : function(editor)
47041     {
47042         this.editor = editor;
47043         this.editorcore = editor.editorcore ? editor.editorcore : editor;
47044         var editorcore = this.editorcore;
47045         
47046         var fid = editorcore.frameId;
47047         var etb = this;
47048         function btn(id, toggle, handler){
47049             var xid = fid + '-'+ id ;
47050             return {
47051                 id : xid,
47052                 cmd : id,
47053                 cls : 'x-btn-icon x-edit-'+id,
47054                 enableToggle:toggle !== false,
47055                 scope: editorcore, // was editor...
47056                 handler:handler||editorcore.relayBtnCmd,
47057                 clickEvent:'mousedown',
47058                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
47059                 tabIndex:-1
47060             };
47061         }
47062         // create a new element.
47063         var wdiv = editor.wrap.createChild({
47064                 tag: 'div'
47065             }, editor.wrap.dom.firstChild.nextSibling, true);
47066         
47067         // can we do this more than once??
47068         
47069          // stop form submits
47070       
47071  
47072         // disable everything...
47073         var ty= Roo.form.HtmlEditor.ToolbarContext.types;
47074         this.toolbars = {};
47075            
47076         for (var i in  ty) {
47077           
47078             this.toolbars[i] = this.buildToolbar(ty[i],i);
47079         }
47080         this.tb = this.toolbars.BODY;
47081         this.tb.el.show();
47082         this.buildFooter();
47083         this.footer.show();
47084         editor.on('hide', function( ) { this.footer.hide() }, this);
47085         editor.on('show', function( ) { this.footer.show() }, this);
47086         
47087          
47088         this.rendered = true;
47089         
47090         // the all the btns;
47091         editor.on('editorevent', this.updateToolbar, this);
47092         // other toolbars need to implement this..
47093         //editor.on('editmodechange', this.updateToolbar, this);
47094     },
47095     
47096     
47097     
47098     /**
47099      * Protected method that will not generally be called directly. It triggers
47100      * a toolbar update by reading the markup state of the current selection in the editor.
47101      *
47102      * Note you can force an update by calling on('editorevent', scope, false)
47103      */
47104     updateToolbar: function(editor,ev,sel){
47105
47106         //Roo.log(ev);
47107         // capture mouse up - this is handy for selecting images..
47108         // perhaps should go somewhere else...
47109         if(!this.editorcore.activated){
47110              this.editor.onFirstFocus();
47111             return;
47112         }
47113         
47114         
47115         
47116         // http://developer.yahoo.com/yui/docs/simple-editor.js.html
47117         // selectNode - might want to handle IE?
47118         if (ev &&
47119             (ev.type == 'mouseup' || ev.type == 'click' ) &&
47120             ev.target && ev.target.tagName == 'IMG') {
47121             // they have click on an image...
47122             // let's see if we can change the selection...
47123             sel = ev.target;
47124          
47125               var nodeRange = sel.ownerDocument.createRange();
47126             try {
47127                 nodeRange.selectNode(sel);
47128             } catch (e) {
47129                 nodeRange.selectNodeContents(sel);
47130             }
47131             //nodeRange.collapse(true);
47132             var s = this.editorcore.win.getSelection();
47133             s.removeAllRanges();
47134             s.addRange(nodeRange);
47135         }  
47136         
47137       
47138         var updateFooter = sel ? false : true;
47139         
47140         
47141         var ans = this.editorcore.getAllAncestors();
47142         
47143         // pick
47144         var ty= Roo.form.HtmlEditor.ToolbarContext.types;
47145         
47146         if (!sel) { 
47147             sel = ans.length ? (ans[0] ?  ans[0]  : ans[1]) : this.editorcore.doc.body;
47148             sel = sel ? sel : this.editorcore.doc.body;
47149             sel = sel.tagName.length ? sel : this.editorcore.doc.body;
47150             
47151         }
47152         // pick a menu that exists..
47153         var tn = sel.tagName.toUpperCase();
47154         //sel = typeof(ty[tn]) != 'undefined' ? sel : this.editor.doc.body;
47155         
47156         tn = sel.tagName.toUpperCase();
47157         
47158         var lastSel = this.tb.selectedNode;
47159         
47160         this.tb.selectedNode = sel;
47161         
47162         // if current menu does not match..
47163         
47164         if ((this.tb.name != tn) || (lastSel != this.tb.selectedNode) || ev === false) {
47165                 
47166             this.tb.el.hide();
47167             ///console.log("show: " + tn);
47168             this.tb =  typeof(ty[tn]) != 'undefined' ? this.toolbars[tn] : this.toolbars['*'];
47169             this.tb.el.show();
47170             // update name
47171             this.tb.items.first().el.innerHTML = tn + ':&nbsp;';
47172             
47173             
47174             // update attributes
47175             if (this.tb.fields) {
47176                 this.tb.fields.each(function(e) {
47177                     if (e.stylename) {
47178                         e.setValue(sel.style[e.stylename]);
47179                         return;
47180                     } 
47181                    e.setValue(sel.getAttribute(e.attrname));
47182                 });
47183             }
47184             
47185             var hasStyles = false;
47186             for(var i in this.styles) {
47187                 hasStyles = true;
47188                 break;
47189             }
47190             
47191             // update styles
47192             if (hasStyles) { 
47193                 var st = this.tb.fields.item(0);
47194                 
47195                 st.store.removeAll();
47196                
47197                 
47198                 var cn = sel.className.split(/\s+/);
47199                 
47200                 var avs = [];
47201                 if (this.styles['*']) {
47202                     
47203                     Roo.each(this.styles['*'], function(v) {
47204                         avs.push( [ v , cn.indexOf(v) > -1 ? 1 : 0 ] );         
47205                     });
47206                 }
47207                 if (this.styles[tn]) { 
47208                     Roo.each(this.styles[tn], function(v) {
47209                         avs.push( [ v , cn.indexOf(v) > -1 ? 1 : 0 ] );         
47210                     });
47211                 }
47212                 
47213                 st.store.loadData(avs);
47214                 st.collapse();
47215                 st.setValue(cn);
47216             }
47217             // flag our selected Node.
47218             this.tb.selectedNode = sel;
47219            
47220            
47221             Roo.menu.MenuMgr.hideAll();
47222
47223         }
47224         
47225         if (!updateFooter) {
47226             //this.footDisp.dom.innerHTML = ''; 
47227             return;
47228         }
47229         // update the footer
47230         //
47231         var html = '';
47232         
47233         this.footerEls = ans.reverse();
47234         Roo.each(this.footerEls, function(a,i) {
47235             if (!a) { return; }
47236             html += html.length ? ' &gt; '  :  '';
47237             
47238             html += '<span class="x-ed-loc-' + i + '">' + a.tagName + '</span>';
47239             
47240         });
47241        
47242         // 
47243         var sz = this.footDisp.up('td').getSize();
47244         this.footDisp.dom.style.width = (sz.width -10) + 'px';
47245         this.footDisp.dom.style.marginLeft = '5px';
47246         
47247         this.footDisp.dom.style.overflow = 'hidden';
47248         
47249         this.footDisp.dom.innerHTML = html;
47250             
47251         //this.editorsyncValue();
47252     },
47253      
47254     
47255    
47256        
47257     // private
47258     onDestroy : function(){
47259         if(this.rendered){
47260             
47261             this.tb.items.each(function(item){
47262                 if(item.menu){
47263                     item.menu.removeAll();
47264                     if(item.menu.el){
47265                         item.menu.el.destroy();
47266                     }
47267                 }
47268                 item.destroy();
47269             });
47270              
47271         }
47272     },
47273     onFirstFocus: function() {
47274         // need to do this for all the toolbars..
47275         this.tb.items.each(function(item){
47276            item.enable();
47277         });
47278     },
47279     buildToolbar: function(tlist, nm)
47280     {
47281         var editor = this.editor;
47282         var editorcore = this.editorcore;
47283          // create a new element.
47284         var wdiv = editor.wrap.createChild({
47285                 tag: 'div'
47286             }, editor.wrap.dom.firstChild.nextSibling, true);
47287         
47288        
47289         var tb = new Roo.Toolbar(wdiv);
47290         // add the name..
47291         
47292         tb.add(nm+ ":&nbsp;");
47293         
47294         var styles = [];
47295         for(var i in this.styles) {
47296             styles.push(i);
47297         }
47298         
47299         // styles...
47300         if (styles && styles.length) {
47301             
47302             // this needs a multi-select checkbox...
47303             tb.addField( new Roo.form.ComboBox({
47304                 store: new Roo.data.SimpleStore({
47305                     id : 'val',
47306                     fields: ['val', 'selected'],
47307                     data : [] 
47308                 }),
47309                 name : '-roo-edit-className',
47310                 attrname : 'className',
47311                 displayField: 'val',
47312                 typeAhead: false,
47313                 mode: 'local',
47314                 editable : false,
47315                 triggerAction: 'all',
47316                 emptyText:'Select Style',
47317                 selectOnFocus:true,
47318                 width: 130,
47319                 listeners : {
47320                     'select': function(c, r, i) {
47321                         // initial support only for on class per el..
47322                         tb.selectedNode.className =  r ? r.get('val') : '';
47323                         editorcore.syncValue();
47324                     }
47325                 }
47326     
47327             }));
47328         }
47329         
47330         var tbc = Roo.form.HtmlEditor.ToolbarContext;
47331         var tbops = tbc.options;
47332         
47333         for (var i in tlist) {
47334             
47335             var item = tlist[i];
47336             tb.add(item.title + ":&nbsp;");
47337             
47338             
47339             //optname == used so you can configure the options available..
47340             var opts = item.opts ? item.opts : false;
47341             if (item.optname) {
47342                 opts = tbops[item.optname];
47343            
47344             }
47345             
47346             if (opts) {
47347                 // opts == pulldown..
47348                 tb.addField( new Roo.form.ComboBox({
47349                     store:   typeof(tbc.stores[i]) != 'undefined' ?  Roo.factory(tbc.stores[i],Roo.data) : new Roo.data.SimpleStore({
47350                         id : 'val',
47351                         fields: ['val', 'display'],
47352                         data : opts  
47353                     }),
47354                     name : '-roo-edit-' + i,
47355                     attrname : i,
47356                     stylename : item.style ? item.style : false,
47357                     displayField: item.displayField ? item.displayField : 'val',
47358                     valueField :  'val',
47359                     typeAhead: false,
47360                     mode: typeof(tbc.stores[i]) != 'undefined'  ? 'remote' : 'local',
47361                     editable : false,
47362                     triggerAction: 'all',
47363                     emptyText:'Select',
47364                     selectOnFocus:true,
47365                     width: item.width ? item.width  : 130,
47366                     listeners : {
47367                         'select': function(c, r, i) {
47368                             if (c.stylename) {
47369                                 tb.selectedNode.style[c.stylename] =  r.get('val');
47370                                 return;
47371                             }
47372                             tb.selectedNode.setAttribute(c.attrname, r.get('val'));
47373                         }
47374                     }
47375
47376                 }));
47377                 continue;
47378                     
47379                  
47380                 
47381                 tb.addField( new Roo.form.TextField({
47382                     name: i,
47383                     width: 100,
47384                     //allowBlank:false,
47385                     value: ''
47386                 }));
47387                 continue;
47388             }
47389             tb.addField( new Roo.form.TextField({
47390                 name: '-roo-edit-' + i,
47391                 attrname : i,
47392                 
47393                 width: item.width,
47394                 //allowBlank:true,
47395                 value: '',
47396                 listeners: {
47397                     'change' : function(f, nv, ov) {
47398                         tb.selectedNode.setAttribute(f.attrname, nv);
47399                         editorcore.syncValue();
47400                     }
47401                 }
47402             }));
47403              
47404         }
47405         
47406         var _this = this;
47407         
47408         if(nm == 'BODY'){
47409             tb.addSeparator();
47410         
47411             tb.addButton( {
47412                 text: 'Stylesheets',
47413
47414                 listeners : {
47415                     click : function ()
47416                     {
47417                         _this.editor.fireEvent('stylesheetsclick', _this.editor);
47418                     }
47419                 }
47420             });
47421         }
47422         
47423         tb.addFill();
47424         tb.addButton( {
47425             text: 'Remove Tag',
47426     
47427             listeners : {
47428                 click : function ()
47429                 {
47430                     // remove
47431                     // undo does not work.
47432                      
47433                     var sn = tb.selectedNode;
47434                     
47435                     var pn = sn.parentNode;
47436                     
47437                     var stn =  sn.childNodes[0];
47438                     var en = sn.childNodes[sn.childNodes.length - 1 ];
47439                     while (sn.childNodes.length) {
47440                         var node = sn.childNodes[0];
47441                         sn.removeChild(node);
47442                         //Roo.log(node);
47443                         pn.insertBefore(node, sn);
47444                         
47445                     }
47446                     pn.removeChild(sn);
47447                     var range = editorcore.createRange();
47448         
47449                     range.setStart(stn,0);
47450                     range.setEnd(en,0); //????
47451                     //range.selectNode(sel);
47452                     
47453                     
47454                     var selection = editorcore.getSelection();
47455                     selection.removeAllRanges();
47456                     selection.addRange(range);
47457                     
47458                     
47459                     
47460                     //_this.updateToolbar(null, null, pn);
47461                     _this.updateToolbar(null, null, null);
47462                     _this.footDisp.dom.innerHTML = ''; 
47463                 }
47464             }
47465             
47466                     
47467                 
47468             
47469         });
47470         
47471         
47472         tb.el.on('click', function(e){
47473             e.preventDefault(); // what does this do?
47474         });
47475         tb.el.setVisibilityMode( Roo.Element.DISPLAY);
47476         tb.el.hide();
47477         tb.name = nm;
47478         // dont need to disable them... as they will get hidden
47479         return tb;
47480          
47481         
47482     },
47483     buildFooter : function()
47484     {
47485         
47486         var fel = this.editor.wrap.createChild();
47487         this.footer = new Roo.Toolbar(fel);
47488         // toolbar has scrolly on left / right?
47489         var footDisp= new Roo.Toolbar.Fill();
47490         var _t = this;
47491         this.footer.add(
47492             {
47493                 text : '&lt;',
47494                 xtype: 'Button',
47495                 handler : function() {
47496                     _t.footDisp.scrollTo('left',0,true)
47497                 }
47498             }
47499         );
47500         this.footer.add( footDisp );
47501         this.footer.add( 
47502             {
47503                 text : '&gt;',
47504                 xtype: 'Button',
47505                 handler : function() {
47506                     // no animation..
47507                     _t.footDisp.select('span').last().scrollIntoView(_t.footDisp,true);
47508                 }
47509             }
47510         );
47511         var fel = Roo.get(footDisp.el);
47512         fel.addClass('x-editor-context');
47513         this.footDispWrap = fel; 
47514         this.footDispWrap.overflow  = 'hidden';
47515         
47516         this.footDisp = fel.createChild();
47517         this.footDispWrap.on('click', this.onContextClick, this)
47518         
47519         
47520     },
47521     onContextClick : function (ev,dom)
47522     {
47523         ev.preventDefault();
47524         var  cn = dom.className;
47525         //Roo.log(cn);
47526         if (!cn.match(/x-ed-loc-/)) {
47527             return;
47528         }
47529         var n = cn.split('-').pop();
47530         var ans = this.footerEls;
47531         var sel = ans[n];
47532         
47533          // pick
47534         var range = this.editorcore.createRange();
47535         
47536         range.selectNodeContents(sel);
47537         //range.selectNode(sel);
47538         
47539         
47540         var selection = this.editorcore.getSelection();
47541         selection.removeAllRanges();
47542         selection.addRange(range);
47543         
47544         
47545         
47546         this.updateToolbar(null, null, sel);
47547         
47548         
47549     }
47550     
47551     
47552     
47553     
47554     
47555 });
47556
47557
47558
47559
47560
47561 /*
47562  * Based on:
47563  * Ext JS Library 1.1.1
47564  * Copyright(c) 2006-2007, Ext JS, LLC.
47565  *
47566  * Originally Released Under LGPL - original licence link has changed is not relivant.
47567  *
47568  * Fork - LGPL
47569  * <script type="text/javascript">
47570  */
47571  
47572 /**
47573  * @class Roo.form.BasicForm
47574  * @extends Roo.util.Observable
47575  * Supplies the functionality to do "actions" on forms and initialize Roo.form.Field types on existing markup.
47576  * @constructor
47577  * @param {String/HTMLElement/Roo.Element} el The form element or its id
47578  * @param {Object} config Configuration options
47579  */
47580 Roo.form.BasicForm = function(el, config){
47581     this.allItems = [];
47582     this.childForms = [];
47583     Roo.apply(this, config);
47584     /*
47585      * The Roo.form.Field items in this form.
47586      * @type MixedCollection
47587      */
47588      
47589      
47590     this.items = new Roo.util.MixedCollection(false, function(o){
47591         return o.id || (o.id = Roo.id());
47592     });
47593     this.addEvents({
47594         /**
47595          * @event beforeaction
47596          * Fires before any action is performed. Return false to cancel the action.
47597          * @param {Form} this
47598          * @param {Action} action The action to be performed
47599          */
47600         beforeaction: true,
47601         /**
47602          * @event actionfailed
47603          * Fires when an action fails.
47604          * @param {Form} this
47605          * @param {Action} action The action that failed
47606          */
47607         actionfailed : true,
47608         /**
47609          * @event actioncomplete
47610          * Fires when an action is completed.
47611          * @param {Form} this
47612          * @param {Action} action The action that completed
47613          */
47614         actioncomplete : true
47615     });
47616     if(el){
47617         this.initEl(el);
47618     }
47619     Roo.form.BasicForm.superclass.constructor.call(this);
47620     
47621     Roo.form.BasicForm.popover.apply();
47622 };
47623
47624 Roo.extend(Roo.form.BasicForm, Roo.util.Observable, {
47625     /**
47626      * @cfg {String} method
47627      * The request method to use (GET or POST) for form actions if one isn't supplied in the action options.
47628      */
47629     /**
47630      * @cfg {DataReader} reader
47631      * An Roo.data.DataReader (e.g. {@link Roo.data.XmlReader}) to be used to read data when executing "load" actions.
47632      * This is optional as there is built-in support for processing JSON.
47633      */
47634     /**
47635      * @cfg {DataReader} errorReader
47636      * An Roo.data.DataReader (e.g. {@link Roo.data.XmlReader}) to be used to read data when reading validation errors on "submit" actions.
47637      * This is completely optional as there is built-in support for processing JSON.
47638      */
47639     /**
47640      * @cfg {String} url
47641      * The URL to use for form actions if one isn't supplied in the action options.
47642      */
47643     /**
47644      * @cfg {Boolean} fileUpload
47645      * Set to true if this form is a file upload.
47646      */
47647      
47648     /**
47649      * @cfg {Object} baseParams
47650      * Parameters to pass with all requests. e.g. baseParams: {id: '123', foo: 'bar'}.
47651      */
47652      /**
47653      
47654     /**
47655      * @cfg {Number} timeout Timeout for form actions in seconds (default is 30 seconds).
47656      */
47657     timeout: 30,
47658
47659     // private
47660     activeAction : null,
47661
47662     /**
47663      * @cfg {Boolean} trackResetOnLoad If set to true, form.reset() resets to the last loaded
47664      * or setValues() data instead of when the form was first created.
47665      */
47666     trackResetOnLoad : false,
47667     
47668     
47669     /**
47670      * childForms - used for multi-tab forms
47671      * @type {Array}
47672      */
47673     childForms : false,
47674     
47675     /**
47676      * allItems - full list of fields.
47677      * @type {Array}
47678      */
47679     allItems : false,
47680     
47681     /**
47682      * By default wait messages are displayed with Roo.MessageBox.wait. You can target a specific
47683      * element by passing it or its id or mask the form itself by passing in true.
47684      * @type Mixed
47685      */
47686     waitMsgTarget : false,
47687     
47688     /**
47689      * @type Boolean
47690      */
47691     disableMask : false,
47692     
47693     /**
47694      * @cfg {Boolean} errorMask (true|false) default false
47695      */
47696     errorMask : false,
47697     
47698     /**
47699      * @cfg {Number} maskOffset Default 100
47700      */
47701     maskOffset : 100,
47702
47703     // private
47704     initEl : function(el){
47705         this.el = Roo.get(el);
47706         this.id = this.el.id || Roo.id();
47707         this.el.on('submit', this.onSubmit, this);
47708         this.el.addClass('x-form');
47709     },
47710
47711     // private
47712     onSubmit : function(e){
47713         e.stopEvent();
47714     },
47715
47716     /**
47717      * Returns true if client-side validation on the form is successful.
47718      * @return Boolean
47719      */
47720     isValid : function(){
47721         var valid = true;
47722         var target = false;
47723         this.items.each(function(f){
47724             if(f.validate()){
47725                 return;
47726             }
47727             
47728             valid = false;
47729                 
47730             if(!target && f.el.isVisible(true)){
47731                 target = f;
47732             }
47733         });
47734         
47735         if(this.errorMask && !valid){
47736             Roo.form.BasicForm.popover.mask(this, target);
47737         }
47738         
47739         return valid;
47740     },
47741     /**
47742      * Returns array of invalid form fields.
47743      * @return Array
47744      */
47745     
47746     invalidFields : function()
47747     {
47748         var ret = [];
47749         this.items.each(function(f){
47750             if(f.validate()){
47751                 return;
47752             }
47753             ret.push(f);
47754             
47755         });
47756         
47757         return ret;
47758     },
47759     
47760     
47761     /**
47762      * DEPRICATED Returns true if any fields in this form have changed since their original load. 
47763      * @return Boolean
47764      */
47765     isDirty : function(){
47766         var dirty = false;
47767         this.items.each(function(f){
47768            if(f.isDirty()){
47769                dirty = true;
47770                return false;
47771            }
47772         });
47773         return dirty;
47774     },
47775     
47776     /**
47777      * Returns true if any fields in this form have changed since their original load. (New version)
47778      * @return Boolean
47779      */
47780     
47781     hasChanged : function()
47782     {
47783         var dirty = false;
47784         this.items.each(function(f){
47785            if(f.hasChanged()){
47786                dirty = true;
47787                return false;
47788            }
47789         });
47790         return dirty;
47791         
47792     },
47793     /**
47794      * Resets all hasChanged to 'false' -
47795      * The old 'isDirty' used 'original value..' however this breaks reset() and a few other things.
47796      * So hasChanged storage is only to be used for this purpose
47797      * @return Boolean
47798      */
47799     resetHasChanged : function()
47800     {
47801         this.items.each(function(f){
47802            f.resetHasChanged();
47803         });
47804         
47805     },
47806     
47807     
47808     /**
47809      * Performs a predefined action (submit or load) or custom actions you define on this form.
47810      * @param {String} actionName The name of the action type
47811      * @param {Object} options (optional) The options to pass to the action.  All of the config options listed
47812      * below are supported by both the submit and load actions unless otherwise noted (custom actions could also
47813      * accept other config options):
47814      * <pre>
47815 Property          Type             Description
47816 ----------------  ---------------  ----------------------------------------------------------------------------------
47817 url               String           The url for the action (defaults to the form's url)
47818 method            String           The form method to use (defaults to the form's method, or POST if not defined)
47819 params            String/Object    The params to pass (defaults to the form's baseParams, or none if not defined)
47820 clientValidation  Boolean          Applies to submit only.  Pass true to call form.isValid() prior to posting to
47821                                    validate the form on the client (defaults to false)
47822      * </pre>
47823      * @return {BasicForm} this
47824      */
47825     doAction : function(action, options){
47826         if(typeof action == 'string'){
47827             action = new Roo.form.Action.ACTION_TYPES[action](this, options);
47828         }
47829         if(this.fireEvent('beforeaction', this, action) !== false){
47830             this.beforeAction(action);
47831             action.run.defer(100, action);
47832         }
47833         return this;
47834     },
47835
47836     /**
47837      * Shortcut to do a submit action.
47838      * @param {Object} options The options to pass to the action (see {@link #doAction} for details)
47839      * @return {BasicForm} this
47840      */
47841     submit : function(options){
47842         this.doAction('submit', options);
47843         return this;
47844     },
47845
47846     /**
47847      * Shortcut to do a load action.
47848      * @param {Object} options The options to pass to the action (see {@link #doAction} for details)
47849      * @return {BasicForm} this
47850      */
47851     load : function(options){
47852         this.doAction('load', options);
47853         return this;
47854     },
47855
47856     /**
47857      * Persists the values in this form into the passed Roo.data.Record object in a beginEdit/endEdit block.
47858      * @param {Record} record The record to edit
47859      * @return {BasicForm} this
47860      */
47861     updateRecord : function(record){
47862         record.beginEdit();
47863         var fs = record.fields;
47864         fs.each(function(f){
47865             var field = this.findField(f.name);
47866             if(field){
47867                 record.set(f.name, field.getValue());
47868             }
47869         }, this);
47870         record.endEdit();
47871         return this;
47872     },
47873
47874     /**
47875      * Loads an Roo.data.Record into this form.
47876      * @param {Record} record The record to load
47877      * @return {BasicForm} this
47878      */
47879     loadRecord : function(record){
47880         this.setValues(record.data);
47881         return this;
47882     },
47883
47884     // private
47885     beforeAction : function(action){
47886         var o = action.options;
47887         
47888         if(!this.disableMask) {
47889             if(this.waitMsgTarget === true){
47890                 this.el.mask(o.waitMsg || "Sending", 'x-mask-loading');
47891             }else if(this.waitMsgTarget){
47892                 this.waitMsgTarget = Roo.get(this.waitMsgTarget);
47893                 this.waitMsgTarget.mask(o.waitMsg || "Sending", 'x-mask-loading');
47894             }else {
47895                 Roo.MessageBox.wait(o.waitMsg || "Sending", o.waitTitle || this.waitTitle || 'Please Wait...');
47896             }
47897         }
47898         
47899          
47900     },
47901
47902     // private
47903     afterAction : function(action, success){
47904         this.activeAction = null;
47905         var o = action.options;
47906         
47907         if(!this.disableMask) {
47908             if(this.waitMsgTarget === true){
47909                 this.el.unmask();
47910             }else if(this.waitMsgTarget){
47911                 this.waitMsgTarget.unmask();
47912             }else{
47913                 Roo.MessageBox.updateProgress(1);
47914                 Roo.MessageBox.hide();
47915             }
47916         }
47917         
47918         if(success){
47919             if(o.reset){
47920                 this.reset();
47921             }
47922             Roo.callback(o.success, o.scope, [this, action]);
47923             this.fireEvent('actioncomplete', this, action);
47924             
47925         }else{
47926             
47927             // failure condition..
47928             // we have a scenario where updates need confirming.
47929             // eg. if a locking scenario exists..
47930             // we look for { errors : { needs_confirm : true }} in the response.
47931             if (
47932                 (typeof(action.result) != 'undefined')  &&
47933                 (typeof(action.result.errors) != 'undefined')  &&
47934                 (typeof(action.result.errors.needs_confirm) != 'undefined')
47935            ){
47936                 var _t = this;
47937                 Roo.MessageBox.confirm(
47938                     "Change requires confirmation",
47939                     action.result.errorMsg,
47940                     function(r) {
47941                         if (r != 'yes') {
47942                             return;
47943                         }
47944                         _t.doAction('submit', { params :  { _submit_confirmed : 1 } }  );
47945                     }
47946                     
47947                 );
47948                 
47949                 
47950                 
47951                 return;
47952             }
47953             
47954             Roo.callback(o.failure, o.scope, [this, action]);
47955             // show an error message if no failed handler is set..
47956             if (!this.hasListener('actionfailed')) {
47957                 Roo.MessageBox.alert("Error",
47958                     (typeof(action.result) != 'undefined' && typeof(action.result.errorMsg) != 'undefined') ?
47959                         action.result.errorMsg :
47960                         "Saving Failed, please check your entries or try again"
47961                 );
47962             }
47963             
47964             this.fireEvent('actionfailed', this, action);
47965         }
47966         
47967     },
47968
47969     /**
47970      * Find a Roo.form.Field in this form by id, dataIndex, name or hiddenName
47971      * @param {String} id The value to search for
47972      * @return Field
47973      */
47974     findField : function(id){
47975         var field = this.items.get(id);
47976         if(!field){
47977             this.items.each(function(f){
47978                 if(f.isFormField && (f.dataIndex == id || f.id == id || f.getName() == id)){
47979                     field = f;
47980                     return false;
47981                 }
47982             });
47983         }
47984         return field || null;
47985     },
47986
47987     /**
47988      * Add a secondary form to this one, 
47989      * Used to provide tabbed forms. One form is primary, with hidden values 
47990      * which mirror the elements from the other forms.
47991      * 
47992      * @param {Roo.form.Form} form to add.
47993      * 
47994      */
47995     addForm : function(form)
47996     {
47997        
47998         if (this.childForms.indexOf(form) > -1) {
47999             // already added..
48000             return;
48001         }
48002         this.childForms.push(form);
48003         var n = '';
48004         Roo.each(form.allItems, function (fe) {
48005             
48006             n = typeof(fe.getName) == 'undefined' ? fe.name : fe.getName();
48007             if (this.findField(n)) { // already added..
48008                 return;
48009             }
48010             var add = new Roo.form.Hidden({
48011                 name : n
48012             });
48013             add.render(this.el);
48014             
48015             this.add( add );
48016         }, this);
48017         
48018     },
48019     /**
48020      * Mark fields in this form invalid in bulk.
48021      * @param {Array/Object} errors Either an array in the form [{id:'fieldId', msg:'The message'},...] or an object hash of {id: msg, id2: msg2}
48022      * @return {BasicForm} this
48023      */
48024     markInvalid : function(errors){
48025         if(errors instanceof Array){
48026             for(var i = 0, len = errors.length; i < len; i++){
48027                 var fieldError = errors[i];
48028                 var f = this.findField(fieldError.id);
48029                 if(f){
48030                     f.markInvalid(fieldError.msg);
48031                 }
48032             }
48033         }else{
48034             var field, id;
48035             for(id in errors){
48036                 if(typeof errors[id] != 'function' && (field = this.findField(id))){
48037                     field.markInvalid(errors[id]);
48038                 }
48039             }
48040         }
48041         Roo.each(this.childForms || [], function (f) {
48042             f.markInvalid(errors);
48043         });
48044         
48045         return this;
48046     },
48047
48048     /**
48049      * Set values for fields in this form in bulk.
48050      * @param {Array/Object} values Either an array in the form [{id:'fieldId', value:'foo'},...] or an object hash of {id: value, id2: value2}
48051      * @return {BasicForm} this
48052      */
48053     setValues : function(values){
48054         if(values instanceof Array){ // array of objects
48055             for(var i = 0, len = values.length; i < len; i++){
48056                 var v = values[i];
48057                 var f = this.findField(v.id);
48058                 if(f){
48059                     f.setValue(v.value);
48060                     if(this.trackResetOnLoad){
48061                         f.originalValue = f.getValue();
48062                     }
48063                 }
48064             }
48065         }else{ // object hash
48066             var field, id;
48067             for(id in values){
48068                 if(typeof values[id] != 'function' && (field = this.findField(id))){
48069                     
48070                     if (field.setFromData && 
48071                         field.valueField && 
48072                         field.displayField &&
48073                         // combos' with local stores can 
48074                         // be queried via setValue()
48075                         // to set their value..
48076                         (field.store && !field.store.isLocal)
48077                         ) {
48078                         // it's a combo
48079                         var sd = { };
48080                         sd[field.valueField] = typeof(values[field.hiddenName]) == 'undefined' ? '' : values[field.hiddenName];
48081                         sd[field.displayField] = typeof(values[field.name]) == 'undefined' ? '' : values[field.name];
48082                         field.setFromData(sd);
48083                         
48084                     } else {
48085                         field.setValue(values[id]);
48086                     }
48087                     
48088                     
48089                     if(this.trackResetOnLoad){
48090                         field.originalValue = field.getValue();
48091                     }
48092                 }
48093             }
48094         }
48095         this.resetHasChanged();
48096         
48097         
48098         Roo.each(this.childForms || [], function (f) {
48099             f.setValues(values);
48100             f.resetHasChanged();
48101         });
48102                 
48103         return this;
48104     },
48105  
48106     /**
48107      * Returns the fields in this form as an object with key/value pairs. If multiple fields exist with the same name
48108      * they are returned as an array.
48109      * @param {Boolean} asString
48110      * @return {Object}
48111      */
48112     getValues : function(asString){
48113         if (this.childForms) {
48114             // copy values from the child forms
48115             Roo.each(this.childForms, function (f) {
48116                 this.setValues(f.getValues());
48117             }, this);
48118         }
48119         
48120         // use formdata
48121         if (typeof(FormData) != 'undefined' && asString !== true) {
48122             // this relies on a 'recent' version of chrome apparently...
48123             try {
48124                 var fd = (new FormData(this.el.dom)).entries();
48125                 var ret = {};
48126                 var ent = fd.next();
48127                 while (!ent.done) {
48128                     ret[ent.value[0]] = ent.value[1]; // not sure how this will handle duplicates..
48129                     ent = fd.next();
48130                 };
48131                 return ret;
48132             } catch(e) {
48133                 
48134             }
48135             
48136         }
48137         
48138         
48139         var fs = Roo.lib.Ajax.serializeForm(this.el.dom);
48140         if(asString === true){
48141             return fs;
48142         }
48143         return Roo.urlDecode(fs);
48144     },
48145     
48146     /**
48147      * Returns the fields in this form as an object with key/value pairs. 
48148      * This differs from getValues as it calls getValue on each child item, rather than using dom data.
48149      * @return {Object}
48150      */
48151     getFieldValues : function(with_hidden)
48152     {
48153         if (this.childForms) {
48154             // copy values from the child forms
48155             // should this call getFieldValues - probably not as we do not currently copy
48156             // hidden fields when we generate..
48157             Roo.each(this.childForms, function (f) {
48158                 this.setValues(f.getValues());
48159             }, this);
48160         }
48161         
48162         var ret = {};
48163         this.items.each(function(f){
48164             if (!f.getName()) {
48165                 return;
48166             }
48167             var v = f.getValue();
48168             if (f.inputType =='radio') {
48169                 if (typeof(ret[f.getName()]) == 'undefined') {
48170                     ret[f.getName()] = ''; // empty..
48171                 }
48172                 
48173                 if (!f.el.dom.checked) {
48174                     return;
48175                     
48176                 }
48177                 v = f.el.dom.value;
48178                 
48179             }
48180             
48181             // not sure if this supported any more..
48182             if ((typeof(v) == 'object') && f.getRawValue) {
48183                 v = f.getRawValue() ; // dates..
48184             }
48185             // combo boxes where name != hiddenName...
48186             if (f.name != f.getName()) {
48187                 ret[f.name] = f.getRawValue();
48188             }
48189             ret[f.getName()] = v;
48190         });
48191         
48192         return ret;
48193     },
48194
48195     /**
48196      * Clears all invalid messages in this form.
48197      * @return {BasicForm} this
48198      */
48199     clearInvalid : function(){
48200         this.items.each(function(f){
48201            f.clearInvalid();
48202         });
48203         
48204         Roo.each(this.childForms || [], function (f) {
48205             f.clearInvalid();
48206         });
48207         
48208         
48209         return this;
48210     },
48211
48212     /**
48213      * Resets this form.
48214      * @return {BasicForm} this
48215      */
48216     reset : function(){
48217         this.items.each(function(f){
48218             f.reset();
48219         });
48220         
48221         Roo.each(this.childForms || [], function (f) {
48222             f.reset();
48223         });
48224         this.resetHasChanged();
48225         
48226         return this;
48227     },
48228
48229     /**
48230      * Add Roo.form components to this form.
48231      * @param {Field} field1
48232      * @param {Field} field2 (optional)
48233      * @param {Field} etc (optional)
48234      * @return {BasicForm} this
48235      */
48236     add : function(){
48237         this.items.addAll(Array.prototype.slice.call(arguments, 0));
48238         return this;
48239     },
48240
48241
48242     /**
48243      * Removes a field from the items collection (does NOT remove its markup).
48244      * @param {Field} field
48245      * @return {BasicForm} this
48246      */
48247     remove : function(field){
48248         this.items.remove(field);
48249         return this;
48250     },
48251
48252     /**
48253      * Looks at the fields in this form, checks them for an id attribute,
48254      * and calls applyTo on the existing dom element with that id.
48255      * @return {BasicForm} this
48256      */
48257     render : function(){
48258         this.items.each(function(f){
48259             if(f.isFormField && !f.rendered && document.getElementById(f.id)){ // if the element exists
48260                 f.applyTo(f.id);
48261             }
48262         });
48263         return this;
48264     },
48265
48266     /**
48267      * Calls {@link Ext#apply} for all fields in this form with the passed object.
48268      * @param {Object} values
48269      * @return {BasicForm} this
48270      */
48271     applyToFields : function(o){
48272         this.items.each(function(f){
48273            Roo.apply(f, o);
48274         });
48275         return this;
48276     },
48277
48278     /**
48279      * Calls {@link Ext#applyIf} for all field in this form with the passed object.
48280      * @param {Object} values
48281      * @return {BasicForm} this
48282      */
48283     applyIfToFields : function(o){
48284         this.items.each(function(f){
48285            Roo.applyIf(f, o);
48286         });
48287         return this;
48288     }
48289 });
48290
48291 // back compat
48292 Roo.BasicForm = Roo.form.BasicForm;
48293
48294 Roo.apply(Roo.form.BasicForm, {
48295     
48296     popover : {
48297         
48298         padding : 5,
48299         
48300         isApplied : false,
48301         
48302         isMasked : false,
48303         
48304         form : false,
48305         
48306         target : false,
48307         
48308         intervalID : false,
48309         
48310         maskEl : false,
48311         
48312         apply : function()
48313         {
48314             if(this.isApplied){
48315                 return;
48316             }
48317             
48318             this.maskEl = {
48319                 top : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-top-mask" }, true),
48320                 left : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-left-mask" }, true),
48321                 bottom : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-bottom-mask" }, true),
48322                 right : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-right-mask" }, true)
48323             };
48324             
48325             this.maskEl.top.enableDisplayMode("block");
48326             this.maskEl.left.enableDisplayMode("block");
48327             this.maskEl.bottom.enableDisplayMode("block");
48328             this.maskEl.right.enableDisplayMode("block");
48329             
48330             Roo.get(document.body).on('click', function(){
48331                 this.unmask();
48332             }, this);
48333             
48334             Roo.get(document.body).on('touchstart', function(){
48335                 this.unmask();
48336             }, this);
48337             
48338             this.isApplied = true
48339         },
48340         
48341         mask : function(form, target)
48342         {
48343             this.form = form;
48344             
48345             this.target = target;
48346             
48347             if(!this.form.errorMask || !target.el){
48348                 return;
48349             }
48350             
48351             var scrollable = this.target.el.findScrollableParent() || this.target.el.findParent('div.x-layout-active-content', 100, true) || Roo.get(document.body);
48352             
48353             var ot = this.target.el.calcOffsetsTo(scrollable);
48354             
48355             var scrollTo = ot[1] - this.form.maskOffset;
48356             
48357             scrollTo = Math.min(scrollTo, scrollable.dom.scrollHeight);
48358             
48359             scrollable.scrollTo('top', scrollTo);
48360             
48361             var el = this.target.wrap || this.target.el;
48362             
48363             var box = el.getBox();
48364             
48365             this.maskEl.top.setStyle('position', 'absolute');
48366             this.maskEl.top.setStyle('z-index', 10000);
48367             this.maskEl.top.setSize(Roo.lib.Dom.getDocumentWidth(), box.y - this.padding);
48368             this.maskEl.top.setLeft(0);
48369             this.maskEl.top.setTop(0);
48370             this.maskEl.top.show();
48371             
48372             this.maskEl.left.setStyle('position', 'absolute');
48373             this.maskEl.left.setStyle('z-index', 10000);
48374             this.maskEl.left.setSize(box.x - this.padding, box.height + this.padding * 2);
48375             this.maskEl.left.setLeft(0);
48376             this.maskEl.left.setTop(box.y - this.padding);
48377             this.maskEl.left.show();
48378
48379             this.maskEl.bottom.setStyle('position', 'absolute');
48380             this.maskEl.bottom.setStyle('z-index', 10000);
48381             this.maskEl.bottom.setSize(Roo.lib.Dom.getDocumentWidth(), Roo.lib.Dom.getDocumentHeight() - box.bottom - this.padding);
48382             this.maskEl.bottom.setLeft(0);
48383             this.maskEl.bottom.setTop(box.bottom + this.padding);
48384             this.maskEl.bottom.show();
48385
48386             this.maskEl.right.setStyle('position', 'absolute');
48387             this.maskEl.right.setStyle('z-index', 10000);
48388             this.maskEl.right.setSize(Roo.lib.Dom.getDocumentWidth() - box.right - this.padding, box.height + this.padding * 2);
48389             this.maskEl.right.setLeft(box.right + this.padding);
48390             this.maskEl.right.setTop(box.y - this.padding);
48391             this.maskEl.right.show();
48392
48393             this.intervalID = window.setInterval(function() {
48394                 Roo.form.BasicForm.popover.unmask();
48395             }, 10000);
48396
48397             window.onwheel = function(){ return false;};
48398             
48399             (function(){ this.isMasked = true; }).defer(500, this);
48400             
48401         },
48402         
48403         unmask : function()
48404         {
48405             if(!this.isApplied || !this.isMasked || !this.form || !this.target || !this.form.errorMask){
48406                 return;
48407             }
48408             
48409             this.maskEl.top.setStyle('position', 'absolute');
48410             this.maskEl.top.setSize(0, 0).setXY([0, 0]);
48411             this.maskEl.top.hide();
48412
48413             this.maskEl.left.setStyle('position', 'absolute');
48414             this.maskEl.left.setSize(0, 0).setXY([0, 0]);
48415             this.maskEl.left.hide();
48416
48417             this.maskEl.bottom.setStyle('position', 'absolute');
48418             this.maskEl.bottom.setSize(0, 0).setXY([0, 0]);
48419             this.maskEl.bottom.hide();
48420
48421             this.maskEl.right.setStyle('position', 'absolute');
48422             this.maskEl.right.setSize(0, 0).setXY([0, 0]);
48423             this.maskEl.right.hide();
48424             
48425             window.onwheel = function(){ return true;};
48426             
48427             if(this.intervalID){
48428                 window.clearInterval(this.intervalID);
48429                 this.intervalID = false;
48430             }
48431             
48432             this.isMasked = false;
48433             
48434         }
48435         
48436     }
48437     
48438 });/*
48439  * Based on:
48440  * Ext JS Library 1.1.1
48441  * Copyright(c) 2006-2007, Ext JS, LLC.
48442  *
48443  * Originally Released Under LGPL - original licence link has changed is not relivant.
48444  *
48445  * Fork - LGPL
48446  * <script type="text/javascript">
48447  */
48448
48449 /**
48450  * @class Roo.form.Form
48451  * @extends Roo.form.BasicForm
48452  * Adds the ability to dynamically render forms with JavaScript to {@link Roo.form.BasicForm}.
48453  * @constructor
48454  * @param {Object} config Configuration options
48455  */
48456 Roo.form.Form = function(config){
48457     var xitems =  [];
48458     if (config.items) {
48459         xitems = config.items;
48460         delete config.items;
48461     }
48462    
48463     
48464     Roo.form.Form.superclass.constructor.call(this, null, config);
48465     this.url = this.url || this.action;
48466     if(!this.root){
48467         this.root = new Roo.form.Layout(Roo.applyIf({
48468             id: Roo.id()
48469         }, config));
48470     }
48471     this.active = this.root;
48472     /**
48473      * Array of all the buttons that have been added to this form via {@link addButton}
48474      * @type Array
48475      */
48476     this.buttons = [];
48477     this.allItems = [];
48478     this.addEvents({
48479         /**
48480          * @event clientvalidation
48481          * If the monitorValid config option is true, this event fires repetitively to notify of valid state
48482          * @param {Form} this
48483          * @param {Boolean} valid true if the form has passed client-side validation
48484          */
48485         clientvalidation: true,
48486         /**
48487          * @event rendered
48488          * Fires when the form is rendered
48489          * @param {Roo.form.Form} form
48490          */
48491         rendered : true
48492     });
48493     
48494     if (this.progressUrl) {
48495             // push a hidden field onto the list of fields..
48496             this.addxtype( {
48497                     xns: Roo.form, 
48498                     xtype : 'Hidden', 
48499                     name : 'UPLOAD_IDENTIFIER' 
48500             });
48501         }
48502         
48503     
48504     Roo.each(xitems, this.addxtype, this);
48505     
48506 };
48507
48508 Roo.extend(Roo.form.Form, Roo.form.BasicForm, {
48509     /**
48510      * @cfg {Number} labelWidth The width of labels. This property cascades to child containers.
48511      */
48512     /**
48513      * @cfg {String} itemCls A css class to apply to the x-form-item of fields. This property cascades to child containers.
48514      */
48515     /**
48516      * @cfg {String} buttonAlign Valid values are "left," "center" and "right" (defaults to "center")
48517      */
48518     buttonAlign:'center',
48519
48520     /**
48521      * @cfg {Number} minButtonWidth Minimum width of all buttons in pixels (defaults to 75)
48522      */
48523     minButtonWidth:75,
48524
48525     /**
48526      * @cfg {String} labelAlign Valid values are "left," "top" and "right" (defaults to "left").
48527      * This property cascades to child containers if not set.
48528      */
48529     labelAlign:'left',
48530
48531     /**
48532      * @cfg {Boolean} monitorValid If true the form monitors its valid state <b>client-side</b> and
48533      * fires a looping event with that state. This is required to bind buttons to the valid
48534      * state using the config value formBind:true on the button.
48535      */
48536     monitorValid : false,
48537
48538     /**
48539      * @cfg {Number} monitorPoll The milliseconds to poll valid state, ignored if monitorValid is not true (defaults to 200)
48540      */
48541     monitorPoll : 200,
48542     
48543     /**
48544      * @cfg {String} progressUrl - Url to return progress data 
48545      */
48546     
48547     progressUrl : false,
48548     /**
48549      * @cfg {boolean|FormData} formData - true to use new 'FormData' post, or set to a new FormData({dom form}) Object, if
48550      * sending a formdata with extra parameters - eg uploaded elements.
48551      */
48552     
48553     formData : false,
48554     
48555     /**
48556      * Opens a new {@link Roo.form.Column} container in the layout stack. If fields are passed after the config, the
48557      * fields are added and the column is closed. If no fields are passed the column remains open
48558      * until end() is called.
48559      * @param {Object} config The config to pass to the column
48560      * @param {Field} field1 (optional)
48561      * @param {Field} field2 (optional)
48562      * @param {Field} etc (optional)
48563      * @return Column The column container object
48564      */
48565     column : function(c){
48566         var col = new Roo.form.Column(c);
48567         this.start(col);
48568         if(arguments.length > 1){ // duplicate code required because of Opera
48569             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
48570             this.end();
48571         }
48572         return col;
48573     },
48574
48575     /**
48576      * Opens a new {@link Roo.form.FieldSet} container in the layout stack. If fields are passed after the config, the
48577      * fields are added and the fieldset is closed. If no fields are passed the fieldset remains open
48578      * until end() is called.
48579      * @param {Object} config The config to pass to the fieldset
48580      * @param {Field} field1 (optional)
48581      * @param {Field} field2 (optional)
48582      * @param {Field} etc (optional)
48583      * @return FieldSet The fieldset container object
48584      */
48585     fieldset : function(c){
48586         var fs = new Roo.form.FieldSet(c);
48587         this.start(fs);
48588         if(arguments.length > 1){ // duplicate code required because of Opera
48589             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
48590             this.end();
48591         }
48592         return fs;
48593     },
48594
48595     /**
48596      * Opens a new {@link Roo.form.Layout} container in the layout stack. If fields are passed after the config, the
48597      * fields are added and the container is closed. If no fields are passed the container remains open
48598      * until end() is called.
48599      * @param {Object} config The config to pass to the Layout
48600      * @param {Field} field1 (optional)
48601      * @param {Field} field2 (optional)
48602      * @param {Field} etc (optional)
48603      * @return Layout The container object
48604      */
48605     container : function(c){
48606         var l = new Roo.form.Layout(c);
48607         this.start(l);
48608         if(arguments.length > 1){ // duplicate code required because of Opera
48609             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
48610             this.end();
48611         }
48612         return l;
48613     },
48614
48615     /**
48616      * Opens the passed container in the layout stack. The container can be any {@link Roo.form.Layout} or subclass.
48617      * @param {Object} container A Roo.form.Layout or subclass of Layout
48618      * @return {Form} this
48619      */
48620     start : function(c){
48621         // cascade label info
48622         Roo.applyIf(c, {'labelAlign': this.active.labelAlign, 'labelWidth': this.active.labelWidth, 'itemCls': this.active.itemCls});
48623         this.active.stack.push(c);
48624         c.ownerCt = this.active;
48625         this.active = c;
48626         return this;
48627     },
48628
48629     /**
48630      * Closes the current open container
48631      * @return {Form} this
48632      */
48633     end : function(){
48634         if(this.active == this.root){
48635             return this;
48636         }
48637         this.active = this.active.ownerCt;
48638         return this;
48639     },
48640
48641     /**
48642      * Add Roo.form components to the current open container (e.g. column, fieldset, etc.).  Fields added via this method
48643      * can also be passed with an additional property of fieldLabel, which if supplied, will provide the text to display
48644      * as the label of the field.
48645      * @param {Field} field1
48646      * @param {Field} field2 (optional)
48647      * @param {Field} etc. (optional)
48648      * @return {Form} this
48649      */
48650     add : function(){
48651         this.active.stack.push.apply(this.active.stack, arguments);
48652         this.allItems.push.apply(this.allItems,arguments);
48653         var r = [];
48654         for(var i = 0, a = arguments, len = a.length; i < len; i++) {
48655             if(a[i].isFormField){
48656                 r.push(a[i]);
48657             }
48658         }
48659         if(r.length > 0){
48660             Roo.form.Form.superclass.add.apply(this, r);
48661         }
48662         return this;
48663     },
48664     
48665
48666     
48667     
48668     
48669      /**
48670      * Find any element that has been added to a form, using it's ID or name
48671      * This can include framesets, columns etc. along with regular fields..
48672      * @param {String} id - id or name to find.
48673      
48674      * @return {Element} e - or false if nothing found.
48675      */
48676     findbyId : function(id)
48677     {
48678         var ret = false;
48679         if (!id) {
48680             return ret;
48681         }
48682         Roo.each(this.allItems, function(f){
48683             if (f.id == id || f.name == id ){
48684                 ret = f;
48685                 return false;
48686             }
48687         });
48688         return ret;
48689     },
48690
48691     
48692     
48693     /**
48694      * Render this form into the passed container. This should only be called once!
48695      * @param {String/HTMLElement/Element} container The element this component should be rendered into
48696      * @return {Form} this
48697      */
48698     render : function(ct)
48699     {
48700         
48701         
48702         
48703         ct = Roo.get(ct);
48704         var o = this.autoCreate || {
48705             tag: 'form',
48706             method : this.method || 'POST',
48707             id : this.id || Roo.id()
48708         };
48709         this.initEl(ct.createChild(o));
48710
48711         this.root.render(this.el);
48712         
48713        
48714              
48715         this.items.each(function(f){
48716             f.render('x-form-el-'+f.id);
48717         });
48718
48719         if(this.buttons.length > 0){
48720             // tables are required to maintain order and for correct IE layout
48721             var tb = this.el.createChild({cls:'x-form-btns-ct', cn: {
48722                 cls:"x-form-btns x-form-btns-"+this.buttonAlign,
48723                 html:'<table cellspacing="0"><tbody><tr></tr></tbody></table><div class="x-clear"></div>'
48724             }}, null, true);
48725             var tr = tb.getElementsByTagName('tr')[0];
48726             for(var i = 0, len = this.buttons.length; i < len; i++) {
48727                 var b = this.buttons[i];
48728                 var td = document.createElement('td');
48729                 td.className = 'x-form-btn-td';
48730                 b.render(tr.appendChild(td));
48731             }
48732         }
48733         if(this.monitorValid){ // initialize after render
48734             this.startMonitoring();
48735         }
48736         this.fireEvent('rendered', this);
48737         return this;
48738     },
48739
48740     /**
48741      * Adds a button to the footer of the form - this <b>must</b> be called before the form is rendered.
48742      * @param {String/Object} config A string becomes the button text, an object can either be a Button config
48743      * object or a valid Roo.DomHelper element config
48744      * @param {Function} handler The function called when the button is clicked
48745      * @param {Object} scope (optional) The scope of the handler function
48746      * @return {Roo.Button}
48747      */
48748     addButton : function(config, handler, scope){
48749         var bc = {
48750             handler: handler,
48751             scope: scope,
48752             minWidth: this.minButtonWidth,
48753             hideParent:true
48754         };
48755         if(typeof config == "string"){
48756             bc.text = config;
48757         }else{
48758             Roo.apply(bc, config);
48759         }
48760         var btn = new Roo.Button(null, bc);
48761         this.buttons.push(btn);
48762         return btn;
48763     },
48764
48765      /**
48766      * Adds a series of form elements (using the xtype property as the factory method.
48767      * Valid xtypes are:  TextField, TextArea .... Button, Layout, FieldSet, Column, (and 'end' to close a block)
48768      * @param {Object} config 
48769      */
48770     
48771     addxtype : function()
48772     {
48773         var ar = Array.prototype.slice.call(arguments, 0);
48774         var ret = false;
48775         for(var i = 0; i < ar.length; i++) {
48776             if (!ar[i]) {
48777                 continue; // skip -- if this happends something invalid got sent, we 
48778                 // should ignore it, as basically that interface element will not show up
48779                 // and that should be pretty obvious!!
48780             }
48781             
48782             if (Roo.form[ar[i].xtype]) {
48783                 ar[i].form = this;
48784                 var fe = Roo.factory(ar[i], Roo.form);
48785                 if (!ret) {
48786                     ret = fe;
48787                 }
48788                 fe.form = this;
48789                 if (fe.store) {
48790                     fe.store.form = this;
48791                 }
48792                 if (fe.isLayout) {  
48793                          
48794                     this.start(fe);
48795                     this.allItems.push(fe);
48796                     if (fe.items && fe.addxtype) {
48797                         fe.addxtype.apply(fe, fe.items);
48798                         delete fe.items;
48799                     }
48800                      this.end();
48801                     continue;
48802                 }
48803                 
48804                 
48805                  
48806                 this.add(fe);
48807               //  console.log('adding ' + ar[i].xtype);
48808             }
48809             if (ar[i].xtype == 'Button') {  
48810                 //console.log('adding button');
48811                 //console.log(ar[i]);
48812                 this.addButton(ar[i]);
48813                 this.allItems.push(fe);
48814                 continue;
48815             }
48816             
48817             if (ar[i].xtype == 'end') { // so we can add fieldsets... / layout etc.
48818                 alert('end is not supported on xtype any more, use items');
48819             //    this.end();
48820             //    //console.log('adding end');
48821             }
48822             
48823         }
48824         return ret;
48825     },
48826     
48827     /**
48828      * Starts monitoring of the valid state of this form. Usually this is done by passing the config
48829      * option "monitorValid"
48830      */
48831     startMonitoring : function(){
48832         if(!this.bound){
48833             this.bound = true;
48834             Roo.TaskMgr.start({
48835                 run : this.bindHandler,
48836                 interval : this.monitorPoll || 200,
48837                 scope: this
48838             });
48839         }
48840     },
48841
48842     /**
48843      * Stops monitoring of the valid state of this form
48844      */
48845     stopMonitoring : function(){
48846         this.bound = false;
48847     },
48848
48849     // private
48850     bindHandler : function(){
48851         if(!this.bound){
48852             return false; // stops binding
48853         }
48854         var valid = true;
48855         this.items.each(function(f){
48856             if(!f.isValid(true)){
48857                 valid = false;
48858                 return false;
48859             }
48860         });
48861         for(var i = 0, len = this.buttons.length; i < len; i++){
48862             var btn = this.buttons[i];
48863             if(btn.formBind === true && btn.disabled === valid){
48864                 btn.setDisabled(!valid);
48865             }
48866         }
48867         this.fireEvent('clientvalidation', this, valid);
48868     }
48869     
48870     
48871     
48872     
48873     
48874     
48875     
48876     
48877 });
48878
48879
48880 // back compat
48881 Roo.Form = Roo.form.Form;
48882 /*
48883  * Based on:
48884  * Ext JS Library 1.1.1
48885  * Copyright(c) 2006-2007, Ext JS, LLC.
48886  *
48887  * Originally Released Under LGPL - original licence link has changed is not relivant.
48888  *
48889  * Fork - LGPL
48890  * <script type="text/javascript">
48891  */
48892
48893 // as we use this in bootstrap.
48894 Roo.namespace('Roo.form');
48895  /**
48896  * @class Roo.form.Action
48897  * Internal Class used to handle form actions
48898  * @constructor
48899  * @param {Roo.form.BasicForm} el The form element or its id
48900  * @param {Object} config Configuration options
48901  */
48902
48903  
48904  
48905 // define the action interface
48906 Roo.form.Action = function(form, options){
48907     this.form = form;
48908     this.options = options || {};
48909 };
48910 /**
48911  * Client Validation Failed
48912  * @const 
48913  */
48914 Roo.form.Action.CLIENT_INVALID = 'client';
48915 /**
48916  * Server Validation Failed
48917  * @const 
48918  */
48919 Roo.form.Action.SERVER_INVALID = 'server';
48920  /**
48921  * Connect to Server Failed
48922  * @const 
48923  */
48924 Roo.form.Action.CONNECT_FAILURE = 'connect';
48925 /**
48926  * Reading Data from Server Failed
48927  * @const 
48928  */
48929 Roo.form.Action.LOAD_FAILURE = 'load';
48930
48931 Roo.form.Action.prototype = {
48932     type : 'default',
48933     failureType : undefined,
48934     response : undefined,
48935     result : undefined,
48936
48937     // interface method
48938     run : function(options){
48939
48940     },
48941
48942     // interface method
48943     success : function(response){
48944
48945     },
48946
48947     // interface method
48948     handleResponse : function(response){
48949
48950     },
48951
48952     // default connection failure
48953     failure : function(response){
48954         
48955         this.response = response;
48956         this.failureType = Roo.form.Action.CONNECT_FAILURE;
48957         this.form.afterAction(this, false);
48958     },
48959
48960     processResponse : function(response){
48961         this.response = response;
48962         if(!response.responseText){
48963             return true;
48964         }
48965         this.result = this.handleResponse(response);
48966         return this.result;
48967     },
48968
48969     // utility functions used internally
48970     getUrl : function(appendParams){
48971         var url = this.options.url || this.form.url || this.form.el.dom.action;
48972         if(appendParams){
48973             var p = this.getParams();
48974             if(p){
48975                 url += (url.indexOf('?') != -1 ? '&' : '?') + p;
48976             }
48977         }
48978         return url;
48979     },
48980
48981     getMethod : function(){
48982         return (this.options.method || this.form.method || this.form.el.dom.method || 'POST').toUpperCase();
48983     },
48984
48985     getParams : function(){
48986         var bp = this.form.baseParams;
48987         var p = this.options.params;
48988         if(p){
48989             if(typeof p == "object"){
48990                 p = Roo.urlEncode(Roo.applyIf(p, bp));
48991             }else if(typeof p == 'string' && bp){
48992                 p += '&' + Roo.urlEncode(bp);
48993             }
48994         }else if(bp){
48995             p = Roo.urlEncode(bp);
48996         }
48997         return p;
48998     },
48999
49000     createCallback : function(){
49001         return {
49002             success: this.success,
49003             failure: this.failure,
49004             scope: this,
49005             timeout: (this.form.timeout*1000),
49006             upload: this.form.fileUpload ? this.success : undefined
49007         };
49008     }
49009 };
49010
49011 Roo.form.Action.Submit = function(form, options){
49012     Roo.form.Action.Submit.superclass.constructor.call(this, form, options);
49013 };
49014
49015 Roo.extend(Roo.form.Action.Submit, Roo.form.Action, {
49016     type : 'submit',
49017
49018     haveProgress : false,
49019     uploadComplete : false,
49020     
49021     // uploadProgress indicator.
49022     uploadProgress : function()
49023     {
49024         if (!this.form.progressUrl) {
49025             return;
49026         }
49027         
49028         if (!this.haveProgress) {
49029             Roo.MessageBox.progress("Uploading", "Uploading");
49030         }
49031         if (this.uploadComplete) {
49032            Roo.MessageBox.hide();
49033            return;
49034         }
49035         
49036         this.haveProgress = true;
49037    
49038         var uid = this.form.findField('UPLOAD_IDENTIFIER').getValue();
49039         
49040         var c = new Roo.data.Connection();
49041         c.request({
49042             url : this.form.progressUrl,
49043             params: {
49044                 id : uid
49045             },
49046             method: 'GET',
49047             success : function(req){
49048                //console.log(data);
49049                 var rdata = false;
49050                 var edata;
49051                 try  {
49052                    rdata = Roo.decode(req.responseText)
49053                 } catch (e) {
49054                     Roo.log("Invalid data from server..");
49055                     Roo.log(edata);
49056                     return;
49057                 }
49058                 if (!rdata || !rdata.success) {
49059                     Roo.log(rdata);
49060                     Roo.MessageBox.alert(Roo.encode(rdata));
49061                     return;
49062                 }
49063                 var data = rdata.data;
49064                 
49065                 if (this.uploadComplete) {
49066                    Roo.MessageBox.hide();
49067                    return;
49068                 }
49069                    
49070                 if (data){
49071                     Roo.MessageBox.updateProgress(data.bytes_uploaded/data.bytes_total,
49072                        Math.floor((data.bytes_total - data.bytes_uploaded)/1000) + 'k remaining'
49073                     );
49074                 }
49075                 this.uploadProgress.defer(2000,this);
49076             },
49077        
49078             failure: function(data) {
49079                 Roo.log('progress url failed ');
49080                 Roo.log(data);
49081             },
49082             scope : this
49083         });
49084            
49085     },
49086     
49087     
49088     run : function()
49089     {
49090         // run get Values on the form, so it syncs any secondary forms.
49091         this.form.getValues();
49092         
49093         var o = this.options;
49094         var method = this.getMethod();
49095         var isPost = method == 'POST';
49096         if(o.clientValidation === false || this.form.isValid()){
49097             
49098             if (this.form.progressUrl) {
49099                 this.form.findField('UPLOAD_IDENTIFIER').setValue(
49100                     (new Date() * 1) + '' + Math.random());
49101                     
49102             } 
49103             
49104             
49105             Roo.Ajax.request(Roo.apply(this.createCallback(), {
49106                 form:this.form.el.dom,
49107                 url:this.getUrl(!isPost),
49108                 method: method,
49109                 params:isPost ? this.getParams() : null,
49110                 isUpload: this.form.fileUpload,
49111                 formData : this.form.formData
49112             }));
49113             
49114             this.uploadProgress();
49115
49116         }else if (o.clientValidation !== false){ // client validation failed
49117             this.failureType = Roo.form.Action.CLIENT_INVALID;
49118             this.form.afterAction(this, false);
49119         }
49120     },
49121
49122     success : function(response)
49123     {
49124         this.uploadComplete= true;
49125         if (this.haveProgress) {
49126             Roo.MessageBox.hide();
49127         }
49128         
49129         
49130         var result = this.processResponse(response);
49131         if(result === true || result.success){
49132             this.form.afterAction(this, true);
49133             return;
49134         }
49135         if(result.errors){
49136             this.form.markInvalid(result.errors);
49137             this.failureType = Roo.form.Action.SERVER_INVALID;
49138         }
49139         this.form.afterAction(this, false);
49140     },
49141     failure : function(response)
49142     {
49143         this.uploadComplete= true;
49144         if (this.haveProgress) {
49145             Roo.MessageBox.hide();
49146         }
49147         
49148         this.response = response;
49149         this.failureType = Roo.form.Action.CONNECT_FAILURE;
49150         this.form.afterAction(this, false);
49151     },
49152     
49153     handleResponse : function(response){
49154         if(this.form.errorReader){
49155             var rs = this.form.errorReader.read(response);
49156             var errors = [];
49157             if(rs.records){
49158                 for(var i = 0, len = rs.records.length; i < len; i++) {
49159                     var r = rs.records[i];
49160                     errors[i] = r.data;
49161                 }
49162             }
49163             if(errors.length < 1){
49164                 errors = null;
49165             }
49166             return {
49167                 success : rs.success,
49168                 errors : errors
49169             };
49170         }
49171         var ret = false;
49172         try {
49173             ret = Roo.decode(response.responseText);
49174         } catch (e) {
49175             ret = {
49176                 success: false,
49177                 errorMsg: "Failed to read server message: " + (response ? response.responseText : ' - no message'),
49178                 errors : []
49179             };
49180         }
49181         return ret;
49182         
49183     }
49184 });
49185
49186
49187 Roo.form.Action.Load = function(form, options){
49188     Roo.form.Action.Load.superclass.constructor.call(this, form, options);
49189     this.reader = this.form.reader;
49190 };
49191
49192 Roo.extend(Roo.form.Action.Load, Roo.form.Action, {
49193     type : 'load',
49194
49195     run : function(){
49196         
49197         Roo.Ajax.request(Roo.apply(
49198                 this.createCallback(), {
49199                     method:this.getMethod(),
49200                     url:this.getUrl(false),
49201                     params:this.getParams()
49202         }));
49203     },
49204
49205     success : function(response){
49206         
49207         var result = this.processResponse(response);
49208         if(result === true || !result.success || !result.data){
49209             this.failureType = Roo.form.Action.LOAD_FAILURE;
49210             this.form.afterAction(this, false);
49211             return;
49212         }
49213         this.form.clearInvalid();
49214         this.form.setValues(result.data);
49215         this.form.afterAction(this, true);
49216     },
49217
49218     handleResponse : function(response){
49219         if(this.form.reader){
49220             var rs = this.form.reader.read(response);
49221             var data = rs.records && rs.records[0] ? rs.records[0].data : null;
49222             return {
49223                 success : rs.success,
49224                 data : data
49225             };
49226         }
49227         return Roo.decode(response.responseText);
49228     }
49229 });
49230
49231 Roo.form.Action.ACTION_TYPES = {
49232     'load' : Roo.form.Action.Load,
49233     'submit' : Roo.form.Action.Submit
49234 };/*
49235  * Based on:
49236  * Ext JS Library 1.1.1
49237  * Copyright(c) 2006-2007, Ext JS, LLC.
49238  *
49239  * Originally Released Under LGPL - original licence link has changed is not relivant.
49240  *
49241  * Fork - LGPL
49242  * <script type="text/javascript">
49243  */
49244  
49245 /**
49246  * @class Roo.form.Layout
49247  * @extends Roo.Component
49248  * Creates a container for layout and rendering of fields in an {@link Roo.form.Form}.
49249  * @constructor
49250  * @param {Object} config Configuration options
49251  */
49252 Roo.form.Layout = function(config){
49253     var xitems = [];
49254     if (config.items) {
49255         xitems = config.items;
49256         delete config.items;
49257     }
49258     Roo.form.Layout.superclass.constructor.call(this, config);
49259     this.stack = [];
49260     Roo.each(xitems, this.addxtype, this);
49261      
49262 };
49263
49264 Roo.extend(Roo.form.Layout, Roo.Component, {
49265     /**
49266      * @cfg {String/Object} autoCreate
49267      * A DomHelper element spec used to autocreate the layout (defaults to {tag: 'div', cls: 'x-form-ct'})
49268      */
49269     /**
49270      * @cfg {String/Object/Function} style
49271      * A style specification string, e.g. "width:100px", or object in the form {width:"100px"}, or
49272      * a function which returns such a specification.
49273      */
49274     /**
49275      * @cfg {String} labelAlign
49276      * Valid values are "left," "top" and "right" (defaults to "left")
49277      */
49278     /**
49279      * @cfg {Number} labelWidth
49280      * Fixed width in pixels of all field labels (defaults to undefined)
49281      */
49282     /**
49283      * @cfg {Boolean} clear
49284      * True to add a clearing element at the end of this layout, equivalent to CSS clear: both (defaults to true)
49285      */
49286     clear : true,
49287     /**
49288      * @cfg {String} labelSeparator
49289      * The separator to use after field labels (defaults to ':')
49290      */
49291     labelSeparator : ':',
49292     /**
49293      * @cfg {Boolean} hideLabels
49294      * True to suppress the display of field labels in this layout (defaults to false)
49295      */
49296     hideLabels : false,
49297
49298     // private
49299     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct'},
49300     
49301     isLayout : true,
49302     
49303     // private
49304     onRender : function(ct, position){
49305         if(this.el){ // from markup
49306             this.el = Roo.get(this.el);
49307         }else {  // generate
49308             var cfg = this.getAutoCreate();
49309             this.el = ct.createChild(cfg, position);
49310         }
49311         if(this.style){
49312             this.el.applyStyles(this.style);
49313         }
49314         if(this.labelAlign){
49315             this.el.addClass('x-form-label-'+this.labelAlign);
49316         }
49317         if(this.hideLabels){
49318             this.labelStyle = "display:none";
49319             this.elementStyle = "padding-left:0;";
49320         }else{
49321             if(typeof this.labelWidth == 'number'){
49322                 this.labelStyle = "width:"+this.labelWidth+"px;";
49323                 this.elementStyle = "padding-left:"+((this.labelWidth+(typeof this.labelPad == 'number' ? this.labelPad : 5))+'px')+";";
49324             }
49325             if(this.labelAlign == 'top'){
49326                 this.labelStyle = "width:auto;";
49327                 this.elementStyle = "padding-left:0;";
49328             }
49329         }
49330         var stack = this.stack;
49331         var slen = stack.length;
49332         if(slen > 0){
49333             if(!this.fieldTpl){
49334                 var t = new Roo.Template(
49335                     '<div class="x-form-item {5}">',
49336                         '<label for="{0}" style="{2}">{1}{4}</label>',
49337                         '<div class="x-form-element" id="x-form-el-{0}" style="{3}">',
49338                         '</div>',
49339                     '</div><div class="x-form-clear-left"></div>'
49340                 );
49341                 t.disableFormats = true;
49342                 t.compile();
49343                 Roo.form.Layout.prototype.fieldTpl = t;
49344             }
49345             for(var i = 0; i < slen; i++) {
49346                 if(stack[i].isFormField){
49347                     this.renderField(stack[i]);
49348                 }else{
49349                     this.renderComponent(stack[i]);
49350                 }
49351             }
49352         }
49353         if(this.clear){
49354             this.el.createChild({cls:'x-form-clear'});
49355         }
49356     },
49357
49358     // private
49359     renderField : function(f){
49360         f.fieldEl = Roo.get(this.fieldTpl.append(this.el, [
49361                f.id, //0
49362                f.fieldLabel, //1
49363                f.labelStyle||this.labelStyle||'', //2
49364                this.elementStyle||'', //3
49365                typeof f.labelSeparator == 'undefined' ? this.labelSeparator : f.labelSeparator, //4
49366                f.itemCls||this.itemCls||''  //5
49367        ], true).getPrevSibling());
49368     },
49369
49370     // private
49371     renderComponent : function(c){
49372         c.render(c.isLayout ? this.el : this.el.createChild());    
49373     },
49374     /**
49375      * Adds a object form elements (using the xtype property as the factory method.)
49376      * Valid xtypes are:  TextField, TextArea .... Button, Layout, FieldSet, Column
49377      * @param {Object} config 
49378      */
49379     addxtype : function(o)
49380     {
49381         // create the lement.
49382         o.form = this.form;
49383         var fe = Roo.factory(o, Roo.form);
49384         this.form.allItems.push(fe);
49385         this.stack.push(fe);
49386         
49387         if (fe.isFormField) {
49388             this.form.items.add(fe);
49389         }
49390          
49391         return fe;
49392     }
49393 });
49394
49395 /**
49396  * @class Roo.form.Column
49397  * @extends Roo.form.Layout
49398  * Creates a column container for layout and rendering of fields in an {@link Roo.form.Form}.
49399  * @constructor
49400  * @param {Object} config Configuration options
49401  */
49402 Roo.form.Column = function(config){
49403     Roo.form.Column.superclass.constructor.call(this, config);
49404 };
49405
49406 Roo.extend(Roo.form.Column, Roo.form.Layout, {
49407     /**
49408      * @cfg {Number/String} width
49409      * The fixed width of the column in pixels or CSS value (defaults to "auto")
49410      */
49411     /**
49412      * @cfg {String/Object} autoCreate
49413      * A DomHelper element spec used to autocreate the column (defaults to {tag: 'div', cls: 'x-form-ct x-form-column'})
49414      */
49415
49416     // private
49417     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct x-form-column'},
49418
49419     // private
49420     onRender : function(ct, position){
49421         Roo.form.Column.superclass.onRender.call(this, ct, position);
49422         if(this.width){
49423             this.el.setWidth(this.width);
49424         }
49425     }
49426 });
49427
49428
49429 /**
49430  * @class Roo.form.Row
49431  * @extends Roo.form.Layout
49432  * Creates a row container for layout and rendering of fields in an {@link Roo.form.Form}.
49433  * @constructor
49434  * @param {Object} config Configuration options
49435  */
49436
49437  
49438 Roo.form.Row = function(config){
49439     Roo.form.Row.superclass.constructor.call(this, config);
49440 };
49441  
49442 Roo.extend(Roo.form.Row, Roo.form.Layout, {
49443       /**
49444      * @cfg {Number/String} width
49445      * The fixed width of the column in pixels or CSS value (defaults to "auto")
49446      */
49447     /**
49448      * @cfg {Number/String} height
49449      * The fixed height of the column in pixels or CSS value (defaults to "auto")
49450      */
49451     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct x-form-row'},
49452     
49453     padWidth : 20,
49454     // private
49455     onRender : function(ct, position){
49456         //console.log('row render');
49457         if(!this.rowTpl){
49458             var t = new Roo.Template(
49459                 '<div class="x-form-item {5}" style="float:left;width:{6}px">',
49460                     '<label for="{0}" style="{2}">{1}{4}</label>',
49461                     '<div class="x-form-element" id="x-form-el-{0}" style="{3}">',
49462                     '</div>',
49463                 '</div>'
49464             );
49465             t.disableFormats = true;
49466             t.compile();
49467             Roo.form.Layout.prototype.rowTpl = t;
49468         }
49469         this.fieldTpl = this.rowTpl;
49470         
49471         //console.log('lw' + this.labelWidth +', la:' + this.labelAlign);
49472         var labelWidth = 100;
49473         
49474         if ((this.labelAlign != 'top')) {
49475             if (typeof this.labelWidth == 'number') {
49476                 labelWidth = this.labelWidth
49477             }
49478             this.padWidth =  20 + labelWidth;
49479             
49480         }
49481         
49482         Roo.form.Column.superclass.onRender.call(this, ct, position);
49483         if(this.width){
49484             this.el.setWidth(this.width);
49485         }
49486         if(this.height){
49487             this.el.setHeight(this.height);
49488         }
49489     },
49490     
49491     // private
49492     renderField : function(f){
49493         f.fieldEl = this.fieldTpl.append(this.el, [
49494                f.id, f.fieldLabel,
49495                f.labelStyle||this.labelStyle||'',
49496                this.elementStyle||'',
49497                typeof f.labelSeparator == 'undefined' ? this.labelSeparator : f.labelSeparator,
49498                f.itemCls||this.itemCls||'',
49499                f.width ? f.width + this.padWidth : 160 + this.padWidth
49500        ],true);
49501     }
49502 });
49503  
49504
49505 /**
49506  * @class Roo.form.FieldSet
49507  * @extends Roo.form.Layout
49508  * Creates a fieldset container for layout and rendering of fields in an {@link Roo.form.Form}.
49509  * @constructor
49510  * @param {Object} config Configuration options
49511  */
49512 Roo.form.FieldSet = function(config){
49513     Roo.form.FieldSet.superclass.constructor.call(this, config);
49514 };
49515
49516 Roo.extend(Roo.form.FieldSet, Roo.form.Layout, {
49517     /**
49518      * @cfg {String} legend
49519      * The text to display as the legend for the FieldSet (defaults to '')
49520      */
49521     /**
49522      * @cfg {String/Object} autoCreate
49523      * A DomHelper element spec used to autocreate the fieldset (defaults to {tag: 'fieldset', cn: {tag:'legend'}})
49524      */
49525
49526     // private
49527     defaultAutoCreate : {tag: 'fieldset', cn: {tag:'legend'}},
49528
49529     // private
49530     onRender : function(ct, position){
49531         Roo.form.FieldSet.superclass.onRender.call(this, ct, position);
49532         if(this.legend){
49533             this.setLegend(this.legend);
49534         }
49535     },
49536
49537     // private
49538     setLegend : function(text){
49539         if(this.rendered){
49540             this.el.child('legend').update(text);
49541         }
49542     }
49543 });/*
49544  * Based on:
49545  * Ext JS Library 1.1.1
49546  * Copyright(c) 2006-2007, Ext JS, LLC.
49547  *
49548  * Originally Released Under LGPL - original licence link has changed is not relivant.
49549  *
49550  * Fork - LGPL
49551  * <script type="text/javascript">
49552  */
49553 /**
49554  * @class Roo.form.VTypes
49555  * Overridable validation definitions. The validations provided are basic and intended to be easily customizable and extended.
49556  * @singleton
49557  */
49558 Roo.form.VTypes = function(){
49559     // closure these in so they are only created once.
49560     var alpha = /^[a-zA-Z_]+$/;
49561     var alphanum = /^[a-zA-Z0-9_]+$/;
49562     var email = /^([\w]+)(.[\w]+)*@([\w-]+\.){1,5}([A-Za-z]){2,24}$/;
49563     var url = /(((https?)|(ftp)):\/\/([\-\w]+\.)+\w{2,3}(\/[%\-\w]+(\.\w{2,})?)*(([\w\-\.\?\\\/+@&#;`~=%!]*)(\.\w{2,})?)*\/?)/i;
49564
49565     // All these messages and functions are configurable
49566     return {
49567         /**
49568          * The function used to validate email addresses
49569          * @param {String} value The email address
49570          */
49571         'email' : function(v){
49572             return email.test(v);
49573         },
49574         /**
49575          * The error text to display when the email validation function returns false
49576          * @type String
49577          */
49578         'emailText' : 'This field should be an e-mail address in the format "user@domain.com"',
49579         /**
49580          * The keystroke filter mask to be applied on email input
49581          * @type RegExp
49582          */
49583         'emailMask' : /[a-z0-9_\.\-@]/i,
49584
49585         /**
49586          * The function used to validate URLs
49587          * @param {String} value The URL
49588          */
49589         'url' : function(v){
49590             return url.test(v);
49591         },
49592         /**
49593          * The error text to display when the url validation function returns false
49594          * @type String
49595          */
49596         'urlText' : 'This field should be a URL in the format "http:/'+'/www.domain.com"',
49597         
49598         /**
49599          * The function used to validate alpha values
49600          * @param {String} value The value
49601          */
49602         'alpha' : function(v){
49603             return alpha.test(v);
49604         },
49605         /**
49606          * The error text to display when the alpha validation function returns false
49607          * @type String
49608          */
49609         'alphaText' : 'This field should only contain letters and _',
49610         /**
49611          * The keystroke filter mask to be applied on alpha input
49612          * @type RegExp
49613          */
49614         'alphaMask' : /[a-z_]/i,
49615
49616         /**
49617          * The function used to validate alphanumeric values
49618          * @param {String} value The value
49619          */
49620         'alphanum' : function(v){
49621             return alphanum.test(v);
49622         },
49623         /**
49624          * The error text to display when the alphanumeric validation function returns false
49625          * @type String
49626          */
49627         'alphanumText' : 'This field should only contain letters, numbers and _',
49628         /**
49629          * The keystroke filter mask to be applied on alphanumeric input
49630          * @type RegExp
49631          */
49632         'alphanumMask' : /[a-z0-9_]/i
49633     };
49634 }();//<script type="text/javascript">
49635
49636 /**
49637  * @class Roo.form.FCKeditor
49638  * @extends Roo.form.TextArea
49639  * Wrapper around the FCKEditor http://www.fckeditor.net
49640  * @constructor
49641  * Creates a new FCKeditor
49642  * @param {Object} config Configuration options
49643  */
49644 Roo.form.FCKeditor = function(config){
49645     Roo.form.FCKeditor.superclass.constructor.call(this, config);
49646     this.addEvents({
49647          /**
49648          * @event editorinit
49649          * Fired when the editor is initialized - you can add extra handlers here..
49650          * @param {FCKeditor} this
49651          * @param {Object} the FCK object.
49652          */
49653         editorinit : true
49654     });
49655     
49656     
49657 };
49658 Roo.form.FCKeditor.editors = { };
49659 Roo.extend(Roo.form.FCKeditor, Roo.form.TextArea,
49660 {
49661     //defaultAutoCreate : {
49662     //    tag : "textarea",style   : "width:100px;height:60px;" ,autocomplete    : "off"
49663     //},
49664     // private
49665     /**
49666      * @cfg {Object} fck options - see fck manual for details.
49667      */
49668     fckconfig : false,
49669     
49670     /**
49671      * @cfg {Object} fck toolbar set (Basic or Default)
49672      */
49673     toolbarSet : 'Basic',
49674     /**
49675      * @cfg {Object} fck BasePath
49676      */ 
49677     basePath : '/fckeditor/',
49678     
49679     
49680     frame : false,
49681     
49682     value : '',
49683     
49684    
49685     onRender : function(ct, position)
49686     {
49687         if(!this.el){
49688             this.defaultAutoCreate = {
49689                 tag: "textarea",
49690                 style:"width:300px;height:60px;",
49691                 autocomplete: "new-password"
49692             };
49693         }
49694         Roo.form.FCKeditor.superclass.onRender.call(this, ct, position);
49695         /*
49696         if(this.grow){
49697             this.textSizeEl = Roo.DomHelper.append(document.body, {tag: "pre", cls: "x-form-grow-sizer"});
49698             if(this.preventScrollbars){
49699                 this.el.setStyle("overflow", "hidden");
49700             }
49701             this.el.setHeight(this.growMin);
49702         }
49703         */
49704         //console.log('onrender' + this.getId() );
49705         Roo.form.FCKeditor.editors[this.getId()] = this;
49706          
49707
49708         this.replaceTextarea() ;
49709         
49710     },
49711     
49712     getEditor : function() {
49713         return this.fckEditor;
49714     },
49715     /**
49716      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
49717      * @param {Mixed} value The value to set
49718      */
49719     
49720     
49721     setValue : function(value)
49722     {
49723         //console.log('setValue: ' + value);
49724         
49725         if(typeof(value) == 'undefined') { // not sure why this is happending...
49726             return;
49727         }
49728         Roo.form.FCKeditor.superclass.setValue.apply(this,[value]);
49729         
49730         //if(!this.el || !this.getEditor()) {
49731         //    this.value = value;
49732             //this.setValue.defer(100,this,[value]);    
49733         //    return;
49734         //} 
49735         
49736         if(!this.getEditor()) {
49737             return;
49738         }
49739         
49740         this.getEditor().SetData(value);
49741         
49742         //
49743
49744     },
49745
49746     /**
49747      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
49748      * @return {Mixed} value The field value
49749      */
49750     getValue : function()
49751     {
49752         
49753         if (this.frame && this.frame.dom.style.display == 'none') {
49754             return Roo.form.FCKeditor.superclass.getValue.call(this);
49755         }
49756         
49757         if(!this.el || !this.getEditor()) {
49758            
49759            // this.getValue.defer(100,this); 
49760             return this.value;
49761         }
49762        
49763         
49764         var value=this.getEditor().GetData();
49765         Roo.form.FCKeditor.superclass.setValue.apply(this,[value]);
49766         return Roo.form.FCKeditor.superclass.getValue.call(this);
49767         
49768
49769     },
49770
49771     /**
49772      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
49773      * @return {Mixed} value The field value
49774      */
49775     getRawValue : function()
49776     {
49777         if (this.frame && this.frame.dom.style.display == 'none') {
49778             return Roo.form.FCKeditor.superclass.getRawValue.call(this);
49779         }
49780         
49781         if(!this.el || !this.getEditor()) {
49782             //this.getRawValue.defer(100,this); 
49783             return this.value;
49784             return;
49785         }
49786         
49787         
49788         
49789         var value=this.getEditor().GetData();
49790         Roo.form.FCKeditor.superclass.setRawValue.apply(this,[value]);
49791         return Roo.form.FCKeditor.superclass.getRawValue.call(this);
49792          
49793     },
49794     
49795     setSize : function(w,h) {
49796         
49797         
49798         
49799         //if (this.frame && this.frame.dom.style.display == 'none') {
49800         //    Roo.form.FCKeditor.superclass.setSize.apply(this, [w, h]);
49801         //    return;
49802         //}
49803         //if(!this.el || !this.getEditor()) {
49804         //    this.setSize.defer(100,this, [w,h]); 
49805         //    return;
49806         //}
49807         
49808         
49809         
49810         Roo.form.FCKeditor.superclass.setSize.apply(this, [w, h]);
49811         
49812         this.frame.dom.setAttribute('width', w);
49813         this.frame.dom.setAttribute('height', h);
49814         this.frame.setSize(w,h);
49815         
49816     },
49817     
49818     toggleSourceEdit : function(value) {
49819         
49820       
49821          
49822         this.el.dom.style.display = value ? '' : 'none';
49823         this.frame.dom.style.display = value ?  'none' : '';
49824         
49825     },
49826     
49827     
49828     focus: function(tag)
49829     {
49830         if (this.frame.dom.style.display == 'none') {
49831             return Roo.form.FCKeditor.superclass.focus.call(this);
49832         }
49833         if(!this.el || !this.getEditor()) {
49834             this.focus.defer(100,this, [tag]); 
49835             return;
49836         }
49837         
49838         
49839         
49840         
49841         var tgs = this.getEditor().EditorDocument.getElementsByTagName(tag);
49842         this.getEditor().Focus();
49843         if (tgs.length) {
49844             if (!this.getEditor().Selection.GetSelection()) {
49845                 this.focus.defer(100,this, [tag]); 
49846                 return;
49847             }
49848             
49849             
49850             var r = this.getEditor().EditorDocument.createRange();
49851             r.setStart(tgs[0],0);
49852             r.setEnd(tgs[0],0);
49853             this.getEditor().Selection.GetSelection().removeAllRanges();
49854             this.getEditor().Selection.GetSelection().addRange(r);
49855             this.getEditor().Focus();
49856         }
49857         
49858     },
49859     
49860     
49861     
49862     replaceTextarea : function()
49863     {
49864         if ( document.getElementById( this.getId() + '___Frame' ) ) {
49865             return ;
49866         }
49867         //if ( !this.checkBrowser || this._isCompatibleBrowser() )
49868         //{
49869             // We must check the elements firstly using the Id and then the name.
49870         var oTextarea = document.getElementById( this.getId() );
49871         
49872         var colElementsByName = document.getElementsByName( this.getId() ) ;
49873          
49874         oTextarea.style.display = 'none' ;
49875
49876         if ( oTextarea.tabIndex ) {            
49877             this.TabIndex = oTextarea.tabIndex ;
49878         }
49879         
49880         this._insertHtmlBefore( this._getConfigHtml(), oTextarea ) ;
49881         this._insertHtmlBefore( this._getIFrameHtml(), oTextarea ) ;
49882         this.frame = Roo.get(this.getId() + '___Frame')
49883     },
49884     
49885     _getConfigHtml : function()
49886     {
49887         var sConfig = '' ;
49888
49889         for ( var o in this.fckconfig ) {
49890             sConfig += sConfig.length > 0  ? '&amp;' : '';
49891             sConfig += encodeURIComponent( o ) + '=' + encodeURIComponent( this.fckconfig[o] ) ;
49892         }
49893
49894         return '<input type="hidden" id="' + this.getId() + '___Config" value="' + sConfig + '" style="display:none" />' ;
49895     },
49896     
49897     
49898     _getIFrameHtml : function()
49899     {
49900         var sFile = 'fckeditor.html' ;
49901         /* no idea what this is about..
49902         try
49903         {
49904             if ( (/fcksource=true/i).test( window.top.location.search ) )
49905                 sFile = 'fckeditor.original.html' ;
49906         }
49907         catch (e) { 
49908         */
49909
49910         var sLink = this.basePath + 'editor/' + sFile + '?InstanceName=' + encodeURIComponent( this.getId() ) ;
49911         sLink += this.toolbarSet ? ( '&amp;Toolbar=' + this.toolbarSet)  : '';
49912         
49913         
49914         var html = '<iframe id="' + this.getId() +
49915             '___Frame" src="' + sLink +
49916             '" width="' + this.width +
49917             '" height="' + this.height + '"' +
49918             (this.tabIndex ?  ' tabindex="' + this.tabIndex + '"' :'' ) +
49919             ' frameborder="0" scrolling="no"></iframe>' ;
49920
49921         return html ;
49922     },
49923     
49924     _insertHtmlBefore : function( html, element )
49925     {
49926         if ( element.insertAdjacentHTML )       {
49927             // IE
49928             element.insertAdjacentHTML( 'beforeBegin', html ) ;
49929         } else { // Gecko
49930             var oRange = document.createRange() ;
49931             oRange.setStartBefore( element ) ;
49932             var oFragment = oRange.createContextualFragment( html );
49933             element.parentNode.insertBefore( oFragment, element ) ;
49934         }
49935     }
49936     
49937     
49938   
49939     
49940     
49941     
49942     
49943
49944 });
49945
49946 //Roo.reg('fckeditor', Roo.form.FCKeditor);
49947
49948 function FCKeditor_OnComplete(editorInstance){
49949     var f = Roo.form.FCKeditor.editors[editorInstance.Name];
49950     f.fckEditor = editorInstance;
49951     //console.log("loaded");
49952     f.fireEvent('editorinit', f, editorInstance);
49953
49954   
49955
49956  
49957
49958
49959
49960
49961
49962
49963
49964
49965
49966
49967
49968
49969
49970
49971
49972 //<script type="text/javascript">
49973 /**
49974  * @class Roo.form.GridField
49975  * @extends Roo.form.Field
49976  * Embed a grid (or editable grid into a form)
49977  * STATUS ALPHA
49978  * 
49979  * This embeds a grid in a form, the value of the field should be the json encoded array of rows
49980  * it needs 
49981  * xgrid.store = Roo.data.Store
49982  * xgrid.store.proxy = Roo.data.MemoryProxy (data = [] )
49983  * xgrid.store.reader = Roo.data.JsonReader 
49984  * 
49985  * 
49986  * @constructor
49987  * Creates a new GridField
49988  * @param {Object} config Configuration options
49989  */
49990 Roo.form.GridField = function(config){
49991     Roo.form.GridField.superclass.constructor.call(this, config);
49992      
49993 };
49994
49995 Roo.extend(Roo.form.GridField, Roo.form.Field,  {
49996     /**
49997      * @cfg {Number} width  - used to restrict width of grid..
49998      */
49999     width : 100,
50000     /**
50001      * @cfg {Number} height - used to restrict height of grid..
50002      */
50003     height : 50,
50004      /**
50005      * @cfg {Object} xgrid (xtype'd description of grid) { xtype : 'Grid', dataSource: .... }
50006          * 
50007          *}
50008      */
50009     xgrid : false, 
50010     /**
50011      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
50012      * {tag: "input", type: "checkbox", autocomplete: "off"})
50013      */
50014    // defaultAutoCreate : { tag: 'div' },
50015     defaultAutoCreate : { tag: 'input', type: 'hidden', autocomplete: 'new-password'},
50016     /**
50017      * @cfg {String} addTitle Text to include for adding a title.
50018      */
50019     addTitle : false,
50020     //
50021     onResize : function(){
50022         Roo.form.Field.superclass.onResize.apply(this, arguments);
50023     },
50024
50025     initEvents : function(){
50026         // Roo.form.Checkbox.superclass.initEvents.call(this);
50027         // has no events...
50028        
50029     },
50030
50031
50032     getResizeEl : function(){
50033         return this.wrap;
50034     },
50035
50036     getPositionEl : function(){
50037         return this.wrap;
50038     },
50039
50040     // private
50041     onRender : function(ct, position){
50042         
50043         this.style = this.style || 'overflow: hidden; border:1px solid #c3daf9;';
50044         var style = this.style;
50045         delete this.style;
50046         
50047         Roo.form.GridField.superclass.onRender.call(this, ct, position);
50048         this.wrap = this.el.wrap({cls: ''}); // not sure why ive done thsi...
50049         this.viewEl = this.wrap.createChild({ tag: 'div' });
50050         if (style) {
50051             this.viewEl.applyStyles(style);
50052         }
50053         if (this.width) {
50054             this.viewEl.setWidth(this.width);
50055         }
50056         if (this.height) {
50057             this.viewEl.setHeight(this.height);
50058         }
50059         //if(this.inputValue !== undefined){
50060         //this.setValue(this.value);
50061         
50062         
50063         this.grid = new Roo.grid[this.xgrid.xtype](this.viewEl, this.xgrid);
50064         
50065         
50066         this.grid.render();
50067         this.grid.getDataSource().on('remove', this.refreshValue, this);
50068         this.grid.getDataSource().on('update', this.refreshValue, this);
50069         this.grid.on('afteredit', this.refreshValue, this);
50070  
50071     },
50072      
50073     
50074     /**
50075      * Sets the value of the item. 
50076      * @param {String} either an object  or a string..
50077      */
50078     setValue : function(v){
50079         //this.value = v;
50080         v = v || []; // empty set..
50081         // this does not seem smart - it really only affects memoryproxy grids..
50082         if (this.grid && this.grid.getDataSource() && typeof(v) != 'undefined') {
50083             var ds = this.grid.getDataSource();
50084             // assumes a json reader..
50085             var data = {}
50086             data[ds.reader.meta.root ] =  typeof(v) == 'string' ? Roo.decode(v) : v;
50087             ds.loadData( data);
50088         }
50089         // clear selection so it does not get stale.
50090         if (this.grid.sm) { 
50091             this.grid.sm.clearSelections();
50092         }
50093         
50094         Roo.form.GridField.superclass.setValue.call(this, v);
50095         this.refreshValue();
50096         // should load data in the grid really....
50097     },
50098     
50099     // private
50100     refreshValue: function() {
50101          var val = [];
50102         this.grid.getDataSource().each(function(r) {
50103             val.push(r.data);
50104         });
50105         this.el.dom.value = Roo.encode(val);
50106     }
50107     
50108      
50109     
50110     
50111 });/*
50112  * Based on:
50113  * Ext JS Library 1.1.1
50114  * Copyright(c) 2006-2007, Ext JS, LLC.
50115  *
50116  * Originally Released Under LGPL - original licence link has changed is not relivant.
50117  *
50118  * Fork - LGPL
50119  * <script type="text/javascript">
50120  */
50121 /**
50122  * @class Roo.form.DisplayField
50123  * @extends Roo.form.Field
50124  * A generic Field to display non-editable data.
50125  * @cfg {Boolean} closable (true|false) default false
50126  * @constructor
50127  * Creates a new Display Field item.
50128  * @param {Object} config Configuration options
50129  */
50130 Roo.form.DisplayField = function(config){
50131     Roo.form.DisplayField.superclass.constructor.call(this, config);
50132     
50133     this.addEvents({
50134         /**
50135          * @event close
50136          * Fires after the click the close btn
50137              * @param {Roo.form.DisplayField} this
50138              */
50139         close : true
50140     });
50141 };
50142
50143 Roo.extend(Roo.form.DisplayField, Roo.form.TextField,  {
50144     inputType:      'hidden',
50145     allowBlank:     true,
50146     readOnly:         true,
50147     
50148  
50149     /**
50150      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
50151      */
50152     focusClass : undefined,
50153     /**
50154      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
50155      */
50156     fieldClass: 'x-form-field',
50157     
50158      /**
50159      * @cfg {Function} valueRenderer The renderer for the field (so you can reformat output). should return raw HTML
50160      */
50161     valueRenderer: undefined,
50162     
50163     width: 100,
50164     /**
50165      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
50166      * {tag: "input", type: "checkbox", autocomplete: "off"})
50167      */
50168      
50169  //   defaultAutoCreate : { tag: 'input', type: 'hidden', autocomplete: 'off'},
50170  
50171     closable : false,
50172     
50173     onResize : function(){
50174         Roo.form.DisplayField.superclass.onResize.apply(this, arguments);
50175         
50176     },
50177
50178     initEvents : function(){
50179         // Roo.form.Checkbox.superclass.initEvents.call(this);
50180         // has no events...
50181         
50182         if(this.closable){
50183             this.closeEl.on('click', this.onClose, this);
50184         }
50185        
50186     },
50187
50188
50189     getResizeEl : function(){
50190         return this.wrap;
50191     },
50192
50193     getPositionEl : function(){
50194         return this.wrap;
50195     },
50196
50197     // private
50198     onRender : function(ct, position){
50199         
50200         Roo.form.DisplayField.superclass.onRender.call(this, ct, position);
50201         //if(this.inputValue !== undefined){
50202         this.wrap = this.el.wrap();
50203         
50204         this.viewEl = this.wrap.createChild({ tag: 'div', cls: 'x-form-displayfield'});
50205         
50206         if(this.closable){
50207             this.closeEl = this.wrap.createChild({ tag: 'div', cls: 'x-dlg-close'});
50208         }
50209         
50210         if (this.bodyStyle) {
50211             this.viewEl.applyStyles(this.bodyStyle);
50212         }
50213         //this.viewEl.setStyle('padding', '2px');
50214         
50215         this.setValue(this.value);
50216         
50217     },
50218 /*
50219     // private
50220     initValue : Roo.emptyFn,
50221
50222   */
50223
50224         // private
50225     onClick : function(){
50226         
50227     },
50228
50229     /**
50230      * Sets the checked state of the checkbox.
50231      * @param {Boolean/String} checked True, 'true', '1', or 'on' to check the checkbox, any other value will uncheck it.
50232      */
50233     setValue : function(v){
50234         this.value = v;
50235         var html = this.valueRenderer ?  this.valueRenderer(v) : String.format('{0}', v);
50236         // this might be called before we have a dom element..
50237         if (!this.viewEl) {
50238             return;
50239         }
50240         this.viewEl.dom.innerHTML = html;
50241         Roo.form.DisplayField.superclass.setValue.call(this, v);
50242
50243     },
50244     
50245     onClose : function(e)
50246     {
50247         e.preventDefault();
50248         
50249         this.fireEvent('close', this);
50250     }
50251 });/*
50252  * 
50253  * Licence- LGPL
50254  * 
50255  */
50256
50257 /**
50258  * @class Roo.form.DayPicker
50259  * @extends Roo.form.Field
50260  * A Day picker show [M] [T] [W] ....
50261  * @constructor
50262  * Creates a new Day Picker
50263  * @param {Object} config Configuration options
50264  */
50265 Roo.form.DayPicker= function(config){
50266     Roo.form.DayPicker.superclass.constructor.call(this, config);
50267      
50268 };
50269
50270 Roo.extend(Roo.form.DayPicker, Roo.form.Field,  {
50271     /**
50272      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
50273      */
50274     focusClass : undefined,
50275     /**
50276      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
50277      */
50278     fieldClass: "x-form-field",
50279    
50280     /**
50281      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
50282      * {tag: "input", type: "checkbox", autocomplete: "off"})
50283      */
50284     defaultAutoCreate : { tag: "input", type: 'hidden', autocomplete: "new-password"},
50285     
50286    
50287     actionMode : 'viewEl', 
50288     //
50289     // private
50290  
50291     inputType : 'hidden',
50292     
50293      
50294     inputElement: false, // real input element?
50295     basedOn: false, // ????
50296     
50297     isFormField: true, // not sure where this is needed!!!!
50298
50299     onResize : function(){
50300         Roo.form.Checkbox.superclass.onResize.apply(this, arguments);
50301         if(!this.boxLabel){
50302             this.el.alignTo(this.wrap, 'c-c');
50303         }
50304     },
50305
50306     initEvents : function(){
50307         Roo.form.Checkbox.superclass.initEvents.call(this);
50308         this.el.on("click", this.onClick,  this);
50309         this.el.on("change", this.onClick,  this);
50310     },
50311
50312
50313     getResizeEl : function(){
50314         return this.wrap;
50315     },
50316
50317     getPositionEl : function(){
50318         return this.wrap;
50319     },
50320
50321     
50322     // private
50323     onRender : function(ct, position){
50324         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
50325        
50326         this.wrap = this.el.wrap({cls: 'x-form-daypick-item '});
50327         
50328         var r1 = '<table><tr>';
50329         var r2 = '<tr class="x-form-daypick-icons">';
50330         for (var i=0; i < 7; i++) {
50331             r1+= '<td><div>' + Date.dayNames[i].substring(0,3) + '</div></td>';
50332             r2+= '<td><img class="x-menu-item-icon" src="' + Roo.BLANK_IMAGE_URL  +'"></td>';
50333         }
50334         
50335         var viewEl = this.wrap.createChild( r1 + '</tr>' + r2 + '</tr></table>');
50336         viewEl.select('img').on('click', this.onClick, this);
50337         this.viewEl = viewEl;   
50338         
50339         
50340         // this will not work on Chrome!!!
50341         this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
50342         this.el.on('propertychange', this.setFromHidden,  this);  //ie
50343         
50344         
50345           
50346
50347     },
50348
50349     // private
50350     initValue : Roo.emptyFn,
50351
50352     /**
50353      * Returns the checked state of the checkbox.
50354      * @return {Boolean} True if checked, else false
50355      */
50356     getValue : function(){
50357         return this.el.dom.value;
50358         
50359     },
50360
50361         // private
50362     onClick : function(e){ 
50363         //this.setChecked(!this.checked);
50364         Roo.get(e.target).toggleClass('x-menu-item-checked');
50365         this.refreshValue();
50366         //if(this.el.dom.checked != this.checked){
50367         //    this.setValue(this.el.dom.checked);
50368        // }
50369     },
50370     
50371     // private
50372     refreshValue : function()
50373     {
50374         var val = '';
50375         this.viewEl.select('img',true).each(function(e,i,n)  {
50376             val += e.is(".x-menu-item-checked") ? String(n) : '';
50377         });
50378         this.setValue(val, true);
50379     },
50380
50381     /**
50382      * Sets the checked state of the checkbox.
50383      * On is always based on a string comparison between inputValue and the param.
50384      * @param {Boolean/String} value - the value to set 
50385      * @param {Boolean/String} suppressEvent - whether to suppress the checkchange event.
50386      */
50387     setValue : function(v,suppressEvent){
50388         if (!this.el.dom) {
50389             return;
50390         }
50391         var old = this.el.dom.value ;
50392         this.el.dom.value = v;
50393         if (suppressEvent) {
50394             return ;
50395         }
50396          
50397         // update display..
50398         this.viewEl.select('img',true).each(function(e,i,n)  {
50399             
50400             var on = e.is(".x-menu-item-checked");
50401             var newv = v.indexOf(String(n)) > -1;
50402             if (on != newv) {
50403                 e.toggleClass('x-menu-item-checked');
50404             }
50405             
50406         });
50407         
50408         
50409         this.fireEvent('change', this, v, old);
50410         
50411         
50412     },
50413    
50414     // handle setting of hidden value by some other method!!?!?
50415     setFromHidden: function()
50416     {
50417         if(!this.el){
50418             return;
50419         }
50420         //console.log("SET FROM HIDDEN");
50421         //alert('setFrom hidden');
50422         this.setValue(this.el.dom.value);
50423     },
50424     
50425     onDestroy : function()
50426     {
50427         if(this.viewEl){
50428             Roo.get(this.viewEl).remove();
50429         }
50430          
50431         Roo.form.DayPicker.superclass.onDestroy.call(this);
50432     }
50433
50434 });/*
50435  * RooJS Library 1.1.1
50436  * Copyright(c) 2008-2011  Alan Knowles
50437  *
50438  * License - LGPL
50439  */
50440  
50441
50442 /**
50443  * @class Roo.form.ComboCheck
50444  * @extends Roo.form.ComboBox
50445  * A combobox for multiple select items.
50446  *
50447  * FIXME - could do with a reset button..
50448  * 
50449  * @constructor
50450  * Create a new ComboCheck
50451  * @param {Object} config Configuration options
50452  */
50453 Roo.form.ComboCheck = function(config){
50454     Roo.form.ComboCheck.superclass.constructor.call(this, config);
50455     // should verify some data...
50456     // like
50457     // hiddenName = required..
50458     // displayField = required
50459     // valudField == required
50460     var req= [ 'hiddenName', 'displayField', 'valueField' ];
50461     var _t = this;
50462     Roo.each(req, function(e) {
50463         if ((typeof(_t[e]) == 'undefined' ) || !_t[e].length) {
50464             throw "Roo.form.ComboCheck : missing value for: " + e;
50465         }
50466     });
50467     
50468     
50469 };
50470
50471 Roo.extend(Roo.form.ComboCheck, Roo.form.ComboBox, {
50472      
50473      
50474     editable : false,
50475      
50476     selectedClass: 'x-menu-item-checked', 
50477     
50478     // private
50479     onRender : function(ct, position){
50480         var _t = this;
50481         
50482         
50483         
50484         if(!this.tpl){
50485             var cls = 'x-combo-list';
50486
50487             
50488             this.tpl =  new Roo.Template({
50489                 html :  '<div class="'+cls+'-item x-menu-check-item">' +
50490                    '<img class="x-menu-item-icon" style="margin: 0px;" src="' + Roo.BLANK_IMAGE_URL + '">' + 
50491                    '<span>{' + this.displayField + '}</span>' +
50492                     '</div>' 
50493                 
50494             });
50495         }
50496  
50497         
50498         Roo.form.ComboCheck.superclass.onRender.call(this, ct, position);
50499         this.view.singleSelect = false;
50500         this.view.multiSelect = true;
50501         this.view.toggleSelect = true;
50502         this.pageTb.add(new Roo.Toolbar.Fill(), {
50503             
50504             text: 'Done',
50505             handler: function()
50506             {
50507                 _t.collapse();
50508             }
50509         });
50510     },
50511     
50512     onViewOver : function(e, t){
50513         // do nothing...
50514         return;
50515         
50516     },
50517     
50518     onViewClick : function(doFocus,index){
50519         return;
50520         
50521     },
50522     select: function () {
50523         //Roo.log("SELECT CALLED");
50524     },
50525      
50526     selectByValue : function(xv, scrollIntoView){
50527         var ar = this.getValueArray();
50528         var sels = [];
50529         
50530         Roo.each(ar, function(v) {
50531             if(v === undefined || v === null){
50532                 return;
50533             }
50534             var r = this.findRecord(this.valueField, v);
50535             if(r){
50536                 sels.push(this.store.indexOf(r))
50537                 
50538             }
50539         },this);
50540         this.view.select(sels);
50541         return false;
50542     },
50543     
50544     
50545     
50546     onSelect : function(record, index){
50547        // Roo.log("onselect Called");
50548        // this is only called by the clear button now..
50549         this.view.clearSelections();
50550         this.setValue('[]');
50551         if (this.value != this.valueBefore) {
50552             this.fireEvent('change', this, this.value, this.valueBefore);
50553             this.valueBefore = this.value;
50554         }
50555     },
50556     getValueArray : function()
50557     {
50558         var ar = [] ;
50559         
50560         try {
50561             //Roo.log(this.value);
50562             if (typeof(this.value) == 'undefined') {
50563                 return [];
50564             }
50565             var ar = Roo.decode(this.value);
50566             return  ar instanceof Array ? ar : []; //?? valid?
50567             
50568         } catch(e) {
50569             Roo.log(e + "\nRoo.form.ComboCheck:getValueArray  invalid data:" + this.getValue());
50570             return [];
50571         }
50572          
50573     },
50574     expand : function ()
50575     {
50576         
50577         Roo.form.ComboCheck.superclass.expand.call(this);
50578         this.valueBefore = typeof(this.value) == 'undefined' ? '' : this.value;
50579         //this.valueBefore = typeof(this.valueBefore) == 'undefined' ? '' : this.valueBefore;
50580         
50581
50582     },
50583     
50584     collapse : function(){
50585         Roo.form.ComboCheck.superclass.collapse.call(this);
50586         var sl = this.view.getSelectedIndexes();
50587         var st = this.store;
50588         var nv = [];
50589         var tv = [];
50590         var r;
50591         Roo.each(sl, function(i) {
50592             r = st.getAt(i);
50593             nv.push(r.get(this.valueField));
50594         },this);
50595         this.setValue(Roo.encode(nv));
50596         if (this.value != this.valueBefore) {
50597
50598             this.fireEvent('change', this, this.value, this.valueBefore);
50599             this.valueBefore = this.value;
50600         }
50601         
50602     },
50603     
50604     setValue : function(v){
50605         // Roo.log(v);
50606         this.value = v;
50607         
50608         var vals = this.getValueArray();
50609         var tv = [];
50610         Roo.each(vals, function(k) {
50611             var r = this.findRecord(this.valueField, k);
50612             if(r){
50613                 tv.push(r.data[this.displayField]);
50614             }else if(this.valueNotFoundText !== undefined){
50615                 tv.push( this.valueNotFoundText );
50616             }
50617         },this);
50618        // Roo.log(tv);
50619         
50620         Roo.form.ComboBox.superclass.setValue.call(this, tv.join(', '));
50621         this.hiddenField.value = v;
50622         this.value = v;
50623     }
50624     
50625 });/*
50626  * Based on:
50627  * Ext JS Library 1.1.1
50628  * Copyright(c) 2006-2007, Ext JS, LLC.
50629  *
50630  * Originally Released Under LGPL - original licence link has changed is not relivant.
50631  *
50632  * Fork - LGPL
50633  * <script type="text/javascript">
50634  */
50635  
50636 /**
50637  * @class Roo.form.Signature
50638  * @extends Roo.form.Field
50639  * Signature field.  
50640  * @constructor
50641  * 
50642  * @param {Object} config Configuration options
50643  */
50644
50645 Roo.form.Signature = function(config){
50646     Roo.form.Signature.superclass.constructor.call(this, config);
50647     
50648     this.addEvents({// not in used??
50649          /**
50650          * @event confirm
50651          * Fires when the 'confirm' icon is pressed (add a listener to enable add button)
50652              * @param {Roo.form.Signature} combo This combo box
50653              */
50654         'confirm' : true,
50655         /**
50656          * @event reset
50657          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
50658              * @param {Roo.form.ComboBox} combo This combo box
50659              * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
50660              */
50661         'reset' : true
50662     });
50663 };
50664
50665 Roo.extend(Roo.form.Signature, Roo.form.Field,  {
50666     /**
50667      * @cfg {Object} labels Label to use when rendering a form.
50668      * defaults to 
50669      * labels : { 
50670      *      clear : "Clear",
50671      *      confirm : "Confirm"
50672      *  }
50673      */
50674     labels : { 
50675         clear : "Clear",
50676         confirm : "Confirm"
50677     },
50678     /**
50679      * @cfg {Number} width The signature panel width (defaults to 300)
50680      */
50681     width: 300,
50682     /**
50683      * @cfg {Number} height The signature panel height (defaults to 100)
50684      */
50685     height : 100,
50686     /**
50687      * @cfg {Boolean} allowBlank False to validate that the value length > 0 (defaults to false)
50688      */
50689     allowBlank : false,
50690     
50691     //private
50692     // {Object} signPanel The signature SVG panel element (defaults to {})
50693     signPanel : {},
50694     // {Boolean} isMouseDown False to validate that the mouse down event (defaults to false)
50695     isMouseDown : false,
50696     // {Boolean} isConfirmed validate the signature is confirmed or not for submitting form (defaults to false)
50697     isConfirmed : false,
50698     // {String} signatureTmp SVG mapping string (defaults to empty string)
50699     signatureTmp : '',
50700     
50701     
50702     defaultAutoCreate : { // modified by initCompnoent..
50703         tag: "input",
50704         type:"hidden"
50705     },
50706
50707     // private
50708     onRender : function(ct, position){
50709         
50710         Roo.form.Signature.superclass.onRender.call(this, ct, position);
50711         
50712         this.wrap = this.el.wrap({
50713             cls:'x-form-signature-wrap', style : 'width: ' + this.width + 'px', cn:{cls:'x-form-signature'}
50714         });
50715         
50716         this.createToolbar(this);
50717         this.signPanel = this.wrap.createChild({
50718                 tag: 'div',
50719                 style: 'width: ' + this.width + 'px; height: ' + this.height + 'px; border: 0;'
50720             }, this.el
50721         );
50722             
50723         this.svgID = Roo.id();
50724         this.svgEl = this.signPanel.createChild({
50725               xmlns : 'http://www.w3.org/2000/svg',
50726               tag : 'svg',
50727               id : this.svgID + "-svg",
50728               width: this.width,
50729               height: this.height,
50730               viewBox: '0 0 '+this.width+' '+this.height,
50731               cn : [
50732                 {
50733                     tag: "rect",
50734                     id: this.svgID + "-svg-r",
50735                     width: this.width,
50736                     height: this.height,
50737                     fill: "#ffa"
50738                 },
50739                 {
50740                     tag: "line",
50741                     id: this.svgID + "-svg-l",
50742                     x1: "0", // start
50743                     y1: (this.height*0.8), // start set the line in 80% of height
50744                     x2: this.width, // end
50745                     y2: (this.height*0.8), // end set the line in 80% of height
50746                     'stroke': "#666",
50747                     'stroke-width': "1",
50748                     'stroke-dasharray': "3",
50749                     'shape-rendering': "crispEdges",
50750                     'pointer-events': "none"
50751                 },
50752                 {
50753                     tag: "path",
50754                     id: this.svgID + "-svg-p",
50755                     'stroke': "navy",
50756                     'stroke-width': "3",
50757                     'fill': "none",
50758                     'pointer-events': 'none'
50759                 }
50760               ]
50761         });
50762         this.createSVG();
50763         this.svgBox = this.svgEl.dom.getScreenCTM();
50764     },
50765     createSVG : function(){ 
50766         var svg = this.signPanel;
50767         var r = svg.select('#'+ this.svgID + '-svg-r', true).first().dom;
50768         var t = this;
50769
50770         r.addEventListener('mousedown', function(e) { return t.down(e); }, false);
50771         r.addEventListener('mousemove', function(e) { return t.move(e); }, false);
50772         r.addEventListener('mouseup', function(e) { return t.up(e); }, false);
50773         r.addEventListener('mouseout', function(e) { return t.up(e); }, false);
50774         r.addEventListener('touchstart', function(e) { return t.down(e); }, false);
50775         r.addEventListener('touchmove', function(e) { return t.move(e); }, false);
50776         r.addEventListener('touchend', function(e) { return t.up(e); }, false);
50777         
50778     },
50779     isTouchEvent : function(e){
50780         return e.type.match(/^touch/);
50781     },
50782     getCoords : function (e) {
50783         var pt    = this.svgEl.dom.createSVGPoint();
50784         pt.x = e.clientX; 
50785         pt.y = e.clientY;
50786         if (this.isTouchEvent(e)) {
50787             pt.x =  e.targetTouches[0].clientX;
50788             pt.y = e.targetTouches[0].clientY;
50789         }
50790         var a = this.svgEl.dom.getScreenCTM();
50791         var b = a.inverse();
50792         var mx = pt.matrixTransform(b);
50793         return mx.x + ',' + mx.y;
50794     },
50795     //mouse event headler 
50796     down : function (e) {
50797         this.signatureTmp += 'M' + this.getCoords(e) + ' ';
50798         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr('d', this.signatureTmp);
50799         
50800         this.isMouseDown = true;
50801         
50802         e.preventDefault();
50803     },
50804     move : function (e) {
50805         if (this.isMouseDown) {
50806             this.signatureTmp += 'L' + this.getCoords(e) + ' ';
50807             this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', this.signatureTmp);
50808         }
50809         
50810         e.preventDefault();
50811     },
50812     up : function (e) {
50813         this.isMouseDown = false;
50814         var sp = this.signatureTmp.split(' ');
50815         
50816         if(sp.length > 1){
50817             if(!sp[sp.length-2].match(/^L/)){
50818                 sp.pop();
50819                 sp.pop();
50820                 sp.push("");
50821                 this.signatureTmp = sp.join(" ");
50822             }
50823         }
50824         if(this.getValue() != this.signatureTmp){
50825             this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
50826             this.isConfirmed = false;
50827         }
50828         e.preventDefault();
50829     },
50830     
50831     /**
50832      * Protected method that will not generally be called directly. It
50833      * is called when the editor creates its toolbar. Override this method if you need to
50834      * add custom toolbar buttons.
50835      * @param {HtmlEditor} editor
50836      */
50837     createToolbar : function(editor){
50838          function btn(id, toggle, handler){
50839             var xid = fid + '-'+ id ;
50840             return {
50841                 id : xid,
50842                 cmd : id,
50843                 cls : 'x-btn-icon x-edit-'+id,
50844                 enableToggle:toggle !== false,
50845                 scope: editor, // was editor...
50846                 handler:handler||editor.relayBtnCmd,
50847                 clickEvent:'mousedown',
50848                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
50849                 tabIndex:-1
50850             };
50851         }
50852         
50853         
50854         var tb = new Roo.Toolbar(editor.wrap.dom.firstChild);
50855         this.tb = tb;
50856         this.tb.add(
50857            {
50858                 cls : ' x-signature-btn x-signature-'+id,
50859                 scope: editor, // was editor...
50860                 handler: this.reset,
50861                 clickEvent:'mousedown',
50862                 text: this.labels.clear
50863             },
50864             {
50865                  xtype : 'Fill',
50866                  xns: Roo.Toolbar
50867             }, 
50868             {
50869                 cls : '  x-signature-btn x-signature-'+id,
50870                 scope: editor, // was editor...
50871                 handler: this.confirmHandler,
50872                 clickEvent:'mousedown',
50873                 text: this.labels.confirm
50874             }
50875         );
50876     
50877     },
50878     //public
50879     /**
50880      * when user is clicked confirm then show this image.....
50881      * 
50882      * @return {String} Image Data URI
50883      */
50884     getImageDataURI : function(){
50885         var svg = this.svgEl.dom.parentNode.innerHTML;
50886         var src = 'data:image/svg+xml;base64,'+window.btoa(svg);
50887         return src; 
50888     },
50889     /**
50890      * 
50891      * @return {Boolean} this.isConfirmed
50892      */
50893     getConfirmed : function(){
50894         return this.isConfirmed;
50895     },
50896     /**
50897      * 
50898      * @return {Number} this.width
50899      */
50900     getWidth : function(){
50901         return this.width;
50902     },
50903     /**
50904      * 
50905      * @return {Number} this.height
50906      */
50907     getHeight : function(){
50908         return this.height;
50909     },
50910     // private
50911     getSignature : function(){
50912         return this.signatureTmp;
50913     },
50914     // private
50915     reset : function(){
50916         this.signatureTmp = '';
50917         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
50918         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', '');
50919         this.isConfirmed = false;
50920         Roo.form.Signature.superclass.reset.call(this);
50921     },
50922     setSignature : function(s){
50923         this.signatureTmp = s;
50924         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
50925         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', s);
50926         this.setValue(s);
50927         this.isConfirmed = false;
50928         Roo.form.Signature.superclass.reset.call(this);
50929     }, 
50930     test : function(){
50931 //        Roo.log(this.signPanel.dom.contentWindow.up())
50932     },
50933     //private
50934     setConfirmed : function(){
50935         
50936         
50937         
50938 //        Roo.log(Roo.get(this.signPanel.dom.contentWindow.r).attr('fill', '#cfc'));
50939     },
50940     // private
50941     confirmHandler : function(){
50942         if(!this.getSignature()){
50943             return;
50944         }
50945         
50946         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#cfc');
50947         this.setValue(this.getSignature());
50948         this.isConfirmed = true;
50949         
50950         this.fireEvent('confirm', this);
50951     },
50952     // private
50953     // Subclasses should provide the validation implementation by overriding this
50954     validateValue : function(value){
50955         if(this.allowBlank){
50956             return true;
50957         }
50958         
50959         if(this.isConfirmed){
50960             return true;
50961         }
50962         return false;
50963     }
50964 });/*
50965  * Based on:
50966  * Ext JS Library 1.1.1
50967  * Copyright(c) 2006-2007, Ext JS, LLC.
50968  *
50969  * Originally Released Under LGPL - original licence link has changed is not relivant.
50970  *
50971  * Fork - LGPL
50972  * <script type="text/javascript">
50973  */
50974  
50975
50976 /**
50977  * @class Roo.form.ComboBox
50978  * @extends Roo.form.TriggerField
50979  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
50980  * @constructor
50981  * Create a new ComboBox.
50982  * @param {Object} config Configuration options
50983  */
50984 Roo.form.Select = function(config){
50985     Roo.form.Select.superclass.constructor.call(this, config);
50986      
50987 };
50988
50989 Roo.extend(Roo.form.Select , Roo.form.ComboBox, {
50990     /**
50991      * @cfg {String/HTMLElement/Element} transform The id, DOM node or element of an existing select to convert to a ComboBox
50992      */
50993     /**
50994      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
50995      * rendering into an Roo.Editor, defaults to false)
50996      */
50997     /**
50998      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
50999      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
51000      */
51001     /**
51002      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
51003      */
51004     /**
51005      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
51006      * the dropdown list (defaults to undefined, with no header element)
51007      */
51008
51009      /**
51010      * @cfg {String/Roo.Template} tpl The template to use to render the output
51011      */
51012      
51013     // private
51014     defaultAutoCreate : {tag: "select"  },
51015     /**
51016      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
51017      */
51018     listWidth: undefined,
51019     /**
51020      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
51021      * mode = 'remote' or 'text' if mode = 'local')
51022      */
51023     displayField: undefined,
51024     /**
51025      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
51026      * mode = 'remote' or 'value' if mode = 'local'). 
51027      * Note: use of a valueField requires the user make a selection
51028      * in order for a value to be mapped.
51029      */
51030     valueField: undefined,
51031     
51032     
51033     /**
51034      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
51035      * field's data value (defaults to the underlying DOM element's name)
51036      */
51037     hiddenName: undefined,
51038     /**
51039      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
51040      */
51041     listClass: '',
51042     /**
51043      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
51044      */
51045     selectedClass: 'x-combo-selected',
51046     /**
51047      * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
51048      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-arrow-trigger'
51049      * which displays a downward arrow icon).
51050      */
51051     triggerClass : 'x-form-arrow-trigger',
51052     /**
51053      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
51054      */
51055     shadow:'sides',
51056     /**
51057      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
51058      * anchor positions (defaults to 'tl-bl')
51059      */
51060     listAlign: 'tl-bl?',
51061     /**
51062      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
51063      */
51064     maxHeight: 300,
51065     /**
51066      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
51067      * query specified by the allQuery config option (defaults to 'query')
51068      */
51069     triggerAction: 'query',
51070     /**
51071      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
51072      * (defaults to 4, does not apply if editable = false)
51073      */
51074     minChars : 4,
51075     /**
51076      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
51077      * delay (typeAheadDelay) if it matches a known value (defaults to false)
51078      */
51079     typeAhead: false,
51080     /**
51081      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
51082      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
51083      */
51084     queryDelay: 500,
51085     /**
51086      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
51087      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
51088      */
51089     pageSize: 0,
51090     /**
51091      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
51092      * when editable = true (defaults to false)
51093      */
51094     selectOnFocus:false,
51095     /**
51096      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
51097      */
51098     queryParam: 'query',
51099     /**
51100      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
51101      * when mode = 'remote' (defaults to 'Loading...')
51102      */
51103     loadingText: 'Loading...',
51104     /**
51105      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
51106      */
51107     resizable: false,
51108     /**
51109      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
51110      */
51111     handleHeight : 8,
51112     /**
51113      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
51114      * traditional select (defaults to true)
51115      */
51116     editable: true,
51117     /**
51118      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
51119      */
51120     allQuery: '',
51121     /**
51122      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
51123      */
51124     mode: 'remote',
51125     /**
51126      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
51127      * listWidth has a higher value)
51128      */
51129     minListWidth : 70,
51130     /**
51131      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
51132      * allow the user to set arbitrary text into the field (defaults to false)
51133      */
51134     forceSelection:false,
51135     /**
51136      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
51137      * if typeAhead = true (defaults to 250)
51138      */
51139     typeAheadDelay : 250,
51140     /**
51141      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
51142      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
51143      */
51144     valueNotFoundText : undefined,
51145     
51146     /**
51147      * @cfg {String} defaultValue The value displayed after loading the store.
51148      */
51149     defaultValue: '',
51150     
51151     /**
51152      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
51153      */
51154     blockFocus : false,
51155     
51156     /**
51157      * @cfg {Boolean} disableClear Disable showing of clear button.
51158      */
51159     disableClear : false,
51160     /**
51161      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
51162      */
51163     alwaysQuery : false,
51164     
51165     //private
51166     addicon : false,
51167     editicon: false,
51168     
51169     // element that contains real text value.. (when hidden is used..)
51170      
51171     // private
51172     onRender : function(ct, position){
51173         Roo.form.Field.prototype.onRender.call(this, ct, position);
51174         
51175         if(this.store){
51176             this.store.on('beforeload', this.onBeforeLoad, this);
51177             this.store.on('load', this.onLoad, this);
51178             this.store.on('loadexception', this.onLoadException, this);
51179             this.store.load({});
51180         }
51181         
51182         
51183         
51184     },
51185
51186     // private
51187     initEvents : function(){
51188         //Roo.form.ComboBox.superclass.initEvents.call(this);
51189  
51190     },
51191
51192     onDestroy : function(){
51193        
51194         if(this.store){
51195             this.store.un('beforeload', this.onBeforeLoad, this);
51196             this.store.un('load', this.onLoad, this);
51197             this.store.un('loadexception', this.onLoadException, this);
51198         }
51199         //Roo.form.ComboBox.superclass.onDestroy.call(this);
51200     },
51201
51202     // private
51203     fireKey : function(e){
51204         if(e.isNavKeyPress() && !this.list.isVisible()){
51205             this.fireEvent("specialkey", this, e);
51206         }
51207     },
51208
51209     // private
51210     onResize: function(w, h){
51211         
51212         return; 
51213     
51214         
51215     },
51216
51217     /**
51218      * Allow or prevent the user from directly editing the field text.  If false is passed,
51219      * the user will only be able to select from the items defined in the dropdown list.  This method
51220      * is the runtime equivalent of setting the 'editable' config option at config time.
51221      * @param {Boolean} value True to allow the user to directly edit the field text
51222      */
51223     setEditable : function(value){
51224          
51225     },
51226
51227     // private
51228     onBeforeLoad : function(){
51229         
51230         Roo.log("Select before load");
51231         return;
51232     
51233         this.innerList.update(this.loadingText ?
51234                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
51235         //this.restrictHeight();
51236         this.selectedIndex = -1;
51237     },
51238
51239     // private
51240     onLoad : function(){
51241
51242     
51243         var dom = this.el.dom;
51244         dom.innerHTML = '';
51245          var od = dom.ownerDocument;
51246          
51247         if (this.emptyText) {
51248             var op = od.createElement('option');
51249             op.setAttribute('value', '');
51250             op.innerHTML = String.format('{0}', this.emptyText);
51251             dom.appendChild(op);
51252         }
51253         if(this.store.getCount() > 0){
51254            
51255             var vf = this.valueField;
51256             var df = this.displayField;
51257             this.store.data.each(function(r) {
51258                 // which colmsn to use... testing - cdoe / title..
51259                 var op = od.createElement('option');
51260                 op.setAttribute('value', r.data[vf]);
51261                 op.innerHTML = String.format('{0}', r.data[df]);
51262                 dom.appendChild(op);
51263             });
51264             if (typeof(this.defaultValue != 'undefined')) {
51265                 this.setValue(this.defaultValue);
51266             }
51267             
51268              
51269         }else{
51270             //this.onEmptyResults();
51271         }
51272         //this.el.focus();
51273     },
51274     // private
51275     onLoadException : function()
51276     {
51277         dom.innerHTML = '';
51278             
51279         Roo.log("Select on load exception");
51280         return;
51281     
51282         this.collapse();
51283         Roo.log(this.store.reader.jsonData);
51284         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
51285             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
51286         }
51287         
51288         
51289     },
51290     // private
51291     onTypeAhead : function(){
51292          
51293     },
51294
51295     // private
51296     onSelect : function(record, index){
51297         Roo.log('on select?');
51298         return;
51299         if(this.fireEvent('beforeselect', this, record, index) !== false){
51300             this.setFromData(index > -1 ? record.data : false);
51301             this.collapse();
51302             this.fireEvent('select', this, record, index);
51303         }
51304     },
51305
51306     /**
51307      * Returns the currently selected field value or empty string if no value is set.
51308      * @return {String} value The selected value
51309      */
51310     getValue : function(){
51311         var dom = this.el.dom;
51312         this.value = dom.options[dom.selectedIndex].value;
51313         return this.value;
51314         
51315     },
51316
51317     /**
51318      * Clears any text/value currently set in the field
51319      */
51320     clearValue : function(){
51321         this.value = '';
51322         this.el.dom.selectedIndex = this.emptyText ? 0 : -1;
51323         
51324     },
51325
51326     /**
51327      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
51328      * will be displayed in the field.  If the value does not match the data value of an existing item,
51329      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
51330      * Otherwise the field will be blank (although the value will still be set).
51331      * @param {String} value The value to match
51332      */
51333     setValue : function(v){
51334         var d = this.el.dom;
51335         for (var i =0; i < d.options.length;i++) {
51336             if (v == d.options[i].value) {
51337                 d.selectedIndex = i;
51338                 this.value = v;
51339                 return;
51340             }
51341         }
51342         this.clearValue();
51343     },
51344     /**
51345      * @property {Object} the last set data for the element
51346      */
51347     
51348     lastData : false,
51349     /**
51350      * Sets the value of the field based on a object which is related to the record format for the store.
51351      * @param {Object} value the value to set as. or false on reset?
51352      */
51353     setFromData : function(o){
51354         Roo.log('setfrom data?');
51355          
51356         
51357         
51358     },
51359     // private
51360     reset : function(){
51361         this.clearValue();
51362     },
51363     // private
51364     findRecord : function(prop, value){
51365         
51366         return false;
51367     
51368         var record;
51369         if(this.store.getCount() > 0){
51370             this.store.each(function(r){
51371                 if(r.data[prop] == value){
51372                     record = r;
51373                     return false;
51374                 }
51375                 return true;
51376             });
51377         }
51378         return record;
51379     },
51380     
51381     getName: function()
51382     {
51383         // returns hidden if it's set..
51384         if (!this.rendered) {return ''};
51385         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
51386         
51387     },
51388      
51389
51390     
51391
51392     // private
51393     onEmptyResults : function(){
51394         Roo.log('empty results');
51395         //this.collapse();
51396     },
51397
51398     /**
51399      * Returns true if the dropdown list is expanded, else false.
51400      */
51401     isExpanded : function(){
51402         return false;
51403     },
51404
51405     /**
51406      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
51407      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
51408      * @param {String} value The data value of the item to select
51409      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
51410      * selected item if it is not currently in view (defaults to true)
51411      * @return {Boolean} True if the value matched an item in the list, else false
51412      */
51413     selectByValue : function(v, scrollIntoView){
51414         Roo.log('select By Value');
51415         return false;
51416     
51417         if(v !== undefined && v !== null){
51418             var r = this.findRecord(this.valueField || this.displayField, v);
51419             if(r){
51420                 this.select(this.store.indexOf(r), scrollIntoView);
51421                 return true;
51422             }
51423         }
51424         return false;
51425     },
51426
51427     /**
51428      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
51429      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
51430      * @param {Number} index The zero-based index of the list item to select
51431      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
51432      * selected item if it is not currently in view (defaults to true)
51433      */
51434     select : function(index, scrollIntoView){
51435         Roo.log('select ');
51436         return  ;
51437         
51438         this.selectedIndex = index;
51439         this.view.select(index);
51440         if(scrollIntoView !== false){
51441             var el = this.view.getNode(index);
51442             if(el){
51443                 this.innerList.scrollChildIntoView(el, false);
51444             }
51445         }
51446     },
51447
51448       
51449
51450     // private
51451     validateBlur : function(){
51452         
51453         return;
51454         
51455     },
51456
51457     // private
51458     initQuery : function(){
51459         this.doQuery(this.getRawValue());
51460     },
51461
51462     // private
51463     doForce : function(){
51464         if(this.el.dom.value.length > 0){
51465             this.el.dom.value =
51466                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
51467              
51468         }
51469     },
51470
51471     /**
51472      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
51473      * query allowing the query action to be canceled if needed.
51474      * @param {String} query The SQL query to execute
51475      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
51476      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
51477      * saved in the current store (defaults to false)
51478      */
51479     doQuery : function(q, forceAll){
51480         
51481         Roo.log('doQuery?');
51482         if(q === undefined || q === null){
51483             q = '';
51484         }
51485         var qe = {
51486             query: q,
51487             forceAll: forceAll,
51488             combo: this,
51489             cancel:false
51490         };
51491         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
51492             return false;
51493         }
51494         q = qe.query;
51495         forceAll = qe.forceAll;
51496         if(forceAll === true || (q.length >= this.minChars)){
51497             if(this.lastQuery != q || this.alwaysQuery){
51498                 this.lastQuery = q;
51499                 if(this.mode == 'local'){
51500                     this.selectedIndex = -1;
51501                     if(forceAll){
51502                         this.store.clearFilter();
51503                     }else{
51504                         this.store.filter(this.displayField, q);
51505                     }
51506                     this.onLoad();
51507                 }else{
51508                     this.store.baseParams[this.queryParam] = q;
51509                     this.store.load({
51510                         params: this.getParams(q)
51511                     });
51512                     this.expand();
51513                 }
51514             }else{
51515                 this.selectedIndex = -1;
51516                 this.onLoad();   
51517             }
51518         }
51519     },
51520
51521     // private
51522     getParams : function(q){
51523         var p = {};
51524         //p[this.queryParam] = q;
51525         if(this.pageSize){
51526             p.start = 0;
51527             p.limit = this.pageSize;
51528         }
51529         return p;
51530     },
51531
51532     /**
51533      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
51534      */
51535     collapse : function(){
51536         
51537     },
51538
51539     // private
51540     collapseIf : function(e){
51541         
51542     },
51543
51544     /**
51545      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
51546      */
51547     expand : function(){
51548         
51549     } ,
51550
51551     // private
51552      
51553
51554     /** 
51555     * @cfg {Boolean} grow 
51556     * @hide 
51557     */
51558     /** 
51559     * @cfg {Number} growMin 
51560     * @hide 
51561     */
51562     /** 
51563     * @cfg {Number} growMax 
51564     * @hide 
51565     */
51566     /**
51567      * @hide
51568      * @method autoSize
51569      */
51570     
51571     setWidth : function()
51572     {
51573         
51574     },
51575     getResizeEl : function(){
51576         return this.el;
51577     }
51578 });//<script type="text/javasscript">
51579  
51580
51581 /**
51582  * @class Roo.DDView
51583  * A DnD enabled version of Roo.View.
51584  * @param {Element/String} container The Element in which to create the View.
51585  * @param {String} tpl The template string used to create the markup for each element of the View
51586  * @param {Object} config The configuration properties. These include all the config options of
51587  * {@link Roo.View} plus some specific to this class.<br>
51588  * <p>
51589  * Drag/drop is implemented by adding {@link Roo.data.Record}s to the target DDView. If copying is
51590  * not being performed, the original {@link Roo.data.Record} is removed from the source DDView.<br>
51591  * <p>
51592  * The following extra CSS rules are needed to provide insertion point highlighting:<pre><code>
51593 .x-view-drag-insert-above {
51594         border-top:1px dotted #3366cc;
51595 }
51596 .x-view-drag-insert-below {
51597         border-bottom:1px dotted #3366cc;
51598 }
51599 </code></pre>
51600  * 
51601  */
51602  
51603 Roo.DDView = function(container, tpl, config) {
51604     Roo.DDView.superclass.constructor.apply(this, arguments);
51605     this.getEl().setStyle("outline", "0px none");
51606     this.getEl().unselectable();
51607     if (this.dragGroup) {
51608         this.setDraggable(this.dragGroup.split(","));
51609     }
51610     if (this.dropGroup) {
51611         this.setDroppable(this.dropGroup.split(","));
51612     }
51613     if (this.deletable) {
51614         this.setDeletable();
51615     }
51616     this.isDirtyFlag = false;
51617         this.addEvents({
51618                 "drop" : true
51619         });
51620 };
51621
51622 Roo.extend(Roo.DDView, Roo.View, {
51623 /**     @cfg {String/Array} dragGroup The ddgroup name(s) for the View's DragZone. */
51624 /**     @cfg {String/Array} dropGroup The ddgroup name(s) for the View's DropZone. */
51625 /**     @cfg {Boolean} copy Causes drag operations to copy nodes rather than move. */
51626 /**     @cfg {Boolean} allowCopy Causes ctrl/drag operations to copy nodes rather than move. */
51627
51628         isFormField: true,
51629
51630         reset: Roo.emptyFn,
51631         
51632         clearInvalid: Roo.form.Field.prototype.clearInvalid,
51633
51634         validate: function() {
51635                 return true;
51636         },
51637         
51638         destroy: function() {
51639                 this.purgeListeners();
51640                 this.getEl.removeAllListeners();
51641                 this.getEl().remove();
51642                 if (this.dragZone) {
51643                         if (this.dragZone.destroy) {
51644                                 this.dragZone.destroy();
51645                         }
51646                 }
51647                 if (this.dropZone) {
51648                         if (this.dropZone.destroy) {
51649                                 this.dropZone.destroy();
51650                         }
51651                 }
51652         },
51653
51654 /**     Allows this class to be an Roo.form.Field so it can be found using {@link Roo.form.BasicForm#findField}. */
51655         getName: function() {
51656                 return this.name;
51657         },
51658
51659 /**     Loads the View from a JSON string representing the Records to put into the Store. */
51660         setValue: function(v) {
51661                 if (!this.store) {
51662                         throw "DDView.setValue(). DDView must be constructed with a valid Store";
51663                 }
51664                 var data = {};
51665                 data[this.store.reader.meta.root] = v ? [].concat(v) : [];
51666                 this.store.proxy = new Roo.data.MemoryProxy(data);
51667                 this.store.load();
51668         },
51669
51670 /**     @return {String} a parenthesised list of the ids of the Records in the View. */
51671         getValue: function() {
51672                 var result = '(';
51673                 this.store.each(function(rec) {
51674                         result += rec.id + ',';
51675                 });
51676                 return result.substr(0, result.length - 1) + ')';
51677         },
51678         
51679         getIds: function() {
51680                 var i = 0, result = new Array(this.store.getCount());
51681                 this.store.each(function(rec) {
51682                         result[i++] = rec.id;
51683                 });
51684                 return result;
51685         },
51686         
51687         isDirty: function() {
51688                 return this.isDirtyFlag;
51689         },
51690
51691 /**
51692  *      Part of the Roo.dd.DropZone interface. If no target node is found, the
51693  *      whole Element becomes the target, and this causes the drop gesture to append.
51694  */
51695     getTargetFromEvent : function(e) {
51696                 var target = e.getTarget();
51697                 while ((target !== null) && (target.parentNode != this.el.dom)) {
51698                 target = target.parentNode;
51699                 }
51700                 if (!target) {
51701                         target = this.el.dom.lastChild || this.el.dom;
51702                 }
51703                 return target;
51704     },
51705
51706 /**
51707  *      Create the drag data which consists of an object which has the property "ddel" as
51708  *      the drag proxy element. 
51709  */
51710     getDragData : function(e) {
51711         var target = this.findItemFromChild(e.getTarget());
51712                 if(target) {
51713                         this.handleSelection(e);
51714                         var selNodes = this.getSelectedNodes();
51715             var dragData = {
51716                 source: this,
51717                 copy: this.copy || (this.allowCopy && e.ctrlKey),
51718                 nodes: selNodes,
51719                 records: []
51720                         };
51721                         var selectedIndices = this.getSelectedIndexes();
51722                         for (var i = 0; i < selectedIndices.length; i++) {
51723                                 dragData.records.push(this.store.getAt(selectedIndices[i]));
51724                         }
51725                         if (selNodes.length == 1) {
51726                                 dragData.ddel = target.cloneNode(true); // the div element
51727                         } else {
51728                                 var div = document.createElement('div'); // create the multi element drag "ghost"
51729                                 div.className = 'multi-proxy';
51730                                 for (var i = 0, len = selNodes.length; i < len; i++) {
51731                                         div.appendChild(selNodes[i].cloneNode(true));
51732                                 }
51733                                 dragData.ddel = div;
51734                         }
51735             //console.log(dragData)
51736             //console.log(dragData.ddel.innerHTML)
51737                         return dragData;
51738                 }
51739         //console.log('nodragData')
51740                 return false;
51741     },
51742     
51743 /**     Specify to which ddGroup items in this DDView may be dragged. */
51744     setDraggable: function(ddGroup) {
51745         if (ddGroup instanceof Array) {
51746                 Roo.each(ddGroup, this.setDraggable, this);
51747                 return;
51748         }
51749         if (this.dragZone) {
51750                 this.dragZone.addToGroup(ddGroup);
51751         } else {
51752                         this.dragZone = new Roo.dd.DragZone(this.getEl(), {
51753                                 containerScroll: true,
51754                                 ddGroup: ddGroup 
51755
51756                         });
51757 //                      Draggability implies selection. DragZone's mousedown selects the element.
51758                         if (!this.multiSelect) { this.singleSelect = true; }
51759
51760 //                      Wire the DragZone's handlers up to methods in *this*
51761                         this.dragZone.getDragData = this.getDragData.createDelegate(this);
51762                 }
51763     },
51764
51765 /**     Specify from which ddGroup this DDView accepts drops. */
51766     setDroppable: function(ddGroup) {
51767         if (ddGroup instanceof Array) {
51768                 Roo.each(ddGroup, this.setDroppable, this);
51769                 return;
51770         }
51771         if (this.dropZone) {
51772                 this.dropZone.addToGroup(ddGroup);
51773         } else {
51774                         this.dropZone = new Roo.dd.DropZone(this.getEl(), {
51775                                 containerScroll: true,
51776                                 ddGroup: ddGroup
51777                         });
51778
51779 //                      Wire the DropZone's handlers up to methods in *this*
51780                         this.dropZone.getTargetFromEvent = this.getTargetFromEvent.createDelegate(this);
51781                         this.dropZone.onNodeEnter = this.onNodeEnter.createDelegate(this);
51782                         this.dropZone.onNodeOver = this.onNodeOver.createDelegate(this);
51783                         this.dropZone.onNodeOut = this.onNodeOut.createDelegate(this);
51784                         this.dropZone.onNodeDrop = this.onNodeDrop.createDelegate(this);
51785                 }
51786     },
51787
51788 /**     Decide whether to drop above or below a View node. */
51789     getDropPoint : function(e, n, dd){
51790         if (n == this.el.dom) { return "above"; }
51791                 var t = Roo.lib.Dom.getY(n), b = t + n.offsetHeight;
51792                 var c = t + (b - t) / 2;
51793                 var y = Roo.lib.Event.getPageY(e);
51794                 if(y <= c) {
51795                         return "above";
51796                 }else{
51797                         return "below";
51798                 }
51799     },
51800
51801     onNodeEnter : function(n, dd, e, data){
51802                 return false;
51803     },
51804     
51805     onNodeOver : function(n, dd, e, data){
51806                 var pt = this.getDropPoint(e, n, dd);
51807                 // set the insert point style on the target node
51808                 var dragElClass = this.dropNotAllowed;
51809                 if (pt) {
51810                         var targetElClass;
51811                         if (pt == "above"){
51812                                 dragElClass = n.previousSibling ? "x-tree-drop-ok-between" : "x-tree-drop-ok-above";
51813                                 targetElClass = "x-view-drag-insert-above";
51814                         } else {
51815                                 dragElClass = n.nextSibling ? "x-tree-drop-ok-between" : "x-tree-drop-ok-below";
51816                                 targetElClass = "x-view-drag-insert-below";
51817                         }
51818                         if (this.lastInsertClass != targetElClass){
51819                                 Roo.fly(n).replaceClass(this.lastInsertClass, targetElClass);
51820                                 this.lastInsertClass = targetElClass;
51821                         }
51822                 }
51823                 return dragElClass;
51824         },
51825
51826     onNodeOut : function(n, dd, e, data){
51827                 this.removeDropIndicators(n);
51828     },
51829
51830     onNodeDrop : function(n, dd, e, data){
51831         if (this.fireEvent("drop", this, n, dd, e, data) === false) {
51832                 return false;
51833         }
51834         var pt = this.getDropPoint(e, n, dd);
51835                 var insertAt = (n == this.el.dom) ? this.nodes.length : n.nodeIndex;
51836                 if (pt == "below") { insertAt++; }
51837                 for (var i = 0; i < data.records.length; i++) {
51838                         var r = data.records[i];
51839                         var dup = this.store.getById(r.id);
51840                         if (dup && (dd != this.dragZone)) {
51841                                 Roo.fly(this.getNode(this.store.indexOf(dup))).frame("red", 1);
51842                         } else {
51843                                 if (data.copy) {
51844                                         this.store.insert(insertAt++, r.copy());
51845                                 } else {
51846                                         data.source.isDirtyFlag = true;
51847                                         r.store.remove(r);
51848                                         this.store.insert(insertAt++, r);
51849                                 }
51850                                 this.isDirtyFlag = true;
51851                         }
51852                 }
51853                 this.dragZone.cachedTarget = null;
51854                 return true;
51855     },
51856
51857     removeDropIndicators : function(n){
51858                 if(n){
51859                         Roo.fly(n).removeClass([
51860                                 "x-view-drag-insert-above",
51861                                 "x-view-drag-insert-below"]);
51862                         this.lastInsertClass = "_noclass";
51863                 }
51864     },
51865
51866 /**
51867  *      Utility method. Add a delete option to the DDView's context menu.
51868  *      @param {String} imageUrl The URL of the "delete" icon image.
51869  */
51870         setDeletable: function(imageUrl) {
51871                 if (!this.singleSelect && !this.multiSelect) {
51872                         this.singleSelect = true;
51873                 }
51874                 var c = this.getContextMenu();
51875                 this.contextMenu.on("itemclick", function(item) {
51876                         switch (item.id) {
51877                                 case "delete":
51878                                         this.remove(this.getSelectedIndexes());
51879                                         break;
51880                         }
51881                 }, this);
51882                 this.contextMenu.add({
51883                         icon: imageUrl,
51884                         id: "delete",
51885                         text: 'Delete'
51886                 });
51887         },
51888         
51889 /**     Return the context menu for this DDView. */
51890         getContextMenu: function() {
51891                 if (!this.contextMenu) {
51892 //                      Create the View's context menu
51893                         this.contextMenu = new Roo.menu.Menu({
51894                                 id: this.id + "-contextmenu"
51895                         });
51896                         this.el.on("contextmenu", this.showContextMenu, this);
51897                 }
51898                 return this.contextMenu;
51899         },
51900         
51901         disableContextMenu: function() {
51902                 if (this.contextMenu) {
51903                         this.el.un("contextmenu", this.showContextMenu, this);
51904                 }
51905         },
51906
51907         showContextMenu: function(e, item) {
51908         item = this.findItemFromChild(e.getTarget());
51909                 if (item) {
51910                         e.stopEvent();
51911                         this.select(this.getNode(item), this.multiSelect && e.ctrlKey, true);
51912                         this.contextMenu.showAt(e.getXY());
51913             }
51914     },
51915
51916 /**
51917  *      Remove {@link Roo.data.Record}s at the specified indices.
51918  *      @param {Array/Number} selectedIndices The index (or Array of indices) of Records to remove.
51919  */
51920     remove: function(selectedIndices) {
51921                 selectedIndices = [].concat(selectedIndices);
51922                 for (var i = 0; i < selectedIndices.length; i++) {
51923                         var rec = this.store.getAt(selectedIndices[i]);
51924                         this.store.remove(rec);
51925                 }
51926     },
51927
51928 /**
51929  *      Double click fires the event, but also, if this is draggable, and there is only one other
51930  *      related DropZone, it transfers the selected node.
51931  */
51932     onDblClick : function(e){
51933         var item = this.findItemFromChild(e.getTarget());
51934         if(item){
51935             if (this.fireEvent("dblclick", this, this.indexOf(item), item, e) === false) {
51936                 return false;
51937             }
51938             if (this.dragGroup) {
51939                     var targets = Roo.dd.DragDropMgr.getRelated(this.dragZone, true);
51940                     while (targets.indexOf(this.dropZone) > -1) {
51941                             targets.remove(this.dropZone);
51942                                 }
51943                     if (targets.length == 1) {
51944                                         this.dragZone.cachedTarget = null;
51945                         var el = Roo.get(targets[0].getEl());
51946                         var box = el.getBox(true);
51947                         targets[0].onNodeDrop(el.dom, {
51948                                 target: el.dom,
51949                                 xy: [box.x, box.y + box.height - 1]
51950                         }, null, this.getDragData(e));
51951                     }
51952                 }
51953         }
51954     },
51955     
51956     handleSelection: function(e) {
51957                 this.dragZone.cachedTarget = null;
51958         var item = this.findItemFromChild(e.getTarget());
51959         if (!item) {
51960                 this.clearSelections(true);
51961                 return;
51962         }
51963                 if (item && (this.multiSelect || this.singleSelect)){
51964                         if(this.multiSelect && e.shiftKey && (!e.ctrlKey) && this.lastSelection){
51965                                 this.select(this.getNodes(this.indexOf(this.lastSelection), item.nodeIndex), false);
51966                         }else if (this.isSelected(this.getNode(item)) && e.ctrlKey){
51967                                 this.unselect(item);
51968                         } else {
51969                                 this.select(item, this.multiSelect && e.ctrlKey);
51970                                 this.lastSelection = item;
51971                         }
51972                 }
51973     },
51974
51975     onItemClick : function(item, index, e){
51976                 if(this.fireEvent("beforeclick", this, index, item, e) === false){
51977                         return false;
51978                 }
51979                 return true;
51980     },
51981
51982     unselect : function(nodeInfo, suppressEvent){
51983                 var node = this.getNode(nodeInfo);
51984                 if(node && this.isSelected(node)){
51985                         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
51986                                 Roo.fly(node).removeClass(this.selectedClass);
51987                                 this.selections.remove(node);
51988                                 if(!suppressEvent){
51989                                         this.fireEvent("selectionchange", this, this.selections);
51990                                 }
51991                         }
51992                 }
51993     }
51994 });
51995 /*
51996  * Based on:
51997  * Ext JS Library 1.1.1
51998  * Copyright(c) 2006-2007, Ext JS, LLC.
51999  *
52000  * Originally Released Under LGPL - original licence link has changed is not relivant.
52001  *
52002  * Fork - LGPL
52003  * <script type="text/javascript">
52004  */
52005  
52006 /**
52007  * @class Roo.LayoutManager
52008  * @extends Roo.util.Observable
52009  * Base class for layout managers.
52010  */
52011 Roo.LayoutManager = function(container, config){
52012     Roo.LayoutManager.superclass.constructor.call(this);
52013     this.el = Roo.get(container);
52014     // ie scrollbar fix
52015     if(this.el.dom == document.body && Roo.isIE && !config.allowScroll){
52016         document.body.scroll = "no";
52017     }else if(this.el.dom != document.body && this.el.getStyle('position') == 'static'){
52018         this.el.position('relative');
52019     }
52020     this.id = this.el.id;
52021     this.el.addClass("x-layout-container");
52022     /** false to disable window resize monitoring @type Boolean */
52023     this.monitorWindowResize = true;
52024     this.regions = {};
52025     this.addEvents({
52026         /**
52027          * @event layout
52028          * Fires when a layout is performed. 
52029          * @param {Roo.LayoutManager} this
52030          */
52031         "layout" : true,
52032         /**
52033          * @event regionresized
52034          * Fires when the user resizes a region. 
52035          * @param {Roo.LayoutRegion} region The resized region
52036          * @param {Number} newSize The new size (width for east/west, height for north/south)
52037          */
52038         "regionresized" : true,
52039         /**
52040          * @event regioncollapsed
52041          * Fires when a region is collapsed. 
52042          * @param {Roo.LayoutRegion} region The collapsed region
52043          */
52044         "regioncollapsed" : true,
52045         /**
52046          * @event regionexpanded
52047          * Fires when a region is expanded.  
52048          * @param {Roo.LayoutRegion} region The expanded region
52049          */
52050         "regionexpanded" : true
52051     });
52052     this.updating = false;
52053     Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
52054 };
52055
52056 Roo.extend(Roo.LayoutManager, Roo.util.Observable, {
52057     /**
52058      * Returns true if this layout is currently being updated
52059      * @return {Boolean}
52060      */
52061     isUpdating : function(){
52062         return this.updating; 
52063     },
52064     
52065     /**
52066      * Suspend the LayoutManager from doing auto-layouts while
52067      * making multiple add or remove calls
52068      */
52069     beginUpdate : function(){
52070         this.updating = true;    
52071     },
52072     
52073     /**
52074      * Restore auto-layouts and optionally disable the manager from performing a layout
52075      * @param {Boolean} noLayout true to disable a layout update 
52076      */
52077     endUpdate : function(noLayout){
52078         this.updating = false;
52079         if(!noLayout){
52080             this.layout();
52081         }    
52082     },
52083     
52084     layout: function(){
52085         
52086     },
52087     
52088     onRegionResized : function(region, newSize){
52089         this.fireEvent("regionresized", region, newSize);
52090         this.layout();
52091     },
52092     
52093     onRegionCollapsed : function(region){
52094         this.fireEvent("regioncollapsed", region);
52095     },
52096     
52097     onRegionExpanded : function(region){
52098         this.fireEvent("regionexpanded", region);
52099     },
52100         
52101     /**
52102      * Returns the size of the current view. This method normalizes document.body and element embedded layouts and
52103      * performs box-model adjustments.
52104      * @return {Object} The size as an object {width: (the width), height: (the height)}
52105      */
52106     getViewSize : function(){
52107         var size;
52108         if(this.el.dom != document.body){
52109             size = this.el.getSize();
52110         }else{
52111             size = {width: Roo.lib.Dom.getViewWidth(), height: Roo.lib.Dom.getViewHeight()};
52112         }
52113         size.width -= this.el.getBorderWidth("lr")-this.el.getPadding("lr");
52114         size.height -= this.el.getBorderWidth("tb")-this.el.getPadding("tb");
52115         return size;
52116     },
52117     
52118     /**
52119      * Returns the Element this layout is bound to.
52120      * @return {Roo.Element}
52121      */
52122     getEl : function(){
52123         return this.el;
52124     },
52125     
52126     /**
52127      * Returns the specified region.
52128      * @param {String} target The region key ('center', 'north', 'south', 'east' or 'west')
52129      * @return {Roo.LayoutRegion}
52130      */
52131     getRegion : function(target){
52132         return this.regions[target.toLowerCase()];
52133     },
52134     
52135     onWindowResize : function(){
52136         if(this.monitorWindowResize){
52137             this.layout();
52138         }
52139     }
52140 });/*
52141  * Based on:
52142  * Ext JS Library 1.1.1
52143  * Copyright(c) 2006-2007, Ext JS, LLC.
52144  *
52145  * Originally Released Under LGPL - original licence link has changed is not relivant.
52146  *
52147  * Fork - LGPL
52148  * <script type="text/javascript">
52149  */
52150 /**
52151  * @class Roo.BorderLayout
52152  * @extends Roo.LayoutManager
52153  * This class represents a common layout manager used in desktop applications. For screenshots and more details,
52154  * please see: <br><br>
52155  * <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>
52156  * <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>
52157  * Example:
52158  <pre><code>
52159  var layout = new Roo.BorderLayout(document.body, {
52160     north: {
52161         initialSize: 25,
52162         titlebar: false
52163     },
52164     west: {
52165         split:true,
52166         initialSize: 200,
52167         minSize: 175,
52168         maxSize: 400,
52169         titlebar: true,
52170         collapsible: true
52171     },
52172     east: {
52173         split:true,
52174         initialSize: 202,
52175         minSize: 175,
52176         maxSize: 400,
52177         titlebar: true,
52178         collapsible: true
52179     },
52180     south: {
52181         split:true,
52182         initialSize: 100,
52183         minSize: 100,
52184         maxSize: 200,
52185         titlebar: true,
52186         collapsible: true
52187     },
52188     center: {
52189         titlebar: true,
52190         autoScroll:true,
52191         resizeTabs: true,
52192         minTabWidth: 50,
52193         preferredTabWidth: 150
52194     }
52195 });
52196
52197 // shorthand
52198 var CP = Roo.ContentPanel;
52199
52200 layout.beginUpdate();
52201 layout.add("north", new CP("north", "North"));
52202 layout.add("south", new CP("south", {title: "South", closable: true}));
52203 layout.add("west", new CP("west", {title: "West"}));
52204 layout.add("east", new CP("autoTabs", {title: "Auto Tabs", closable: true}));
52205 layout.add("center", new CP("center1", {title: "Close Me", closable: true}));
52206 layout.add("center", new CP("center2", {title: "Center Panel", closable: false}));
52207 layout.getRegion("center").showPanel("center1");
52208 layout.endUpdate();
52209 </code></pre>
52210
52211 <b>The container the layout is rendered into can be either the body element or any other element.
52212 If it is not the body element, the container needs to either be an absolute positioned element,
52213 or you will need to add "position:relative" to the css of the container.  You will also need to specify
52214 the container size if it is not the body element.</b>
52215
52216 * @constructor
52217 * Create a new BorderLayout
52218 * @param {String/HTMLElement/Element} container The container this layout is bound to
52219 * @param {Object} config Configuration options
52220  */
52221 Roo.BorderLayout = function(container, config){
52222     config = config || {};
52223     Roo.BorderLayout.superclass.constructor.call(this, container, config);
52224     this.factory = config.factory || Roo.BorderLayout.RegionFactory;
52225     for(var i = 0, len = this.factory.validRegions.length; i < len; i++) {
52226         var target = this.factory.validRegions[i];
52227         if(config[target]){
52228             this.addRegion(target, config[target]);
52229         }
52230     }
52231 };
52232
52233 Roo.extend(Roo.BorderLayout, Roo.LayoutManager, {
52234     /**
52235      * Creates and adds a new region if it doesn't already exist.
52236      * @param {String} target The target region key (north, south, east, west or center).
52237      * @param {Object} config The regions config object
52238      * @return {BorderLayoutRegion} The new region
52239      */
52240     addRegion : function(target, config){
52241         if(!this.regions[target]){
52242             var r = this.factory.create(target, this, config);
52243             this.bindRegion(target, r);
52244         }
52245         return this.regions[target];
52246     },
52247
52248     // private (kinda)
52249     bindRegion : function(name, r){
52250         this.regions[name] = r;
52251         r.on("visibilitychange", this.layout, this);
52252         r.on("paneladded", this.layout, this);
52253         r.on("panelremoved", this.layout, this);
52254         r.on("invalidated", this.layout, this);
52255         r.on("resized", this.onRegionResized, this);
52256         r.on("collapsed", this.onRegionCollapsed, this);
52257         r.on("expanded", this.onRegionExpanded, this);
52258     },
52259
52260     /**
52261      * Performs a layout update.
52262      */
52263     layout : function(){
52264         if(this.updating) {
52265             return;
52266         }
52267         var size = this.getViewSize();
52268         var w = size.width;
52269         var h = size.height;
52270         var centerW = w;
52271         var centerH = h;
52272         var centerY = 0;
52273         var centerX = 0;
52274         //var x = 0, y = 0;
52275
52276         var rs = this.regions;
52277         var north = rs["north"];
52278         var south = rs["south"]; 
52279         var west = rs["west"];
52280         var east = rs["east"];
52281         var center = rs["center"];
52282         //if(this.hideOnLayout){ // not supported anymore
52283             //c.el.setStyle("display", "none");
52284         //}
52285         if(north && north.isVisible()){
52286             var b = north.getBox();
52287             var m = north.getMargins();
52288             b.width = w - (m.left+m.right);
52289             b.x = m.left;
52290             b.y = m.top;
52291             centerY = b.height + b.y + m.bottom;
52292             centerH -= centerY;
52293             north.updateBox(this.safeBox(b));
52294         }
52295         if(south && south.isVisible()){
52296             var b = south.getBox();
52297             var m = south.getMargins();
52298             b.width = w - (m.left+m.right);
52299             b.x = m.left;
52300             var totalHeight = (b.height + m.top + m.bottom);
52301             b.y = h - totalHeight + m.top;
52302             centerH -= totalHeight;
52303             south.updateBox(this.safeBox(b));
52304         }
52305         if(west && west.isVisible()){
52306             var b = west.getBox();
52307             var m = west.getMargins();
52308             b.height = centerH - (m.top+m.bottom);
52309             b.x = m.left;
52310             b.y = centerY + m.top;
52311             var totalWidth = (b.width + m.left + m.right);
52312             centerX += totalWidth;
52313             centerW -= totalWidth;
52314             west.updateBox(this.safeBox(b));
52315         }
52316         if(east && east.isVisible()){
52317             var b = east.getBox();
52318             var m = east.getMargins();
52319             b.height = centerH - (m.top+m.bottom);
52320             var totalWidth = (b.width + m.left + m.right);
52321             b.x = w - totalWidth + m.left;
52322             b.y = centerY + m.top;
52323             centerW -= totalWidth;
52324             east.updateBox(this.safeBox(b));
52325         }
52326         if(center){
52327             var m = center.getMargins();
52328             var centerBox = {
52329                 x: centerX + m.left,
52330                 y: centerY + m.top,
52331                 width: centerW - (m.left+m.right),
52332                 height: centerH - (m.top+m.bottom)
52333             };
52334             //if(this.hideOnLayout){
52335                 //center.el.setStyle("display", "block");
52336             //}
52337             center.updateBox(this.safeBox(centerBox));
52338         }
52339         this.el.repaint();
52340         this.fireEvent("layout", this);
52341     },
52342
52343     // private
52344     safeBox : function(box){
52345         box.width = Math.max(0, box.width);
52346         box.height = Math.max(0, box.height);
52347         return box;
52348     },
52349
52350     /**
52351      * Adds a ContentPanel (or subclass) to this layout.
52352      * @param {String} target The target region key (north, south, east, west or center).
52353      * @param {Roo.ContentPanel} panel The panel to add
52354      * @return {Roo.ContentPanel} The added panel
52355      */
52356     add : function(target, panel){
52357          
52358         target = target.toLowerCase();
52359         return this.regions[target].add(panel);
52360     },
52361
52362     /**
52363      * Remove a ContentPanel (or subclass) to this layout.
52364      * @param {String} target The target region key (north, south, east, west or center).
52365      * @param {Number/String/Roo.ContentPanel} panel The index, id or panel to remove
52366      * @return {Roo.ContentPanel} The removed panel
52367      */
52368     remove : function(target, panel){
52369         target = target.toLowerCase();
52370         return this.regions[target].remove(panel);
52371     },
52372
52373     /**
52374      * Searches all regions for a panel with the specified id
52375      * @param {String} panelId
52376      * @return {Roo.ContentPanel} The panel or null if it wasn't found
52377      */
52378     findPanel : function(panelId){
52379         var rs = this.regions;
52380         for(var target in rs){
52381             if(typeof rs[target] != "function"){
52382                 var p = rs[target].getPanel(panelId);
52383                 if(p){
52384                     return p;
52385                 }
52386             }
52387         }
52388         return null;
52389     },
52390
52391     /**
52392      * Searches all regions for a panel with the specified id and activates (shows) it.
52393      * @param {String/ContentPanel} panelId The panels id or the panel itself
52394      * @return {Roo.ContentPanel} The shown panel or null
52395      */
52396     showPanel : function(panelId) {
52397       var rs = this.regions;
52398       for(var target in rs){
52399          var r = rs[target];
52400          if(typeof r != "function"){
52401             if(r.hasPanel(panelId)){
52402                return r.showPanel(panelId);
52403             }
52404          }
52405       }
52406       return null;
52407    },
52408
52409    /**
52410      * Restores this layout's state using Roo.state.Manager or the state provided by the passed provider.
52411      * @param {Roo.state.Provider} provider (optional) An alternate state provider
52412      */
52413     restoreState : function(provider){
52414         if(!provider){
52415             provider = Roo.state.Manager;
52416         }
52417         var sm = new Roo.LayoutStateManager();
52418         sm.init(this, provider);
52419     },
52420
52421     /**
52422      * Adds a batch of multiple ContentPanels dynamically by passing a special regions config object.  This config
52423      * object should contain properties for each region to add ContentPanels to, and each property's value should be
52424      * a valid ContentPanel config object.  Example:
52425      * <pre><code>
52426 // Create the main layout
52427 var layout = new Roo.BorderLayout('main-ct', {
52428     west: {
52429         split:true,
52430         minSize: 175,
52431         titlebar: true
52432     },
52433     center: {
52434         title:'Components'
52435     }
52436 }, 'main-ct');
52437
52438 // Create and add multiple ContentPanels at once via configs
52439 layout.batchAdd({
52440    west: {
52441        id: 'source-files',
52442        autoCreate:true,
52443        title:'Ext Source Files',
52444        autoScroll:true,
52445        fitToFrame:true
52446    },
52447    center : {
52448        el: cview,
52449        autoScroll:true,
52450        fitToFrame:true,
52451        toolbar: tb,
52452        resizeEl:'cbody'
52453    }
52454 });
52455 </code></pre>
52456      * @param {Object} regions An object containing ContentPanel configs by region name
52457      */
52458     batchAdd : function(regions){
52459         this.beginUpdate();
52460         for(var rname in regions){
52461             var lr = this.regions[rname];
52462             if(lr){
52463                 this.addTypedPanels(lr, regions[rname]);
52464             }
52465         }
52466         this.endUpdate();
52467     },
52468
52469     // private
52470     addTypedPanels : function(lr, ps){
52471         if(typeof ps == 'string'){
52472             lr.add(new Roo.ContentPanel(ps));
52473         }
52474         else if(ps instanceof Array){
52475             for(var i =0, len = ps.length; i < len; i++){
52476                 this.addTypedPanels(lr, ps[i]);
52477             }
52478         }
52479         else if(!ps.events){ // raw config?
52480             var el = ps.el;
52481             delete ps.el; // prevent conflict
52482             lr.add(new Roo.ContentPanel(el || Roo.id(), ps));
52483         }
52484         else {  // panel object assumed!
52485             lr.add(ps);
52486         }
52487     },
52488     /**
52489      * Adds a xtype elements to the layout.
52490      * <pre><code>
52491
52492 layout.addxtype({
52493        xtype : 'ContentPanel',
52494        region: 'west',
52495        items: [ .... ]
52496    }
52497 );
52498
52499 layout.addxtype({
52500         xtype : 'NestedLayoutPanel',
52501         region: 'west',
52502         layout: {
52503            center: { },
52504            west: { }   
52505         },
52506         items : [ ... list of content panels or nested layout panels.. ]
52507    }
52508 );
52509 </code></pre>
52510      * @param {Object} cfg Xtype definition of item to add.
52511      */
52512     addxtype : function(cfg)
52513     {
52514         // basically accepts a pannel...
52515         // can accept a layout region..!?!?
52516         //Roo.log('Roo.BorderLayout add ' + cfg.xtype)
52517         
52518         if (!cfg.xtype.match(/Panel$/)) {
52519             return false;
52520         }
52521         var ret = false;
52522         
52523         if (typeof(cfg.region) == 'undefined') {
52524             Roo.log("Failed to add Panel, region was not set");
52525             Roo.log(cfg);
52526             return false;
52527         }
52528         var region = cfg.region;
52529         delete cfg.region;
52530         
52531           
52532         var xitems = [];
52533         if (cfg.items) {
52534             xitems = cfg.items;
52535             delete cfg.items;
52536         }
52537         var nb = false;
52538         
52539         switch(cfg.xtype) 
52540         {
52541             case 'ContentPanel':  // ContentPanel (el, cfg)
52542             case 'ScrollPanel':  // ContentPanel (el, cfg)
52543             case 'ViewPanel': 
52544                 if(cfg.autoCreate) {
52545                     ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
52546                 } else {
52547                     var el = this.el.createChild();
52548                     ret = new Roo[cfg.xtype](el, cfg); // new panel!!!!!
52549                 }
52550                 
52551                 this.add(region, ret);
52552                 break;
52553             
52554             
52555             case 'TreePanel': // our new panel!
52556                 cfg.el = this.el.createChild();
52557                 ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
52558                 this.add(region, ret);
52559                 break;
52560             
52561             case 'NestedLayoutPanel': 
52562                 // create a new Layout (which is  a Border Layout...
52563                 var el = this.el.createChild();
52564                 var clayout = cfg.layout;
52565                 delete cfg.layout;
52566                 clayout.items   = clayout.items  || [];
52567                 // replace this exitems with the clayout ones..
52568                 xitems = clayout.items;
52569                  
52570                 
52571                 if (region == 'center' && this.active && this.getRegion('center').panels.length < 1) {
52572                     cfg.background = false;
52573                 }
52574                 var layout = new Roo.BorderLayout(el, clayout);
52575                 
52576                 ret = new Roo[cfg.xtype](layout, cfg); // new panel!!!!!
52577                 //console.log('adding nested layout panel '  + cfg.toSource());
52578                 this.add(region, ret);
52579                 nb = {}; /// find first...
52580                 break;
52581                 
52582             case 'GridPanel': 
52583             
52584                 // needs grid and region
52585                 
52586                 //var el = this.getRegion(region).el.createChild();
52587                 var el = this.el.createChild();
52588                 // create the grid first...
52589                 
52590                 var grid = new Roo.grid[cfg.grid.xtype](el, cfg.grid);
52591                 delete cfg.grid;
52592                 if (region == 'center' && this.active ) {
52593                     cfg.background = false;
52594                 }
52595                 ret = new Roo[cfg.xtype](grid, cfg); // new panel!!!!!
52596                 
52597                 this.add(region, ret);
52598                 if (cfg.background) {
52599                     ret.on('activate', function(gp) {
52600                         if (!gp.grid.rendered) {
52601                             gp.grid.render();
52602                         }
52603                     });
52604                 } else {
52605                     grid.render();
52606                 }
52607                 break;
52608            
52609            
52610            
52611                 
52612                 
52613                 
52614             default:
52615                 if (typeof(Roo[cfg.xtype]) != 'undefined') {
52616                     
52617                     ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
52618                     this.add(region, ret);
52619                 } else {
52620                 
52621                     alert("Can not add '" + cfg.xtype + "' to BorderLayout");
52622                     return null;
52623                 }
52624                 
52625              // GridPanel (grid, cfg)
52626             
52627         }
52628         this.beginUpdate();
52629         // add children..
52630         var region = '';
52631         var abn = {};
52632         Roo.each(xitems, function(i)  {
52633             region = nb && i.region ? i.region : false;
52634             
52635             var add = ret.addxtype(i);
52636            
52637             if (region) {
52638                 nb[region] = nb[region] == undefined ? 0 : nb[region]+1;
52639                 if (!i.background) {
52640                     abn[region] = nb[region] ;
52641                 }
52642             }
52643             
52644         });
52645         this.endUpdate();
52646
52647         // make the last non-background panel active..
52648         //if (nb) { Roo.log(abn); }
52649         if (nb) {
52650             
52651             for(var r in abn) {
52652                 region = this.getRegion(r);
52653                 if (region) {
52654                     // tried using nb[r], but it does not work..
52655                      
52656                     region.showPanel(abn[r]);
52657                    
52658                 }
52659             }
52660         }
52661         return ret;
52662         
52663     }
52664 });
52665
52666 /**
52667  * Shortcut for creating a new BorderLayout object and adding one or more ContentPanels to it in a single step, handling
52668  * the beginUpdate and endUpdate calls internally.  The key to this method is the <b>panels</b> property that can be
52669  * provided with each region config, which allows you to add ContentPanel configs in addition to the region configs
52670  * during creation.  The following code is equivalent to the constructor-based example at the beginning of this class:
52671  * <pre><code>
52672 // shorthand
52673 var CP = Roo.ContentPanel;
52674
52675 var layout = Roo.BorderLayout.create({
52676     north: {
52677         initialSize: 25,
52678         titlebar: false,
52679         panels: [new CP("north", "North")]
52680     },
52681     west: {
52682         split:true,
52683         initialSize: 200,
52684         minSize: 175,
52685         maxSize: 400,
52686         titlebar: true,
52687         collapsible: true,
52688         panels: [new CP("west", {title: "West"})]
52689     },
52690     east: {
52691         split:true,
52692         initialSize: 202,
52693         minSize: 175,
52694         maxSize: 400,
52695         titlebar: true,
52696         collapsible: true,
52697         panels: [new CP("autoTabs", {title: "Auto Tabs", closable: true})]
52698     },
52699     south: {
52700         split:true,
52701         initialSize: 100,
52702         minSize: 100,
52703         maxSize: 200,
52704         titlebar: true,
52705         collapsible: true,
52706         panels: [new CP("south", {title: "South", closable: true})]
52707     },
52708     center: {
52709         titlebar: true,
52710         autoScroll:true,
52711         resizeTabs: true,
52712         minTabWidth: 50,
52713         preferredTabWidth: 150,
52714         panels: [
52715             new CP("center1", {title: "Close Me", closable: true}),
52716             new CP("center2", {title: "Center Panel", closable: false})
52717         ]
52718     }
52719 }, document.body);
52720
52721 layout.getRegion("center").showPanel("center1");
52722 </code></pre>
52723  * @param config
52724  * @param targetEl
52725  */
52726 Roo.BorderLayout.create = function(config, targetEl){
52727     var layout = new Roo.BorderLayout(targetEl || document.body, config);
52728     layout.beginUpdate();
52729     var regions = Roo.BorderLayout.RegionFactory.validRegions;
52730     for(var j = 0, jlen = regions.length; j < jlen; j++){
52731         var lr = regions[j];
52732         if(layout.regions[lr] && config[lr].panels){
52733             var r = layout.regions[lr];
52734             var ps = config[lr].panels;
52735             layout.addTypedPanels(r, ps);
52736         }
52737     }
52738     layout.endUpdate();
52739     return layout;
52740 };
52741
52742 // private
52743 Roo.BorderLayout.RegionFactory = {
52744     // private
52745     validRegions : ["north","south","east","west","center"],
52746
52747     // private
52748     create : function(target, mgr, config){
52749         target = target.toLowerCase();
52750         if(config.lightweight || config.basic){
52751             return new Roo.BasicLayoutRegion(mgr, config, target);
52752         }
52753         switch(target){
52754             case "north":
52755                 return new Roo.NorthLayoutRegion(mgr, config);
52756             case "south":
52757                 return new Roo.SouthLayoutRegion(mgr, config);
52758             case "east":
52759                 return new Roo.EastLayoutRegion(mgr, config);
52760             case "west":
52761                 return new Roo.WestLayoutRegion(mgr, config);
52762             case "center":
52763                 return new Roo.CenterLayoutRegion(mgr, config);
52764         }
52765         throw 'Layout region "'+target+'" not supported.';
52766     }
52767 };/*
52768  * Based on:
52769  * Ext JS Library 1.1.1
52770  * Copyright(c) 2006-2007, Ext JS, LLC.
52771  *
52772  * Originally Released Under LGPL - original licence link has changed is not relivant.
52773  *
52774  * Fork - LGPL
52775  * <script type="text/javascript">
52776  */
52777  
52778 /**
52779  * @class Roo.BasicLayoutRegion
52780  * @extends Roo.util.Observable
52781  * This class represents a lightweight region in a layout manager. This region does not move dom nodes
52782  * and does not have a titlebar, tabs or any other features. All it does is size and position 
52783  * panels. To create a BasicLayoutRegion, add lightweight:true or basic:true to your regions config.
52784  */
52785 Roo.BasicLayoutRegion = function(mgr, config, pos, skipConfig){
52786     this.mgr = mgr;
52787     this.position  = pos;
52788     this.events = {
52789         /**
52790          * @scope Roo.BasicLayoutRegion
52791          */
52792         
52793         /**
52794          * @event beforeremove
52795          * Fires before a panel is removed (or closed). To cancel the removal set "e.cancel = true" on the event argument.
52796          * @param {Roo.LayoutRegion} this
52797          * @param {Roo.ContentPanel} panel The panel
52798          * @param {Object} e The cancel event object
52799          */
52800         "beforeremove" : true,
52801         /**
52802          * @event invalidated
52803          * Fires when the layout for this region is changed.
52804          * @param {Roo.LayoutRegion} this
52805          */
52806         "invalidated" : true,
52807         /**
52808          * @event visibilitychange
52809          * Fires when this region is shown or hidden 
52810          * @param {Roo.LayoutRegion} this
52811          * @param {Boolean} visibility true or false
52812          */
52813         "visibilitychange" : true,
52814         /**
52815          * @event paneladded
52816          * Fires when a panel is added. 
52817          * @param {Roo.LayoutRegion} this
52818          * @param {Roo.ContentPanel} panel The panel
52819          */
52820         "paneladded" : true,
52821         /**
52822          * @event panelremoved
52823          * Fires when a panel is removed. 
52824          * @param {Roo.LayoutRegion} this
52825          * @param {Roo.ContentPanel} panel The panel
52826          */
52827         "panelremoved" : true,
52828         /**
52829          * @event beforecollapse
52830          * Fires when this region before collapse.
52831          * @param {Roo.LayoutRegion} this
52832          */
52833         "beforecollapse" : true,
52834         /**
52835          * @event collapsed
52836          * Fires when this region is collapsed.
52837          * @param {Roo.LayoutRegion} this
52838          */
52839         "collapsed" : true,
52840         /**
52841          * @event expanded
52842          * Fires when this region is expanded.
52843          * @param {Roo.LayoutRegion} this
52844          */
52845         "expanded" : true,
52846         /**
52847          * @event slideshow
52848          * Fires when this region is slid into view.
52849          * @param {Roo.LayoutRegion} this
52850          */
52851         "slideshow" : true,
52852         /**
52853          * @event slidehide
52854          * Fires when this region slides out of view. 
52855          * @param {Roo.LayoutRegion} this
52856          */
52857         "slidehide" : true,
52858         /**
52859          * @event panelactivated
52860          * Fires when a panel is activated. 
52861          * @param {Roo.LayoutRegion} this
52862          * @param {Roo.ContentPanel} panel The activated panel
52863          */
52864         "panelactivated" : true,
52865         /**
52866          * @event resized
52867          * Fires when the user resizes this region. 
52868          * @param {Roo.LayoutRegion} this
52869          * @param {Number} newSize The new size (width for east/west, height for north/south)
52870          */
52871         "resized" : true
52872     };
52873     /** A collection of panels in this region. @type Roo.util.MixedCollection */
52874     this.panels = new Roo.util.MixedCollection();
52875     this.panels.getKey = this.getPanelId.createDelegate(this);
52876     this.box = null;
52877     this.activePanel = null;
52878     // ensure listeners are added...
52879     
52880     if (config.listeners || config.events) {
52881         Roo.BasicLayoutRegion.superclass.constructor.call(this, {
52882             listeners : config.listeners || {},
52883             events : config.events || {}
52884         });
52885     }
52886     
52887     if(skipConfig !== true){
52888         this.applyConfig(config);
52889     }
52890 };
52891
52892 Roo.extend(Roo.BasicLayoutRegion, Roo.util.Observable, {
52893     getPanelId : function(p){
52894         return p.getId();
52895     },
52896     
52897     applyConfig : function(config){
52898         this.margins = config.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
52899         this.config = config;
52900         
52901     },
52902     
52903     /**
52904      * Resizes the region to the specified size. For vertical regions (west, east) this adjusts 
52905      * the width, for horizontal (north, south) the height.
52906      * @param {Number} newSize The new width or height
52907      */
52908     resizeTo : function(newSize){
52909         var el = this.el ? this.el :
52910                  (this.activePanel ? this.activePanel.getEl() : null);
52911         if(el){
52912             switch(this.position){
52913                 case "east":
52914                 case "west":
52915                     el.setWidth(newSize);
52916                     this.fireEvent("resized", this, newSize);
52917                 break;
52918                 case "north":
52919                 case "south":
52920                     el.setHeight(newSize);
52921                     this.fireEvent("resized", this, newSize);
52922                 break;                
52923             }
52924         }
52925     },
52926     
52927     getBox : function(){
52928         return this.activePanel ? this.activePanel.getEl().getBox(false, true) : null;
52929     },
52930     
52931     getMargins : function(){
52932         return this.margins;
52933     },
52934     
52935     updateBox : function(box){
52936         this.box = box;
52937         var el = this.activePanel.getEl();
52938         el.dom.style.left = box.x + "px";
52939         el.dom.style.top = box.y + "px";
52940         this.activePanel.setSize(box.width, box.height);
52941     },
52942     
52943     /**
52944      * Returns the container element for this region.
52945      * @return {Roo.Element}
52946      */
52947     getEl : function(){
52948         return this.activePanel;
52949     },
52950     
52951     /**
52952      * Returns true if this region is currently visible.
52953      * @return {Boolean}
52954      */
52955     isVisible : function(){
52956         return this.activePanel ? true : false;
52957     },
52958     
52959     setActivePanel : function(panel){
52960         panel = this.getPanel(panel);
52961         if(this.activePanel && this.activePanel != panel){
52962             this.activePanel.setActiveState(false);
52963             this.activePanel.getEl().setLeftTop(-10000,-10000);
52964         }
52965         this.activePanel = panel;
52966         panel.setActiveState(true);
52967         if(this.box){
52968             panel.setSize(this.box.width, this.box.height);
52969         }
52970         this.fireEvent("panelactivated", this, panel);
52971         this.fireEvent("invalidated");
52972     },
52973     
52974     /**
52975      * Show the specified panel.
52976      * @param {Number/String/ContentPanel} panelId The panels index, id or the panel itself
52977      * @return {Roo.ContentPanel} The shown panel or null
52978      */
52979     showPanel : function(panel){
52980         if(panel = this.getPanel(panel)){
52981             this.setActivePanel(panel);
52982         }
52983         return panel;
52984     },
52985     
52986     /**
52987      * Get the active panel for this region.
52988      * @return {Roo.ContentPanel} The active panel or null
52989      */
52990     getActivePanel : function(){
52991         return this.activePanel;
52992     },
52993     
52994     /**
52995      * Add the passed ContentPanel(s)
52996      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
52997      * @return {Roo.ContentPanel} The panel added (if only one was added)
52998      */
52999     add : function(panel){
53000         if(arguments.length > 1){
53001             for(var i = 0, len = arguments.length; i < len; i++) {
53002                 this.add(arguments[i]);
53003             }
53004             return null;
53005         }
53006         if(this.hasPanel(panel)){
53007             this.showPanel(panel);
53008             return panel;
53009         }
53010         var el = panel.getEl();
53011         if(el.dom.parentNode != this.mgr.el.dom){
53012             this.mgr.el.dom.appendChild(el.dom);
53013         }
53014         if(panel.setRegion){
53015             panel.setRegion(this);
53016         }
53017         this.panels.add(panel);
53018         el.setStyle("position", "absolute");
53019         if(!panel.background){
53020             this.setActivePanel(panel);
53021             if(this.config.initialSize && this.panels.getCount()==1){
53022                 this.resizeTo(this.config.initialSize);
53023             }
53024         }
53025         this.fireEvent("paneladded", this, panel);
53026         return panel;
53027     },
53028     
53029     /**
53030      * Returns true if the panel is in this region.
53031      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
53032      * @return {Boolean}
53033      */
53034     hasPanel : function(panel){
53035         if(typeof panel == "object"){ // must be panel obj
53036             panel = panel.getId();
53037         }
53038         return this.getPanel(panel) ? true : false;
53039     },
53040     
53041     /**
53042      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
53043      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
53044      * @param {Boolean} preservePanel Overrides the config preservePanel option
53045      * @return {Roo.ContentPanel} The panel that was removed
53046      */
53047     remove : function(panel, preservePanel){
53048         panel = this.getPanel(panel);
53049         if(!panel){
53050             return null;
53051         }
53052         var e = {};
53053         this.fireEvent("beforeremove", this, panel, e);
53054         if(e.cancel === true){
53055             return null;
53056         }
53057         var panelId = panel.getId();
53058         this.panels.removeKey(panelId);
53059         return panel;
53060     },
53061     
53062     /**
53063      * Returns the panel specified or null if it's not in this region.
53064      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
53065      * @return {Roo.ContentPanel}
53066      */
53067     getPanel : function(id){
53068         if(typeof id == "object"){ // must be panel obj
53069             return id;
53070         }
53071         return this.panels.get(id);
53072     },
53073     
53074     /**
53075      * Returns this regions position (north/south/east/west/center).
53076      * @return {String} 
53077      */
53078     getPosition: function(){
53079         return this.position;    
53080     }
53081 });/*
53082  * Based on:
53083  * Ext JS Library 1.1.1
53084  * Copyright(c) 2006-2007, Ext JS, LLC.
53085  *
53086  * Originally Released Under LGPL - original licence link has changed is not relivant.
53087  *
53088  * Fork - LGPL
53089  * <script type="text/javascript">
53090  */
53091  
53092 /**
53093  * @class Roo.LayoutRegion
53094  * @extends Roo.BasicLayoutRegion
53095  * This class represents a region in a layout manager.
53096  * @cfg {Boolean}   collapsible     False to disable collapsing (defaults to true)
53097  * @cfg {Boolean}   collapsed       True to set the initial display to collapsed (defaults to false)
53098  * @cfg {Boolean}   floatable       False to disable floating (defaults to true)
53099  * @cfg {Object}    margins         Margins for the element (defaults to {top: 0, left: 0, right:0, bottom: 0})
53100  * @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})
53101  * @cfg {String}    tabPosition     (top|bottom) "top" or "bottom" (defaults to "bottom")
53102  * @cfg {String}    collapsedTitle  Optional string message to display in the collapsed block of a north or south region
53103  * @cfg {Boolean}   alwaysShowTabs  True to always display tabs even when there is only 1 panel (defaults to false)
53104  * @cfg {Boolean}   autoScroll      True to enable overflow scrolling (defaults to false)
53105  * @cfg {Boolean}   titlebar        True to display a title bar (defaults to true)
53106  * @cfg {String}    title           The title for the region (overrides panel titles)
53107  * @cfg {Boolean}   animate         True to animate expand/collapse (defaults to false)
53108  * @cfg {Boolean}   autoHide        False to disable auto hiding when the mouse leaves the "floated" region (defaults to true)
53109  * @cfg {Boolean}   preservePanels  True to preserve removed panels so they can be readded later (defaults to false)
53110  * @cfg {Boolean}   closeOnTab      True to place the close icon on the tabs instead of the region titlebar (defaults to false)
53111  * @cfg {Boolean}   hideTabs        True to hide the tab strip (defaults to false)
53112  * @cfg {Boolean}   resizeTabs      True to enable automatic tab resizing. This will resize the tabs so they are all the same size and fit within
53113  *                      the space available, similar to FireFox 1.5 tabs (defaults to false)
53114  * @cfg {Number}    minTabWidth     The minimum tab width (defaults to 40)
53115  * @cfg {Number}    preferredTabWidth The preferred tab width (defaults to 150)
53116  * @cfg {Boolean}   showPin         True to show a pin button
53117  * @cfg {Boolean}   hidden          True to start the region hidden (defaults to false)
53118  * @cfg {Boolean}   hideWhenEmpty   True to hide the region when it has no panels
53119  * @cfg {Boolean}   disableTabTips  True to disable tab tooltips
53120  * @cfg {Number}    width           For East/West panels
53121  * @cfg {Number}    height          For North/South panels
53122  * @cfg {Boolean}   split           To show the splitter
53123  * @cfg {Boolean}   toolbar         xtype configuration for a toolbar - shows on right of tabbar
53124  */
53125 Roo.LayoutRegion = function(mgr, config, pos){
53126     Roo.LayoutRegion.superclass.constructor.call(this, mgr, config, pos, true);
53127     var dh = Roo.DomHelper;
53128     /** This region's container element 
53129     * @type Roo.Element */
53130     this.el = dh.append(mgr.el.dom, {tag: "div", cls: "x-layout-panel x-layout-panel-" + this.position}, true);
53131     /** This region's title element 
53132     * @type Roo.Element */
53133
53134     this.titleEl = dh.append(this.el.dom, {tag: "div", unselectable: "on", cls: "x-unselectable x-layout-panel-hd x-layout-title-"+this.position, children:[
53135         {tag: "span", cls: "x-unselectable x-layout-panel-hd-text", unselectable: "on", html: "&#160;"},
53136         {tag: "div", cls: "x-unselectable x-layout-panel-hd-tools", unselectable: "on"}
53137     ]}, true);
53138     this.titleEl.enableDisplayMode();
53139     /** This region's title text element 
53140     * @type HTMLElement */
53141     this.titleTextEl = this.titleEl.dom.firstChild;
53142     this.tools = Roo.get(this.titleEl.dom.childNodes[1], true);
53143     this.closeBtn = this.createTool(this.tools.dom, "x-layout-close");
53144     this.closeBtn.enableDisplayMode();
53145     this.closeBtn.on("click", this.closeClicked, this);
53146     this.closeBtn.hide();
53147
53148     this.createBody(config);
53149     this.visible = true;
53150     this.collapsed = false;
53151
53152     if(config.hideWhenEmpty){
53153         this.hide();
53154         this.on("paneladded", this.validateVisibility, this);
53155         this.on("panelremoved", this.validateVisibility, this);
53156     }
53157     this.applyConfig(config);
53158 };
53159
53160 Roo.extend(Roo.LayoutRegion, Roo.BasicLayoutRegion, {
53161
53162     createBody : function(){
53163         /** This region's body element 
53164         * @type Roo.Element */
53165         this.bodyEl = this.el.createChild({tag: "div", cls: "x-layout-panel-body"});
53166     },
53167
53168     applyConfig : function(c){
53169         if(c.collapsible && this.position != "center" && !this.collapsedEl){
53170             var dh = Roo.DomHelper;
53171             if(c.titlebar !== false){
53172                 this.collapseBtn = this.createTool(this.tools.dom, "x-layout-collapse-"+this.position);
53173                 this.collapseBtn.on("click", this.collapse, this);
53174                 this.collapseBtn.enableDisplayMode();
53175
53176                 if(c.showPin === true || this.showPin){
53177                     this.stickBtn = this.createTool(this.tools.dom, "x-layout-stick");
53178                     this.stickBtn.enableDisplayMode();
53179                     this.stickBtn.on("click", this.expand, this);
53180                     this.stickBtn.hide();
53181                 }
53182             }
53183             /** This region's collapsed element
53184             * @type Roo.Element */
53185             this.collapsedEl = dh.append(this.mgr.el.dom, {cls: "x-layout-collapsed x-layout-collapsed-"+this.position, children:[
53186                 {cls: "x-layout-collapsed-tools", children:[{cls: "x-layout-ctools-inner"}]}
53187             ]}, true);
53188             if(c.floatable !== false){
53189                this.collapsedEl.addClassOnOver("x-layout-collapsed-over");
53190                this.collapsedEl.on("click", this.collapseClick, this);
53191             }
53192
53193             if(c.collapsedTitle && (this.position == "north" || this.position== "south")) {
53194                 this.collapsedTitleTextEl = dh.append(this.collapsedEl.dom, {tag: "div", cls: "x-unselectable x-layout-panel-hd-text",
53195                    id: "message", unselectable: "on", style:{"float":"left"}});
53196                this.collapsedTitleTextEl.innerHTML = c.collapsedTitle;
53197              }
53198             this.expandBtn = this.createTool(this.collapsedEl.dom.firstChild.firstChild, "x-layout-expand-"+this.position);
53199             this.expandBtn.on("click", this.expand, this);
53200         }
53201         if(this.collapseBtn){
53202             this.collapseBtn.setVisible(c.collapsible == true);
53203         }
53204         this.cmargins = c.cmargins || this.cmargins ||
53205                          (this.position == "west" || this.position == "east" ?
53206                              {top: 0, left: 2, right:2, bottom: 0} :
53207                              {top: 2, left: 0, right:0, bottom: 2});
53208         this.margins = c.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
53209         this.bottomTabs = c.tabPosition != "top";
53210         this.autoScroll = c.autoScroll || false;
53211         if(this.autoScroll){
53212             this.bodyEl.setStyle("overflow", "auto");
53213         }else{
53214             this.bodyEl.setStyle("overflow", "hidden");
53215         }
53216         //if(c.titlebar !== false){
53217             if((!c.titlebar && !c.title) || c.titlebar === false){
53218                 this.titleEl.hide();
53219             }else{
53220                 this.titleEl.show();
53221                 if(c.title){
53222                     this.titleTextEl.innerHTML = c.title;
53223                 }
53224             }
53225         //}
53226         this.duration = c.duration || .30;
53227         this.slideDuration = c.slideDuration || .45;
53228         this.config = c;
53229         if(c.collapsed){
53230             this.collapse(true);
53231         }
53232         if(c.hidden){
53233             this.hide();
53234         }
53235     },
53236     /**
53237      * Returns true if this region is currently visible.
53238      * @return {Boolean}
53239      */
53240     isVisible : function(){
53241         return this.visible;
53242     },
53243
53244     /**
53245      * Updates the title for collapsed north/south regions (used with {@link #collapsedTitle} config option)
53246      * @param {String} title (optional) The title text (accepts HTML markup, defaults to the numeric character reference for a non-breaking space, "&amp;#160;")
53247      */
53248     setCollapsedTitle : function(title){
53249         title = title || "&#160;";
53250         if(this.collapsedTitleTextEl){
53251             this.collapsedTitleTextEl.innerHTML = title;
53252         }
53253     },
53254
53255     getBox : function(){
53256         var b;
53257         if(!this.collapsed){
53258             b = this.el.getBox(false, true);
53259         }else{
53260             b = this.collapsedEl.getBox(false, true);
53261         }
53262         return b;
53263     },
53264
53265     getMargins : function(){
53266         return this.collapsed ? this.cmargins : this.margins;
53267     },
53268
53269     highlight : function(){
53270         this.el.addClass("x-layout-panel-dragover");
53271     },
53272
53273     unhighlight : function(){
53274         this.el.removeClass("x-layout-panel-dragover");
53275     },
53276
53277     updateBox : function(box){
53278         this.box = box;
53279         if(!this.collapsed){
53280             this.el.dom.style.left = box.x + "px";
53281             this.el.dom.style.top = box.y + "px";
53282             this.updateBody(box.width, box.height);
53283         }else{
53284             this.collapsedEl.dom.style.left = box.x + "px";
53285             this.collapsedEl.dom.style.top = box.y + "px";
53286             this.collapsedEl.setSize(box.width, box.height);
53287         }
53288         if(this.tabs){
53289             this.tabs.autoSizeTabs();
53290         }
53291     },
53292
53293     updateBody : function(w, h){
53294         if(w !== null){
53295             this.el.setWidth(w);
53296             w -= this.el.getBorderWidth("rl");
53297             if(this.config.adjustments){
53298                 w += this.config.adjustments[0];
53299             }
53300         }
53301         if(h !== null){
53302             this.el.setHeight(h);
53303             h = this.titleEl && this.titleEl.isDisplayed() ? h - (this.titleEl.getHeight()||0) : h;
53304             h -= this.el.getBorderWidth("tb");
53305             if(this.config.adjustments){
53306                 h += this.config.adjustments[1];
53307             }
53308             this.bodyEl.setHeight(h);
53309             if(this.tabs){
53310                 h = this.tabs.syncHeight(h);
53311             }
53312         }
53313         if(this.panelSize){
53314             w = w !== null ? w : this.panelSize.width;
53315             h = h !== null ? h : this.panelSize.height;
53316         }
53317         if(this.activePanel){
53318             var el = this.activePanel.getEl();
53319             w = w !== null ? w : el.getWidth();
53320             h = h !== null ? h : el.getHeight();
53321             this.panelSize = {width: w, height: h};
53322             this.activePanel.setSize(w, h);
53323         }
53324         if(Roo.isIE && this.tabs){
53325             this.tabs.el.repaint();
53326         }
53327     },
53328
53329     /**
53330      * Returns the container element for this region.
53331      * @return {Roo.Element}
53332      */
53333     getEl : function(){
53334         return this.el;
53335     },
53336
53337     /**
53338      * Hides this region.
53339      */
53340     hide : function(){
53341         if(!this.collapsed){
53342             this.el.dom.style.left = "-2000px";
53343             this.el.hide();
53344         }else{
53345             this.collapsedEl.dom.style.left = "-2000px";
53346             this.collapsedEl.hide();
53347         }
53348         this.visible = false;
53349         this.fireEvent("visibilitychange", this, false);
53350     },
53351
53352     /**
53353      * Shows this region if it was previously hidden.
53354      */
53355     show : function(){
53356         if(!this.collapsed){
53357             this.el.show();
53358         }else{
53359             this.collapsedEl.show();
53360         }
53361         this.visible = true;
53362         this.fireEvent("visibilitychange", this, true);
53363     },
53364
53365     closeClicked : function(){
53366         if(this.activePanel){
53367             this.remove(this.activePanel);
53368         }
53369     },
53370
53371     collapseClick : function(e){
53372         if(this.isSlid){
53373            e.stopPropagation();
53374            this.slideIn();
53375         }else{
53376            e.stopPropagation();
53377            this.slideOut();
53378         }
53379     },
53380
53381     /**
53382      * Collapses this region.
53383      * @param {Boolean} skipAnim (optional) true to collapse the element without animation (if animate is true)
53384      */
53385     collapse : function(skipAnim, skipCheck){
53386         if(this.collapsed) {
53387             return;
53388         }
53389         
53390         if(skipCheck || this.fireEvent("beforecollapse", this) != false){
53391             
53392             this.collapsed = true;
53393             if(this.split){
53394                 this.split.el.hide();
53395             }
53396             if(this.config.animate && skipAnim !== true){
53397                 this.fireEvent("invalidated", this);
53398                 this.animateCollapse();
53399             }else{
53400                 this.el.setLocation(-20000,-20000);
53401                 this.el.hide();
53402                 this.collapsedEl.show();
53403                 this.fireEvent("collapsed", this);
53404                 this.fireEvent("invalidated", this);
53405             }
53406         }
53407         
53408     },
53409
53410     animateCollapse : function(){
53411         // overridden
53412     },
53413
53414     /**
53415      * Expands this region if it was previously collapsed.
53416      * @param {Roo.EventObject} e The event that triggered the expand (or null if calling manually)
53417      * @param {Boolean} skipAnim (optional) true to expand the element without animation (if animate is true)
53418      */
53419     expand : function(e, skipAnim){
53420         if(e) {
53421             e.stopPropagation();
53422         }
53423         if(!this.collapsed || this.el.hasActiveFx()) {
53424             return;
53425         }
53426         if(this.isSlid){
53427             this.afterSlideIn();
53428             skipAnim = true;
53429         }
53430         this.collapsed = false;
53431         if(this.config.animate && skipAnim !== true){
53432             this.animateExpand();
53433         }else{
53434             this.el.show();
53435             if(this.split){
53436                 this.split.el.show();
53437             }
53438             this.collapsedEl.setLocation(-2000,-2000);
53439             this.collapsedEl.hide();
53440             this.fireEvent("invalidated", this);
53441             this.fireEvent("expanded", this);
53442         }
53443     },
53444
53445     animateExpand : function(){
53446         // overridden
53447     },
53448
53449     initTabs : function()
53450     {
53451         this.bodyEl.setStyle("overflow", "hidden");
53452         var ts = new Roo.TabPanel(
53453                 this.bodyEl.dom,
53454                 {
53455                     tabPosition: this.bottomTabs ? 'bottom' : 'top',
53456                     disableTooltips: this.config.disableTabTips,
53457                     toolbar : this.config.toolbar
53458                 }
53459         );
53460         if(this.config.hideTabs){
53461             ts.stripWrap.setDisplayed(false);
53462         }
53463         this.tabs = ts;
53464         ts.resizeTabs = this.config.resizeTabs === true;
53465         ts.minTabWidth = this.config.minTabWidth || 40;
53466         ts.maxTabWidth = this.config.maxTabWidth || 250;
53467         ts.preferredTabWidth = this.config.preferredTabWidth || 150;
53468         ts.monitorResize = false;
53469         ts.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
53470         ts.bodyEl.addClass('x-layout-tabs-body');
53471         this.panels.each(this.initPanelAsTab, this);
53472     },
53473
53474     initPanelAsTab : function(panel){
53475         var ti = this.tabs.addTab(panel.getEl().id, panel.getTitle(), null,
53476                     this.config.closeOnTab && panel.isClosable());
53477         if(panel.tabTip !== undefined){
53478             ti.setTooltip(panel.tabTip);
53479         }
53480         ti.on("activate", function(){
53481               this.setActivePanel(panel);
53482         }, this);
53483         if(this.config.closeOnTab){
53484             ti.on("beforeclose", function(t, e){
53485                 e.cancel = true;
53486                 this.remove(panel);
53487             }, this);
53488         }
53489         return ti;
53490     },
53491
53492     updatePanelTitle : function(panel, title){
53493         if(this.activePanel == panel){
53494             this.updateTitle(title);
53495         }
53496         if(this.tabs){
53497             var ti = this.tabs.getTab(panel.getEl().id);
53498             ti.setText(title);
53499             if(panel.tabTip !== undefined){
53500                 ti.setTooltip(panel.tabTip);
53501             }
53502         }
53503     },
53504
53505     updateTitle : function(title){
53506         if(this.titleTextEl && !this.config.title){
53507             this.titleTextEl.innerHTML = (typeof title != "undefined" && title.length > 0 ? title : "&#160;");
53508         }
53509     },
53510
53511     setActivePanel : function(panel){
53512         panel = this.getPanel(panel);
53513         if(this.activePanel && this.activePanel != panel){
53514             this.activePanel.setActiveState(false);
53515         }
53516         this.activePanel = panel;
53517         panel.setActiveState(true);
53518         if(this.panelSize){
53519             panel.setSize(this.panelSize.width, this.panelSize.height);
53520         }
53521         if(this.closeBtn){
53522             this.closeBtn.setVisible(!this.config.closeOnTab && !this.isSlid && panel.isClosable());
53523         }
53524         this.updateTitle(panel.getTitle());
53525         if(this.tabs){
53526             this.fireEvent("invalidated", this);
53527         }
53528         this.fireEvent("panelactivated", this, panel);
53529     },
53530
53531     /**
53532      * Shows the specified panel.
53533      * @param {Number/String/ContentPanel} panelId The panel's index, id or the panel itself
53534      * @return {Roo.ContentPanel} The shown panel, or null if a panel could not be found from panelId
53535      */
53536     showPanel : function(panel)
53537     {
53538         panel = this.getPanel(panel);
53539         if(panel){
53540             if(this.tabs){
53541                 var tab = this.tabs.getTab(panel.getEl().id);
53542                 if(tab.isHidden()){
53543                     this.tabs.unhideTab(tab.id);
53544                 }
53545                 tab.activate();
53546             }else{
53547                 this.setActivePanel(panel);
53548             }
53549         }
53550         return panel;
53551     },
53552
53553     /**
53554      * Get the active panel for this region.
53555      * @return {Roo.ContentPanel} The active panel or null
53556      */
53557     getActivePanel : function(){
53558         return this.activePanel;
53559     },
53560
53561     validateVisibility : function(){
53562         if(this.panels.getCount() < 1){
53563             this.updateTitle("&#160;");
53564             this.closeBtn.hide();
53565             this.hide();
53566         }else{
53567             if(!this.isVisible()){
53568                 this.show();
53569             }
53570         }
53571     },
53572
53573     /**
53574      * Adds the passed ContentPanel(s) to this region.
53575      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
53576      * @return {Roo.ContentPanel} The panel added (if only one was added; null otherwise)
53577      */
53578     add : function(panel){
53579         if(arguments.length > 1){
53580             for(var i = 0, len = arguments.length; i < len; i++) {
53581                 this.add(arguments[i]);
53582             }
53583             return null;
53584         }
53585         if(this.hasPanel(panel)){
53586             this.showPanel(panel);
53587             return panel;
53588         }
53589         panel.setRegion(this);
53590         this.panels.add(panel);
53591         if(this.panels.getCount() == 1 && !this.config.alwaysShowTabs){
53592             this.bodyEl.dom.appendChild(panel.getEl().dom);
53593             if(panel.background !== true){
53594                 this.setActivePanel(panel);
53595             }
53596             this.fireEvent("paneladded", this, panel);
53597             return panel;
53598         }
53599         if(!this.tabs){
53600             this.initTabs();
53601         }else{
53602             this.initPanelAsTab(panel);
53603         }
53604         if(panel.background !== true){
53605             this.tabs.activate(panel.getEl().id);
53606         }
53607         this.fireEvent("paneladded", this, panel);
53608         return panel;
53609     },
53610
53611     /**
53612      * Hides the tab for the specified panel.
53613      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
53614      */
53615     hidePanel : function(panel){
53616         if(this.tabs && (panel = this.getPanel(panel))){
53617             this.tabs.hideTab(panel.getEl().id);
53618         }
53619     },
53620
53621     /**
53622      * Unhides the tab for a previously hidden panel.
53623      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
53624      */
53625     unhidePanel : function(panel){
53626         if(this.tabs && (panel = this.getPanel(panel))){
53627             this.tabs.unhideTab(panel.getEl().id);
53628         }
53629     },
53630
53631     clearPanels : function(){
53632         while(this.panels.getCount() > 0){
53633              this.remove(this.panels.first());
53634         }
53635     },
53636
53637     /**
53638      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
53639      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
53640      * @param {Boolean} preservePanel Overrides the config preservePanel option
53641      * @return {Roo.ContentPanel} The panel that was removed
53642      */
53643     remove : function(panel, preservePanel){
53644         panel = this.getPanel(panel);
53645         if(!panel){
53646             return null;
53647         }
53648         var e = {};
53649         this.fireEvent("beforeremove", this, panel, e);
53650         if(e.cancel === true){
53651             return null;
53652         }
53653         preservePanel = (typeof preservePanel != "undefined" ? preservePanel : (this.config.preservePanels === true || panel.preserve === true));
53654         var panelId = panel.getId();
53655         this.panels.removeKey(panelId);
53656         if(preservePanel){
53657             document.body.appendChild(panel.getEl().dom);
53658         }
53659         if(this.tabs){
53660             this.tabs.removeTab(panel.getEl().id);
53661         }else if (!preservePanel){
53662             this.bodyEl.dom.removeChild(panel.getEl().dom);
53663         }
53664         if(this.panels.getCount() == 1 && this.tabs && !this.config.alwaysShowTabs){
53665             var p = this.panels.first();
53666             var tempEl = document.createElement("div"); // temp holder to keep IE from deleting the node
53667             tempEl.appendChild(p.getEl().dom);
53668             this.bodyEl.update("");
53669             this.bodyEl.dom.appendChild(p.getEl().dom);
53670             tempEl = null;
53671             this.updateTitle(p.getTitle());
53672             this.tabs = null;
53673             this.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
53674             this.setActivePanel(p);
53675         }
53676         panel.setRegion(null);
53677         if(this.activePanel == panel){
53678             this.activePanel = null;
53679         }
53680         if(this.config.autoDestroy !== false && preservePanel !== true){
53681             try{panel.destroy();}catch(e){}
53682         }
53683         this.fireEvent("panelremoved", this, panel);
53684         return panel;
53685     },
53686
53687     /**
53688      * Returns the TabPanel component used by this region
53689      * @return {Roo.TabPanel}
53690      */
53691     getTabs : function(){
53692         return this.tabs;
53693     },
53694
53695     createTool : function(parentEl, className){
53696         var btn = Roo.DomHelper.append(parentEl, {tag: "div", cls: "x-layout-tools-button",
53697             children: [{tag: "div", cls: "x-layout-tools-button-inner " + className, html: "&#160;"}]}, true);
53698         btn.addClassOnOver("x-layout-tools-button-over");
53699         return btn;
53700     }
53701 });/*
53702  * Based on:
53703  * Ext JS Library 1.1.1
53704  * Copyright(c) 2006-2007, Ext JS, LLC.
53705  *
53706  * Originally Released Under LGPL - original licence link has changed is not relivant.
53707  *
53708  * Fork - LGPL
53709  * <script type="text/javascript">
53710  */
53711  
53712
53713
53714 /**
53715  * @class Roo.SplitLayoutRegion
53716  * @extends Roo.LayoutRegion
53717  * Adds a splitbar and other (private) useful functionality to a {@link Roo.LayoutRegion}.
53718  */
53719 Roo.SplitLayoutRegion = function(mgr, config, pos, cursor){
53720     this.cursor = cursor;
53721     Roo.SplitLayoutRegion.superclass.constructor.call(this, mgr, config, pos);
53722 };
53723
53724 Roo.extend(Roo.SplitLayoutRegion, Roo.LayoutRegion, {
53725     splitTip : "Drag to resize.",
53726     collapsibleSplitTip : "Drag to resize. Double click to hide.",
53727     useSplitTips : false,
53728
53729     applyConfig : function(config){
53730         Roo.SplitLayoutRegion.superclass.applyConfig.call(this, config);
53731         if(config.split){
53732             if(!this.split){
53733                 var splitEl = Roo.DomHelper.append(this.mgr.el.dom, 
53734                         {tag: "div", id: this.el.id + "-split", cls: "x-layout-split x-layout-split-"+this.position, html: "&#160;"});
53735                 /** The SplitBar for this region 
53736                 * @type Roo.SplitBar */
53737                 this.split = new Roo.SplitBar(splitEl, this.el, this.orientation);
53738                 this.split.on("moved", this.onSplitMove, this);
53739                 this.split.useShim = config.useShim === true;
53740                 this.split.getMaximumSize = this[this.position == 'north' || this.position == 'south' ? 'getVMaxSize' : 'getHMaxSize'].createDelegate(this);
53741                 if(this.useSplitTips){
53742                     this.split.el.dom.title = config.collapsible ? this.collapsibleSplitTip : this.splitTip;
53743                 }
53744                 if(config.collapsible){
53745                     this.split.el.on("dblclick", this.collapse,  this);
53746                 }
53747             }
53748             if(typeof config.minSize != "undefined"){
53749                 this.split.minSize = config.minSize;
53750             }
53751             if(typeof config.maxSize != "undefined"){
53752                 this.split.maxSize = config.maxSize;
53753             }
53754             if(config.hideWhenEmpty || config.hidden || config.collapsed){
53755                 this.hideSplitter();
53756             }
53757         }
53758     },
53759
53760     getHMaxSize : function(){
53761          var cmax = this.config.maxSize || 10000;
53762          var center = this.mgr.getRegion("center");
53763          return Math.min(cmax, (this.el.getWidth()+center.getEl().getWidth())-center.getMinWidth());
53764     },
53765
53766     getVMaxSize : function(){
53767          var cmax = this.config.maxSize || 10000;
53768          var center = this.mgr.getRegion("center");
53769          return Math.min(cmax, (this.el.getHeight()+center.getEl().getHeight())-center.getMinHeight());
53770     },
53771
53772     onSplitMove : function(split, newSize){
53773         this.fireEvent("resized", this, newSize);
53774     },
53775     
53776     /** 
53777      * Returns the {@link Roo.SplitBar} for this region.
53778      * @return {Roo.SplitBar}
53779      */
53780     getSplitBar : function(){
53781         return this.split;
53782     },
53783     
53784     hide : function(){
53785         this.hideSplitter();
53786         Roo.SplitLayoutRegion.superclass.hide.call(this);
53787     },
53788
53789     hideSplitter : function(){
53790         if(this.split){
53791             this.split.el.setLocation(-2000,-2000);
53792             this.split.el.hide();
53793         }
53794     },
53795
53796     show : function(){
53797         if(this.split){
53798             this.split.el.show();
53799         }
53800         Roo.SplitLayoutRegion.superclass.show.call(this);
53801     },
53802     
53803     beforeSlide: function(){
53804         if(Roo.isGecko){// firefox overflow auto bug workaround
53805             this.bodyEl.clip();
53806             if(this.tabs) {
53807                 this.tabs.bodyEl.clip();
53808             }
53809             if(this.activePanel){
53810                 this.activePanel.getEl().clip();
53811                 
53812                 if(this.activePanel.beforeSlide){
53813                     this.activePanel.beforeSlide();
53814                 }
53815             }
53816         }
53817     },
53818     
53819     afterSlide : function(){
53820         if(Roo.isGecko){// firefox overflow auto bug workaround
53821             this.bodyEl.unclip();
53822             if(this.tabs) {
53823                 this.tabs.bodyEl.unclip();
53824             }
53825             if(this.activePanel){
53826                 this.activePanel.getEl().unclip();
53827                 if(this.activePanel.afterSlide){
53828                     this.activePanel.afterSlide();
53829                 }
53830             }
53831         }
53832     },
53833
53834     initAutoHide : function(){
53835         if(this.autoHide !== false){
53836             if(!this.autoHideHd){
53837                 var st = new Roo.util.DelayedTask(this.slideIn, this);
53838                 this.autoHideHd = {
53839                     "mouseout": function(e){
53840                         if(!e.within(this.el, true)){
53841                             st.delay(500);
53842                         }
53843                     },
53844                     "mouseover" : function(e){
53845                         st.cancel();
53846                     },
53847                     scope : this
53848                 };
53849             }
53850             this.el.on(this.autoHideHd);
53851         }
53852     },
53853
53854     clearAutoHide : function(){
53855         if(this.autoHide !== false){
53856             this.el.un("mouseout", this.autoHideHd.mouseout);
53857             this.el.un("mouseover", this.autoHideHd.mouseover);
53858         }
53859     },
53860
53861     clearMonitor : function(){
53862         Roo.get(document).un("click", this.slideInIf, this);
53863     },
53864
53865     // these names are backwards but not changed for compat
53866     slideOut : function(){
53867         if(this.isSlid || this.el.hasActiveFx()){
53868             return;
53869         }
53870         this.isSlid = true;
53871         if(this.collapseBtn){
53872             this.collapseBtn.hide();
53873         }
53874         this.closeBtnState = this.closeBtn.getStyle('display');
53875         this.closeBtn.hide();
53876         if(this.stickBtn){
53877             this.stickBtn.show();
53878         }
53879         this.el.show();
53880         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor());
53881         this.beforeSlide();
53882         this.el.setStyle("z-index", 10001);
53883         this.el.slideIn(this.getSlideAnchor(), {
53884             callback: function(){
53885                 this.afterSlide();
53886                 this.initAutoHide();
53887                 Roo.get(document).on("click", this.slideInIf, this);
53888                 this.fireEvent("slideshow", this);
53889             },
53890             scope: this,
53891             block: true
53892         });
53893     },
53894
53895     afterSlideIn : function(){
53896         this.clearAutoHide();
53897         this.isSlid = false;
53898         this.clearMonitor();
53899         this.el.setStyle("z-index", "");
53900         if(this.collapseBtn){
53901             this.collapseBtn.show();
53902         }
53903         this.closeBtn.setStyle('display', this.closeBtnState);
53904         if(this.stickBtn){
53905             this.stickBtn.hide();
53906         }
53907         this.fireEvent("slidehide", this);
53908     },
53909
53910     slideIn : function(cb){
53911         if(!this.isSlid || this.el.hasActiveFx()){
53912             Roo.callback(cb);
53913             return;
53914         }
53915         this.isSlid = false;
53916         this.beforeSlide();
53917         this.el.slideOut(this.getSlideAnchor(), {
53918             callback: function(){
53919                 this.el.setLeftTop(-10000, -10000);
53920                 this.afterSlide();
53921                 this.afterSlideIn();
53922                 Roo.callback(cb);
53923             },
53924             scope: this,
53925             block: true
53926         });
53927     },
53928     
53929     slideInIf : function(e){
53930         if(!e.within(this.el)){
53931             this.slideIn();
53932         }
53933     },
53934
53935     animateCollapse : function(){
53936         this.beforeSlide();
53937         this.el.setStyle("z-index", 20000);
53938         var anchor = this.getSlideAnchor();
53939         this.el.slideOut(anchor, {
53940             callback : function(){
53941                 this.el.setStyle("z-index", "");
53942                 this.collapsedEl.slideIn(anchor, {duration:.3});
53943                 this.afterSlide();
53944                 this.el.setLocation(-10000,-10000);
53945                 this.el.hide();
53946                 this.fireEvent("collapsed", this);
53947             },
53948             scope: this,
53949             block: true
53950         });
53951     },
53952
53953     animateExpand : function(){
53954         this.beforeSlide();
53955         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor(), this.getExpandAdj());
53956         this.el.setStyle("z-index", 20000);
53957         this.collapsedEl.hide({
53958             duration:.1
53959         });
53960         this.el.slideIn(this.getSlideAnchor(), {
53961             callback : function(){
53962                 this.el.setStyle("z-index", "");
53963                 this.afterSlide();
53964                 if(this.split){
53965                     this.split.el.show();
53966                 }
53967                 this.fireEvent("invalidated", this);
53968                 this.fireEvent("expanded", this);
53969             },
53970             scope: this,
53971             block: true
53972         });
53973     },
53974
53975     anchors : {
53976         "west" : "left",
53977         "east" : "right",
53978         "north" : "top",
53979         "south" : "bottom"
53980     },
53981
53982     sanchors : {
53983         "west" : "l",
53984         "east" : "r",
53985         "north" : "t",
53986         "south" : "b"
53987     },
53988
53989     canchors : {
53990         "west" : "tl-tr",
53991         "east" : "tr-tl",
53992         "north" : "tl-bl",
53993         "south" : "bl-tl"
53994     },
53995
53996     getAnchor : function(){
53997         return this.anchors[this.position];
53998     },
53999
54000     getCollapseAnchor : function(){
54001         return this.canchors[this.position];
54002     },
54003
54004     getSlideAnchor : function(){
54005         return this.sanchors[this.position];
54006     },
54007
54008     getAlignAdj : function(){
54009         var cm = this.cmargins;
54010         switch(this.position){
54011             case "west":
54012                 return [0, 0];
54013             break;
54014             case "east":
54015                 return [0, 0];
54016             break;
54017             case "north":
54018                 return [0, 0];
54019             break;
54020             case "south":
54021                 return [0, 0];
54022             break;
54023         }
54024     },
54025
54026     getExpandAdj : function(){
54027         var c = this.collapsedEl, cm = this.cmargins;
54028         switch(this.position){
54029             case "west":
54030                 return [-(cm.right+c.getWidth()+cm.left), 0];
54031             break;
54032             case "east":
54033                 return [cm.right+c.getWidth()+cm.left, 0];
54034             break;
54035             case "north":
54036                 return [0, -(cm.top+cm.bottom+c.getHeight())];
54037             break;
54038             case "south":
54039                 return [0, cm.top+cm.bottom+c.getHeight()];
54040             break;
54041         }
54042     }
54043 });/*
54044  * Based on:
54045  * Ext JS Library 1.1.1
54046  * Copyright(c) 2006-2007, Ext JS, LLC.
54047  *
54048  * Originally Released Under LGPL - original licence link has changed is not relivant.
54049  *
54050  * Fork - LGPL
54051  * <script type="text/javascript">
54052  */
54053 /*
54054  * These classes are private internal classes
54055  */
54056 Roo.CenterLayoutRegion = function(mgr, config){
54057     Roo.LayoutRegion.call(this, mgr, config, "center");
54058     this.visible = true;
54059     this.minWidth = config.minWidth || 20;
54060     this.minHeight = config.minHeight || 20;
54061 };
54062
54063 Roo.extend(Roo.CenterLayoutRegion, Roo.LayoutRegion, {
54064     hide : function(){
54065         // center panel can't be hidden
54066     },
54067     
54068     show : function(){
54069         // center panel can't be hidden
54070     },
54071     
54072     getMinWidth: function(){
54073         return this.minWidth;
54074     },
54075     
54076     getMinHeight: function(){
54077         return this.minHeight;
54078     }
54079 });
54080
54081
54082 Roo.NorthLayoutRegion = function(mgr, config){
54083     Roo.LayoutRegion.call(this, mgr, config, "north", "n-resize");
54084     if(this.split){
54085         this.split.placement = Roo.SplitBar.TOP;
54086         this.split.orientation = Roo.SplitBar.VERTICAL;
54087         this.split.el.addClass("x-layout-split-v");
54088     }
54089     var size = config.initialSize || config.height;
54090     if(typeof size != "undefined"){
54091         this.el.setHeight(size);
54092     }
54093 };
54094 Roo.extend(Roo.NorthLayoutRegion, Roo.SplitLayoutRegion, {
54095     orientation: Roo.SplitBar.VERTICAL,
54096     getBox : function(){
54097         if(this.collapsed){
54098             return this.collapsedEl.getBox();
54099         }
54100         var box = this.el.getBox();
54101         if(this.split){
54102             box.height += this.split.el.getHeight();
54103         }
54104         return box;
54105     },
54106     
54107     updateBox : function(box){
54108         if(this.split && !this.collapsed){
54109             box.height -= this.split.el.getHeight();
54110             this.split.el.setLeft(box.x);
54111             this.split.el.setTop(box.y+box.height);
54112             this.split.el.setWidth(box.width);
54113         }
54114         if(this.collapsed){
54115             this.updateBody(box.width, null);
54116         }
54117         Roo.LayoutRegion.prototype.updateBox.call(this, box);
54118     }
54119 });
54120
54121 Roo.SouthLayoutRegion = function(mgr, config){
54122     Roo.SplitLayoutRegion.call(this, mgr, config, "south", "s-resize");
54123     if(this.split){
54124         this.split.placement = Roo.SplitBar.BOTTOM;
54125         this.split.orientation = Roo.SplitBar.VERTICAL;
54126         this.split.el.addClass("x-layout-split-v");
54127     }
54128     var size = config.initialSize || config.height;
54129     if(typeof size != "undefined"){
54130         this.el.setHeight(size);
54131     }
54132 };
54133 Roo.extend(Roo.SouthLayoutRegion, Roo.SplitLayoutRegion, {
54134     orientation: Roo.SplitBar.VERTICAL,
54135     getBox : function(){
54136         if(this.collapsed){
54137             return this.collapsedEl.getBox();
54138         }
54139         var box = this.el.getBox();
54140         if(this.split){
54141             var sh = this.split.el.getHeight();
54142             box.height += sh;
54143             box.y -= sh;
54144         }
54145         return box;
54146     },
54147     
54148     updateBox : function(box){
54149         if(this.split && !this.collapsed){
54150             var sh = this.split.el.getHeight();
54151             box.height -= sh;
54152             box.y += sh;
54153             this.split.el.setLeft(box.x);
54154             this.split.el.setTop(box.y-sh);
54155             this.split.el.setWidth(box.width);
54156         }
54157         if(this.collapsed){
54158             this.updateBody(box.width, null);
54159         }
54160         Roo.LayoutRegion.prototype.updateBox.call(this, box);
54161     }
54162 });
54163
54164 Roo.EastLayoutRegion = function(mgr, config){
54165     Roo.SplitLayoutRegion.call(this, mgr, config, "east", "e-resize");
54166     if(this.split){
54167         this.split.placement = Roo.SplitBar.RIGHT;
54168         this.split.orientation = Roo.SplitBar.HORIZONTAL;
54169         this.split.el.addClass("x-layout-split-h");
54170     }
54171     var size = config.initialSize || config.width;
54172     if(typeof size != "undefined"){
54173         this.el.setWidth(size);
54174     }
54175 };
54176 Roo.extend(Roo.EastLayoutRegion, Roo.SplitLayoutRegion, {
54177     orientation: Roo.SplitBar.HORIZONTAL,
54178     getBox : function(){
54179         if(this.collapsed){
54180             return this.collapsedEl.getBox();
54181         }
54182         var box = this.el.getBox();
54183         if(this.split){
54184             var sw = this.split.el.getWidth();
54185             box.width += sw;
54186             box.x -= sw;
54187         }
54188         return box;
54189     },
54190
54191     updateBox : function(box){
54192         if(this.split && !this.collapsed){
54193             var sw = this.split.el.getWidth();
54194             box.width -= sw;
54195             this.split.el.setLeft(box.x);
54196             this.split.el.setTop(box.y);
54197             this.split.el.setHeight(box.height);
54198             box.x += sw;
54199         }
54200         if(this.collapsed){
54201             this.updateBody(null, box.height);
54202         }
54203         Roo.LayoutRegion.prototype.updateBox.call(this, box);
54204     }
54205 });
54206
54207 Roo.WestLayoutRegion = function(mgr, config){
54208     Roo.SplitLayoutRegion.call(this, mgr, config, "west", "w-resize");
54209     if(this.split){
54210         this.split.placement = Roo.SplitBar.LEFT;
54211         this.split.orientation = Roo.SplitBar.HORIZONTAL;
54212         this.split.el.addClass("x-layout-split-h");
54213     }
54214     var size = config.initialSize || config.width;
54215     if(typeof size != "undefined"){
54216         this.el.setWidth(size);
54217     }
54218 };
54219 Roo.extend(Roo.WestLayoutRegion, Roo.SplitLayoutRegion, {
54220     orientation: Roo.SplitBar.HORIZONTAL,
54221     getBox : function(){
54222         if(this.collapsed){
54223             return this.collapsedEl.getBox();
54224         }
54225         var box = this.el.getBox();
54226         if(this.split){
54227             box.width += this.split.el.getWidth();
54228         }
54229         return box;
54230     },
54231     
54232     updateBox : function(box){
54233         if(this.split && !this.collapsed){
54234             var sw = this.split.el.getWidth();
54235             box.width -= sw;
54236             this.split.el.setLeft(box.x+box.width);
54237             this.split.el.setTop(box.y);
54238             this.split.el.setHeight(box.height);
54239         }
54240         if(this.collapsed){
54241             this.updateBody(null, box.height);
54242         }
54243         Roo.LayoutRegion.prototype.updateBox.call(this, box);
54244     }
54245 });
54246 /*
54247  * Based on:
54248  * Ext JS Library 1.1.1
54249  * Copyright(c) 2006-2007, Ext JS, LLC.
54250  *
54251  * Originally Released Under LGPL - original licence link has changed is not relivant.
54252  *
54253  * Fork - LGPL
54254  * <script type="text/javascript">
54255  */
54256  
54257  
54258 /*
54259  * Private internal class for reading and applying state
54260  */
54261 Roo.LayoutStateManager = function(layout){
54262      // default empty state
54263      this.state = {
54264         north: {},
54265         south: {},
54266         east: {},
54267         west: {}       
54268     };
54269 };
54270
54271 Roo.LayoutStateManager.prototype = {
54272     init : function(layout, provider){
54273         this.provider = provider;
54274         var state = provider.get(layout.id+"-layout-state");
54275         if(state){
54276             var wasUpdating = layout.isUpdating();
54277             if(!wasUpdating){
54278                 layout.beginUpdate();
54279             }
54280             for(var key in state){
54281                 if(typeof state[key] != "function"){
54282                     var rstate = state[key];
54283                     var r = layout.getRegion(key);
54284                     if(r && rstate){
54285                         if(rstate.size){
54286                             r.resizeTo(rstate.size);
54287                         }
54288                         if(rstate.collapsed == true){
54289                             r.collapse(true);
54290                         }else{
54291                             r.expand(null, true);
54292                         }
54293                     }
54294                 }
54295             }
54296             if(!wasUpdating){
54297                 layout.endUpdate();
54298             }
54299             this.state = state; 
54300         }
54301         this.layout = layout;
54302         layout.on("regionresized", this.onRegionResized, this);
54303         layout.on("regioncollapsed", this.onRegionCollapsed, this);
54304         layout.on("regionexpanded", this.onRegionExpanded, this);
54305     },
54306     
54307     storeState : function(){
54308         this.provider.set(this.layout.id+"-layout-state", this.state);
54309     },
54310     
54311     onRegionResized : function(region, newSize){
54312         this.state[region.getPosition()].size = newSize;
54313         this.storeState();
54314     },
54315     
54316     onRegionCollapsed : function(region){
54317         this.state[region.getPosition()].collapsed = true;
54318         this.storeState();
54319     },
54320     
54321     onRegionExpanded : function(region){
54322         this.state[region.getPosition()].collapsed = false;
54323         this.storeState();
54324     }
54325 };/*
54326  * Based on:
54327  * Ext JS Library 1.1.1
54328  * Copyright(c) 2006-2007, Ext JS, LLC.
54329  *
54330  * Originally Released Under LGPL - original licence link has changed is not relivant.
54331  *
54332  * Fork - LGPL
54333  * <script type="text/javascript">
54334  */
54335 /**
54336  * @class Roo.ContentPanel
54337  * @extends Roo.util.Observable
54338  * A basic ContentPanel element.
54339  * @cfg {Boolean}   fitToFrame    True for this panel to adjust its size to fit when the region resizes  (defaults to false)
54340  * @cfg {Boolean}   fitContainer   When using {@link #fitToFrame} and {@link #resizeEl}, you can also fit the parent container  (defaults to false)
54341  * @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
54342  * @cfg {Boolean}   closable      True if the panel can be closed/removed
54343  * @cfg {Boolean}   background    True if the panel should not be activated when it is added (defaults to false)
54344  * @cfg {String/HTMLElement/Element} resizeEl An element to resize if {@link #fitToFrame} is true (instead of this panel's element)
54345  * @cfg {Toolbar}   toolbar       A toolbar for this panel
54346  * @cfg {Boolean} autoScroll    True to scroll overflow in this panel (use with {@link #fitToFrame})
54347  * @cfg {String} title          The title for this panel
54348  * @cfg {Array} adjustments     Values to <b>add</b> to the width/height when doing a {@link #fitToFrame} (default is [0, 0])
54349  * @cfg {String} url            Calls {@link #setUrl} with this value
54350  * @cfg {String} region         (center|north|south|east|west) which region to put this panel on (when used with xtype constructors)
54351  * @cfg {String/Object} params  When used with {@link #url}, calls {@link #setUrl} with this value
54352  * @cfg {Boolean} loadOnce      When used with {@link #url}, calls {@link #setUrl} with this value
54353  * @cfg {String}    content        Raw content to fill content panel with (uses setContent on construction.)
54354  * @cfg {String}    style  Extra style to add to the content panel 
54355
54356  * @constructor
54357  * Create a new ContentPanel.
54358  * @param {String/HTMLElement/Roo.Element} el The container element for this panel
54359  * @param {String/Object} config A string to set only the title or a config object
54360  * @param {String} content (optional) Set the HTML content for this panel
54361  * @param {String} region (optional) Used by xtype constructors to add to regions. (values center,east,west,south,north)
54362  */
54363 Roo.ContentPanel = function(el, config, content){
54364     
54365      
54366     /*
54367     if(el.autoCreate || el.xtype){ // xtype is available if this is called from factory
54368         config = el;
54369         el = Roo.id();
54370     }
54371     if (config && config.parentLayout) { 
54372         el = config.parentLayout.el.createChild(); 
54373     }
54374     */
54375     if(el.autoCreate){ // xtype is available if this is called from factory
54376         config = el;
54377         el = Roo.id();
54378     }
54379     this.el = Roo.get(el);
54380     if(!this.el && config && config.autoCreate){
54381         if(typeof config.autoCreate == "object"){
54382             if(!config.autoCreate.id){
54383                 config.autoCreate.id = config.id||el;
54384             }
54385             this.el = Roo.DomHelper.append(document.body,
54386                         config.autoCreate, true);
54387         }else{
54388             this.el = Roo.DomHelper.append(document.body,
54389                         {tag: "div", cls: "x-layout-inactive-content", id: config.id||el}, true);
54390         }
54391     }
54392     
54393     
54394     this.closable = false;
54395     this.loaded = false;
54396     this.active = false;
54397     if(typeof config == "string"){
54398         this.title = config;
54399     }else{
54400         Roo.apply(this, config);
54401     }
54402     
54403     if (this.toolbar && !this.toolbar.el && this.toolbar.xtype) {
54404         this.wrapEl = this.el.wrap();
54405         this.toolbar.container = this.el.insertSibling(false, 'before');
54406         this.toolbar = new Roo.Toolbar(this.toolbar);
54407     }
54408     
54409     // xtype created footer. - not sure if will work as we normally have to render first..
54410     if (this.footer && !this.footer.el && this.footer.xtype) {
54411         if (!this.wrapEl) {
54412             this.wrapEl = this.el.wrap();
54413         }
54414     
54415         this.footer.container = this.wrapEl.createChild();
54416          
54417         this.footer = Roo.factory(this.footer, Roo);
54418         
54419     }
54420     
54421     if(this.resizeEl){
54422         this.resizeEl = Roo.get(this.resizeEl, true);
54423     }else{
54424         this.resizeEl = this.el;
54425     }
54426     // handle view.xtype
54427     
54428  
54429     
54430     
54431     this.addEvents({
54432         /**
54433          * @event activate
54434          * Fires when this panel is activated. 
54435          * @param {Roo.ContentPanel} this
54436          */
54437         "activate" : true,
54438         /**
54439          * @event deactivate
54440          * Fires when this panel is activated. 
54441          * @param {Roo.ContentPanel} this
54442          */
54443         "deactivate" : true,
54444
54445         /**
54446          * @event resize
54447          * Fires when this panel is resized if fitToFrame is true.
54448          * @param {Roo.ContentPanel} this
54449          * @param {Number} width The width after any component adjustments
54450          * @param {Number} height The height after any component adjustments
54451          */
54452         "resize" : true,
54453         
54454          /**
54455          * @event render
54456          * Fires when this tab is created
54457          * @param {Roo.ContentPanel} this
54458          */
54459         "render" : true
54460          
54461         
54462     });
54463     
54464
54465     
54466     
54467     if(this.autoScroll){
54468         this.resizeEl.setStyle("overflow", "auto");
54469     } else {
54470         // fix randome scrolling
54471         this.el.on('scroll', function() {
54472             Roo.log('fix random scolling');
54473             this.scrollTo('top',0); 
54474         });
54475     }
54476     content = content || this.content;
54477     if(content){
54478         this.setContent(content);
54479     }
54480     if(config && config.url){
54481         this.setUrl(this.url, this.params, this.loadOnce);
54482     }
54483     
54484     
54485     
54486     Roo.ContentPanel.superclass.constructor.call(this);
54487     
54488     if (this.view && typeof(this.view.xtype) != 'undefined') {
54489         this.view.el = this.el.appendChild(document.createElement("div"));
54490         this.view = Roo.factory(this.view); 
54491         this.view.render  &&  this.view.render(false, '');  
54492     }
54493     
54494     
54495     this.fireEvent('render', this);
54496 };
54497
54498 Roo.extend(Roo.ContentPanel, Roo.util.Observable, {
54499     tabTip:'',
54500     setRegion : function(region){
54501         this.region = region;
54502         if(region){
54503            this.el.replaceClass("x-layout-inactive-content", "x-layout-active-content");
54504         }else{
54505            this.el.replaceClass("x-layout-active-content", "x-layout-inactive-content");
54506         } 
54507     },
54508     
54509     /**
54510      * Returns the toolbar for this Panel if one was configured. 
54511      * @return {Roo.Toolbar} 
54512      */
54513     getToolbar : function(){
54514         return this.toolbar;
54515     },
54516     
54517     setActiveState : function(active){
54518         this.active = active;
54519         if(!active){
54520             this.fireEvent("deactivate", this);
54521         }else{
54522             this.fireEvent("activate", this);
54523         }
54524     },
54525     /**
54526      * Updates this panel's element
54527      * @param {String} content The new content
54528      * @param {Boolean} loadScripts (optional) true to look for and process scripts
54529     */
54530     setContent : function(content, loadScripts){
54531         this.el.update(content, loadScripts);
54532     },
54533
54534     ignoreResize : function(w, h){
54535         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
54536             return true;
54537         }else{
54538             this.lastSize = {width: w, height: h};
54539             return false;
54540         }
54541     },
54542     /**
54543      * Get the {@link Roo.UpdateManager} for this panel. Enables you to perform Ajax updates.
54544      * @return {Roo.UpdateManager} The UpdateManager
54545      */
54546     getUpdateManager : function(){
54547         return this.el.getUpdateManager();
54548     },
54549      /**
54550      * Loads this content panel immediately with content from XHR. Note: to delay loading until the panel is activated, use {@link #setUrl}.
54551      * @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:
54552 <pre><code>
54553 panel.load({
54554     url: "your-url.php",
54555     params: {param1: "foo", param2: "bar"}, // or a URL encoded string
54556     callback: yourFunction,
54557     scope: yourObject, //(optional scope)
54558     discardUrl: false,
54559     nocache: false,
54560     text: "Loading...",
54561     timeout: 30,
54562     scripts: false
54563 });
54564 </code></pre>
54565      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
54566      * 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.
54567      * @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}
54568      * @param {Function} callback (optional) Callback when transaction is complete -- called with signature (oElement, bSuccess, oResponse)
54569      * @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.
54570      * @return {Roo.ContentPanel} this
54571      */
54572     load : function(){
54573         var um = this.el.getUpdateManager();
54574         um.update.apply(um, arguments);
54575         return this;
54576     },
54577
54578
54579     /**
54580      * 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.
54581      * @param {String/Function} url The URL to load the content from or a function to call to get the URL
54582      * @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)
54583      * @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)
54584      * @return {Roo.UpdateManager} The UpdateManager
54585      */
54586     setUrl : function(url, params, loadOnce){
54587         if(this.refreshDelegate){
54588             this.removeListener("activate", this.refreshDelegate);
54589         }
54590         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
54591         this.on("activate", this.refreshDelegate);
54592         return this.el.getUpdateManager();
54593     },
54594     
54595     _handleRefresh : function(url, params, loadOnce){
54596         if(!loadOnce || !this.loaded){
54597             var updater = this.el.getUpdateManager();
54598             updater.update(url, params, this._setLoaded.createDelegate(this));
54599         }
54600     },
54601     
54602     _setLoaded : function(){
54603         this.loaded = true;
54604     }, 
54605     
54606     /**
54607      * Returns this panel's id
54608      * @return {String} 
54609      */
54610     getId : function(){
54611         return this.el.id;
54612     },
54613     
54614     /** 
54615      * Returns this panel's element - used by regiosn to add.
54616      * @return {Roo.Element} 
54617      */
54618     getEl : function(){
54619         return this.wrapEl || this.el;
54620     },
54621     
54622     adjustForComponents : function(width, height)
54623     {
54624         //Roo.log('adjustForComponents ');
54625         if(this.resizeEl != this.el){
54626             width -= this.el.getFrameWidth('lr');
54627             height -= this.el.getFrameWidth('tb');
54628         }
54629         if(this.toolbar){
54630             var te = this.toolbar.getEl();
54631             height -= te.getHeight();
54632             te.setWidth(width);
54633         }
54634         if(this.footer){
54635             var te = this.footer.getEl();
54636             //Roo.log("footer:" + te.getHeight());
54637             
54638             height -= te.getHeight();
54639             te.setWidth(width);
54640         }
54641         
54642         
54643         if(this.adjustments){
54644             width += this.adjustments[0];
54645             height += this.adjustments[1];
54646         }
54647         return {"width": width, "height": height};
54648     },
54649     
54650     setSize : function(width, height){
54651         if(this.fitToFrame && !this.ignoreResize(width, height)){
54652             if(this.fitContainer && this.resizeEl != this.el){
54653                 this.el.setSize(width, height);
54654             }
54655             var size = this.adjustForComponents(width, height);
54656             this.resizeEl.setSize(this.autoWidth ? "auto" : size.width, this.autoHeight ? "auto" : size.height);
54657             this.fireEvent('resize', this, size.width, size.height);
54658         }
54659     },
54660     
54661     /**
54662      * Returns this panel's title
54663      * @return {String} 
54664      */
54665     getTitle : function(){
54666         return this.title;
54667     },
54668     
54669     /**
54670      * Set this panel's title
54671      * @param {String} title
54672      */
54673     setTitle : function(title){
54674         this.title = title;
54675         if(this.region){
54676             this.region.updatePanelTitle(this, title);
54677         }
54678     },
54679     
54680     /**
54681      * Returns true is this panel was configured to be closable
54682      * @return {Boolean} 
54683      */
54684     isClosable : function(){
54685         return this.closable;
54686     },
54687     
54688     beforeSlide : function(){
54689         this.el.clip();
54690         this.resizeEl.clip();
54691     },
54692     
54693     afterSlide : function(){
54694         this.el.unclip();
54695         this.resizeEl.unclip();
54696     },
54697     
54698     /**
54699      *   Force a content refresh from the URL specified in the {@link #setUrl} method.
54700      *   Will fail silently if the {@link #setUrl} method has not been called.
54701      *   This does not activate the panel, just updates its content.
54702      */
54703     refresh : function(){
54704         if(this.refreshDelegate){
54705            this.loaded = false;
54706            this.refreshDelegate();
54707         }
54708     },
54709     
54710     /**
54711      * Destroys this panel
54712      */
54713     destroy : function(){
54714         this.el.removeAllListeners();
54715         var tempEl = document.createElement("span");
54716         tempEl.appendChild(this.el.dom);
54717         tempEl.innerHTML = "";
54718         this.el.remove();
54719         this.el = null;
54720     },
54721     
54722     /**
54723      * form - if the content panel contains a form - this is a reference to it.
54724      * @type {Roo.form.Form}
54725      */
54726     form : false,
54727     /**
54728      * view - if the content panel contains a view (Roo.DatePicker / Roo.View / Roo.JsonView)
54729      *    This contains a reference to it.
54730      * @type {Roo.View}
54731      */
54732     view : false,
54733     
54734       /**
54735      * Adds a xtype elements to the panel - currently only supports Forms, View, JsonView.
54736      * <pre><code>
54737
54738 layout.addxtype({
54739        xtype : 'Form',
54740        items: [ .... ]
54741    }
54742 );
54743
54744 </code></pre>
54745      * @param {Object} cfg Xtype definition of item to add.
54746      */
54747     
54748     addxtype : function(cfg) {
54749         // add form..
54750         if (cfg.xtype.match(/^Form$/)) {
54751             
54752             var el;
54753             //if (this.footer) {
54754             //    el = this.footer.container.insertSibling(false, 'before');
54755             //} else {
54756                 el = this.el.createChild();
54757             //}
54758
54759             this.form = new  Roo.form.Form(cfg);
54760             
54761             
54762             if ( this.form.allItems.length) {
54763                 this.form.render(el.dom);
54764             }
54765             return this.form;
54766         }
54767         // should only have one of theses..
54768         if ([ 'View', 'JsonView', 'DatePicker'].indexOf(cfg.xtype) > -1) {
54769             // views.. should not be just added - used named prop 'view''
54770             
54771             cfg.el = this.el.appendChild(document.createElement("div"));
54772             // factory?
54773             
54774             var ret = new Roo.factory(cfg);
54775              
54776              ret.render && ret.render(false, ''); // render blank..
54777             this.view = ret;
54778             return ret;
54779         }
54780         return false;
54781     }
54782 });
54783
54784 /**
54785  * @class Roo.GridPanel
54786  * @extends Roo.ContentPanel
54787  * @constructor
54788  * Create a new GridPanel.
54789  * @param {Roo.grid.Grid} grid The grid for this panel
54790  * @param {String/Object} config A string to set only the panel's title, or a config object
54791  */
54792 Roo.GridPanel = function(grid, config){
54793     
54794   
54795     this.wrapper = Roo.DomHelper.append(document.body, // wrapper for IE7 strict & safari scroll issue
54796         {tag: "div", cls: "x-layout-grid-wrapper x-layout-inactive-content"}, true);
54797         
54798     this.wrapper.dom.appendChild(grid.getGridEl().dom);
54799     
54800     Roo.GridPanel.superclass.constructor.call(this, this.wrapper, config);
54801     
54802     if(this.toolbar){
54803         this.toolbar.el.insertBefore(this.wrapper.dom.firstChild);
54804     }
54805     // xtype created footer. - not sure if will work as we normally have to render first..
54806     if (this.footer && !this.footer.el && this.footer.xtype) {
54807         
54808         this.footer.container = this.grid.getView().getFooterPanel(true);
54809         this.footer.dataSource = this.grid.dataSource;
54810         this.footer = Roo.factory(this.footer, Roo);
54811         
54812     }
54813     
54814     grid.monitorWindowResize = false; // turn off autosizing
54815     grid.autoHeight = false;
54816     grid.autoWidth = false;
54817     this.grid = grid;
54818     this.grid.getGridEl().replaceClass("x-layout-inactive-content", "x-layout-component-panel");
54819 };
54820
54821 Roo.extend(Roo.GridPanel, Roo.ContentPanel, {
54822     getId : function(){
54823         return this.grid.id;
54824     },
54825     
54826     /**
54827      * Returns the grid for this panel
54828      * @return {Roo.grid.Grid} 
54829      */
54830     getGrid : function(){
54831         return this.grid;    
54832     },
54833     
54834     setSize : function(width, height){
54835         if(!this.ignoreResize(width, height)){
54836             var grid = this.grid;
54837             var size = this.adjustForComponents(width, height);
54838             grid.getGridEl().setSize(size.width, size.height);
54839             grid.autoSize();
54840         }
54841     },
54842     
54843     beforeSlide : function(){
54844         this.grid.getView().scroller.clip();
54845     },
54846     
54847     afterSlide : function(){
54848         this.grid.getView().scroller.unclip();
54849     },
54850     
54851     destroy : function(){
54852         this.grid.destroy();
54853         delete this.grid;
54854         Roo.GridPanel.superclass.destroy.call(this); 
54855     }
54856 });
54857
54858
54859 /**
54860  * @class Roo.NestedLayoutPanel
54861  * @extends Roo.ContentPanel
54862  * @constructor
54863  * Create a new NestedLayoutPanel.
54864  * 
54865  * 
54866  * @param {Roo.BorderLayout} layout The layout for this panel
54867  * @param {String/Object} config A string to set only the title or a config object
54868  */
54869 Roo.NestedLayoutPanel = function(layout, config)
54870 {
54871     // construct with only one argument..
54872     /* FIXME - implement nicer consturctors
54873     if (layout.layout) {
54874         config = layout;
54875         layout = config.layout;
54876         delete config.layout;
54877     }
54878     if (layout.xtype && !layout.getEl) {
54879         // then layout needs constructing..
54880         layout = Roo.factory(layout, Roo);
54881     }
54882     */
54883     
54884     
54885     Roo.NestedLayoutPanel.superclass.constructor.call(this, layout.getEl(), config);
54886     
54887     layout.monitorWindowResize = false; // turn off autosizing
54888     this.layout = layout;
54889     this.layout.getEl().addClass("x-layout-nested-layout");
54890     
54891     
54892     
54893     
54894 };
54895
54896 Roo.extend(Roo.NestedLayoutPanel, Roo.ContentPanel, {
54897
54898     setSize : function(width, height){
54899         if(!this.ignoreResize(width, height)){
54900             var size = this.adjustForComponents(width, height);
54901             var el = this.layout.getEl();
54902             el.setSize(size.width, size.height);
54903             var touch = el.dom.offsetWidth;
54904             this.layout.layout();
54905             // ie requires a double layout on the first pass
54906             if(Roo.isIE && !this.initialized){
54907                 this.initialized = true;
54908                 this.layout.layout();
54909             }
54910         }
54911     },
54912     
54913     // activate all subpanels if not currently active..
54914     
54915     setActiveState : function(active){
54916         this.active = active;
54917         if(!active){
54918             this.fireEvent("deactivate", this);
54919             return;
54920         }
54921         
54922         this.fireEvent("activate", this);
54923         // not sure if this should happen before or after..
54924         if (!this.layout) {
54925             return; // should not happen..
54926         }
54927         var reg = false;
54928         for (var r in this.layout.regions) {
54929             reg = this.layout.getRegion(r);
54930             if (reg.getActivePanel()) {
54931                 //reg.showPanel(reg.getActivePanel()); // force it to activate.. 
54932                 reg.setActivePanel(reg.getActivePanel());
54933                 continue;
54934             }
54935             if (!reg.panels.length) {
54936                 continue;
54937             }
54938             reg.showPanel(reg.getPanel(0));
54939         }
54940         
54941         
54942         
54943         
54944     },
54945     
54946     /**
54947      * Returns the nested BorderLayout for this panel
54948      * @return {Roo.BorderLayout} 
54949      */
54950     getLayout : function(){
54951         return this.layout;
54952     },
54953     
54954      /**
54955      * Adds a xtype elements to the layout of the nested panel
54956      * <pre><code>
54957
54958 panel.addxtype({
54959        xtype : 'ContentPanel',
54960        region: 'west',
54961        items: [ .... ]
54962    }
54963 );
54964
54965 panel.addxtype({
54966         xtype : 'NestedLayoutPanel',
54967         region: 'west',
54968         layout: {
54969            center: { },
54970            west: { }   
54971         },
54972         items : [ ... list of content panels or nested layout panels.. ]
54973    }
54974 );
54975 </code></pre>
54976      * @param {Object} cfg Xtype definition of item to add.
54977      */
54978     addxtype : function(cfg) {
54979         return this.layout.addxtype(cfg);
54980     
54981     }
54982 });
54983
54984 Roo.ScrollPanel = function(el, config, content){
54985     config = config || {};
54986     config.fitToFrame = true;
54987     Roo.ScrollPanel.superclass.constructor.call(this, el, config, content);
54988     
54989     this.el.dom.style.overflow = "hidden";
54990     var wrap = this.el.wrap({cls: "x-scroller x-layout-inactive-content"});
54991     this.el.removeClass("x-layout-inactive-content");
54992     this.el.on("mousewheel", this.onWheel, this);
54993
54994     var up = wrap.createChild({cls: "x-scroller-up", html: "&#160;"}, this.el.dom);
54995     var down = wrap.createChild({cls: "x-scroller-down", html: "&#160;"});
54996     up.unselectable(); down.unselectable();
54997     up.on("click", this.scrollUp, this);
54998     down.on("click", this.scrollDown, this);
54999     up.addClassOnOver("x-scroller-btn-over");
55000     down.addClassOnOver("x-scroller-btn-over");
55001     up.addClassOnClick("x-scroller-btn-click");
55002     down.addClassOnClick("x-scroller-btn-click");
55003     this.adjustments = [0, -(up.getHeight() + down.getHeight())];
55004
55005     this.resizeEl = this.el;
55006     this.el = wrap; this.up = up; this.down = down;
55007 };
55008
55009 Roo.extend(Roo.ScrollPanel, Roo.ContentPanel, {
55010     increment : 100,
55011     wheelIncrement : 5,
55012     scrollUp : function(){
55013         this.resizeEl.scroll("up", this.increment, {callback: this.afterScroll, scope: this});
55014     },
55015
55016     scrollDown : function(){
55017         this.resizeEl.scroll("down", this.increment, {callback: this.afterScroll, scope: this});
55018     },
55019
55020     afterScroll : function(){
55021         var el = this.resizeEl;
55022         var t = el.dom.scrollTop, h = el.dom.scrollHeight, ch = el.dom.clientHeight;
55023         this.up[t == 0 ? "addClass" : "removeClass"]("x-scroller-btn-disabled");
55024         this.down[h - t <= ch ? "addClass" : "removeClass"]("x-scroller-btn-disabled");
55025     },
55026
55027     setSize : function(){
55028         Roo.ScrollPanel.superclass.setSize.apply(this, arguments);
55029         this.afterScroll();
55030     },
55031
55032     onWheel : function(e){
55033         var d = e.getWheelDelta();
55034         this.resizeEl.dom.scrollTop -= (d*this.wheelIncrement);
55035         this.afterScroll();
55036         e.stopEvent();
55037     },
55038
55039     setContent : function(content, loadScripts){
55040         this.resizeEl.update(content, loadScripts);
55041     }
55042
55043 });
55044
55045
55046
55047
55048
55049
55050
55051
55052
55053 /**
55054  * @class Roo.TreePanel
55055  * @extends Roo.ContentPanel
55056  * @constructor
55057  * Create a new TreePanel. - defaults to fit/scoll contents.
55058  * @param {String/Object} config A string to set only the panel's title, or a config object
55059  * @cfg {Roo.tree.TreePanel} tree The tree TreePanel, with config etc.
55060  */
55061 Roo.TreePanel = function(config){
55062     var el = config.el;
55063     var tree = config.tree;
55064     delete config.tree; 
55065     delete config.el; // hopefull!
55066     
55067     // wrapper for IE7 strict & safari scroll issue
55068     
55069     var treeEl = el.createChild();
55070     config.resizeEl = treeEl;
55071     
55072     
55073     
55074     Roo.TreePanel.superclass.constructor.call(this, el, config);
55075  
55076  
55077     this.tree = new Roo.tree.TreePanel(treeEl , tree);
55078     //console.log(tree);
55079     this.on('activate', function()
55080     {
55081         if (this.tree.rendered) {
55082             return;
55083         }
55084         //console.log('render tree');
55085         this.tree.render();
55086     });
55087     // this should not be needed.. - it's actually the 'el' that resizes?
55088     // actuall it breaks the containerScroll - dragging nodes auto scroll at top
55089     
55090     //this.on('resize',  function (cp, w, h) {
55091     //        this.tree.innerCt.setWidth(w);
55092     //        this.tree.innerCt.setHeight(h);
55093     //        //this.tree.innerCt.setStyle('overflow-y', 'auto');
55094     //});
55095
55096         
55097     
55098 };
55099
55100 Roo.extend(Roo.TreePanel, Roo.ContentPanel, {   
55101     fitToFrame : true,
55102     autoScroll : true
55103 });
55104
55105
55106
55107
55108
55109
55110
55111
55112
55113
55114
55115 /*
55116  * Based on:
55117  * Ext JS Library 1.1.1
55118  * Copyright(c) 2006-2007, Ext JS, LLC.
55119  *
55120  * Originally Released Under LGPL - original licence link has changed is not relivant.
55121  *
55122  * Fork - LGPL
55123  * <script type="text/javascript">
55124  */
55125  
55126
55127 /**
55128  * @class Roo.ReaderLayout
55129  * @extends Roo.BorderLayout
55130  * This is a pre-built layout that represents a classic, 5-pane application.  It consists of a header, a primary
55131  * center region containing two nested regions (a top one for a list view and one for item preview below),
55132  * and regions on either side that can be used for navigation, application commands, informational displays, etc.
55133  * The setup and configuration work exactly the same as it does for a {@link Roo.BorderLayout} - this class simply
55134  * expedites the setup of the overall layout and regions for this common application style.
55135  * Example:
55136  <pre><code>
55137 var reader = new Roo.ReaderLayout();
55138 var CP = Roo.ContentPanel;  // shortcut for adding
55139
55140 reader.beginUpdate();
55141 reader.add("north", new CP("north", "North"));
55142 reader.add("west", new CP("west", {title: "West"}));
55143 reader.add("east", new CP("east", {title: "East"}));
55144
55145 reader.regions.listView.add(new CP("listView", "List"));
55146 reader.regions.preview.add(new CP("preview", "Preview"));
55147 reader.endUpdate();
55148 </code></pre>
55149 * @constructor
55150 * Create a new ReaderLayout
55151 * @param {Object} config Configuration options
55152 * @param {String/HTMLElement/Element} container (optional) The container this layout is bound to (defaults to
55153 * document.body if omitted)
55154 */
55155 Roo.ReaderLayout = function(config, renderTo){
55156     var c = config || {size:{}};
55157     Roo.ReaderLayout.superclass.constructor.call(this, renderTo || document.body, {
55158         north: c.north !== false ? Roo.apply({
55159             split:false,
55160             initialSize: 32,
55161             titlebar: false
55162         }, c.north) : false,
55163         west: c.west !== false ? Roo.apply({
55164             split:true,
55165             initialSize: 200,
55166             minSize: 175,
55167             maxSize: 400,
55168             titlebar: true,
55169             collapsible: true,
55170             animate: true,
55171             margins:{left:5,right:0,bottom:5,top:5},
55172             cmargins:{left:5,right:5,bottom:5,top:5}
55173         }, c.west) : false,
55174         east: c.east !== false ? Roo.apply({
55175             split:true,
55176             initialSize: 200,
55177             minSize: 175,
55178             maxSize: 400,
55179             titlebar: true,
55180             collapsible: true,
55181             animate: true,
55182             margins:{left:0,right:5,bottom:5,top:5},
55183             cmargins:{left:5,right:5,bottom:5,top:5}
55184         }, c.east) : false,
55185         center: Roo.apply({
55186             tabPosition: 'top',
55187             autoScroll:false,
55188             closeOnTab: true,
55189             titlebar:false,
55190             margins:{left:c.west!==false ? 0 : 5,right:c.east!==false ? 0 : 5,bottom:5,top:2}
55191         }, c.center)
55192     });
55193
55194     this.el.addClass('x-reader');
55195
55196     this.beginUpdate();
55197
55198     var inner = new Roo.BorderLayout(Roo.get(document.body).createChild(), {
55199         south: c.preview !== false ? Roo.apply({
55200             split:true,
55201             initialSize: 200,
55202             minSize: 100,
55203             autoScroll:true,
55204             collapsible:true,
55205             titlebar: true,
55206             cmargins:{top:5,left:0, right:0, bottom:0}
55207         }, c.preview) : false,
55208         center: Roo.apply({
55209             autoScroll:false,
55210             titlebar:false,
55211             minHeight:200
55212         }, c.listView)
55213     });
55214     this.add('center', new Roo.NestedLayoutPanel(inner,
55215             Roo.apply({title: c.mainTitle || '',tabTip:''},c.innerPanelCfg)));
55216
55217     this.endUpdate();
55218
55219     this.regions.preview = inner.getRegion('south');
55220     this.regions.listView = inner.getRegion('center');
55221 };
55222
55223 Roo.extend(Roo.ReaderLayout, Roo.BorderLayout);/*
55224  * Based on:
55225  * Ext JS Library 1.1.1
55226  * Copyright(c) 2006-2007, Ext JS, LLC.
55227  *
55228  * Originally Released Under LGPL - original licence link has changed is not relivant.
55229  *
55230  * Fork - LGPL
55231  * <script type="text/javascript">
55232  */
55233  
55234 /**
55235  * @class Roo.grid.Grid
55236  * @extends Roo.util.Observable
55237  * This class represents the primary interface of a component based grid control.
55238  * <br><br>Usage:<pre><code>
55239  var grid = new Roo.grid.Grid("my-container-id", {
55240      ds: myDataStore,
55241      cm: myColModel,
55242      selModel: mySelectionModel,
55243      autoSizeColumns: true,
55244      monitorWindowResize: false,
55245      trackMouseOver: true
55246  });
55247  // set any options
55248  grid.render();
55249  * </code></pre>
55250  * <b>Common Problems:</b><br/>
55251  * - Grid does not resize properly when going smaller: Setting overflow hidden on the container
55252  * element will correct this<br/>
55253  * - If you get el.style[camel]= NaNpx or -2px or something related, be certain you have given your container element
55254  * dimensions. The grid adapts to your container's size, if your container has no size defined then the results
55255  * are unpredictable.<br/>
55256  * - Do not render the grid into an element with display:none. Try using visibility:hidden. Otherwise there is no way for the
55257  * grid to calculate dimensions/offsets.<br/>
55258   * @constructor
55259  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
55260  * The container MUST have some type of size defined for the grid to fill. The container will be
55261  * automatically set to position relative if it isn't already.
55262  * @param {Object} config A config object that sets properties on this grid.
55263  */
55264 Roo.grid.Grid = function(container, config){
55265         // initialize the container
55266         this.container = Roo.get(container);
55267         this.container.update("");
55268         this.container.setStyle("overflow", "hidden");
55269     this.container.addClass('x-grid-container');
55270
55271     this.id = this.container.id;
55272
55273     Roo.apply(this, config);
55274     // check and correct shorthanded configs
55275     if(this.ds){
55276         this.dataSource = this.ds;
55277         delete this.ds;
55278     }
55279     if(this.cm){
55280         this.colModel = this.cm;
55281         delete this.cm;
55282     }
55283     if(this.sm){
55284         this.selModel = this.sm;
55285         delete this.sm;
55286     }
55287
55288     if (this.selModel) {
55289         this.selModel = Roo.factory(this.selModel, Roo.grid);
55290         this.sm = this.selModel;
55291         this.sm.xmodule = this.xmodule || false;
55292     }
55293     if (typeof(this.colModel.config) == 'undefined') {
55294         this.colModel = new Roo.grid.ColumnModel(this.colModel);
55295         this.cm = this.colModel;
55296         this.cm.xmodule = this.xmodule || false;
55297     }
55298     if (this.dataSource) {
55299         this.dataSource= Roo.factory(this.dataSource, Roo.data);
55300         this.ds = this.dataSource;
55301         this.ds.xmodule = this.xmodule || false;
55302          
55303     }
55304     
55305     
55306     
55307     if(this.width){
55308         this.container.setWidth(this.width);
55309     }
55310
55311     if(this.height){
55312         this.container.setHeight(this.height);
55313     }
55314     /** @private */
55315         this.addEvents({
55316         // raw events
55317         /**
55318          * @event click
55319          * The raw click event for the entire grid.
55320          * @param {Roo.EventObject} e
55321          */
55322         "click" : true,
55323         /**
55324          * @event dblclick
55325          * The raw dblclick event for the entire grid.
55326          * @param {Roo.EventObject} e
55327          */
55328         "dblclick" : true,
55329         /**
55330          * @event contextmenu
55331          * The raw contextmenu event for the entire grid.
55332          * @param {Roo.EventObject} e
55333          */
55334         "contextmenu" : true,
55335         /**
55336          * @event mousedown
55337          * The raw mousedown event for the entire grid.
55338          * @param {Roo.EventObject} e
55339          */
55340         "mousedown" : true,
55341         /**
55342          * @event mouseup
55343          * The raw mouseup event for the entire grid.
55344          * @param {Roo.EventObject} e
55345          */
55346         "mouseup" : true,
55347         /**
55348          * @event mouseover
55349          * The raw mouseover event for the entire grid.
55350          * @param {Roo.EventObject} e
55351          */
55352         "mouseover" : true,
55353         /**
55354          * @event mouseout
55355          * The raw mouseout event for the entire grid.
55356          * @param {Roo.EventObject} e
55357          */
55358         "mouseout" : true,
55359         /**
55360          * @event keypress
55361          * The raw keypress event for the entire grid.
55362          * @param {Roo.EventObject} e
55363          */
55364         "keypress" : true,
55365         /**
55366          * @event keydown
55367          * The raw keydown event for the entire grid.
55368          * @param {Roo.EventObject} e
55369          */
55370         "keydown" : true,
55371
55372         // custom events
55373
55374         /**
55375          * @event cellclick
55376          * Fires when a cell is clicked
55377          * @param {Grid} this
55378          * @param {Number} rowIndex
55379          * @param {Number} columnIndex
55380          * @param {Roo.EventObject} e
55381          */
55382         "cellclick" : true,
55383         /**
55384          * @event celldblclick
55385          * Fires when a cell is double clicked
55386          * @param {Grid} this
55387          * @param {Number} rowIndex
55388          * @param {Number} columnIndex
55389          * @param {Roo.EventObject} e
55390          */
55391         "celldblclick" : true,
55392         /**
55393          * @event rowclick
55394          * Fires when a row is clicked
55395          * @param {Grid} this
55396          * @param {Number} rowIndex
55397          * @param {Roo.EventObject} e
55398          */
55399         "rowclick" : true,
55400         /**
55401          * @event rowdblclick
55402          * Fires when a row is double clicked
55403          * @param {Grid} this
55404          * @param {Number} rowIndex
55405          * @param {Roo.EventObject} e
55406          */
55407         "rowdblclick" : true,
55408         /**
55409          * @event headerclick
55410          * Fires when a header is clicked
55411          * @param {Grid} this
55412          * @param {Number} columnIndex
55413          * @param {Roo.EventObject} e
55414          */
55415         "headerclick" : true,
55416         /**
55417          * @event headerdblclick
55418          * Fires when a header cell is double clicked
55419          * @param {Grid} this
55420          * @param {Number} columnIndex
55421          * @param {Roo.EventObject} e
55422          */
55423         "headerdblclick" : true,
55424         /**
55425          * @event rowcontextmenu
55426          * Fires when a row is right clicked
55427          * @param {Grid} this
55428          * @param {Number} rowIndex
55429          * @param {Roo.EventObject} e
55430          */
55431         "rowcontextmenu" : true,
55432         /**
55433          * @event cellcontextmenu
55434          * Fires when a cell is right clicked
55435          * @param {Grid} this
55436          * @param {Number} rowIndex
55437          * @param {Number} cellIndex
55438          * @param {Roo.EventObject} e
55439          */
55440          "cellcontextmenu" : true,
55441         /**
55442          * @event headercontextmenu
55443          * Fires when a header is right clicked
55444          * @param {Grid} this
55445          * @param {Number} columnIndex
55446          * @param {Roo.EventObject} e
55447          */
55448         "headercontextmenu" : true,
55449         /**
55450          * @event bodyscroll
55451          * Fires when the body element is scrolled
55452          * @param {Number} scrollLeft
55453          * @param {Number} scrollTop
55454          */
55455         "bodyscroll" : true,
55456         /**
55457          * @event columnresize
55458          * Fires when the user resizes a column
55459          * @param {Number} columnIndex
55460          * @param {Number} newSize
55461          */
55462         "columnresize" : true,
55463         /**
55464          * @event columnmove
55465          * Fires when the user moves a column
55466          * @param {Number} oldIndex
55467          * @param {Number} newIndex
55468          */
55469         "columnmove" : true,
55470         /**
55471          * @event startdrag
55472          * Fires when row(s) start being dragged
55473          * @param {Grid} this
55474          * @param {Roo.GridDD} dd The drag drop object
55475          * @param {event} e The raw browser event
55476          */
55477         "startdrag" : true,
55478         /**
55479          * @event enddrag
55480          * Fires when a drag operation is complete
55481          * @param {Grid} this
55482          * @param {Roo.GridDD} dd The drag drop object
55483          * @param {event} e The raw browser event
55484          */
55485         "enddrag" : true,
55486         /**
55487          * @event dragdrop
55488          * Fires when dragged row(s) are dropped on a valid DD target
55489          * @param {Grid} this
55490          * @param {Roo.GridDD} dd The drag drop object
55491          * @param {String} targetId The target drag drop object
55492          * @param {event} e The raw browser event
55493          */
55494         "dragdrop" : true,
55495         /**
55496          * @event dragover
55497          * Fires while row(s) are being dragged. "targetId" is the id of the Yahoo.util.DD object the selected rows are being dragged over.
55498          * @param {Grid} this
55499          * @param {Roo.GridDD} dd The drag drop object
55500          * @param {String} targetId The target drag drop object
55501          * @param {event} e The raw browser event
55502          */
55503         "dragover" : true,
55504         /**
55505          * @event dragenter
55506          *  Fires when the dragged row(s) first cross another DD target while being dragged
55507          * @param {Grid} this
55508          * @param {Roo.GridDD} dd The drag drop object
55509          * @param {String} targetId The target drag drop object
55510          * @param {event} e The raw browser event
55511          */
55512         "dragenter" : true,
55513         /**
55514          * @event dragout
55515          * Fires when the dragged row(s) leave another DD target while being dragged
55516          * @param {Grid} this
55517          * @param {Roo.GridDD} dd The drag drop object
55518          * @param {String} targetId The target drag drop object
55519          * @param {event} e The raw browser event
55520          */
55521         "dragout" : true,
55522         /**
55523          * @event rowclass
55524          * Fires when a row is rendered, so you can change add a style to it.
55525          * @param {GridView} gridview   The grid view
55526          * @param {Object} rowcfg   contains record  rowIndex and rowClass - set rowClass to add a style.
55527          */
55528         'rowclass' : true,
55529
55530         /**
55531          * @event render
55532          * Fires when the grid is rendered
55533          * @param {Grid} grid
55534          */
55535         'render' : true
55536     });
55537
55538     Roo.grid.Grid.superclass.constructor.call(this);
55539 };
55540 Roo.extend(Roo.grid.Grid, Roo.util.Observable, {
55541     
55542     /**
55543      * @cfg {String} ddGroup - drag drop group.
55544      */
55545       /**
55546      * @cfg {String} dragGroup - drag group (?? not sure if needed.)
55547      */
55548
55549     /**
55550      * @cfg {Number} minColumnWidth The minimum width a column can be resized to. Default is 25.
55551      */
55552     minColumnWidth : 25,
55553
55554     /**
55555      * @cfg {Boolean} autoSizeColumns True to automatically resize the columns to fit their content
55556      * <b>on initial render.</b> It is more efficient to explicitly size the columns
55557      * through the ColumnModel's {@link Roo.grid.ColumnModel#width} config option.  Default is false.
55558      */
55559     autoSizeColumns : false,
55560
55561     /**
55562      * @cfg {Boolean} autoSizeHeaders True to measure headers with column data when auto sizing columns. Default is true.
55563      */
55564     autoSizeHeaders : true,
55565
55566     /**
55567      * @cfg {Boolean} monitorWindowResize True to autoSize the grid when the window resizes. Default is true.
55568      */
55569     monitorWindowResize : true,
55570
55571     /**
55572      * @cfg {Boolean} maxRowsToMeasure If autoSizeColumns is on, maxRowsToMeasure can be used to limit the number of
55573      * rows measured to get a columns size. Default is 0 (all rows).
55574      */
55575     maxRowsToMeasure : 0,
55576
55577     /**
55578      * @cfg {Boolean} trackMouseOver True to highlight rows when the mouse is over. Default is true.
55579      */
55580     trackMouseOver : true,
55581
55582     /**
55583     * @cfg {Boolean} enableDrag  True to enable drag of rows. Default is false. (double check if this is needed?)
55584     */
55585       /**
55586     * @cfg {Boolean} enableDrop  True to enable drop of elements. Default is false. (double check if this is needed?)
55587     */
55588     
55589     /**
55590     * @cfg {Boolean} enableDragDrop True to enable drag and drop of rows. Default is false.
55591     */
55592     enableDragDrop : false,
55593     
55594     /**
55595     * @cfg {Boolean} enableColumnMove True to enable drag and drop reorder of columns. Default is true.
55596     */
55597     enableColumnMove : true,
55598     
55599     /**
55600     * @cfg {Boolean} enableColumnHide True to enable hiding of columns with the header context menu. Default is true.
55601     */
55602     enableColumnHide : true,
55603     
55604     /**
55605     * @cfg {Boolean} enableRowHeightSync True to manually sync row heights across locked and not locked rows. Default is false.
55606     */
55607     enableRowHeightSync : false,
55608     
55609     /**
55610     * @cfg {Boolean} stripeRows True to stripe the rows.  Default is true.
55611     */
55612     stripeRows : true,
55613     
55614     /**
55615     * @cfg {Boolean} autoHeight True to fit the height of the grid container to the height of the data. Default is false.
55616     */
55617     autoHeight : false,
55618
55619     /**
55620      * @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.
55621      */
55622     autoExpandColumn : false,
55623
55624     /**
55625     * @cfg {Number} autoExpandMin The minimum width the autoExpandColumn can have (if enabled).
55626     * Default is 50.
55627     */
55628     autoExpandMin : 50,
55629
55630     /**
55631     * @cfg {Number} autoExpandMax The maximum width the autoExpandColumn can have (if enabled). Default is 1000.
55632     */
55633     autoExpandMax : 1000,
55634
55635     /**
55636     * @cfg {Object} view The {@link Roo.grid.GridView} used by the grid. This can be set before a call to render().
55637     */
55638     view : null,
55639
55640     /**
55641     * @cfg {Object} loadMask An {@link Roo.LoadMask} config or true to mask the grid while loading. Default is false.
55642     */
55643     loadMask : false,
55644     /**
55645     * @cfg {Roo.dd.DropTarget} dropTarget An {@link Roo.dd.DropTarget} config
55646     */
55647     dropTarget: false,
55648     
55649    
55650     
55651     // private
55652     rendered : false,
55653
55654     /**
55655     * @cfg {Boolean} autoWidth True to set the grid's width to the default total width of the grid's columns instead
55656     * of a fixed width. Default is false.
55657     */
55658     /**
55659     * @cfg {Number} maxHeight Sets the maximum height of the grid - ignored if autoHeight is not on.
55660     */
55661     
55662     
55663     /**
55664     * @cfg {String} ddText Configures the text is the drag proxy (defaults to "%0 selected row(s)").
55665     * %0 is replaced with the number of selected rows.
55666     */
55667     ddText : "{0} selected row{1}",
55668     
55669     
55670     /**
55671      * Called once after all setup has been completed and the grid is ready to be rendered.
55672      * @return {Roo.grid.Grid} this
55673      */
55674     render : function()
55675     {
55676         var c = this.container;
55677         // try to detect autoHeight/width mode
55678         if((!c.dom.offsetHeight || c.dom.offsetHeight < 20) || c.getStyle("height") == "auto"){
55679             this.autoHeight = true;
55680         }
55681         var view = this.getView();
55682         view.init(this);
55683
55684         c.on("click", this.onClick, this);
55685         c.on("dblclick", this.onDblClick, this);
55686         c.on("contextmenu", this.onContextMenu, this);
55687         c.on("keydown", this.onKeyDown, this);
55688         if (Roo.isTouch) {
55689             c.on("touchstart", this.onTouchStart, this);
55690         }
55691
55692         this.relayEvents(c, ["mousedown","mouseup","mouseover","mouseout","keypress"]);
55693
55694         this.getSelectionModel().init(this);
55695
55696         view.render();
55697
55698         if(this.loadMask){
55699             this.loadMask = new Roo.LoadMask(this.container,
55700                     Roo.apply({store:this.dataSource}, this.loadMask));
55701         }
55702         
55703         
55704         if (this.toolbar && this.toolbar.xtype) {
55705             this.toolbar.container = this.getView().getHeaderPanel(true);
55706             this.toolbar = new Roo.Toolbar(this.toolbar);
55707         }
55708         if (this.footer && this.footer.xtype) {
55709             this.footer.dataSource = this.getDataSource();
55710             this.footer.container = this.getView().getFooterPanel(true);
55711             this.footer = Roo.factory(this.footer, Roo);
55712         }
55713         if (this.dropTarget && this.dropTarget.xtype) {
55714             delete this.dropTarget.xtype;
55715             this.dropTarget =  new Roo.dd.DropTarget(this.getView().mainBody, this.dropTarget);
55716         }
55717         
55718         
55719         this.rendered = true;
55720         this.fireEvent('render', this);
55721         return this;
55722     },
55723
55724     /**
55725      * Reconfigures the grid to use a different Store and Column Model.
55726      * The View will be bound to the new objects and refreshed.
55727      * @param {Roo.data.Store} dataSource The new {@link Roo.data.Store} object
55728      * @param {Roo.grid.ColumnModel} The new {@link Roo.grid.ColumnModel} object
55729      */
55730     reconfigure : function(dataSource, colModel){
55731         if(this.loadMask){
55732             this.loadMask.destroy();
55733             this.loadMask = new Roo.LoadMask(this.container,
55734                     Roo.apply({store:dataSource}, this.loadMask));
55735         }
55736         this.view.bind(dataSource, colModel);
55737         this.dataSource = dataSource;
55738         this.colModel = colModel;
55739         this.view.refresh(true);
55740     },
55741     /**
55742      * addColumns
55743      * Add's a column, default at the end..
55744      
55745      * @param {int} position to add (default end)
55746      * @param {Array} of objects of column configuration see {@link Roo.grid.ColumnModel} 
55747      */
55748     addColumns : function(pos, ar)
55749     {
55750         
55751         for (var i =0;i< ar.length;i++) {
55752             var cfg = ar[i];
55753             cfg.id = typeof(cfg.id) == 'undefined' ? Roo.id() : cfg.id; // don't normally use this..
55754             this.cm.lookup[cfg.id] = cfg;
55755         }
55756         
55757         
55758         if (typeof(pos) == 'undefined' || pos >= this.cm.config.length) {
55759             pos = this.cm.config.length; //this.cm.config.push(cfg);
55760         } 
55761         pos = Math.max(0,pos);
55762         ar.unshift(0);
55763         ar.unshift(pos);
55764         this.cm.config.splice.apply(this.cm.config, ar);
55765         
55766         
55767         
55768         this.view.generateRules(this.cm);
55769         this.view.refresh(true);
55770         
55771     },
55772     
55773     
55774     
55775     
55776     // private
55777     onKeyDown : function(e){
55778         this.fireEvent("keydown", e);
55779     },
55780
55781     /**
55782      * Destroy this grid.
55783      * @param {Boolean} removeEl True to remove the element
55784      */
55785     destroy : function(removeEl, keepListeners){
55786         if(this.loadMask){
55787             this.loadMask.destroy();
55788         }
55789         var c = this.container;
55790         c.removeAllListeners();
55791         this.view.destroy();
55792         this.colModel.purgeListeners();
55793         if(!keepListeners){
55794             this.purgeListeners();
55795         }
55796         c.update("");
55797         if(removeEl === true){
55798             c.remove();
55799         }
55800     },
55801
55802     // private
55803     processEvent : function(name, e){
55804         // does this fire select???
55805         //Roo.log('grid:processEvent '  + name);
55806         
55807         if (name != 'touchstart' ) {
55808             this.fireEvent(name, e);    
55809         }
55810         
55811         var t = e.getTarget();
55812         var v = this.view;
55813         var header = v.findHeaderIndex(t);
55814         if(header !== false){
55815             var ename = name == 'touchstart' ? 'click' : name;
55816              
55817             this.fireEvent("header" + ename, this, header, e);
55818         }else{
55819             var row = v.findRowIndex(t);
55820             var cell = v.findCellIndex(t);
55821             if (name == 'touchstart') {
55822                 // first touch is always a click.
55823                 // hopefull this happens after selection is updated.?
55824                 name = false;
55825                 
55826                 if (typeof(this.selModel.getSelectedCell) != 'undefined') {
55827                     var cs = this.selModel.getSelectedCell();
55828                     if (row == cs[0] && cell == cs[1]){
55829                         name = 'dblclick';
55830                     }
55831                 }
55832                 if (typeof(this.selModel.getSelections) != 'undefined') {
55833                     var cs = this.selModel.getSelections();
55834                     var ds = this.dataSource;
55835                     if (cs.length == 1 && ds.getAt(row) == cs[0]){
55836                         name = 'dblclick';
55837                     }
55838                 }
55839                 if (!name) {
55840                     return;
55841                 }
55842             }
55843             
55844             
55845             if(row !== false){
55846                 this.fireEvent("row" + name, this, row, e);
55847                 if(cell !== false){
55848                     this.fireEvent("cell" + name, this, row, cell, e);
55849                 }
55850             }
55851         }
55852     },
55853
55854     // private
55855     onClick : function(e){
55856         this.processEvent("click", e);
55857     },
55858    // private
55859     onTouchStart : function(e){
55860         this.processEvent("touchstart", e);
55861     },
55862
55863     // private
55864     onContextMenu : function(e, t){
55865         this.processEvent("contextmenu", e);
55866     },
55867
55868     // private
55869     onDblClick : function(e){
55870         this.processEvent("dblclick", e);
55871     },
55872
55873     // private
55874     walkCells : function(row, col, step, fn, scope){
55875         var cm = this.colModel, clen = cm.getColumnCount();
55876         var ds = this.dataSource, rlen = ds.getCount(), first = true;
55877         if(step < 0){
55878             if(col < 0){
55879                 row--;
55880                 first = false;
55881             }
55882             while(row >= 0){
55883                 if(!first){
55884                     col = clen-1;
55885                 }
55886                 first = false;
55887                 while(col >= 0){
55888                     if(fn.call(scope || this, row, col, cm) === true){
55889                         return [row, col];
55890                     }
55891                     col--;
55892                 }
55893                 row--;
55894             }
55895         } else {
55896             if(col >= clen){
55897                 row++;
55898                 first = false;
55899             }
55900             while(row < rlen){
55901                 if(!first){
55902                     col = 0;
55903                 }
55904                 first = false;
55905                 while(col < clen){
55906                     if(fn.call(scope || this, row, col, cm) === true){
55907                         return [row, col];
55908                     }
55909                     col++;
55910                 }
55911                 row++;
55912             }
55913         }
55914         return null;
55915     },
55916
55917     // private
55918     getSelections : function(){
55919         return this.selModel.getSelections();
55920     },
55921
55922     /**
55923      * Causes the grid to manually recalculate its dimensions. Generally this is done automatically,
55924      * but if manual update is required this method will initiate it.
55925      */
55926     autoSize : function(){
55927         if(this.rendered){
55928             this.view.layout();
55929             if(this.view.adjustForScroll){
55930                 this.view.adjustForScroll();
55931             }
55932         }
55933     },
55934
55935     /**
55936      * Returns the grid's underlying element.
55937      * @return {Element} The element
55938      */
55939     getGridEl : function(){
55940         return this.container;
55941     },
55942
55943     // private for compatibility, overridden by editor grid
55944     stopEditing : function(){},
55945
55946     /**
55947      * Returns the grid's SelectionModel.
55948      * @return {SelectionModel}
55949      */
55950     getSelectionModel : function(){
55951         if(!this.selModel){
55952             this.selModel = new Roo.grid.RowSelectionModel();
55953         }
55954         return this.selModel;
55955     },
55956
55957     /**
55958      * Returns the grid's DataSource.
55959      * @return {DataSource}
55960      */
55961     getDataSource : function(){
55962         return this.dataSource;
55963     },
55964
55965     /**
55966      * Returns the grid's ColumnModel.
55967      * @return {ColumnModel}
55968      */
55969     getColumnModel : function(){
55970         return this.colModel;
55971     },
55972
55973     /**
55974      * Returns the grid's GridView object.
55975      * @return {GridView}
55976      */
55977     getView : function(){
55978         if(!this.view){
55979             this.view = new Roo.grid.GridView(this.viewConfig);
55980             this.relayEvents(this.view, [
55981                 "beforerowremoved", "beforerowsinserted",
55982                 "beforerefresh", "rowremoved",
55983                 "rowsinserted", "rowupdated" ,"refresh"
55984             ]);
55985         }
55986         return this.view;
55987     },
55988     /**
55989      * Called to get grid's drag proxy text, by default returns this.ddText.
55990      * Override this to put something different in the dragged text.
55991      * @return {String}
55992      */
55993     getDragDropText : function(){
55994         var count = this.selModel.getCount();
55995         return String.format(this.ddText, count, count == 1 ? '' : 's');
55996     }
55997 });
55998 /*
55999  * Based on:
56000  * Ext JS Library 1.1.1
56001  * Copyright(c) 2006-2007, Ext JS, LLC.
56002  *
56003  * Originally Released Under LGPL - original licence link has changed is not relivant.
56004  *
56005  * Fork - LGPL
56006  * <script type="text/javascript">
56007  */
56008  
56009 Roo.grid.AbstractGridView = function(){
56010         this.grid = null;
56011         
56012         this.events = {
56013             "beforerowremoved" : true,
56014             "beforerowsinserted" : true,
56015             "beforerefresh" : true,
56016             "rowremoved" : true,
56017             "rowsinserted" : true,
56018             "rowupdated" : true,
56019             "refresh" : true
56020         };
56021     Roo.grid.AbstractGridView.superclass.constructor.call(this);
56022 };
56023
56024 Roo.extend(Roo.grid.AbstractGridView, Roo.util.Observable, {
56025     rowClass : "x-grid-row",
56026     cellClass : "x-grid-cell",
56027     tdClass : "x-grid-td",
56028     hdClass : "x-grid-hd",
56029     splitClass : "x-grid-hd-split",
56030     
56031     init: function(grid){
56032         this.grid = grid;
56033                 var cid = this.grid.getGridEl().id;
56034         this.colSelector = "#" + cid + " ." + this.cellClass + "-";
56035         this.tdSelector = "#" + cid + " ." + this.tdClass + "-";
56036         this.hdSelector = "#" + cid + " ." + this.hdClass + "-";
56037         this.splitSelector = "#" + cid + " ." + this.splitClass + "-";
56038         },
56039         
56040     getColumnRenderers : function(){
56041         var renderers = [];
56042         var cm = this.grid.colModel;
56043         var colCount = cm.getColumnCount();
56044         for(var i = 0; i < colCount; i++){
56045             renderers[i] = cm.getRenderer(i);
56046         }
56047         return renderers;
56048     },
56049     
56050     getColumnIds : function(){
56051         var ids = [];
56052         var cm = this.grid.colModel;
56053         var colCount = cm.getColumnCount();
56054         for(var i = 0; i < colCount; i++){
56055             ids[i] = cm.getColumnId(i);
56056         }
56057         return ids;
56058     },
56059     
56060     getDataIndexes : function(){
56061         if(!this.indexMap){
56062             this.indexMap = this.buildIndexMap();
56063         }
56064         return this.indexMap.colToData;
56065     },
56066     
56067     getColumnIndexByDataIndex : function(dataIndex){
56068         if(!this.indexMap){
56069             this.indexMap = this.buildIndexMap();
56070         }
56071         return this.indexMap.dataToCol[dataIndex];
56072     },
56073     
56074     /**
56075      * Set a css style for a column dynamically. 
56076      * @param {Number} colIndex The index of the column
56077      * @param {String} name The css property name
56078      * @param {String} value The css value
56079      */
56080     setCSSStyle : function(colIndex, name, value){
56081         var selector = "#" + this.grid.id + " .x-grid-col-" + colIndex;
56082         Roo.util.CSS.updateRule(selector, name, value);
56083     },
56084     
56085     generateRules : function(cm){
56086         var ruleBuf = [], rulesId = this.grid.id + '-cssrules';
56087         Roo.util.CSS.removeStyleSheet(rulesId);
56088         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
56089             var cid = cm.getColumnId(i);
56090             ruleBuf.push(this.colSelector, cid, " {\n", cm.config[i].css, "}\n",
56091                          this.tdSelector, cid, " {\n}\n",
56092                          this.hdSelector, cid, " {\n}\n",
56093                          this.splitSelector, cid, " {\n}\n");
56094         }
56095         return Roo.util.CSS.createStyleSheet(ruleBuf.join(""), rulesId);
56096     }
56097 });/*
56098  * Based on:
56099  * Ext JS Library 1.1.1
56100  * Copyright(c) 2006-2007, Ext JS, LLC.
56101  *
56102  * Originally Released Under LGPL - original licence link has changed is not relivant.
56103  *
56104  * Fork - LGPL
56105  * <script type="text/javascript">
56106  */
56107
56108 // private
56109 // This is a support class used internally by the Grid components
56110 Roo.grid.HeaderDragZone = function(grid, hd, hd2){
56111     this.grid = grid;
56112     this.view = grid.getView();
56113     this.ddGroup = "gridHeader" + this.grid.getGridEl().id;
56114     Roo.grid.HeaderDragZone.superclass.constructor.call(this, hd);
56115     if(hd2){
56116         this.setHandleElId(Roo.id(hd));
56117         this.setOuterHandleElId(Roo.id(hd2));
56118     }
56119     this.scroll = false;
56120 };
56121 Roo.extend(Roo.grid.HeaderDragZone, Roo.dd.DragZone, {
56122     maxDragWidth: 120,
56123     getDragData : function(e){
56124         var t = Roo.lib.Event.getTarget(e);
56125         var h = this.view.findHeaderCell(t);
56126         if(h){
56127             return {ddel: h.firstChild, header:h};
56128         }
56129         return false;
56130     },
56131
56132     onInitDrag : function(e){
56133         this.view.headersDisabled = true;
56134         var clone = this.dragData.ddel.cloneNode(true);
56135         clone.id = Roo.id();
56136         clone.style.width = Math.min(this.dragData.header.offsetWidth,this.maxDragWidth) + "px";
56137         this.proxy.update(clone);
56138         return true;
56139     },
56140
56141     afterValidDrop : function(){
56142         var v = this.view;
56143         setTimeout(function(){
56144             v.headersDisabled = false;
56145         }, 50);
56146     },
56147
56148     afterInvalidDrop : function(){
56149         var v = this.view;
56150         setTimeout(function(){
56151             v.headersDisabled = false;
56152         }, 50);
56153     }
56154 });
56155 /*
56156  * Based on:
56157  * Ext JS Library 1.1.1
56158  * Copyright(c) 2006-2007, Ext JS, LLC.
56159  *
56160  * Originally Released Under LGPL - original licence link has changed is not relivant.
56161  *
56162  * Fork - LGPL
56163  * <script type="text/javascript">
56164  */
56165 // private
56166 // This is a support class used internally by the Grid components
56167 Roo.grid.HeaderDropZone = function(grid, hd, hd2){
56168     this.grid = grid;
56169     this.view = grid.getView();
56170     // split the proxies so they don't interfere with mouse events
56171     this.proxyTop = Roo.DomHelper.append(document.body, {
56172         cls:"col-move-top", html:"&#160;"
56173     }, true);
56174     this.proxyBottom = Roo.DomHelper.append(document.body, {
56175         cls:"col-move-bottom", html:"&#160;"
56176     }, true);
56177     this.proxyTop.hide = this.proxyBottom.hide = function(){
56178         this.setLeftTop(-100,-100);
56179         this.setStyle("visibility", "hidden");
56180     };
56181     this.ddGroup = "gridHeader" + this.grid.getGridEl().id;
56182     // temporarily disabled
56183     //Roo.dd.ScrollManager.register(this.view.scroller.dom);
56184     Roo.grid.HeaderDropZone.superclass.constructor.call(this, grid.getGridEl().dom);
56185 };
56186 Roo.extend(Roo.grid.HeaderDropZone, Roo.dd.DropZone, {
56187     proxyOffsets : [-4, -9],
56188     fly: Roo.Element.fly,
56189
56190     getTargetFromEvent : function(e){
56191         var t = Roo.lib.Event.getTarget(e);
56192         var cindex = this.view.findCellIndex(t);
56193         if(cindex !== false){
56194             return this.view.getHeaderCell(cindex);
56195         }
56196         return null;
56197     },
56198
56199     nextVisible : function(h){
56200         var v = this.view, cm = this.grid.colModel;
56201         h = h.nextSibling;
56202         while(h){
56203             if(!cm.isHidden(v.getCellIndex(h))){
56204                 return h;
56205             }
56206             h = h.nextSibling;
56207         }
56208         return null;
56209     },
56210
56211     prevVisible : function(h){
56212         var v = this.view, cm = this.grid.colModel;
56213         h = h.prevSibling;
56214         while(h){
56215             if(!cm.isHidden(v.getCellIndex(h))){
56216                 return h;
56217             }
56218             h = h.prevSibling;
56219         }
56220         return null;
56221     },
56222
56223     positionIndicator : function(h, n, e){
56224         var x = Roo.lib.Event.getPageX(e);
56225         var r = Roo.lib.Dom.getRegion(n.firstChild);
56226         var px, pt, py = r.top + this.proxyOffsets[1];
56227         if((r.right - x) <= (r.right-r.left)/2){
56228             px = r.right+this.view.borderWidth;
56229             pt = "after";
56230         }else{
56231             px = r.left;
56232             pt = "before";
56233         }
56234         var oldIndex = this.view.getCellIndex(h);
56235         var newIndex = this.view.getCellIndex(n);
56236
56237         if(this.grid.colModel.isFixed(newIndex)){
56238             return false;
56239         }
56240
56241         var locked = this.grid.colModel.isLocked(newIndex);
56242
56243         if(pt == "after"){
56244             newIndex++;
56245         }
56246         if(oldIndex < newIndex){
56247             newIndex--;
56248         }
56249         if(oldIndex == newIndex && (locked == this.grid.colModel.isLocked(oldIndex))){
56250             return false;
56251         }
56252         px +=  this.proxyOffsets[0];
56253         this.proxyTop.setLeftTop(px, py);
56254         this.proxyTop.show();
56255         if(!this.bottomOffset){
56256             this.bottomOffset = this.view.mainHd.getHeight();
56257         }
56258         this.proxyBottom.setLeftTop(px, py+this.proxyTop.dom.offsetHeight+this.bottomOffset);
56259         this.proxyBottom.show();
56260         return pt;
56261     },
56262
56263     onNodeEnter : function(n, dd, e, data){
56264         if(data.header != n){
56265             this.positionIndicator(data.header, n, e);
56266         }
56267     },
56268
56269     onNodeOver : function(n, dd, e, data){
56270         var result = false;
56271         if(data.header != n){
56272             result = this.positionIndicator(data.header, n, e);
56273         }
56274         if(!result){
56275             this.proxyTop.hide();
56276             this.proxyBottom.hide();
56277         }
56278         return result ? this.dropAllowed : this.dropNotAllowed;
56279     },
56280
56281     onNodeOut : function(n, dd, e, data){
56282         this.proxyTop.hide();
56283         this.proxyBottom.hide();
56284     },
56285
56286     onNodeDrop : function(n, dd, e, data){
56287         var h = data.header;
56288         if(h != n){
56289             var cm = this.grid.colModel;
56290             var x = Roo.lib.Event.getPageX(e);
56291             var r = Roo.lib.Dom.getRegion(n.firstChild);
56292             var pt = (r.right - x) <= ((r.right-r.left)/2) ? "after" : "before";
56293             var oldIndex = this.view.getCellIndex(h);
56294             var newIndex = this.view.getCellIndex(n);
56295             var locked = cm.isLocked(newIndex);
56296             if(pt == "after"){
56297                 newIndex++;
56298             }
56299             if(oldIndex < newIndex){
56300                 newIndex--;
56301             }
56302             if(oldIndex == newIndex && (locked == cm.isLocked(oldIndex))){
56303                 return false;
56304             }
56305             cm.setLocked(oldIndex, locked, true);
56306             cm.moveColumn(oldIndex, newIndex);
56307             this.grid.fireEvent("columnmove", oldIndex, newIndex);
56308             return true;
56309         }
56310         return false;
56311     }
56312 });
56313 /*
56314  * Based on:
56315  * Ext JS Library 1.1.1
56316  * Copyright(c) 2006-2007, Ext JS, LLC.
56317  *
56318  * Originally Released Under LGPL - original licence link has changed is not relivant.
56319  *
56320  * Fork - LGPL
56321  * <script type="text/javascript">
56322  */
56323   
56324 /**
56325  * @class Roo.grid.GridView
56326  * @extends Roo.util.Observable
56327  *
56328  * @constructor
56329  * @param {Object} config
56330  */
56331 Roo.grid.GridView = function(config){
56332     Roo.grid.GridView.superclass.constructor.call(this);
56333     this.el = null;
56334
56335     Roo.apply(this, config);
56336 };
56337
56338 Roo.extend(Roo.grid.GridView, Roo.grid.AbstractGridView, {
56339
56340     unselectable :  'unselectable="on"',
56341     unselectableCls :  'x-unselectable',
56342     
56343     
56344     rowClass : "x-grid-row",
56345
56346     cellClass : "x-grid-col",
56347
56348     tdClass : "x-grid-td",
56349
56350     hdClass : "x-grid-hd",
56351
56352     splitClass : "x-grid-split",
56353
56354     sortClasses : ["sort-asc", "sort-desc"],
56355
56356     enableMoveAnim : false,
56357
56358     hlColor: "C3DAF9",
56359
56360     dh : Roo.DomHelper,
56361
56362     fly : Roo.Element.fly,
56363
56364     css : Roo.util.CSS,
56365
56366     borderWidth: 1,
56367
56368     splitOffset: 3,
56369
56370     scrollIncrement : 22,
56371
56372     cellRE: /(?:.*?)x-grid-(?:hd|cell|csplit)-(?:[\d]+)-([\d]+)(?:.*?)/,
56373
56374     findRE: /\s?(?:x-grid-hd|x-grid-col|x-grid-csplit)\s/,
56375
56376     bind : function(ds, cm){
56377         if(this.ds){
56378             this.ds.un("load", this.onLoad, this);
56379             this.ds.un("datachanged", this.onDataChange, this);
56380             this.ds.un("add", this.onAdd, this);
56381             this.ds.un("remove", this.onRemove, this);
56382             this.ds.un("update", this.onUpdate, this);
56383             this.ds.un("clear", this.onClear, this);
56384         }
56385         if(ds){
56386             ds.on("load", this.onLoad, this);
56387             ds.on("datachanged", this.onDataChange, this);
56388             ds.on("add", this.onAdd, this);
56389             ds.on("remove", this.onRemove, this);
56390             ds.on("update", this.onUpdate, this);
56391             ds.on("clear", this.onClear, this);
56392         }
56393         this.ds = ds;
56394
56395         if(this.cm){
56396             this.cm.un("widthchange", this.onColWidthChange, this);
56397             this.cm.un("headerchange", this.onHeaderChange, this);
56398             this.cm.un("hiddenchange", this.onHiddenChange, this);
56399             this.cm.un("columnmoved", this.onColumnMove, this);
56400             this.cm.un("columnlockchange", this.onColumnLock, this);
56401         }
56402         if(cm){
56403             this.generateRules(cm);
56404             cm.on("widthchange", this.onColWidthChange, this);
56405             cm.on("headerchange", this.onHeaderChange, this);
56406             cm.on("hiddenchange", this.onHiddenChange, this);
56407             cm.on("columnmoved", this.onColumnMove, this);
56408             cm.on("columnlockchange", this.onColumnLock, this);
56409         }
56410         this.cm = cm;
56411     },
56412
56413     init: function(grid){
56414         Roo.grid.GridView.superclass.init.call(this, grid);
56415
56416         this.bind(grid.dataSource, grid.colModel);
56417
56418         grid.on("headerclick", this.handleHeaderClick, this);
56419
56420         if(grid.trackMouseOver){
56421             grid.on("mouseover", this.onRowOver, this);
56422             grid.on("mouseout", this.onRowOut, this);
56423         }
56424         grid.cancelTextSelection = function(){};
56425         this.gridId = grid.id;
56426
56427         var tpls = this.templates || {};
56428
56429         if(!tpls.master){
56430             tpls.master = new Roo.Template(
56431                '<div class="x-grid" hidefocus="true">',
56432                 '<a href="#" class="x-grid-focus" tabIndex="-1"></a>',
56433                   '<div class="x-grid-topbar"></div>',
56434                   '<div class="x-grid-scroller"><div></div></div>',
56435                   '<div class="x-grid-locked">',
56436                       '<div class="x-grid-header">{lockedHeader}</div>',
56437                       '<div class="x-grid-body">{lockedBody}</div>',
56438                   "</div>",
56439                   '<div class="x-grid-viewport">',
56440                       '<div class="x-grid-header">{header}</div>',
56441                       '<div class="x-grid-body">{body}</div>',
56442                   "</div>",
56443                   '<div class="x-grid-bottombar"></div>',
56444                  
56445                   '<div class="x-grid-resize-proxy">&#160;</div>',
56446                "</div>"
56447             );
56448             tpls.master.disableformats = true;
56449         }
56450
56451         if(!tpls.header){
56452             tpls.header = new Roo.Template(
56453                '<table border="0" cellspacing="0" cellpadding="0">',
56454                '<tbody><tr class="x-grid-hd-row">{cells}</tr></tbody>',
56455                "</table>{splits}"
56456             );
56457             tpls.header.disableformats = true;
56458         }
56459         tpls.header.compile();
56460
56461         if(!tpls.hcell){
56462             tpls.hcell = new Roo.Template(
56463                 '<td class="x-grid-hd x-grid-td-{id} {cellId}"><div title="{title}" class="x-grid-hd-inner x-grid-hd-{id}">',
56464                 '<div class="x-grid-hd-text ' + this.unselectableCls +  '" ' + this.unselectable +'>{value}<img class="x-grid-sort-icon" src="', Roo.BLANK_IMAGE_URL, '" /></div>',
56465                 "</div></td>"
56466              );
56467              tpls.hcell.disableFormats = true;
56468         }
56469         tpls.hcell.compile();
56470
56471         if(!tpls.hsplit){
56472             tpls.hsplit = new Roo.Template('<div class="x-grid-split {splitId} x-grid-split-{id}" style="{style} ' +
56473                                             this.unselectableCls +  '" ' + this.unselectable +'>&#160;</div>');
56474             tpls.hsplit.disableFormats = true;
56475         }
56476         tpls.hsplit.compile();
56477
56478         if(!tpls.body){
56479             tpls.body = new Roo.Template(
56480                '<table border="0" cellspacing="0" cellpadding="0">',
56481                "<tbody>{rows}</tbody>",
56482                "</table>"
56483             );
56484             tpls.body.disableFormats = true;
56485         }
56486         tpls.body.compile();
56487
56488         if(!tpls.row){
56489             tpls.row = new Roo.Template('<tr class="x-grid-row {alt}">{cells}</tr>');
56490             tpls.row.disableFormats = true;
56491         }
56492         tpls.row.compile();
56493
56494         if(!tpls.cell){
56495             tpls.cell = new Roo.Template(
56496                 '<td class="x-grid-col x-grid-td-{id} {cellId} {css}" tabIndex="0">',
56497                 '<div class="x-grid-col-{id} x-grid-cell-inner"><div class="x-grid-cell-text ' +
56498                     this.unselectableCls +  '" ' + this.unselectable +'" {attr}>{value}</div></div>',
56499                 "</td>"
56500             );
56501             tpls.cell.disableFormats = true;
56502         }
56503         tpls.cell.compile();
56504
56505         this.templates = tpls;
56506     },
56507
56508     // remap these for backwards compat
56509     onColWidthChange : function(){
56510         this.updateColumns.apply(this, arguments);
56511     },
56512     onHeaderChange : function(){
56513         this.updateHeaders.apply(this, arguments);
56514     }, 
56515     onHiddenChange : function(){
56516         this.handleHiddenChange.apply(this, arguments);
56517     },
56518     onColumnMove : function(){
56519         this.handleColumnMove.apply(this, arguments);
56520     },
56521     onColumnLock : function(){
56522         this.handleLockChange.apply(this, arguments);
56523     },
56524
56525     onDataChange : function(){
56526         this.refresh();
56527         this.updateHeaderSortState();
56528     },
56529
56530     onClear : function(){
56531         this.refresh();
56532     },
56533
56534     onUpdate : function(ds, record){
56535         this.refreshRow(record);
56536     },
56537
56538     refreshRow : function(record){
56539         var ds = this.ds, index;
56540         if(typeof record == 'number'){
56541             index = record;
56542             record = ds.getAt(index);
56543         }else{
56544             index = ds.indexOf(record);
56545         }
56546         this.insertRows(ds, index, index, true);
56547         this.onRemove(ds, record, index+1, true);
56548         this.syncRowHeights(index, index);
56549         this.layout();
56550         this.fireEvent("rowupdated", this, index, record);
56551     },
56552
56553     onAdd : function(ds, records, index){
56554         this.insertRows(ds, index, index + (records.length-1));
56555     },
56556
56557     onRemove : function(ds, record, index, isUpdate){
56558         if(isUpdate !== true){
56559             this.fireEvent("beforerowremoved", this, index, record);
56560         }
56561         var bt = this.getBodyTable(), lt = this.getLockedTable();
56562         if(bt.rows[index]){
56563             bt.firstChild.removeChild(bt.rows[index]);
56564         }
56565         if(lt.rows[index]){
56566             lt.firstChild.removeChild(lt.rows[index]);
56567         }
56568         if(isUpdate !== true){
56569             this.stripeRows(index);
56570             this.syncRowHeights(index, index);
56571             this.layout();
56572             this.fireEvent("rowremoved", this, index, record);
56573         }
56574     },
56575
56576     onLoad : function(){
56577         this.scrollToTop();
56578     },
56579
56580     /**
56581      * Scrolls the grid to the top
56582      */
56583     scrollToTop : function(){
56584         if(this.scroller){
56585             this.scroller.dom.scrollTop = 0;
56586             this.syncScroll();
56587         }
56588     },
56589
56590     /**
56591      * Gets a panel in the header of the grid that can be used for toolbars etc.
56592      * After modifying the contents of this panel a call to grid.autoSize() may be
56593      * required to register any changes in size.
56594      * @param {Boolean} doShow By default the header is hidden. Pass true to show the panel
56595      * @return Roo.Element
56596      */
56597     getHeaderPanel : function(doShow){
56598         if(doShow){
56599             this.headerPanel.show();
56600         }
56601         return this.headerPanel;
56602     },
56603
56604     /**
56605      * Gets a panel in the footer of the grid that can be used for toolbars etc.
56606      * After modifying the contents of this panel a call to grid.autoSize() may be
56607      * required to register any changes in size.
56608      * @param {Boolean} doShow By default the footer is hidden. Pass true to show the panel
56609      * @return Roo.Element
56610      */
56611     getFooterPanel : function(doShow){
56612         if(doShow){
56613             this.footerPanel.show();
56614         }
56615         return this.footerPanel;
56616     },
56617
56618     initElements : function(){
56619         var E = Roo.Element;
56620         var el = this.grid.getGridEl().dom.firstChild;
56621         var cs = el.childNodes;
56622
56623         this.el = new E(el);
56624         
56625          this.focusEl = new E(el.firstChild);
56626         this.focusEl.swallowEvent("click", true);
56627         
56628         this.headerPanel = new E(cs[1]);
56629         this.headerPanel.enableDisplayMode("block");
56630
56631         this.scroller = new E(cs[2]);
56632         this.scrollSizer = new E(this.scroller.dom.firstChild);
56633
56634         this.lockedWrap = new E(cs[3]);
56635         this.lockedHd = new E(this.lockedWrap.dom.firstChild);
56636         this.lockedBody = new E(this.lockedWrap.dom.childNodes[1]);
56637
56638         this.mainWrap = new E(cs[4]);
56639         this.mainHd = new E(this.mainWrap.dom.firstChild);
56640         this.mainBody = new E(this.mainWrap.dom.childNodes[1]);
56641
56642         this.footerPanel = new E(cs[5]);
56643         this.footerPanel.enableDisplayMode("block");
56644
56645         this.resizeProxy = new E(cs[6]);
56646
56647         this.headerSelector = String.format(
56648            '#{0} td.x-grid-hd, #{1} td.x-grid-hd',
56649            this.lockedHd.id, this.mainHd.id
56650         );
56651
56652         this.splitterSelector = String.format(
56653            '#{0} div.x-grid-split, #{1} div.x-grid-split',
56654            this.idToCssName(this.lockedHd.id), this.idToCssName(this.mainHd.id)
56655         );
56656     },
56657     idToCssName : function(s)
56658     {
56659         return s.replace(/[^a-z0-9]+/ig, '-');
56660     },
56661
56662     getHeaderCell : function(index){
56663         return Roo.DomQuery.select(this.headerSelector)[index];
56664     },
56665
56666     getHeaderCellMeasure : function(index){
56667         return this.getHeaderCell(index).firstChild;
56668     },
56669
56670     getHeaderCellText : function(index){
56671         return this.getHeaderCell(index).firstChild.firstChild;
56672     },
56673
56674     getLockedTable : function(){
56675         return this.lockedBody.dom.firstChild;
56676     },
56677
56678     getBodyTable : function(){
56679         return this.mainBody.dom.firstChild;
56680     },
56681
56682     getLockedRow : function(index){
56683         return this.getLockedTable().rows[index];
56684     },
56685
56686     getRow : function(index){
56687         return this.getBodyTable().rows[index];
56688     },
56689
56690     getRowComposite : function(index){
56691         if(!this.rowEl){
56692             this.rowEl = new Roo.CompositeElementLite();
56693         }
56694         var els = [], lrow, mrow;
56695         if(lrow = this.getLockedRow(index)){
56696             els.push(lrow);
56697         }
56698         if(mrow = this.getRow(index)){
56699             els.push(mrow);
56700         }
56701         this.rowEl.elements = els;
56702         return this.rowEl;
56703     },
56704     /**
56705      * Gets the 'td' of the cell
56706      * 
56707      * @param {Integer} rowIndex row to select
56708      * @param {Integer} colIndex column to select
56709      * 
56710      * @return {Object} 
56711      */
56712     getCell : function(rowIndex, colIndex){
56713         var locked = this.cm.getLockedCount();
56714         var source;
56715         if(colIndex < locked){
56716             source = this.lockedBody.dom.firstChild;
56717         }else{
56718             source = this.mainBody.dom.firstChild;
56719             colIndex -= locked;
56720         }
56721         return source.rows[rowIndex].childNodes[colIndex];
56722     },
56723
56724     getCellText : function(rowIndex, colIndex){
56725         return this.getCell(rowIndex, colIndex).firstChild.firstChild;
56726     },
56727
56728     getCellBox : function(cell){
56729         var b = this.fly(cell).getBox();
56730         if(Roo.isOpera){ // opera fails to report the Y
56731             b.y = cell.offsetTop + this.mainBody.getY();
56732         }
56733         return b;
56734     },
56735
56736     getCellIndex : function(cell){
56737         var id = String(cell.className).match(this.cellRE);
56738         if(id){
56739             return parseInt(id[1], 10);
56740         }
56741         return 0;
56742     },
56743
56744     findHeaderIndex : function(n){
56745         var r = Roo.fly(n).findParent("td." + this.hdClass, 6);
56746         return r ? this.getCellIndex(r) : false;
56747     },
56748
56749     findHeaderCell : function(n){
56750         var r = Roo.fly(n).findParent("td." + this.hdClass, 6);
56751         return r ? r : false;
56752     },
56753
56754     findRowIndex : function(n){
56755         if(!n){
56756             return false;
56757         }
56758         var r = Roo.fly(n).findParent("tr." + this.rowClass, 6);
56759         return r ? r.rowIndex : false;
56760     },
56761
56762     findCellIndex : function(node){
56763         var stop = this.el.dom;
56764         while(node && node != stop){
56765             if(this.findRE.test(node.className)){
56766                 return this.getCellIndex(node);
56767             }
56768             node = node.parentNode;
56769         }
56770         return false;
56771     },
56772
56773     getColumnId : function(index){
56774         return this.cm.getColumnId(index);
56775     },
56776
56777     getSplitters : function()
56778     {
56779         if(this.splitterSelector){
56780            return Roo.DomQuery.select(this.splitterSelector);
56781         }else{
56782             return null;
56783       }
56784     },
56785
56786     getSplitter : function(index){
56787         return this.getSplitters()[index];
56788     },
56789
56790     onRowOver : function(e, t){
56791         var row;
56792         if((row = this.findRowIndex(t)) !== false){
56793             this.getRowComposite(row).addClass("x-grid-row-over");
56794         }
56795     },
56796
56797     onRowOut : function(e, t){
56798         var row;
56799         if((row = this.findRowIndex(t)) !== false && row !== this.findRowIndex(e.getRelatedTarget())){
56800             this.getRowComposite(row).removeClass("x-grid-row-over");
56801         }
56802     },
56803
56804     renderHeaders : function(){
56805         var cm = this.cm;
56806         var ct = this.templates.hcell, ht = this.templates.header, st = this.templates.hsplit;
56807         var cb = [], lb = [], sb = [], lsb = [], p = {};
56808         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
56809             p.cellId = "x-grid-hd-0-" + i;
56810             p.splitId = "x-grid-csplit-0-" + i;
56811             p.id = cm.getColumnId(i);
56812             p.value = cm.getColumnHeader(i) || "";
56813             p.title = cm.getColumnTooltip(i) || (''+p.value).match(/\</)  ? '' :  p.value  || "";
56814             p.style = (this.grid.enableColumnResize === false || !cm.isResizable(i) || cm.isFixed(i)) ? 'cursor:default' : '';
56815             if(!cm.isLocked(i)){
56816                 cb[cb.length] = ct.apply(p);
56817                 sb[sb.length] = st.apply(p);
56818             }else{
56819                 lb[lb.length] = ct.apply(p);
56820                 lsb[lsb.length] = st.apply(p);
56821             }
56822         }
56823         return [ht.apply({cells: lb.join(""), splits:lsb.join("")}),
56824                 ht.apply({cells: cb.join(""), splits:sb.join("")})];
56825     },
56826
56827     updateHeaders : function(){
56828         var html = this.renderHeaders();
56829         this.lockedHd.update(html[0]);
56830         this.mainHd.update(html[1]);
56831     },
56832
56833     /**
56834      * Focuses the specified row.
56835      * @param {Number} row The row index
56836      */
56837     focusRow : function(row)
56838     {
56839         //Roo.log('GridView.focusRow');
56840         var x = this.scroller.dom.scrollLeft;
56841         this.focusCell(row, 0, false);
56842         this.scroller.dom.scrollLeft = x;
56843     },
56844
56845     /**
56846      * Focuses the specified cell.
56847      * @param {Number} row The row index
56848      * @param {Number} col The column index
56849      * @param {Boolean} hscroll false to disable horizontal scrolling
56850      */
56851     focusCell : function(row, col, hscroll)
56852     {
56853         //Roo.log('GridView.focusCell');
56854         var el = this.ensureVisible(row, col, hscroll);
56855         this.focusEl.alignTo(el, "tl-tl");
56856         if(Roo.isGecko){
56857             this.focusEl.focus();
56858         }else{
56859             this.focusEl.focus.defer(1, this.focusEl);
56860         }
56861     },
56862
56863     /**
56864      * Scrolls the specified cell into view
56865      * @param {Number} row The row index
56866      * @param {Number} col The column index
56867      * @param {Boolean} hscroll false to disable horizontal scrolling
56868      */
56869     ensureVisible : function(row, col, hscroll)
56870     {
56871         //Roo.log('GridView.ensureVisible,' + row + ',' + col);
56872         //return null; //disable for testing.
56873         if(typeof row != "number"){
56874             row = row.rowIndex;
56875         }
56876         if(row < 0 && row >= this.ds.getCount()){
56877             return  null;
56878         }
56879         col = (col !== undefined ? col : 0);
56880         var cm = this.grid.colModel;
56881         while(cm.isHidden(col)){
56882             col++;
56883         }
56884
56885         var el = this.getCell(row, col);
56886         if(!el){
56887             return null;
56888         }
56889         var c = this.scroller.dom;
56890
56891         var ctop = parseInt(el.offsetTop, 10);
56892         var cleft = parseInt(el.offsetLeft, 10);
56893         var cbot = ctop + el.offsetHeight;
56894         var cright = cleft + el.offsetWidth;
56895         
56896         var ch = c.clientHeight - this.mainHd.dom.offsetHeight;
56897         var stop = parseInt(c.scrollTop, 10);
56898         var sleft = parseInt(c.scrollLeft, 10);
56899         var sbot = stop + ch;
56900         var sright = sleft + c.clientWidth;
56901         /*
56902         Roo.log('GridView.ensureVisible:' +
56903                 ' ctop:' + ctop +
56904                 ' c.clientHeight:' + c.clientHeight +
56905                 ' this.mainHd.dom.offsetHeight:' + this.mainHd.dom.offsetHeight +
56906                 ' stop:' + stop +
56907                 ' cbot:' + cbot +
56908                 ' sbot:' + sbot +
56909                 ' ch:' + ch  
56910                 );
56911         */
56912         if(ctop < stop){
56913             c.scrollTop = ctop;
56914             //Roo.log("set scrolltop to ctop DISABLE?");
56915         }else if(cbot > sbot){
56916             //Roo.log("set scrolltop to cbot-ch");
56917             c.scrollTop = cbot-ch;
56918         }
56919         
56920         if(hscroll !== false){
56921             if(cleft < sleft){
56922                 c.scrollLeft = cleft;
56923             }else if(cright > sright){
56924                 c.scrollLeft = cright-c.clientWidth;
56925             }
56926         }
56927          
56928         return el;
56929     },
56930
56931     updateColumns : function(){
56932         this.grid.stopEditing();
56933         var cm = this.grid.colModel, colIds = this.getColumnIds();
56934         //var totalWidth = cm.getTotalWidth();
56935         var pos = 0;
56936         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
56937             //if(cm.isHidden(i)) continue;
56938             var w = cm.getColumnWidth(i);
56939             this.css.updateRule(this.colSelector+this.idToCssName(colIds[i]), "width", (w - this.borderWidth) + "px");
56940             this.css.updateRule(this.hdSelector+this.idToCssName(colIds[i]), "width", (w - this.borderWidth) + "px");
56941         }
56942         this.updateSplitters();
56943     },
56944
56945     generateRules : function(cm){
56946         var ruleBuf = [], rulesId = this.idToCssName(this.grid.id)+ '-cssrules';
56947         Roo.util.CSS.removeStyleSheet(rulesId);
56948         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
56949             var cid = cm.getColumnId(i);
56950             var align = '';
56951             if(cm.config[i].align){
56952                 align = 'text-align:'+cm.config[i].align+';';
56953             }
56954             var hidden = '';
56955             if(cm.isHidden(i)){
56956                 hidden = 'display:none;';
56957             }
56958             var width = "width:" + (cm.getColumnWidth(i) - this.borderWidth) + "px;";
56959             ruleBuf.push(
56960                     this.colSelector, cid, " {\n", cm.config[i].css, align, width, "\n}\n",
56961                     this.hdSelector, cid, " {\n", align, width, "}\n",
56962                     this.tdSelector, cid, " {\n",hidden,"\n}\n",
56963                     this.splitSelector, cid, " {\n", hidden , "\n}\n");
56964         }
56965         return Roo.util.CSS.createStyleSheet(ruleBuf.join(""), rulesId);
56966     },
56967
56968     updateSplitters : function(){
56969         var cm = this.cm, s = this.getSplitters();
56970         if(s){ // splitters not created yet
56971             var pos = 0, locked = true;
56972             for(var i = 0, len = cm.getColumnCount(); i < len; i++){
56973                 if(cm.isHidden(i)) {
56974                     continue;
56975                 }
56976                 var w = cm.getColumnWidth(i); // make sure it's a number
56977                 if(!cm.isLocked(i) && locked){
56978                     pos = 0;
56979                     locked = false;
56980                 }
56981                 pos += w;
56982                 s[i].style.left = (pos-this.splitOffset) + "px";
56983             }
56984         }
56985     },
56986
56987     handleHiddenChange : function(colModel, colIndex, hidden){
56988         if(hidden){
56989             this.hideColumn(colIndex);
56990         }else{
56991             this.unhideColumn(colIndex);
56992         }
56993     },
56994
56995     hideColumn : function(colIndex){
56996         var cid = this.getColumnId(colIndex);
56997         this.css.updateRule(this.tdSelector+this.idToCssName(cid), "display", "none");
56998         this.css.updateRule(this.splitSelector+this.idToCssName(cid), "display", "none");
56999         if(Roo.isSafari){
57000             this.updateHeaders();
57001         }
57002         this.updateSplitters();
57003         this.layout();
57004     },
57005
57006     unhideColumn : function(colIndex){
57007         var cid = this.getColumnId(colIndex);
57008         this.css.updateRule(this.tdSelector+this.idToCssName(cid), "display", "");
57009         this.css.updateRule(this.splitSelector+this.idToCssName(cid), "display", "");
57010
57011         if(Roo.isSafari){
57012             this.updateHeaders();
57013         }
57014         this.updateSplitters();
57015         this.layout();
57016     },
57017
57018     insertRows : function(dm, firstRow, lastRow, isUpdate){
57019         if(firstRow == 0 && lastRow == dm.getCount()-1){
57020             this.refresh();
57021         }else{
57022             if(!isUpdate){
57023                 this.fireEvent("beforerowsinserted", this, firstRow, lastRow);
57024             }
57025             var s = this.getScrollState();
57026             var markup = this.renderRows(firstRow, lastRow);
57027             this.bufferRows(markup[0], this.getLockedTable(), firstRow);
57028             this.bufferRows(markup[1], this.getBodyTable(), firstRow);
57029             this.restoreScroll(s);
57030             if(!isUpdate){
57031                 this.fireEvent("rowsinserted", this, firstRow, lastRow);
57032                 this.syncRowHeights(firstRow, lastRow);
57033                 this.stripeRows(firstRow);
57034                 this.layout();
57035             }
57036         }
57037     },
57038
57039     bufferRows : function(markup, target, index){
57040         var before = null, trows = target.rows, tbody = target.tBodies[0];
57041         if(index < trows.length){
57042             before = trows[index];
57043         }
57044         var b = document.createElement("div");
57045         b.innerHTML = "<table><tbody>"+markup+"</tbody></table>";
57046         var rows = b.firstChild.rows;
57047         for(var i = 0, len = rows.length; i < len; i++){
57048             if(before){
57049                 tbody.insertBefore(rows[0], before);
57050             }else{
57051                 tbody.appendChild(rows[0]);
57052             }
57053         }
57054         b.innerHTML = "";
57055         b = null;
57056     },
57057
57058     deleteRows : function(dm, firstRow, lastRow){
57059         if(dm.getRowCount()<1){
57060             this.fireEvent("beforerefresh", this);
57061             this.mainBody.update("");
57062             this.lockedBody.update("");
57063             this.fireEvent("refresh", this);
57064         }else{
57065             this.fireEvent("beforerowsdeleted", this, firstRow, lastRow);
57066             var bt = this.getBodyTable();
57067             var tbody = bt.firstChild;
57068             var rows = bt.rows;
57069             for(var rowIndex = firstRow; rowIndex <= lastRow; rowIndex++){
57070                 tbody.removeChild(rows[firstRow]);
57071             }
57072             this.stripeRows(firstRow);
57073             this.fireEvent("rowsdeleted", this, firstRow, lastRow);
57074         }
57075     },
57076
57077     updateRows : function(dataSource, firstRow, lastRow){
57078         var s = this.getScrollState();
57079         this.refresh();
57080         this.restoreScroll(s);
57081     },
57082
57083     handleSort : function(dataSource, sortColumnIndex, sortDir, noRefresh){
57084         if(!noRefresh){
57085            this.refresh();
57086         }
57087         this.updateHeaderSortState();
57088     },
57089
57090     getScrollState : function(){
57091         
57092         var sb = this.scroller.dom;
57093         return {left: sb.scrollLeft, top: sb.scrollTop};
57094     },
57095
57096     stripeRows : function(startRow){
57097         if(!this.grid.stripeRows || this.ds.getCount() < 1){
57098             return;
57099         }
57100         startRow = startRow || 0;
57101         var rows = this.getBodyTable().rows;
57102         var lrows = this.getLockedTable().rows;
57103         var cls = ' x-grid-row-alt ';
57104         for(var i = startRow, len = rows.length; i < len; i++){
57105             var row = rows[i], lrow = lrows[i];
57106             var isAlt = ((i+1) % 2 == 0);
57107             var hasAlt = (' '+row.className + ' ').indexOf(cls) != -1;
57108             if(isAlt == hasAlt){
57109                 continue;
57110             }
57111             if(isAlt){
57112                 row.className += " x-grid-row-alt";
57113             }else{
57114                 row.className = row.className.replace("x-grid-row-alt", "");
57115             }
57116             if(lrow){
57117                 lrow.className = row.className;
57118             }
57119         }
57120     },
57121
57122     restoreScroll : function(state){
57123         //Roo.log('GridView.restoreScroll');
57124         var sb = this.scroller.dom;
57125         sb.scrollLeft = state.left;
57126         sb.scrollTop = state.top;
57127         this.syncScroll();
57128     },
57129
57130     syncScroll : function(){
57131         //Roo.log('GridView.syncScroll');
57132         var sb = this.scroller.dom;
57133         var sh = this.mainHd.dom;
57134         var bs = this.mainBody.dom;
57135         var lv = this.lockedBody.dom;
57136         sh.scrollLeft = bs.scrollLeft = sb.scrollLeft;
57137         lv.scrollTop = bs.scrollTop = sb.scrollTop;
57138     },
57139
57140     handleScroll : function(e){
57141         this.syncScroll();
57142         var sb = this.scroller.dom;
57143         this.grid.fireEvent("bodyscroll", sb.scrollLeft, sb.scrollTop);
57144         e.stopEvent();
57145     },
57146
57147     handleWheel : function(e){
57148         var d = e.getWheelDelta();
57149         this.scroller.dom.scrollTop -= d*22;
57150         // set this here to prevent jumpy scrolling on large tables
57151         this.lockedBody.dom.scrollTop = this.mainBody.dom.scrollTop = this.scroller.dom.scrollTop;
57152         e.stopEvent();
57153     },
57154
57155     renderRows : function(startRow, endRow){
57156         // pull in all the crap needed to render rows
57157         var g = this.grid, cm = g.colModel, ds = g.dataSource, stripe = g.stripeRows;
57158         var colCount = cm.getColumnCount();
57159
57160         if(ds.getCount() < 1){
57161             return ["", ""];
57162         }
57163
57164         // build a map for all the columns
57165         var cs = [];
57166         for(var i = 0; i < colCount; i++){
57167             var name = cm.getDataIndex(i);
57168             cs[i] = {
57169                 name : typeof name == 'undefined' ? ds.fields.get(i).name : name,
57170                 renderer : cm.getRenderer(i),
57171                 id : cm.getColumnId(i),
57172                 locked : cm.isLocked(i),
57173                 has_editor : cm.isCellEditable(i)
57174             };
57175         }
57176
57177         startRow = startRow || 0;
57178         endRow = typeof endRow == "undefined"? ds.getCount()-1 : endRow;
57179
57180         // records to render
57181         var rs = ds.getRange(startRow, endRow);
57182
57183         return this.doRender(cs, rs, ds, startRow, colCount, stripe);
57184     },
57185
57186     // As much as I hate to duplicate code, this was branched because FireFox really hates
57187     // [].join("") on strings. The performance difference was substantial enough to
57188     // branch this function
57189     doRender : Roo.isGecko ?
57190             function(cs, rs, ds, startRow, colCount, stripe){
57191                 var ts = this.templates, ct = ts.cell, rt = ts.row;
57192                 // buffers
57193                 var buf = "", lbuf = "", cb, lcb, c, p = {}, rp = {}, r, rowIndex;
57194                 
57195                 var hasListener = this.grid.hasListener('rowclass');
57196                 var rowcfg = {};
57197                 for(var j = 0, len = rs.length; j < len; j++){
57198                     r = rs[j]; cb = ""; lcb = ""; rowIndex = (j+startRow);
57199                     for(var i = 0; i < colCount; i++){
57200                         c = cs[i];
57201                         p.cellId = "x-grid-cell-" + rowIndex + "-" + i;
57202                         p.id = c.id;
57203                         p.css = p.attr = "";
57204                         p.value = c.renderer(r.data[c.name], p, r, rowIndex, i, ds);
57205                         if(p.value == undefined || p.value === "") {
57206                             p.value = "&#160;";
57207                         }
57208                         if(c.has_editor){
57209                             p.css += ' x-grid-editable-cell';
57210                         }
57211                         if(c.dirty && typeof r.modified[c.name] !== 'undefined'){
57212                             p.css +=  ' x-grid-dirty-cell';
57213                         }
57214                         var markup = ct.apply(p);
57215                         if(!c.locked){
57216                             cb+= markup;
57217                         }else{
57218                             lcb+= markup;
57219                         }
57220                     }
57221                     var alt = [];
57222                     if(stripe && ((rowIndex+1) % 2 == 0)){
57223                         alt.push("x-grid-row-alt")
57224                     }
57225                     if(r.dirty){
57226                         alt.push(  " x-grid-dirty-row");
57227                     }
57228                     rp.cells = lcb;
57229                     if(this.getRowClass){
57230                         alt.push(this.getRowClass(r, rowIndex));
57231                     }
57232                     if (hasListener) {
57233                         rowcfg = {
57234                              
57235                             record: r,
57236                             rowIndex : rowIndex,
57237                             rowClass : ''
57238                         };
57239                         this.grid.fireEvent('rowclass', this, rowcfg);
57240                         alt.push(rowcfg.rowClass);
57241                     }
57242                     rp.alt = alt.join(" ");
57243                     lbuf+= rt.apply(rp);
57244                     rp.cells = cb;
57245                     buf+=  rt.apply(rp);
57246                 }
57247                 return [lbuf, buf];
57248             } :
57249             function(cs, rs, ds, startRow, colCount, stripe){
57250                 var ts = this.templates, ct = ts.cell, rt = ts.row;
57251                 // buffers
57252                 var buf = [], lbuf = [], cb, lcb, c, p = {}, rp = {}, r, rowIndex;
57253                 var hasListener = this.grid.hasListener('rowclass');
57254  
57255                 var rowcfg = {};
57256                 for(var j = 0, len = rs.length; j < len; j++){
57257                     r = rs[j]; cb = []; lcb = []; rowIndex = (j+startRow);
57258                     for(var i = 0; i < colCount; i++){
57259                         c = cs[i];
57260                         p.cellId = "x-grid-cell-" + rowIndex + "-" + i;
57261                         p.id = c.id;
57262                         p.css = p.attr = "";
57263                         p.value = c.renderer(r.data[c.name], p, r, rowIndex, i, ds);
57264                         if(p.value == undefined || p.value === "") {
57265                             p.value = "&#160;";
57266                         }
57267                         //Roo.log(c);
57268                          if(c.has_editor){
57269                             p.css += ' x-grid-editable-cell';
57270                         }
57271                         if(r.dirty && typeof r.modified[c.name] !== 'undefined'){
57272                             p.css += ' x-grid-dirty-cell' 
57273                         }
57274                         
57275                         var markup = ct.apply(p);
57276                         if(!c.locked){
57277                             cb[cb.length] = markup;
57278                         }else{
57279                             lcb[lcb.length] = markup;
57280                         }
57281                     }
57282                     var alt = [];
57283                     if(stripe && ((rowIndex+1) % 2 == 0)){
57284                         alt.push( "x-grid-row-alt");
57285                     }
57286                     if(r.dirty){
57287                         alt.push(" x-grid-dirty-row");
57288                     }
57289                     rp.cells = lcb;
57290                     if(this.getRowClass){
57291                         alt.push( this.getRowClass(r, rowIndex));
57292                     }
57293                     if (hasListener) {
57294                         rowcfg = {
57295                              
57296                             record: r,
57297                             rowIndex : rowIndex,
57298                             rowClass : ''
57299                         };
57300                         this.grid.fireEvent('rowclass', this, rowcfg);
57301                         alt.push(rowcfg.rowClass);
57302                     }
57303                     
57304                     rp.alt = alt.join(" ");
57305                     rp.cells = lcb.join("");
57306                     lbuf[lbuf.length] = rt.apply(rp);
57307                     rp.cells = cb.join("");
57308                     buf[buf.length] =  rt.apply(rp);
57309                 }
57310                 return [lbuf.join(""), buf.join("")];
57311             },
57312
57313     renderBody : function(){
57314         var markup = this.renderRows();
57315         var bt = this.templates.body;
57316         return [bt.apply({rows: markup[0]}), bt.apply({rows: markup[1]})];
57317     },
57318
57319     /**
57320      * Refreshes the grid
57321      * @param {Boolean} headersToo
57322      */
57323     refresh : function(headersToo){
57324         this.fireEvent("beforerefresh", this);
57325         this.grid.stopEditing();
57326         var result = this.renderBody();
57327         this.lockedBody.update(result[0]);
57328         this.mainBody.update(result[1]);
57329         if(headersToo === true){
57330             this.updateHeaders();
57331             this.updateColumns();
57332             this.updateSplitters();
57333             this.updateHeaderSortState();
57334         }
57335         this.syncRowHeights();
57336         this.layout();
57337         this.fireEvent("refresh", this);
57338     },
57339
57340     handleColumnMove : function(cm, oldIndex, newIndex){
57341         this.indexMap = null;
57342         var s = this.getScrollState();
57343         this.refresh(true);
57344         this.restoreScroll(s);
57345         this.afterMove(newIndex);
57346     },
57347
57348     afterMove : function(colIndex){
57349         if(this.enableMoveAnim && Roo.enableFx){
57350             this.fly(this.getHeaderCell(colIndex).firstChild).highlight(this.hlColor);
57351         }
57352         // if multisort - fix sortOrder, and reload..
57353         if (this.grid.dataSource.multiSort) {
57354             // the we can call sort again..
57355             var dm = this.grid.dataSource;
57356             var cm = this.grid.colModel;
57357             var so = [];
57358             for(var i = 0; i < cm.config.length; i++ ) {
57359                 
57360                 if ((typeof(dm.sortToggle[cm.config[i].dataIndex]) == 'undefined')) {
57361                     continue; // dont' bother, it's not in sort list or being set.
57362                 }
57363                 
57364                 so.push(cm.config[i].dataIndex);
57365             };
57366             dm.sortOrder = so;
57367             dm.load(dm.lastOptions);
57368             
57369             
57370         }
57371         
57372     },
57373
57374     updateCell : function(dm, rowIndex, dataIndex){
57375         var colIndex = this.getColumnIndexByDataIndex(dataIndex);
57376         if(typeof colIndex == "undefined"){ // not present in grid
57377             return;
57378         }
57379         var cm = this.grid.colModel;
57380         var cell = this.getCell(rowIndex, colIndex);
57381         var cellText = this.getCellText(rowIndex, colIndex);
57382
57383         var p = {
57384             cellId : "x-grid-cell-" + rowIndex + "-" + colIndex,
57385             id : cm.getColumnId(colIndex),
57386             css: colIndex == cm.getColumnCount()-1 ? "x-grid-col-last" : ""
57387         };
57388         var renderer = cm.getRenderer(colIndex);
57389         var val = renderer(dm.getValueAt(rowIndex, dataIndex), p, rowIndex, colIndex, dm);
57390         if(typeof val == "undefined" || val === "") {
57391             val = "&#160;";
57392         }
57393         cellText.innerHTML = val;
57394         cell.className = this.cellClass + " " + this.idToCssName(p.cellId) + " " + p.css;
57395         this.syncRowHeights(rowIndex, rowIndex);
57396     },
57397
57398     calcColumnWidth : function(colIndex, maxRowsToMeasure){
57399         var maxWidth = 0;
57400         if(this.grid.autoSizeHeaders){
57401             var h = this.getHeaderCellMeasure(colIndex);
57402             maxWidth = Math.max(maxWidth, h.scrollWidth);
57403         }
57404         var tb, index;
57405         if(this.cm.isLocked(colIndex)){
57406             tb = this.getLockedTable();
57407             index = colIndex;
57408         }else{
57409             tb = this.getBodyTable();
57410             index = colIndex - this.cm.getLockedCount();
57411         }
57412         if(tb && tb.rows){
57413             var rows = tb.rows;
57414             var stopIndex = Math.min(maxRowsToMeasure || rows.length, rows.length);
57415             for(var i = 0; i < stopIndex; i++){
57416                 var cell = rows[i].childNodes[index].firstChild;
57417                 maxWidth = Math.max(maxWidth, cell.scrollWidth);
57418             }
57419         }
57420         return maxWidth + /*margin for error in IE*/ 5;
57421     },
57422     /**
57423      * Autofit a column to its content.
57424      * @param {Number} colIndex
57425      * @param {Boolean} forceMinSize true to force the column to go smaller if possible
57426      */
57427      autoSizeColumn : function(colIndex, forceMinSize, suppressEvent){
57428          if(this.cm.isHidden(colIndex)){
57429              return; // can't calc a hidden column
57430          }
57431         if(forceMinSize){
57432             var cid = this.cm.getColumnId(colIndex);
57433             this.css.updateRule(this.colSelector +this.idToCssName( cid), "width", this.grid.minColumnWidth + "px");
57434            if(this.grid.autoSizeHeaders){
57435                this.css.updateRule(this.hdSelector + this.idToCssName(cid), "width", this.grid.minColumnWidth + "px");
57436            }
57437         }
57438         var newWidth = this.calcColumnWidth(colIndex);
57439         this.cm.setColumnWidth(colIndex,
57440             Math.max(this.grid.minColumnWidth, newWidth), suppressEvent);
57441         if(!suppressEvent){
57442             this.grid.fireEvent("columnresize", colIndex, newWidth);
57443         }
57444     },
57445
57446     /**
57447      * Autofits all columns to their content and then expands to fit any extra space in the grid
57448      */
57449      autoSizeColumns : function(){
57450         var cm = this.grid.colModel;
57451         var colCount = cm.getColumnCount();
57452         for(var i = 0; i < colCount; i++){
57453             this.autoSizeColumn(i, true, true);
57454         }
57455         if(cm.getTotalWidth() < this.scroller.dom.clientWidth){
57456             this.fitColumns();
57457         }else{
57458             this.updateColumns();
57459             this.layout();
57460         }
57461     },
57462
57463     /**
57464      * Autofits all columns to the grid's width proportionate with their current size
57465      * @param {Boolean} reserveScrollSpace Reserve space for a scrollbar
57466      */
57467     fitColumns : function(reserveScrollSpace){
57468         var cm = this.grid.colModel;
57469         var colCount = cm.getColumnCount();
57470         var cols = [];
57471         var width = 0;
57472         var i, w;
57473         for (i = 0; i < colCount; i++){
57474             if(!cm.isHidden(i) && !cm.isFixed(i)){
57475                 w = cm.getColumnWidth(i);
57476                 cols.push(i);
57477                 cols.push(w);
57478                 width += w;
57479             }
57480         }
57481         var avail = Math.min(this.scroller.dom.clientWidth, this.el.getWidth());
57482         if(reserveScrollSpace){
57483             avail -= 17;
57484         }
57485         var frac = (avail - cm.getTotalWidth())/width;
57486         while (cols.length){
57487             w = cols.pop();
57488             i = cols.pop();
57489             cm.setColumnWidth(i, Math.floor(w + w*frac), true);
57490         }
57491         this.updateColumns();
57492         this.layout();
57493     },
57494
57495     onRowSelect : function(rowIndex){
57496         var row = this.getRowComposite(rowIndex);
57497         row.addClass("x-grid-row-selected");
57498     },
57499
57500     onRowDeselect : function(rowIndex){
57501         var row = this.getRowComposite(rowIndex);
57502         row.removeClass("x-grid-row-selected");
57503     },
57504
57505     onCellSelect : function(row, col){
57506         var cell = this.getCell(row, col);
57507         if(cell){
57508             Roo.fly(cell).addClass("x-grid-cell-selected");
57509         }
57510     },
57511
57512     onCellDeselect : function(row, col){
57513         var cell = this.getCell(row, col);
57514         if(cell){
57515             Roo.fly(cell).removeClass("x-grid-cell-selected");
57516         }
57517     },
57518
57519     updateHeaderSortState : function(){
57520         
57521         // sort state can be single { field: xxx, direction : yyy}
57522         // or   { xxx=>ASC , yyy : DESC ..... }
57523         
57524         var mstate = {};
57525         if (!this.ds.multiSort) { 
57526             var state = this.ds.getSortState();
57527             if(!state){
57528                 return;
57529             }
57530             mstate[state.field] = state.direction;
57531             // FIXME... - this is not used here.. but might be elsewhere..
57532             this.sortState = state;
57533             
57534         } else {
57535             mstate = this.ds.sortToggle;
57536         }
57537         //remove existing sort classes..
57538         
57539         var sc = this.sortClasses;
57540         var hds = this.el.select(this.headerSelector).removeClass(sc);
57541         
57542         for(var f in mstate) {
57543         
57544             var sortColumn = this.cm.findColumnIndex(f);
57545             
57546             if(sortColumn != -1){
57547                 var sortDir = mstate[f];        
57548                 hds.item(sortColumn).addClass(sc[sortDir == "DESC" ? 1 : 0]);
57549             }
57550         }
57551         
57552          
57553         
57554     },
57555
57556
57557     handleHeaderClick : function(g, index,e){
57558         
57559         Roo.log("header click");
57560         
57561         if (Roo.isTouch) {
57562             // touch events on header are handled by context
57563             this.handleHdCtx(g,index,e);
57564             return;
57565         }
57566         
57567         
57568         if(this.headersDisabled){
57569             return;
57570         }
57571         var dm = g.dataSource, cm = g.colModel;
57572         if(!cm.isSortable(index)){
57573             return;
57574         }
57575         g.stopEditing();
57576         
57577         if (dm.multiSort) {
57578             // update the sortOrder
57579             var so = [];
57580             for(var i = 0; i < cm.config.length; i++ ) {
57581                 
57582                 if ((typeof(dm.sortToggle[cm.config[i].dataIndex]) == 'undefined') && (index != i)) {
57583                     continue; // dont' bother, it's not in sort list or being set.
57584                 }
57585                 
57586                 so.push(cm.config[i].dataIndex);
57587             };
57588             dm.sortOrder = so;
57589         }
57590         
57591         
57592         dm.sort(cm.getDataIndex(index));
57593     },
57594
57595
57596     destroy : function(){
57597         if(this.colMenu){
57598             this.colMenu.removeAll();
57599             Roo.menu.MenuMgr.unregister(this.colMenu);
57600             this.colMenu.getEl().remove();
57601             delete this.colMenu;
57602         }
57603         if(this.hmenu){
57604             this.hmenu.removeAll();
57605             Roo.menu.MenuMgr.unregister(this.hmenu);
57606             this.hmenu.getEl().remove();
57607             delete this.hmenu;
57608         }
57609         if(this.grid.enableColumnMove){
57610             var dds = Roo.dd.DDM.ids['gridHeader' + this.grid.getGridEl().id];
57611             if(dds){
57612                 for(var dd in dds){
57613                     if(!dds[dd].config.isTarget && dds[dd].dragElId){
57614                         var elid = dds[dd].dragElId;
57615                         dds[dd].unreg();
57616                         Roo.get(elid).remove();
57617                     } else if(dds[dd].config.isTarget){
57618                         dds[dd].proxyTop.remove();
57619                         dds[dd].proxyBottom.remove();
57620                         dds[dd].unreg();
57621                     }
57622                     if(Roo.dd.DDM.locationCache[dd]){
57623                         delete Roo.dd.DDM.locationCache[dd];
57624                     }
57625                 }
57626                 delete Roo.dd.DDM.ids['gridHeader' + this.grid.getGridEl().id];
57627             }
57628         }
57629         Roo.util.CSS.removeStyleSheet(this.idToCssName(this.grid.id) + '-cssrules');
57630         this.bind(null, null);
57631         Roo.EventManager.removeResizeListener(this.onWindowResize, this);
57632     },
57633
57634     handleLockChange : function(){
57635         this.refresh(true);
57636     },
57637
57638     onDenyColumnLock : function(){
57639
57640     },
57641
57642     onDenyColumnHide : function(){
57643
57644     },
57645
57646     handleHdMenuClick : function(item){
57647         var index = this.hdCtxIndex;
57648         var cm = this.cm, ds = this.ds;
57649         switch(item.id){
57650             case "asc":
57651                 ds.sort(cm.getDataIndex(index), "ASC");
57652                 break;
57653             case "desc":
57654                 ds.sort(cm.getDataIndex(index), "DESC");
57655                 break;
57656             case "lock":
57657                 var lc = cm.getLockedCount();
57658                 if(cm.getColumnCount(true) <= lc+1){
57659                     this.onDenyColumnLock();
57660                     return;
57661                 }
57662                 if(lc != index){
57663                     cm.setLocked(index, true, true);
57664                     cm.moveColumn(index, lc);
57665                     this.grid.fireEvent("columnmove", index, lc);
57666                 }else{
57667                     cm.setLocked(index, true);
57668                 }
57669             break;
57670             case "unlock":
57671                 var lc = cm.getLockedCount();
57672                 if((lc-1) != index){
57673                     cm.setLocked(index, false, true);
57674                     cm.moveColumn(index, lc-1);
57675                     this.grid.fireEvent("columnmove", index, lc-1);
57676                 }else{
57677                     cm.setLocked(index, false);
57678                 }
57679             break;
57680             case 'wider': // used to expand cols on touch..
57681             case 'narrow':
57682                 var cw = cm.getColumnWidth(index);
57683                 cw += (item.id == 'wider' ? 1 : -1) * 50;
57684                 cw = Math.max(0, cw);
57685                 cw = Math.min(cw,4000);
57686                 cm.setColumnWidth(index, cw);
57687                 break;
57688                 
57689             default:
57690                 index = cm.getIndexById(item.id.substr(4));
57691                 if(index != -1){
57692                     if(item.checked && cm.getColumnCount(true) <= 1){
57693                         this.onDenyColumnHide();
57694                         return false;
57695                     }
57696                     cm.setHidden(index, item.checked);
57697                 }
57698         }
57699         return true;
57700     },
57701
57702     beforeColMenuShow : function(){
57703         var cm = this.cm,  colCount = cm.getColumnCount();
57704         this.colMenu.removeAll();
57705         for(var i = 0; i < colCount; i++){
57706             this.colMenu.add(new Roo.menu.CheckItem({
57707                 id: "col-"+cm.getColumnId(i),
57708                 text: cm.getColumnHeader(i),
57709                 checked: !cm.isHidden(i),
57710                 hideOnClick:false
57711             }));
57712         }
57713     },
57714
57715     handleHdCtx : function(g, index, e){
57716         e.stopEvent();
57717         var hd = this.getHeaderCell(index);
57718         this.hdCtxIndex = index;
57719         var ms = this.hmenu.items, cm = this.cm;
57720         ms.get("asc").setDisabled(!cm.isSortable(index));
57721         ms.get("desc").setDisabled(!cm.isSortable(index));
57722         if(this.grid.enableColLock !== false){
57723             ms.get("lock").setDisabled(cm.isLocked(index));
57724             ms.get("unlock").setDisabled(!cm.isLocked(index));
57725         }
57726         this.hmenu.show(hd, "tl-bl");
57727     },
57728
57729     handleHdOver : function(e){
57730         var hd = this.findHeaderCell(e.getTarget());
57731         if(hd && !this.headersDisabled){
57732             if(this.grid.colModel.isSortable(this.getCellIndex(hd))){
57733                this.fly(hd).addClass("x-grid-hd-over");
57734             }
57735         }
57736     },
57737
57738     handleHdOut : function(e){
57739         var hd = this.findHeaderCell(e.getTarget());
57740         if(hd){
57741             this.fly(hd).removeClass("x-grid-hd-over");
57742         }
57743     },
57744
57745     handleSplitDblClick : function(e, t){
57746         var i = this.getCellIndex(t);
57747         if(this.grid.enableColumnResize !== false && this.cm.isResizable(i) && !this.cm.isFixed(i)){
57748             this.autoSizeColumn(i, true);
57749             this.layout();
57750         }
57751     },
57752
57753     render : function(){
57754
57755         var cm = this.cm;
57756         var colCount = cm.getColumnCount();
57757
57758         if(this.grid.monitorWindowResize === true){
57759             Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
57760         }
57761         var header = this.renderHeaders();
57762         var body = this.templates.body.apply({rows:""});
57763         var html = this.templates.master.apply({
57764             lockedBody: body,
57765             body: body,
57766             lockedHeader: header[0],
57767             header: header[1]
57768         });
57769
57770         //this.updateColumns();
57771
57772         this.grid.getGridEl().dom.innerHTML = html;
57773
57774         this.initElements();
57775         
57776         // a kludge to fix the random scolling effect in webkit
57777         this.el.on("scroll", function() {
57778             this.el.dom.scrollTop=0; // hopefully not recursive..
57779         },this);
57780
57781         this.scroller.on("scroll", this.handleScroll, this);
57782         this.lockedBody.on("mousewheel", this.handleWheel, this);
57783         this.mainBody.on("mousewheel", this.handleWheel, this);
57784
57785         this.mainHd.on("mouseover", this.handleHdOver, this);
57786         this.mainHd.on("mouseout", this.handleHdOut, this);
57787         this.mainHd.on("dblclick", this.handleSplitDblClick, this,
57788                 {delegate: "."+this.splitClass});
57789
57790         this.lockedHd.on("mouseover", this.handleHdOver, this);
57791         this.lockedHd.on("mouseout", this.handleHdOut, this);
57792         this.lockedHd.on("dblclick", this.handleSplitDblClick, this,
57793                 {delegate: "."+this.splitClass});
57794
57795         if(this.grid.enableColumnResize !== false && Roo.grid.SplitDragZone){
57796             new Roo.grid.SplitDragZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
57797         }
57798
57799         this.updateSplitters();
57800
57801         if(this.grid.enableColumnMove && Roo.grid.HeaderDragZone){
57802             new Roo.grid.HeaderDragZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
57803             new Roo.grid.HeaderDropZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
57804         }
57805
57806         if(this.grid.enableCtxMenu !== false && Roo.menu.Menu){
57807             this.hmenu = new Roo.menu.Menu({id: this.grid.id + "-hctx"});
57808             this.hmenu.add(
57809                 {id:"asc", text: this.sortAscText, cls: "xg-hmenu-sort-asc"},
57810                 {id:"desc", text: this.sortDescText, cls: "xg-hmenu-sort-desc"}
57811             );
57812             if(this.grid.enableColLock !== false){
57813                 this.hmenu.add('-',
57814                     {id:"lock", text: this.lockText, cls: "xg-hmenu-lock"},
57815                     {id:"unlock", text: this.unlockText, cls: "xg-hmenu-unlock"}
57816                 );
57817             }
57818             if (Roo.isTouch) {
57819                  this.hmenu.add('-',
57820                     {id:"wider", text: this.columnsWiderText},
57821                     {id:"narrow", text: this.columnsNarrowText }
57822                 );
57823                 
57824                  
57825             }
57826             
57827             if(this.grid.enableColumnHide !== false){
57828
57829                 this.colMenu = new Roo.menu.Menu({id:this.grid.id + "-hcols-menu"});
57830                 this.colMenu.on("beforeshow", this.beforeColMenuShow, this);
57831                 this.colMenu.on("itemclick", this.handleHdMenuClick, this);
57832
57833                 this.hmenu.add('-',
57834                     {id:"columns", text: this.columnsText, menu: this.colMenu}
57835                 );
57836             }
57837             this.hmenu.on("itemclick", this.handleHdMenuClick, this);
57838
57839             this.grid.on("headercontextmenu", this.handleHdCtx, this);
57840         }
57841
57842         if((this.grid.enableDragDrop || this.grid.enableDrag) && Roo.grid.GridDragZone){
57843             this.dd = new Roo.grid.GridDragZone(this.grid, {
57844                 ddGroup : this.grid.ddGroup || 'GridDD'
57845             });
57846             
57847         }
57848
57849         /*
57850         for(var i = 0; i < colCount; i++){
57851             if(cm.isHidden(i)){
57852                 this.hideColumn(i);
57853             }
57854             if(cm.config[i].align){
57855                 this.css.updateRule(this.colSelector + i, "textAlign", cm.config[i].align);
57856                 this.css.updateRule(this.hdSelector + i, "textAlign", cm.config[i].align);
57857             }
57858         }*/
57859         
57860         this.updateHeaderSortState();
57861
57862         this.beforeInitialResize();
57863         this.layout(true);
57864
57865         // two part rendering gives faster view to the user
57866         this.renderPhase2.defer(1, this);
57867     },
57868
57869     renderPhase2 : function(){
57870         // render the rows now
57871         this.refresh();
57872         if(this.grid.autoSizeColumns){
57873             this.autoSizeColumns();
57874         }
57875     },
57876
57877     beforeInitialResize : function(){
57878
57879     },
57880
57881     onColumnSplitterMoved : function(i, w){
57882         this.userResized = true;
57883         var cm = this.grid.colModel;
57884         cm.setColumnWidth(i, w, true);
57885         var cid = cm.getColumnId(i);
57886         this.css.updateRule(this.colSelector + this.idToCssName(cid), "width", (w-this.borderWidth) + "px");
57887         this.css.updateRule(this.hdSelector + this.idToCssName(cid), "width", (w-this.borderWidth) + "px");
57888         this.updateSplitters();
57889         this.layout();
57890         this.grid.fireEvent("columnresize", i, w);
57891     },
57892
57893     syncRowHeights : function(startIndex, endIndex){
57894         if(this.grid.enableRowHeightSync === true && this.cm.getLockedCount() > 0){
57895             startIndex = startIndex || 0;
57896             var mrows = this.getBodyTable().rows;
57897             var lrows = this.getLockedTable().rows;
57898             var len = mrows.length-1;
57899             endIndex = Math.min(endIndex || len, len);
57900             for(var i = startIndex; i <= endIndex; i++){
57901                 var m = mrows[i], l = lrows[i];
57902                 var h = Math.max(m.offsetHeight, l.offsetHeight);
57903                 m.style.height = l.style.height = h + "px";
57904             }
57905         }
57906     },
57907
57908     layout : function(initialRender, is2ndPass)
57909     {
57910         var g = this.grid;
57911         var auto = g.autoHeight;
57912         var scrollOffset = 16;
57913         var c = g.getGridEl(), cm = this.cm,
57914                 expandCol = g.autoExpandColumn,
57915                 gv = this;
57916         //c.beginMeasure();
57917
57918         if(!c.dom.offsetWidth){ // display:none?
57919             if(initialRender){
57920                 this.lockedWrap.show();
57921                 this.mainWrap.show();
57922             }
57923             return;
57924         }
57925
57926         var hasLock = this.cm.isLocked(0);
57927
57928         var tbh = this.headerPanel.getHeight();
57929         var bbh = this.footerPanel.getHeight();
57930
57931         if(auto){
57932             var ch = this.getBodyTable().offsetHeight + tbh + bbh + this.mainHd.getHeight();
57933             var newHeight = ch + c.getBorderWidth("tb");
57934             if(g.maxHeight){
57935                 newHeight = Math.min(g.maxHeight, newHeight);
57936             }
57937             c.setHeight(newHeight);
57938         }
57939
57940         if(g.autoWidth){
57941             c.setWidth(cm.getTotalWidth()+c.getBorderWidth('lr'));
57942         }
57943
57944         var s = this.scroller;
57945
57946         var csize = c.getSize(true);
57947
57948         this.el.setSize(csize.width, csize.height);
57949
57950         this.headerPanel.setWidth(csize.width);
57951         this.footerPanel.setWidth(csize.width);
57952
57953         var hdHeight = this.mainHd.getHeight();
57954         var vw = csize.width;
57955         var vh = csize.height - (tbh + bbh);
57956
57957         s.setSize(vw, vh);
57958
57959         var bt = this.getBodyTable();
57960         
57961         if(cm.getLockedCount() == cm.config.length){
57962             bt = this.getLockedTable();
57963         }
57964         
57965         var ltWidth = hasLock ?
57966                       Math.max(this.getLockedTable().offsetWidth, this.lockedHd.dom.firstChild.offsetWidth) : 0;
57967
57968         var scrollHeight = bt.offsetHeight;
57969         var scrollWidth = ltWidth + bt.offsetWidth;
57970         var vscroll = false, hscroll = false;
57971
57972         this.scrollSizer.setSize(scrollWidth, scrollHeight+hdHeight);
57973
57974         var lw = this.lockedWrap, mw = this.mainWrap;
57975         var lb = this.lockedBody, mb = this.mainBody;
57976
57977         setTimeout(function(){
57978             var t = s.dom.offsetTop;
57979             var w = s.dom.clientWidth,
57980                 h = s.dom.clientHeight;
57981
57982             lw.setTop(t);
57983             lw.setSize(ltWidth, h);
57984
57985             mw.setLeftTop(ltWidth, t);
57986             mw.setSize(w-ltWidth, h);
57987
57988             lb.setHeight(h-hdHeight);
57989             mb.setHeight(h-hdHeight);
57990
57991             if(is2ndPass !== true && !gv.userResized && expandCol){
57992                 // high speed resize without full column calculation
57993                 
57994                 var ci = cm.getIndexById(expandCol);
57995                 if (ci < 0) {
57996                     ci = cm.findColumnIndex(expandCol);
57997                 }
57998                 ci = Math.max(0, ci); // make sure it's got at least the first col.
57999                 var expandId = cm.getColumnId(ci);
58000                 var  tw = cm.getTotalWidth(false);
58001                 var currentWidth = cm.getColumnWidth(ci);
58002                 var cw = Math.min(Math.max(((w-tw)+currentWidth-2)-/*scrollbar*/(w <= s.dom.offsetWidth ? 0 : 18), g.autoExpandMin), g.autoExpandMax);
58003                 if(currentWidth != cw){
58004                     cm.setColumnWidth(ci, cw, true);
58005                     gv.css.updateRule(gv.colSelector+gv.idToCssName(expandId), "width", (cw - gv.borderWidth) + "px");
58006                     gv.css.updateRule(gv.hdSelector+gv.idToCssName(expandId), "width", (cw - gv.borderWidth) + "px");
58007                     gv.updateSplitters();
58008                     gv.layout(false, true);
58009                 }
58010             }
58011
58012             if(initialRender){
58013                 lw.show();
58014                 mw.show();
58015             }
58016             //c.endMeasure();
58017         }, 10);
58018     },
58019
58020     onWindowResize : function(){
58021         if(!this.grid.monitorWindowResize || this.grid.autoHeight){
58022             return;
58023         }
58024         this.layout();
58025     },
58026
58027     appendFooter : function(parentEl){
58028         return null;
58029     },
58030
58031     sortAscText : "Sort Ascending",
58032     sortDescText : "Sort Descending",
58033     lockText : "Lock Column",
58034     unlockText : "Unlock Column",
58035     columnsText : "Columns",
58036  
58037     columnsWiderText : "Wider",
58038     columnsNarrowText : "Thinner"
58039 });
58040
58041
58042 Roo.grid.GridView.ColumnDragZone = function(grid, hd){
58043     Roo.grid.GridView.ColumnDragZone.superclass.constructor.call(this, grid, hd, null);
58044     this.proxy.el.addClass('x-grid3-col-dd');
58045 };
58046
58047 Roo.extend(Roo.grid.GridView.ColumnDragZone, Roo.grid.HeaderDragZone, {
58048     handleMouseDown : function(e){
58049
58050     },
58051
58052     callHandleMouseDown : function(e){
58053         Roo.grid.GridView.ColumnDragZone.superclass.handleMouseDown.call(this, e);
58054     }
58055 });
58056 /*
58057  * Based on:
58058  * Ext JS Library 1.1.1
58059  * Copyright(c) 2006-2007, Ext JS, LLC.
58060  *
58061  * Originally Released Under LGPL - original licence link has changed is not relivant.
58062  *
58063  * Fork - LGPL
58064  * <script type="text/javascript">
58065  */
58066  
58067 // private
58068 // This is a support class used internally by the Grid components
58069 Roo.grid.SplitDragZone = function(grid, hd, hd2){
58070     this.grid = grid;
58071     this.view = grid.getView();
58072     this.proxy = this.view.resizeProxy;
58073     Roo.grid.SplitDragZone.superclass.constructor.call(this, hd,
58074         "gridSplitters" + this.grid.getGridEl().id, {
58075         dragElId : Roo.id(this.proxy.dom), resizeFrame:false
58076     });
58077     this.setHandleElId(Roo.id(hd));
58078     this.setOuterHandleElId(Roo.id(hd2));
58079     this.scroll = false;
58080 };
58081 Roo.extend(Roo.grid.SplitDragZone, Roo.dd.DDProxy, {
58082     fly: Roo.Element.fly,
58083
58084     b4StartDrag : function(x, y){
58085         this.view.headersDisabled = true;
58086         this.proxy.setHeight(this.view.mainWrap.getHeight());
58087         var w = this.cm.getColumnWidth(this.cellIndex);
58088         var minw = Math.max(w-this.grid.minColumnWidth, 0);
58089         this.resetConstraints();
58090         this.setXConstraint(minw, 1000);
58091         this.setYConstraint(0, 0);
58092         this.minX = x - minw;
58093         this.maxX = x + 1000;
58094         this.startPos = x;
58095         Roo.dd.DDProxy.prototype.b4StartDrag.call(this, x, y);
58096     },
58097
58098
58099     handleMouseDown : function(e){
58100         ev = Roo.EventObject.setEvent(e);
58101         var t = this.fly(ev.getTarget());
58102         if(t.hasClass("x-grid-split")){
58103             this.cellIndex = this.view.getCellIndex(t.dom);
58104             this.split = t.dom;
58105             this.cm = this.grid.colModel;
58106             if(this.cm.isResizable(this.cellIndex) && !this.cm.isFixed(this.cellIndex)){
58107                 Roo.grid.SplitDragZone.superclass.handleMouseDown.apply(this, arguments);
58108             }
58109         }
58110     },
58111
58112     endDrag : function(e){
58113         this.view.headersDisabled = false;
58114         var endX = Math.max(this.minX, Roo.lib.Event.getPageX(e));
58115         var diff = endX - this.startPos;
58116         this.view.onColumnSplitterMoved(this.cellIndex, this.cm.getColumnWidth(this.cellIndex)+diff);
58117     },
58118
58119     autoOffset : function(){
58120         this.setDelta(0,0);
58121     }
58122 });/*
58123  * Based on:
58124  * Ext JS Library 1.1.1
58125  * Copyright(c) 2006-2007, Ext JS, LLC.
58126  *
58127  * Originally Released Under LGPL - original licence link has changed is not relivant.
58128  *
58129  * Fork - LGPL
58130  * <script type="text/javascript">
58131  */
58132  
58133 // private
58134 // This is a support class used internally by the Grid components
58135 Roo.grid.GridDragZone = function(grid, config){
58136     this.view = grid.getView();
58137     Roo.grid.GridDragZone.superclass.constructor.call(this, this.view.mainBody.dom, config);
58138     if(this.view.lockedBody){
58139         this.setHandleElId(Roo.id(this.view.mainBody.dom));
58140         this.setOuterHandleElId(Roo.id(this.view.lockedBody.dom));
58141     }
58142     this.scroll = false;
58143     this.grid = grid;
58144     this.ddel = document.createElement('div');
58145     this.ddel.className = 'x-grid-dd-wrap';
58146 };
58147
58148 Roo.extend(Roo.grid.GridDragZone, Roo.dd.DragZone, {
58149     ddGroup : "GridDD",
58150
58151     getDragData : function(e){
58152         var t = Roo.lib.Event.getTarget(e);
58153         var rowIndex = this.view.findRowIndex(t);
58154         var sm = this.grid.selModel;
58155             
58156         //Roo.log(rowIndex);
58157         
58158         if (sm.getSelectedCell) {
58159             // cell selection..
58160             if (!sm.getSelectedCell()) {
58161                 return false;
58162             }
58163             if (rowIndex != sm.getSelectedCell()[0]) {
58164                 return false;
58165             }
58166         
58167         }
58168         if (sm.getSelections && sm.getSelections().length < 1) {
58169             return false;
58170         }
58171         
58172         
58173         // before it used to all dragging of unseleted... - now we dont do that.
58174         if(rowIndex !== false){
58175             
58176             // if editorgrid.. 
58177             
58178             
58179             //Roo.log([ sm.getSelectedCell() ? sm.getSelectedCell()[0] : 'NO' , rowIndex ]);
58180                
58181             //if(!sm.isSelected(rowIndex) || e.hasModifier()){
58182               //  
58183             //}
58184             if (e.hasModifier()){
58185                 sm.handleMouseDown(e, t); // non modifier buttons are handled by row select.
58186             }
58187             
58188             Roo.log("getDragData");
58189             
58190             return {
58191                 grid: this.grid,
58192                 ddel: this.ddel,
58193                 rowIndex: rowIndex,
58194                 selections: sm.getSelections ? sm.getSelections() : (
58195                     sm.getSelectedCell() ? [ this.grid.ds.getAt(sm.getSelectedCell()[0]) ] : [])
58196             };
58197         }
58198         return false;
58199     },
58200     
58201     
58202     onInitDrag : function(e){
58203         var data = this.dragData;
58204         this.ddel.innerHTML = this.grid.getDragDropText();
58205         this.proxy.update(this.ddel);
58206         // fire start drag?
58207     },
58208
58209     afterRepair : function(){
58210         this.dragging = false;
58211     },
58212
58213     getRepairXY : function(e, data){
58214         return false;
58215     },
58216
58217     onEndDrag : function(data, e){
58218         // fire end drag?
58219     },
58220
58221     onValidDrop : function(dd, e, id){
58222         // fire drag drop?
58223         this.hideProxy();
58224     },
58225
58226     beforeInvalidDrop : function(e, id){
58227
58228     }
58229 });/*
58230  * Based on:
58231  * Ext JS Library 1.1.1
58232  * Copyright(c) 2006-2007, Ext JS, LLC.
58233  *
58234  * Originally Released Under LGPL - original licence link has changed is not relivant.
58235  *
58236  * Fork - LGPL
58237  * <script type="text/javascript">
58238  */
58239  
58240
58241 /**
58242  * @class Roo.grid.ColumnModel
58243  * @extends Roo.util.Observable
58244  * This is the default implementation of a ColumnModel used by the Grid. It defines
58245  * the columns in the grid.
58246  * <br>Usage:<br>
58247  <pre><code>
58248  var colModel = new Roo.grid.ColumnModel([
58249         {header: "Ticker", width: 60, sortable: true, locked: true},
58250         {header: "Company Name", width: 150, sortable: true},
58251         {header: "Market Cap.", width: 100, sortable: true},
58252         {header: "$ Sales", width: 100, sortable: true, renderer: money},
58253         {header: "Employees", width: 100, sortable: true, resizable: false}
58254  ]);
58255  </code></pre>
58256  * <p>
58257  
58258  * The config options listed for this class are options which may appear in each
58259  * individual column definition.
58260  * <br/>RooJS Fix - column id's are not sequential but use Roo.id() - fixes bugs with layouts.
58261  * @constructor
58262  * @param {Object} config An Array of column config objects. See this class's
58263  * config objects for details.
58264 */
58265 Roo.grid.ColumnModel = function(config){
58266         /**
58267      * The config passed into the constructor
58268      */
58269     this.config = []; //config;
58270     this.lookup = {};
58271
58272     // if no id, create one
58273     // if the column does not have a dataIndex mapping,
58274     // map it to the order it is in the config
58275     for(var i = 0, len = config.length; i < len; i++){
58276         this.addColumn(config[i]);
58277         
58278     }
58279
58280     /**
58281      * The width of columns which have no width specified (defaults to 100)
58282      * @type Number
58283      */
58284     this.defaultWidth = 100;
58285
58286     /**
58287      * Default sortable of columns which have no sortable specified (defaults to false)
58288      * @type Boolean
58289      */
58290     this.defaultSortable = false;
58291
58292     this.addEvents({
58293         /**
58294              * @event widthchange
58295              * Fires when the width of a column changes.
58296              * @param {ColumnModel} this
58297              * @param {Number} columnIndex The column index
58298              * @param {Number} newWidth The new width
58299              */
58300             "widthchange": true,
58301         /**
58302              * @event headerchange
58303              * Fires when the text of a header changes.
58304              * @param {ColumnModel} this
58305              * @param {Number} columnIndex The column index
58306              * @param {Number} newText The new header text
58307              */
58308             "headerchange": true,
58309         /**
58310              * @event hiddenchange
58311              * Fires when a column is hidden or "unhidden".
58312              * @param {ColumnModel} this
58313              * @param {Number} columnIndex The column index
58314              * @param {Boolean} hidden true if hidden, false otherwise
58315              */
58316             "hiddenchange": true,
58317             /**
58318          * @event columnmoved
58319          * Fires when a column is moved.
58320          * @param {ColumnModel} this
58321          * @param {Number} oldIndex
58322          * @param {Number} newIndex
58323          */
58324         "columnmoved" : true,
58325         /**
58326          * @event columlockchange
58327          * Fires when a column's locked state is changed
58328          * @param {ColumnModel} this
58329          * @param {Number} colIndex
58330          * @param {Boolean} locked true if locked
58331          */
58332         "columnlockchange" : true
58333     });
58334     Roo.grid.ColumnModel.superclass.constructor.call(this);
58335 };
58336 Roo.extend(Roo.grid.ColumnModel, Roo.util.Observable, {
58337     /**
58338      * @cfg {String} header The header text to display in the Grid view.
58339      */
58340     /**
58341      * @cfg {String} dataIndex (Optional) The name of the field in the grid's {@link Roo.data.Store}'s
58342      * {@link Roo.data.Record} definition from which to draw the column's value. If not
58343      * specified, the column's index is used as an index into the Record's data Array.
58344      */
58345     /**
58346      * @cfg {Number} width (Optional) The initial width in pixels of the column. Using this
58347      * instead of {@link Roo.grid.Grid#autoSizeColumns} is more efficient.
58348      */
58349     /**
58350      * @cfg {Boolean} sortable (Optional) True if sorting is to be allowed on this column.
58351      * Defaults to the value of the {@link #defaultSortable} property.
58352      * Whether local/remote sorting is used is specified in {@link Roo.data.Store#remoteSort}.
58353      */
58354     /**
58355      * @cfg {Boolean} locked (Optional) True to lock the column in place while scrolling the Grid.  Defaults to false.
58356      */
58357     /**
58358      * @cfg {Boolean} fixed (Optional) True if the column width cannot be changed.  Defaults to false.
58359      */
58360     /**
58361      * @cfg {Boolean} resizable (Optional) False to disable column resizing. Defaults to true.
58362      */
58363     /**
58364      * @cfg {Boolean} hidden (Optional) True to hide the column. Defaults to false.
58365      */
58366     /**
58367      * @cfg {Function} renderer (Optional) A function used to generate HTML markup for a cell
58368      * given the cell's data value. See {@link #setRenderer}. If not specified, the
58369      * default renderer returns the escaped data value. If an object is returned (bootstrap only)
58370      * then it is treated as a Roo Component object instance, and it is rendered after the initial row is rendered
58371      */
58372        /**
58373      * @cfg {Roo.grid.GridEditor} editor (Optional) For grid editors - returns the grid editor 
58374      */
58375     /**
58376      * @cfg {String} align (Optional) Set the CSS text-align property of the column.  Defaults to undefined.
58377      */
58378     /**
58379      * @cfg {String} valign (Optional) Set the CSS vertical-align property of the column (eg. middle, top, bottom etc).  Defaults to undefined.
58380      */
58381     /**
58382      * @cfg {String} cursor (Optional)
58383      */
58384     /**
58385      * @cfg {String} tooltip (Optional)
58386      */
58387     /**
58388      * @cfg {Number} xs (Optional)
58389      */
58390     /**
58391      * @cfg {Number} sm (Optional)
58392      */
58393     /**
58394      * @cfg {Number} md (Optional)
58395      */
58396     /**
58397      * @cfg {Number} lg (Optional)
58398      */
58399     /**
58400      * Returns the id of the column at the specified index.
58401      * @param {Number} index The column index
58402      * @return {String} the id
58403      */
58404     getColumnId : function(index){
58405         return this.config[index].id;
58406     },
58407
58408     /**
58409      * Returns the column for a specified id.
58410      * @param {String} id The column id
58411      * @return {Object} the column
58412      */
58413     getColumnById : function(id){
58414         return this.lookup[id];
58415     },
58416
58417     
58418     /**
58419      * Returns the column Object for a specified dataIndex.
58420      * @param {String} dataIndex The column dataIndex
58421      * @return {Object|Boolean} the column or false if not found
58422      */
58423     getColumnByDataIndex: function(dataIndex){
58424         var index = this.findColumnIndex(dataIndex);
58425         return index > -1 ? this.config[index] : false;
58426     },
58427     
58428     /**
58429      * Returns the index for a specified column id.
58430      * @param {String} id The column id
58431      * @return {Number} the index, or -1 if not found
58432      */
58433     getIndexById : function(id){
58434         for(var i = 0, len = this.config.length; i < len; i++){
58435             if(this.config[i].id == id){
58436                 return i;
58437             }
58438         }
58439         return -1;
58440     },
58441     
58442     /**
58443      * Returns the index for a specified column dataIndex.
58444      * @param {String} dataIndex The column dataIndex
58445      * @return {Number} the index, or -1 if not found
58446      */
58447     
58448     findColumnIndex : function(dataIndex){
58449         for(var i = 0, len = this.config.length; i < len; i++){
58450             if(this.config[i].dataIndex == dataIndex){
58451                 return i;
58452             }
58453         }
58454         return -1;
58455     },
58456     
58457     
58458     moveColumn : function(oldIndex, newIndex){
58459         var c = this.config[oldIndex];
58460         this.config.splice(oldIndex, 1);
58461         this.config.splice(newIndex, 0, c);
58462         this.dataMap = null;
58463         this.fireEvent("columnmoved", this, oldIndex, newIndex);
58464     },
58465
58466     isLocked : function(colIndex){
58467         return this.config[colIndex].locked === true;
58468     },
58469
58470     setLocked : function(colIndex, value, suppressEvent){
58471         if(this.isLocked(colIndex) == value){
58472             return;
58473         }
58474         this.config[colIndex].locked = value;
58475         if(!suppressEvent){
58476             this.fireEvent("columnlockchange", this, colIndex, value);
58477         }
58478     },
58479
58480     getTotalLockedWidth : function(){
58481         var totalWidth = 0;
58482         for(var i = 0; i < this.config.length; i++){
58483             if(this.isLocked(i) && !this.isHidden(i)){
58484                 this.totalWidth += this.getColumnWidth(i);
58485             }
58486         }
58487         return totalWidth;
58488     },
58489
58490     getLockedCount : function(){
58491         for(var i = 0, len = this.config.length; i < len; i++){
58492             if(!this.isLocked(i)){
58493                 return i;
58494             }
58495         }
58496         
58497         return this.config.length;
58498     },
58499
58500     /**
58501      * Returns the number of columns.
58502      * @return {Number}
58503      */
58504     getColumnCount : function(visibleOnly){
58505         if(visibleOnly === true){
58506             var c = 0;
58507             for(var i = 0, len = this.config.length; i < len; i++){
58508                 if(!this.isHidden(i)){
58509                     c++;
58510                 }
58511             }
58512             return c;
58513         }
58514         return this.config.length;
58515     },
58516
58517     /**
58518      * Returns the column configs that return true by the passed function that is called with (columnConfig, index)
58519      * @param {Function} fn
58520      * @param {Object} scope (optional)
58521      * @return {Array} result
58522      */
58523     getColumnsBy : function(fn, scope){
58524         var r = [];
58525         for(var i = 0, len = this.config.length; i < len; i++){
58526             var c = this.config[i];
58527             if(fn.call(scope||this, c, i) === true){
58528                 r[r.length] = c;
58529             }
58530         }
58531         return r;
58532     },
58533
58534     /**
58535      * Returns true if the specified column is sortable.
58536      * @param {Number} col The column index
58537      * @return {Boolean}
58538      */
58539     isSortable : function(col){
58540         if(typeof this.config[col].sortable == "undefined"){
58541             return this.defaultSortable;
58542         }
58543         return this.config[col].sortable;
58544     },
58545
58546     /**
58547      * Returns the rendering (formatting) function defined for the column.
58548      * @param {Number} col The column index.
58549      * @return {Function} The function used to render the cell. See {@link #setRenderer}.
58550      */
58551     getRenderer : function(col){
58552         if(!this.config[col].renderer){
58553             return Roo.grid.ColumnModel.defaultRenderer;
58554         }
58555         return this.config[col].renderer;
58556     },
58557
58558     /**
58559      * Sets the rendering (formatting) function for a column.
58560      * @param {Number} col The column index
58561      * @param {Function} fn The function to use to process the cell's raw data
58562      * to return HTML markup for the grid view. The render function is called with
58563      * the following parameters:<ul>
58564      * <li>Data value.</li>
58565      * <li>Cell metadata. An object in which you may set the following attributes:<ul>
58566      * <li>css A CSS style string to apply to the table cell.</li>
58567      * <li>attr An HTML attribute definition string to apply to the data container element <i>within</i> the table cell.</li></ul>
58568      * <li>The {@link Roo.data.Record} from which the data was extracted.</li>
58569      * <li>Row index</li>
58570      * <li>Column index</li>
58571      * <li>The {@link Roo.data.Store} object from which the Record was extracted</li></ul>
58572      */
58573     setRenderer : function(col, fn){
58574         this.config[col].renderer = fn;
58575     },
58576
58577     /**
58578      * Returns the width for the specified column.
58579      * @param {Number} col The column index
58580      * @return {Number}
58581      */
58582     getColumnWidth : function(col){
58583         return this.config[col].width * 1 || this.defaultWidth;
58584     },
58585
58586     /**
58587      * Sets the width for a column.
58588      * @param {Number} col The column index
58589      * @param {Number} width The new width
58590      */
58591     setColumnWidth : function(col, width, suppressEvent){
58592         this.config[col].width = width;
58593         this.totalWidth = null;
58594         if(!suppressEvent){
58595              this.fireEvent("widthchange", this, col, width);
58596         }
58597     },
58598
58599     /**
58600      * Returns the total width of all columns.
58601      * @param {Boolean} includeHidden True to include hidden column widths
58602      * @return {Number}
58603      */
58604     getTotalWidth : function(includeHidden){
58605         if(!this.totalWidth){
58606             this.totalWidth = 0;
58607             for(var i = 0, len = this.config.length; i < len; i++){
58608                 if(includeHidden || !this.isHidden(i)){
58609                     this.totalWidth += this.getColumnWidth(i);
58610                 }
58611             }
58612         }
58613         return this.totalWidth;
58614     },
58615
58616     /**
58617      * Returns the header for the specified column.
58618      * @param {Number} col The column index
58619      * @return {String}
58620      */
58621     getColumnHeader : function(col){
58622         return this.config[col].header;
58623     },
58624
58625     /**
58626      * Sets the header for a column.
58627      * @param {Number} col The column index
58628      * @param {String} header The new header
58629      */
58630     setColumnHeader : function(col, header){
58631         this.config[col].header = header;
58632         this.fireEvent("headerchange", this, col, header);
58633     },
58634
58635     /**
58636      * Returns the tooltip for the specified column.
58637      * @param {Number} col The column index
58638      * @return {String}
58639      */
58640     getColumnTooltip : function(col){
58641             return this.config[col].tooltip;
58642     },
58643     /**
58644      * Sets the tooltip for a column.
58645      * @param {Number} col The column index
58646      * @param {String} tooltip The new tooltip
58647      */
58648     setColumnTooltip : function(col, tooltip){
58649             this.config[col].tooltip = tooltip;
58650     },
58651
58652     /**
58653      * Returns the dataIndex for the specified column.
58654      * @param {Number} col The column index
58655      * @return {Number}
58656      */
58657     getDataIndex : function(col){
58658         return this.config[col].dataIndex;
58659     },
58660
58661     /**
58662      * Sets the dataIndex for a column.
58663      * @param {Number} col The column index
58664      * @param {Number} dataIndex The new dataIndex
58665      */
58666     setDataIndex : function(col, dataIndex){
58667         this.config[col].dataIndex = dataIndex;
58668     },
58669
58670     
58671     
58672     /**
58673      * Returns true if the cell is editable.
58674      * @param {Number} colIndex The column index
58675      * @param {Number} rowIndex The row index - this is nto actually used..?
58676      * @return {Boolean}
58677      */
58678     isCellEditable : function(colIndex, rowIndex){
58679         return (this.config[colIndex].editable || (typeof this.config[colIndex].editable == "undefined" && this.config[colIndex].editor)) ? true : false;
58680     },
58681
58682     /**
58683      * Returns the editor defined for the cell/column.
58684      * return false or null to disable editing.
58685      * @param {Number} colIndex The column index
58686      * @param {Number} rowIndex The row index
58687      * @return {Object}
58688      */
58689     getCellEditor : function(colIndex, rowIndex){
58690         return this.config[colIndex].editor;
58691     },
58692
58693     /**
58694      * Sets if a column is editable.
58695      * @param {Number} col The column index
58696      * @param {Boolean} editable True if the column is editable
58697      */
58698     setEditable : function(col, editable){
58699         this.config[col].editable = editable;
58700     },
58701
58702
58703     /**
58704      * Returns true if the column is hidden.
58705      * @param {Number} colIndex The column index
58706      * @return {Boolean}
58707      */
58708     isHidden : function(colIndex){
58709         return this.config[colIndex].hidden;
58710     },
58711
58712
58713     /**
58714      * Returns true if the column width cannot be changed
58715      */
58716     isFixed : function(colIndex){
58717         return this.config[colIndex].fixed;
58718     },
58719
58720     /**
58721      * Returns true if the column can be resized
58722      * @return {Boolean}
58723      */
58724     isResizable : function(colIndex){
58725         return colIndex >= 0 && this.config[colIndex].resizable !== false && this.config[colIndex].fixed !== true;
58726     },
58727     /**
58728      * Sets if a column is hidden.
58729      * @param {Number} colIndex The column index
58730      * @param {Boolean} hidden True if the column is hidden
58731      */
58732     setHidden : function(colIndex, hidden){
58733         this.config[colIndex].hidden = hidden;
58734         this.totalWidth = null;
58735         this.fireEvent("hiddenchange", this, colIndex, hidden);
58736     },
58737
58738     /**
58739      * Sets the editor for a column.
58740      * @param {Number} col The column index
58741      * @param {Object} editor The editor object
58742      */
58743     setEditor : function(col, editor){
58744         this.config[col].editor = editor;
58745     },
58746     /**
58747      * Add a column (experimental...) - defaults to adding to the end..
58748      * @param {Object} config 
58749     */
58750     addColumn : function(c)
58751     {
58752     
58753         var i = this.config.length;
58754         this.config[i] = c;
58755         
58756         if(typeof c.dataIndex == "undefined"){
58757             c.dataIndex = i;
58758         }
58759         if(typeof c.renderer == "string"){
58760             c.renderer = Roo.util.Format[c.renderer];
58761         }
58762         if(typeof c.id == "undefined"){
58763             c.id = Roo.id();
58764         }
58765         if(c.editor && c.editor.xtype){
58766             c.editor  = Roo.factory(c.editor, Roo.grid);
58767         }
58768         if(c.editor && c.editor.isFormField){
58769             c.editor = new Roo.grid.GridEditor(c.editor);
58770         }
58771         this.lookup[c.id] = c;
58772     }
58773     
58774 });
58775
58776 Roo.grid.ColumnModel.defaultRenderer = function(value)
58777 {
58778     if(typeof value == "object") {
58779         return value;
58780     }
58781         if(typeof value == "string" && value.length < 1){
58782             return "&#160;";
58783         }
58784     
58785         return String.format("{0}", value);
58786 };
58787
58788 // Alias for backwards compatibility
58789 Roo.grid.DefaultColumnModel = Roo.grid.ColumnModel;
58790 /*
58791  * Based on:
58792  * Ext JS Library 1.1.1
58793  * Copyright(c) 2006-2007, Ext JS, LLC.
58794  *
58795  * Originally Released Under LGPL - original licence link has changed is not relivant.
58796  *
58797  * Fork - LGPL
58798  * <script type="text/javascript">
58799  */
58800
58801 /**
58802  * @class Roo.grid.AbstractSelectionModel
58803  * @extends Roo.util.Observable
58804  * Abstract base class for grid SelectionModels.  It provides the interface that should be
58805  * implemented by descendant classes.  This class should not be directly instantiated.
58806  * @constructor
58807  */
58808 Roo.grid.AbstractSelectionModel = function(){
58809     this.locked = false;
58810     Roo.grid.AbstractSelectionModel.superclass.constructor.call(this);
58811 };
58812
58813 Roo.extend(Roo.grid.AbstractSelectionModel, Roo.util.Observable,  {
58814     /** @ignore Called by the grid automatically. Do not call directly. */
58815     init : function(grid){
58816         this.grid = grid;
58817         this.initEvents();
58818     },
58819
58820     /**
58821      * Locks the selections.
58822      */
58823     lock : function(){
58824         this.locked = true;
58825     },
58826
58827     /**
58828      * Unlocks the selections.
58829      */
58830     unlock : function(){
58831         this.locked = false;
58832     },
58833
58834     /**
58835      * Returns true if the selections are locked.
58836      * @return {Boolean}
58837      */
58838     isLocked : function(){
58839         return this.locked;
58840     }
58841 });/*
58842  * Based on:
58843  * Ext JS Library 1.1.1
58844  * Copyright(c) 2006-2007, Ext JS, LLC.
58845  *
58846  * Originally Released Under LGPL - original licence link has changed is not relivant.
58847  *
58848  * Fork - LGPL
58849  * <script type="text/javascript">
58850  */
58851 /**
58852  * @extends Roo.grid.AbstractSelectionModel
58853  * @class Roo.grid.RowSelectionModel
58854  * The default SelectionModel used by {@link Roo.grid.Grid}.
58855  * It supports multiple selections and keyboard selection/navigation. 
58856  * @constructor
58857  * @param {Object} config
58858  */
58859 Roo.grid.RowSelectionModel = function(config){
58860     Roo.apply(this, config);
58861     this.selections = new Roo.util.MixedCollection(false, function(o){
58862         return o.id;
58863     });
58864
58865     this.last = false;
58866     this.lastActive = false;
58867
58868     this.addEvents({
58869         /**
58870              * @event selectionchange
58871              * Fires when the selection changes
58872              * @param {SelectionModel} this
58873              */
58874             "selectionchange" : true,
58875         /**
58876              * @event afterselectionchange
58877              * Fires after the selection changes (eg. by key press or clicking)
58878              * @param {SelectionModel} this
58879              */
58880             "afterselectionchange" : true,
58881         /**
58882              * @event beforerowselect
58883              * Fires when a row is selected being selected, return false to cancel.
58884              * @param {SelectionModel} this
58885              * @param {Number} rowIndex The selected index
58886              * @param {Boolean} keepExisting False if other selections will be cleared
58887              */
58888             "beforerowselect" : true,
58889         /**
58890              * @event rowselect
58891              * Fires when a row is selected.
58892              * @param {SelectionModel} this
58893              * @param {Number} rowIndex The selected index
58894              * @param {Roo.data.Record} r The record
58895              */
58896             "rowselect" : true,
58897         /**
58898              * @event rowdeselect
58899              * Fires when a row is deselected.
58900              * @param {SelectionModel} this
58901              * @param {Number} rowIndex The selected index
58902              */
58903         "rowdeselect" : true
58904     });
58905     Roo.grid.RowSelectionModel.superclass.constructor.call(this);
58906     this.locked = false;
58907 };
58908
58909 Roo.extend(Roo.grid.RowSelectionModel, Roo.grid.AbstractSelectionModel,  {
58910     /**
58911      * @cfg {Boolean} singleSelect
58912      * True to allow selection of only one row at a time (defaults to false)
58913      */
58914     singleSelect : false,
58915
58916     // private
58917     initEvents : function(){
58918
58919         if(!this.grid.enableDragDrop && !this.grid.enableDrag){
58920             this.grid.on("mousedown", this.handleMouseDown, this);
58921         }else{ // allow click to work like normal
58922             this.grid.on("rowclick", this.handleDragableRowClick, this);
58923         }
58924
58925         this.rowNav = new Roo.KeyNav(this.grid.getGridEl(), {
58926             "up" : function(e){
58927                 if(!e.shiftKey){
58928                     this.selectPrevious(e.shiftKey);
58929                 }else if(this.last !== false && this.lastActive !== false){
58930                     var last = this.last;
58931                     this.selectRange(this.last,  this.lastActive-1);
58932                     this.grid.getView().focusRow(this.lastActive);
58933                     if(last !== false){
58934                         this.last = last;
58935                     }
58936                 }else{
58937                     this.selectFirstRow();
58938                 }
58939                 this.fireEvent("afterselectionchange", this);
58940             },
58941             "down" : function(e){
58942                 if(!e.shiftKey){
58943                     this.selectNext(e.shiftKey);
58944                 }else if(this.last !== false && this.lastActive !== false){
58945                     var last = this.last;
58946                     this.selectRange(this.last,  this.lastActive+1);
58947                     this.grid.getView().focusRow(this.lastActive);
58948                     if(last !== false){
58949                         this.last = last;
58950                     }
58951                 }else{
58952                     this.selectFirstRow();
58953                 }
58954                 this.fireEvent("afterselectionchange", this);
58955             },
58956             scope: this
58957         });
58958
58959         var view = this.grid.view;
58960         view.on("refresh", this.onRefresh, this);
58961         view.on("rowupdated", this.onRowUpdated, this);
58962         view.on("rowremoved", this.onRemove, this);
58963     },
58964
58965     // private
58966     onRefresh : function(){
58967         var ds = this.grid.dataSource, i, v = this.grid.view;
58968         var s = this.selections;
58969         s.each(function(r){
58970             if((i = ds.indexOfId(r.id)) != -1){
58971                 v.onRowSelect(i);
58972                 s.add(ds.getAt(i)); // updating the selection relate data
58973             }else{
58974                 s.remove(r);
58975             }
58976         });
58977     },
58978
58979     // private
58980     onRemove : function(v, index, r){
58981         this.selections.remove(r);
58982     },
58983
58984     // private
58985     onRowUpdated : function(v, index, r){
58986         if(this.isSelected(r)){
58987             v.onRowSelect(index);
58988         }
58989     },
58990
58991     /**
58992      * Select records.
58993      * @param {Array} records The records to select
58994      * @param {Boolean} keepExisting (optional) True to keep existing selections
58995      */
58996     selectRecords : function(records, keepExisting){
58997         if(!keepExisting){
58998             this.clearSelections();
58999         }
59000         var ds = this.grid.dataSource;
59001         for(var i = 0, len = records.length; i < len; i++){
59002             this.selectRow(ds.indexOf(records[i]), true);
59003         }
59004     },
59005
59006     /**
59007      * Gets the number of selected rows.
59008      * @return {Number}
59009      */
59010     getCount : function(){
59011         return this.selections.length;
59012     },
59013
59014     /**
59015      * Selects the first row in the grid.
59016      */
59017     selectFirstRow : function(){
59018         this.selectRow(0);
59019     },
59020
59021     /**
59022      * Select the last row.
59023      * @param {Boolean} keepExisting (optional) True to keep existing selections
59024      */
59025     selectLastRow : function(keepExisting){
59026         this.selectRow(this.grid.dataSource.getCount() - 1, keepExisting);
59027     },
59028
59029     /**
59030      * Selects the row immediately following the last selected row.
59031      * @param {Boolean} keepExisting (optional) True to keep existing selections
59032      */
59033     selectNext : function(keepExisting){
59034         if(this.last !== false && (this.last+1) < this.grid.dataSource.getCount()){
59035             this.selectRow(this.last+1, keepExisting);
59036             this.grid.getView().focusRow(this.last);
59037         }
59038     },
59039
59040     /**
59041      * Selects the row that precedes the last selected row.
59042      * @param {Boolean} keepExisting (optional) True to keep existing selections
59043      */
59044     selectPrevious : function(keepExisting){
59045         if(this.last){
59046             this.selectRow(this.last-1, keepExisting);
59047             this.grid.getView().focusRow(this.last);
59048         }
59049     },
59050
59051     /**
59052      * Returns the selected records
59053      * @return {Array} Array of selected records
59054      */
59055     getSelections : function(){
59056         return [].concat(this.selections.items);
59057     },
59058
59059     /**
59060      * Returns the first selected record.
59061      * @return {Record}
59062      */
59063     getSelected : function(){
59064         return this.selections.itemAt(0);
59065     },
59066
59067
59068     /**
59069      * Clears all selections.
59070      */
59071     clearSelections : function(fast){
59072         if(this.locked) {
59073             return;
59074         }
59075         if(fast !== true){
59076             var ds = this.grid.dataSource;
59077             var s = this.selections;
59078             s.each(function(r){
59079                 this.deselectRow(ds.indexOfId(r.id));
59080             }, this);
59081             s.clear();
59082         }else{
59083             this.selections.clear();
59084         }
59085         this.last = false;
59086     },
59087
59088
59089     /**
59090      * Selects all rows.
59091      */
59092     selectAll : function(){
59093         if(this.locked) {
59094             return;
59095         }
59096         this.selections.clear();
59097         for(var i = 0, len = this.grid.dataSource.getCount(); i < len; i++){
59098             this.selectRow(i, true);
59099         }
59100     },
59101
59102     /**
59103      * Returns True if there is a selection.
59104      * @return {Boolean}
59105      */
59106     hasSelection : function(){
59107         return this.selections.length > 0;
59108     },
59109
59110     /**
59111      * Returns True if the specified row is selected.
59112      * @param {Number/Record} record The record or index of the record to check
59113      * @return {Boolean}
59114      */
59115     isSelected : function(index){
59116         var r = typeof index == "number" ? this.grid.dataSource.getAt(index) : index;
59117         return (r && this.selections.key(r.id) ? true : false);
59118     },
59119
59120     /**
59121      * Returns True if the specified record id is selected.
59122      * @param {String} id The id of record to check
59123      * @return {Boolean}
59124      */
59125     isIdSelected : function(id){
59126         return (this.selections.key(id) ? true : false);
59127     },
59128
59129     // private
59130     handleMouseDown : function(e, t){
59131         var view = this.grid.getView(), rowIndex;
59132         if(this.isLocked() || (rowIndex = view.findRowIndex(t)) === false){
59133             return;
59134         };
59135         if(e.shiftKey && this.last !== false){
59136             var last = this.last;
59137             this.selectRange(last, rowIndex, e.ctrlKey);
59138             this.last = last; // reset the last
59139             view.focusRow(rowIndex);
59140         }else{
59141             var isSelected = this.isSelected(rowIndex);
59142             if(e.button !== 0 && isSelected){
59143                 view.focusRow(rowIndex);
59144             }else if(e.ctrlKey && isSelected){
59145                 this.deselectRow(rowIndex);
59146             }else if(!isSelected){
59147                 this.selectRow(rowIndex, e.button === 0 && (e.ctrlKey || e.shiftKey));
59148                 view.focusRow(rowIndex);
59149             }
59150         }
59151         this.fireEvent("afterselectionchange", this);
59152     },
59153     // private
59154     handleDragableRowClick :  function(grid, rowIndex, e) 
59155     {
59156         if(e.button === 0 && !e.shiftKey && !e.ctrlKey) {
59157             this.selectRow(rowIndex, false);
59158             grid.view.focusRow(rowIndex);
59159              this.fireEvent("afterselectionchange", this);
59160         }
59161     },
59162     
59163     /**
59164      * Selects multiple rows.
59165      * @param {Array} rows Array of the indexes of the row to select
59166      * @param {Boolean} keepExisting (optional) True to keep existing selections
59167      */
59168     selectRows : function(rows, keepExisting){
59169         if(!keepExisting){
59170             this.clearSelections();
59171         }
59172         for(var i = 0, len = rows.length; i < len; i++){
59173             this.selectRow(rows[i], true);
59174         }
59175     },
59176
59177     /**
59178      * Selects a range of rows. All rows in between startRow and endRow are also selected.
59179      * @param {Number} startRow The index of the first row in the range
59180      * @param {Number} endRow The index of the last row in the range
59181      * @param {Boolean} keepExisting (optional) True to retain existing selections
59182      */
59183     selectRange : function(startRow, endRow, keepExisting){
59184         if(this.locked) {
59185             return;
59186         }
59187         if(!keepExisting){
59188             this.clearSelections();
59189         }
59190         if(startRow <= endRow){
59191             for(var i = startRow; i <= endRow; i++){
59192                 this.selectRow(i, true);
59193             }
59194         }else{
59195             for(var i = startRow; i >= endRow; i--){
59196                 this.selectRow(i, true);
59197             }
59198         }
59199     },
59200
59201     /**
59202      * Deselects a range of rows. All rows in between startRow and endRow are also deselected.
59203      * @param {Number} startRow The index of the first row in the range
59204      * @param {Number} endRow The index of the last row in the range
59205      */
59206     deselectRange : function(startRow, endRow, preventViewNotify){
59207         if(this.locked) {
59208             return;
59209         }
59210         for(var i = startRow; i <= endRow; i++){
59211             this.deselectRow(i, preventViewNotify);
59212         }
59213     },
59214
59215     /**
59216      * Selects a row.
59217      * @param {Number} row The index of the row to select
59218      * @param {Boolean} keepExisting (optional) True to keep existing selections
59219      */
59220     selectRow : function(index, keepExisting, preventViewNotify){
59221         if(this.locked || (index < 0 || index >= this.grid.dataSource.getCount())) {
59222             return;
59223         }
59224         if(this.fireEvent("beforerowselect", this, index, keepExisting) !== false){
59225             if(!keepExisting || this.singleSelect){
59226                 this.clearSelections();
59227             }
59228             var r = this.grid.dataSource.getAt(index);
59229             this.selections.add(r);
59230             this.last = this.lastActive = index;
59231             if(!preventViewNotify){
59232                 this.grid.getView().onRowSelect(index);
59233             }
59234             this.fireEvent("rowselect", this, index, r);
59235             this.fireEvent("selectionchange", this);
59236         }
59237     },
59238
59239     /**
59240      * Deselects a row.
59241      * @param {Number} row The index of the row to deselect
59242      */
59243     deselectRow : function(index, preventViewNotify){
59244         if(this.locked) {
59245             return;
59246         }
59247         if(this.last == index){
59248             this.last = false;
59249         }
59250         if(this.lastActive == index){
59251             this.lastActive = false;
59252         }
59253         var r = this.grid.dataSource.getAt(index);
59254         this.selections.remove(r);
59255         if(!preventViewNotify){
59256             this.grid.getView().onRowDeselect(index);
59257         }
59258         this.fireEvent("rowdeselect", this, index);
59259         this.fireEvent("selectionchange", this);
59260     },
59261
59262     // private
59263     restoreLast : function(){
59264         if(this._last){
59265             this.last = this._last;
59266         }
59267     },
59268
59269     // private
59270     acceptsNav : function(row, col, cm){
59271         return !cm.isHidden(col) && cm.isCellEditable(col, row);
59272     },
59273
59274     // private
59275     onEditorKey : function(field, e){
59276         var k = e.getKey(), newCell, g = this.grid, ed = g.activeEditor;
59277         if(k == e.TAB){
59278             e.stopEvent();
59279             ed.completeEdit();
59280             if(e.shiftKey){
59281                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
59282             }else{
59283                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
59284             }
59285         }else if(k == e.ENTER && !e.ctrlKey){
59286             e.stopEvent();
59287             ed.completeEdit();
59288             if(e.shiftKey){
59289                 newCell = g.walkCells(ed.row-1, ed.col, -1, this.acceptsNav, this);
59290             }else{
59291                 newCell = g.walkCells(ed.row+1, ed.col, 1, this.acceptsNav, this);
59292             }
59293         }else if(k == e.ESC){
59294             ed.cancelEdit();
59295         }
59296         if(newCell){
59297             g.startEditing(newCell[0], newCell[1]);
59298         }
59299     }
59300 });/*
59301  * Based on:
59302  * Ext JS Library 1.1.1
59303  * Copyright(c) 2006-2007, Ext JS, LLC.
59304  *
59305  * Originally Released Under LGPL - original licence link has changed is not relivant.
59306  *
59307  * Fork - LGPL
59308  * <script type="text/javascript">
59309  */
59310 /**
59311  * @class Roo.grid.CellSelectionModel
59312  * @extends Roo.grid.AbstractSelectionModel
59313  * This class provides the basic implementation for cell selection in a grid.
59314  * @constructor
59315  * @param {Object} config The object containing the configuration of this model.
59316  * @cfg {Boolean} enter_is_tab Enter behaves the same as tab. (eg. goes to next cell) default: false
59317  */
59318 Roo.grid.CellSelectionModel = function(config){
59319     Roo.apply(this, config);
59320
59321     this.selection = null;
59322
59323     this.addEvents({
59324         /**
59325              * @event beforerowselect
59326              * Fires before a cell is selected.
59327              * @param {SelectionModel} this
59328              * @param {Number} rowIndex The selected row index
59329              * @param {Number} colIndex The selected cell index
59330              */
59331             "beforecellselect" : true,
59332         /**
59333              * @event cellselect
59334              * Fires when a cell is selected.
59335              * @param {SelectionModel} this
59336              * @param {Number} rowIndex The selected row index
59337              * @param {Number} colIndex The selected cell index
59338              */
59339             "cellselect" : true,
59340         /**
59341              * @event selectionchange
59342              * Fires when the active selection changes.
59343              * @param {SelectionModel} this
59344              * @param {Object} selection null for no selection or an object (o) with two properties
59345                 <ul>
59346                 <li>o.record: the record object for the row the selection is in</li>
59347                 <li>o.cell: An array of [rowIndex, columnIndex]</li>
59348                 </ul>
59349              */
59350             "selectionchange" : true,
59351         /**
59352              * @event tabend
59353              * Fires when the tab (or enter) was pressed on the last editable cell
59354              * You can use this to trigger add new row.
59355              * @param {SelectionModel} this
59356              */
59357             "tabend" : true,
59358          /**
59359              * @event beforeeditnext
59360              * Fires before the next editable sell is made active
59361              * You can use this to skip to another cell or fire the tabend
59362              *    if you set cell to false
59363              * @param {Object} eventdata object : { cell : [ row, col ] } 
59364              */
59365             "beforeeditnext" : true
59366     });
59367     Roo.grid.CellSelectionModel.superclass.constructor.call(this);
59368 };
59369
59370 Roo.extend(Roo.grid.CellSelectionModel, Roo.grid.AbstractSelectionModel,  {
59371     
59372     enter_is_tab: false,
59373
59374     /** @ignore */
59375     initEvents : function(){
59376         this.grid.on("mousedown", this.handleMouseDown, this);
59377         this.grid.getGridEl().on(Roo.isIE ? "keydown" : "keypress", this.handleKeyDown, this);
59378         var view = this.grid.view;
59379         view.on("refresh", this.onViewChange, this);
59380         view.on("rowupdated", this.onRowUpdated, this);
59381         view.on("beforerowremoved", this.clearSelections, this);
59382         view.on("beforerowsinserted", this.clearSelections, this);
59383         if(this.grid.isEditor){
59384             this.grid.on("beforeedit", this.beforeEdit,  this);
59385         }
59386     },
59387
59388         //private
59389     beforeEdit : function(e){
59390         this.select(e.row, e.column, false, true, e.record);
59391     },
59392
59393         //private
59394     onRowUpdated : function(v, index, r){
59395         if(this.selection && this.selection.record == r){
59396             v.onCellSelect(index, this.selection.cell[1]);
59397         }
59398     },
59399
59400         //private
59401     onViewChange : function(){
59402         this.clearSelections(true);
59403     },
59404
59405         /**
59406          * Returns the currently selected cell,.
59407          * @return {Array} The selected cell (row, column) or null if none selected.
59408          */
59409     getSelectedCell : function(){
59410         return this.selection ? this.selection.cell : null;
59411     },
59412
59413     /**
59414      * Clears all selections.
59415      * @param {Boolean} true to prevent the gridview from being notified about the change.
59416      */
59417     clearSelections : function(preventNotify){
59418         var s = this.selection;
59419         if(s){
59420             if(preventNotify !== true){
59421                 this.grid.view.onCellDeselect(s.cell[0], s.cell[1]);
59422             }
59423             this.selection = null;
59424             this.fireEvent("selectionchange", this, null);
59425         }
59426     },
59427
59428     /**
59429      * Returns true if there is a selection.
59430      * @return {Boolean}
59431      */
59432     hasSelection : function(){
59433         return this.selection ? true : false;
59434     },
59435
59436     /** @ignore */
59437     handleMouseDown : function(e, t){
59438         var v = this.grid.getView();
59439         if(this.isLocked()){
59440             return;
59441         };
59442         var row = v.findRowIndex(t);
59443         var cell = v.findCellIndex(t);
59444         if(row !== false && cell !== false){
59445             this.select(row, cell);
59446         }
59447     },
59448
59449     /**
59450      * Selects a cell.
59451      * @param {Number} rowIndex
59452      * @param {Number} collIndex
59453      */
59454     select : function(rowIndex, colIndex, preventViewNotify, preventFocus, /*internal*/ r){
59455         if(this.fireEvent("beforecellselect", this, rowIndex, colIndex) !== false){
59456             this.clearSelections();
59457             r = r || this.grid.dataSource.getAt(rowIndex);
59458             this.selection = {
59459                 record : r,
59460                 cell : [rowIndex, colIndex]
59461             };
59462             if(!preventViewNotify){
59463                 var v = this.grid.getView();
59464                 v.onCellSelect(rowIndex, colIndex);
59465                 if(preventFocus !== true){
59466                     v.focusCell(rowIndex, colIndex);
59467                 }
59468             }
59469             this.fireEvent("cellselect", this, rowIndex, colIndex);
59470             this.fireEvent("selectionchange", this, this.selection);
59471         }
59472     },
59473
59474         //private
59475     isSelectable : function(rowIndex, colIndex, cm){
59476         return !cm.isHidden(colIndex);
59477     },
59478
59479     /** @ignore */
59480     handleKeyDown : function(e){
59481         //Roo.log('Cell Sel Model handleKeyDown');
59482         if(!e.isNavKeyPress()){
59483             return;
59484         }
59485         var g = this.grid, s = this.selection;
59486         if(!s){
59487             e.stopEvent();
59488             var cell = g.walkCells(0, 0, 1, this.isSelectable,  this);
59489             if(cell){
59490                 this.select(cell[0], cell[1]);
59491             }
59492             return;
59493         }
59494         var sm = this;
59495         var walk = function(row, col, step){
59496             return g.walkCells(row, col, step, sm.isSelectable,  sm);
59497         };
59498         var k = e.getKey(), r = s.cell[0], c = s.cell[1];
59499         var newCell;
59500
59501       
59502
59503         switch(k){
59504             case e.TAB:
59505                 // handled by onEditorKey
59506                 if (g.isEditor && g.editing) {
59507                     return;
59508                 }
59509                 if(e.shiftKey) {
59510                     newCell = walk(r, c-1, -1);
59511                 } else {
59512                     newCell = walk(r, c+1, 1);
59513                 }
59514                 break;
59515             
59516             case e.DOWN:
59517                newCell = walk(r+1, c, 1);
59518                 break;
59519             
59520             case e.UP:
59521                 newCell = walk(r-1, c, -1);
59522                 break;
59523             
59524             case e.RIGHT:
59525                 newCell = walk(r, c+1, 1);
59526                 break;
59527             
59528             case e.LEFT:
59529                 newCell = walk(r, c-1, -1);
59530                 break;
59531             
59532             case e.ENTER:
59533                 
59534                 if(g.isEditor && !g.editing){
59535                    g.startEditing(r, c);
59536                    e.stopEvent();
59537                    return;
59538                 }
59539                 
59540                 
59541              break;
59542         };
59543         if(newCell){
59544             this.select(newCell[0], newCell[1]);
59545             e.stopEvent();
59546             
59547         }
59548     },
59549
59550     acceptsNav : function(row, col, cm){
59551         return !cm.isHidden(col) && cm.isCellEditable(col, row);
59552     },
59553     /**
59554      * Selects a cell.
59555      * @param {Number} field (not used) - as it's normally used as a listener
59556      * @param {Number} e - event - fake it by using
59557      *
59558      * var e = Roo.EventObjectImpl.prototype;
59559      * e.keyCode = e.TAB
59560      *
59561      * 
59562      */
59563     onEditorKey : function(field, e){
59564         
59565         var k = e.getKey(),
59566             newCell,
59567             g = this.grid,
59568             ed = g.activeEditor,
59569             forward = false;
59570         ///Roo.log('onEditorKey' + k);
59571         
59572         
59573         if (this.enter_is_tab && k == e.ENTER) {
59574             k = e.TAB;
59575         }
59576         
59577         if(k == e.TAB){
59578             if(e.shiftKey){
59579                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
59580             }else{
59581                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
59582                 forward = true;
59583             }
59584             
59585             e.stopEvent();
59586             
59587         } else if(k == e.ENTER &&  !e.ctrlKey){
59588             ed.completeEdit();
59589             e.stopEvent();
59590             newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
59591         
59592                 } else if(k == e.ESC){
59593             ed.cancelEdit();
59594         }
59595                 
59596         if (newCell) {
59597             var ecall = { cell : newCell, forward : forward };
59598             this.fireEvent('beforeeditnext', ecall );
59599             newCell = ecall.cell;
59600                         forward = ecall.forward;
59601         }
59602                 
59603         if(newCell){
59604             //Roo.log('next cell after edit');
59605             g.startEditing.defer(100, g, [newCell[0], newCell[1]]);
59606         } else if (forward) {
59607             // tabbed past last
59608             this.fireEvent.defer(100, this, ['tabend',this]);
59609         }
59610     }
59611 });/*
59612  * Based on:
59613  * Ext JS Library 1.1.1
59614  * Copyright(c) 2006-2007, Ext JS, LLC.
59615  *
59616  * Originally Released Under LGPL - original licence link has changed is not relivant.
59617  *
59618  * Fork - LGPL
59619  * <script type="text/javascript">
59620  */
59621  
59622 /**
59623  * @class Roo.grid.EditorGrid
59624  * @extends Roo.grid.Grid
59625  * Class for creating and editable grid.
59626  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered - 
59627  * The container MUST have some type of size defined for the grid to fill. The container will be 
59628  * automatically set to position relative if it isn't already.
59629  * @param {Object} dataSource The data model to bind to
59630  * @param {Object} colModel The column model with info about this grid's columns
59631  */
59632 Roo.grid.EditorGrid = function(container, config){
59633     Roo.grid.EditorGrid.superclass.constructor.call(this, container, config);
59634     this.getGridEl().addClass("xedit-grid");
59635
59636     if(!this.selModel){
59637         this.selModel = new Roo.grid.CellSelectionModel();
59638     }
59639
59640     this.activeEditor = null;
59641
59642         this.addEvents({
59643             /**
59644              * @event beforeedit
59645              * Fires before cell editing is triggered. The edit event object has the following properties <br />
59646              * <ul style="padding:5px;padding-left:16px;">
59647              * <li>grid - This grid</li>
59648              * <li>record - The record being edited</li>
59649              * <li>field - The field name being edited</li>
59650              * <li>value - The value for the field being edited.</li>
59651              * <li>row - The grid row index</li>
59652              * <li>column - The grid column index</li>
59653              * <li>cancel - Set this to true to cancel the edit or return false from your handler.</li>
59654              * </ul>
59655              * @param {Object} e An edit event (see above for description)
59656              */
59657             "beforeedit" : true,
59658             /**
59659              * @event afteredit
59660              * Fires after a cell is edited. <br />
59661              * <ul style="padding:5px;padding-left:16px;">
59662              * <li>grid - This grid</li>
59663              * <li>record - The record being edited</li>
59664              * <li>field - The field name being edited</li>
59665              * <li>value - The value being set</li>
59666              * <li>originalValue - The original value for the field, before the edit.</li>
59667              * <li>row - The grid row index</li>
59668              * <li>column - The grid column index</li>
59669              * </ul>
59670              * @param {Object} e An edit event (see above for description)
59671              */
59672             "afteredit" : true,
59673             /**
59674              * @event validateedit
59675              * Fires after a cell is edited, but before the value is set in the record. 
59676          * You can use this to modify the value being set in the field, Return false
59677              * to cancel the change. The edit event object has the following properties <br />
59678              * <ul style="padding:5px;padding-left:16px;">
59679          * <li>editor - This editor</li>
59680              * <li>grid - This grid</li>
59681              * <li>record - The record being edited</li>
59682              * <li>field - The field name being edited</li>
59683              * <li>value - The value being set</li>
59684              * <li>originalValue - The original value for the field, before the edit.</li>
59685              * <li>row - The grid row index</li>
59686              * <li>column - The grid column index</li>
59687              * <li>cancel - Set this to true to cancel the edit or return false from your handler.</li>
59688              * </ul>
59689              * @param {Object} e An edit event (see above for description)
59690              */
59691             "validateedit" : true
59692         });
59693     this.on("bodyscroll", this.stopEditing,  this);
59694     this.on(this.clicksToEdit == 1 ? "cellclick" : "celldblclick", this.onCellDblClick,  this);
59695 };
59696
59697 Roo.extend(Roo.grid.EditorGrid, Roo.grid.Grid, {
59698     /**
59699      * @cfg {Number} clicksToEdit
59700      * The number of clicks on a cell required to display the cell's editor (defaults to 2)
59701      */
59702     clicksToEdit: 2,
59703
59704     // private
59705     isEditor : true,
59706     // private
59707     trackMouseOver: false, // causes very odd FF errors
59708
59709     onCellDblClick : function(g, row, col){
59710         this.startEditing(row, col);
59711     },
59712
59713     onEditComplete : function(ed, value, startValue){
59714         this.editing = false;
59715         this.activeEditor = null;
59716         ed.un("specialkey", this.selModel.onEditorKey, this.selModel);
59717         var r = ed.record;
59718         var field = this.colModel.getDataIndex(ed.col);
59719         var e = {
59720             grid: this,
59721             record: r,
59722             field: field,
59723             originalValue: startValue,
59724             value: value,
59725             row: ed.row,
59726             column: ed.col,
59727             cancel:false,
59728             editor: ed
59729         };
59730         var cell = Roo.get(this.view.getCell(ed.row,ed.col));
59731         cell.show();
59732           
59733         if(String(value) !== String(startValue)){
59734             
59735             if(this.fireEvent("validateedit", e) !== false && !e.cancel){
59736                 r.set(field, e.value);
59737                 // if we are dealing with a combo box..
59738                 // then we also set the 'name' colum to be the displayField
59739                 if (ed.field.displayField && ed.field.name) {
59740                     r.set(ed.field.name, ed.field.el.dom.value);
59741                 }
59742                 
59743                 delete e.cancel; //?? why!!!
59744                 this.fireEvent("afteredit", e);
59745             }
59746         } else {
59747             this.fireEvent("afteredit", e); // always fire it!
59748         }
59749         this.view.focusCell(ed.row, ed.col);
59750     },
59751
59752     /**
59753      * Starts editing the specified for the specified row/column
59754      * @param {Number} rowIndex
59755      * @param {Number} colIndex
59756      */
59757     startEditing : function(row, col){
59758         this.stopEditing();
59759         if(this.colModel.isCellEditable(col, row)){
59760             this.view.ensureVisible(row, col, true);
59761           
59762             var r = this.dataSource.getAt(row);
59763             var field = this.colModel.getDataIndex(col);
59764             var cell = Roo.get(this.view.getCell(row,col));
59765             var e = {
59766                 grid: this,
59767                 record: r,
59768                 field: field,
59769                 value: r.data[field],
59770                 row: row,
59771                 column: col,
59772                 cancel:false 
59773             };
59774             if(this.fireEvent("beforeedit", e) !== false && !e.cancel){
59775                 this.editing = true;
59776                 var ed = this.colModel.getCellEditor(col, row);
59777                 
59778                 if (!ed) {
59779                     return;
59780                 }
59781                 if(!ed.rendered){
59782                     ed.render(ed.parentEl || document.body);
59783                 }
59784                 ed.field.reset();
59785                
59786                 cell.hide();
59787                 
59788                 (function(){ // complex but required for focus issues in safari, ie and opera
59789                     ed.row = row;
59790                     ed.col = col;
59791                     ed.record = r;
59792                     ed.on("complete",   this.onEditComplete,        this,       {single: true});
59793                     ed.on("specialkey", this.selModel.onEditorKey,  this.selModel);
59794                     this.activeEditor = ed;
59795                     var v = r.data[field];
59796                     ed.startEdit(this.view.getCell(row, col), v);
59797                     // combo's with 'displayField and name set
59798                     if (ed.field.displayField && ed.field.name) {
59799                         ed.field.el.dom.value = r.data[ed.field.name];
59800                     }
59801                     
59802                     
59803                 }).defer(50, this);
59804             }
59805         }
59806     },
59807         
59808     /**
59809      * Stops any active editing
59810      */
59811     stopEditing : function(){
59812         if(this.activeEditor){
59813             this.activeEditor.completeEdit();
59814         }
59815         this.activeEditor = null;
59816     },
59817         
59818          /**
59819      * Called to get grid's drag proxy text, by default returns this.ddText.
59820      * @return {String}
59821      */
59822     getDragDropText : function(){
59823         var count = this.selModel.getSelectedCell() ? 1 : 0;
59824         return String.format(this.ddText, count, count == 1 ? '' : 's');
59825     }
59826         
59827 });/*
59828  * Based on:
59829  * Ext JS Library 1.1.1
59830  * Copyright(c) 2006-2007, Ext JS, LLC.
59831  *
59832  * Originally Released Under LGPL - original licence link has changed is not relivant.
59833  *
59834  * Fork - LGPL
59835  * <script type="text/javascript">
59836  */
59837
59838 // private - not really -- you end up using it !
59839 // This is a support class used internally by the Grid components
59840
59841 /**
59842  * @class Roo.grid.GridEditor
59843  * @extends Roo.Editor
59844  * Class for creating and editable grid elements.
59845  * @param {Object} config any settings (must include field)
59846  */
59847 Roo.grid.GridEditor = function(field, config){
59848     if (!config && field.field) {
59849         config = field;
59850         field = Roo.factory(config.field, Roo.form);
59851     }
59852     Roo.grid.GridEditor.superclass.constructor.call(this, field, config);
59853     field.monitorTab = false;
59854 };
59855
59856 Roo.extend(Roo.grid.GridEditor, Roo.Editor, {
59857     
59858     /**
59859      * @cfg {Roo.form.Field} field Field to wrap (or xtyped)
59860      */
59861     
59862     alignment: "tl-tl",
59863     autoSize: "width",
59864     hideEl : false,
59865     cls: "x-small-editor x-grid-editor",
59866     shim:false,
59867     shadow:"frame"
59868 });/*
59869  * Based on:
59870  * Ext JS Library 1.1.1
59871  * Copyright(c) 2006-2007, Ext JS, LLC.
59872  *
59873  * Originally Released Under LGPL - original licence link has changed is not relivant.
59874  *
59875  * Fork - LGPL
59876  * <script type="text/javascript">
59877  */
59878   
59879
59880   
59881 Roo.grid.PropertyRecord = Roo.data.Record.create([
59882     {name:'name',type:'string'},  'value'
59883 ]);
59884
59885
59886 Roo.grid.PropertyStore = function(grid, source){
59887     this.grid = grid;
59888     this.store = new Roo.data.Store({
59889         recordType : Roo.grid.PropertyRecord
59890     });
59891     this.store.on('update', this.onUpdate,  this);
59892     if(source){
59893         this.setSource(source);
59894     }
59895     Roo.grid.PropertyStore.superclass.constructor.call(this);
59896 };
59897
59898
59899
59900 Roo.extend(Roo.grid.PropertyStore, Roo.util.Observable, {
59901     setSource : function(o){
59902         this.source = o;
59903         this.store.removeAll();
59904         var data = [];
59905         for(var k in o){
59906             if(this.isEditableValue(o[k])){
59907                 data.push(new Roo.grid.PropertyRecord({name: k, value: o[k]}, k));
59908             }
59909         }
59910         this.store.loadRecords({records: data}, {}, true);
59911     },
59912
59913     onUpdate : function(ds, record, type){
59914         if(type == Roo.data.Record.EDIT){
59915             var v = record.data['value'];
59916             var oldValue = record.modified['value'];
59917             if(this.grid.fireEvent('beforepropertychange', this.source, record.id, v, oldValue) !== false){
59918                 this.source[record.id] = v;
59919                 record.commit();
59920                 this.grid.fireEvent('propertychange', this.source, record.id, v, oldValue);
59921             }else{
59922                 record.reject();
59923             }
59924         }
59925     },
59926
59927     getProperty : function(row){
59928        return this.store.getAt(row);
59929     },
59930
59931     isEditableValue: function(val){
59932         if(val && val instanceof Date){
59933             return true;
59934         }else if(typeof val == 'object' || typeof val == 'function'){
59935             return false;
59936         }
59937         return true;
59938     },
59939
59940     setValue : function(prop, value){
59941         this.source[prop] = value;
59942         this.store.getById(prop).set('value', value);
59943     },
59944
59945     getSource : function(){
59946         return this.source;
59947     }
59948 });
59949
59950 Roo.grid.PropertyColumnModel = function(grid, store){
59951     this.grid = grid;
59952     var g = Roo.grid;
59953     g.PropertyColumnModel.superclass.constructor.call(this, [
59954         {header: this.nameText, sortable: true, dataIndex:'name', id: 'name'},
59955         {header: this.valueText, resizable:false, dataIndex: 'value', id: 'value'}
59956     ]);
59957     this.store = store;
59958     this.bselect = Roo.DomHelper.append(document.body, {
59959         tag: 'select', style:'display:none', cls: 'x-grid-editor', children: [
59960             {tag: 'option', value: 'true', html: 'true'},
59961             {tag: 'option', value: 'false', html: 'false'}
59962         ]
59963     });
59964     Roo.id(this.bselect);
59965     var f = Roo.form;
59966     this.editors = {
59967         'date' : new g.GridEditor(new f.DateField({selectOnFocus:true})),
59968         'string' : new g.GridEditor(new f.TextField({selectOnFocus:true})),
59969         'number' : new g.GridEditor(new f.NumberField({selectOnFocus:true, style:'text-align:left;'})),
59970         'int' : new g.GridEditor(new f.NumberField({selectOnFocus:true, allowDecimals:false, style:'text-align:left;'})),
59971         'boolean' : new g.GridEditor(new f.Field({el:this.bselect,selectOnFocus:true}))
59972     };
59973     this.renderCellDelegate = this.renderCell.createDelegate(this);
59974     this.renderPropDelegate = this.renderProp.createDelegate(this);
59975 };
59976
59977 Roo.extend(Roo.grid.PropertyColumnModel, Roo.grid.ColumnModel, {
59978     
59979     
59980     nameText : 'Name',
59981     valueText : 'Value',
59982     
59983     dateFormat : 'm/j/Y',
59984     
59985     
59986     renderDate : function(dateVal){
59987         return dateVal.dateFormat(this.dateFormat);
59988     },
59989
59990     renderBool : function(bVal){
59991         return bVal ? 'true' : 'false';
59992     },
59993
59994     isCellEditable : function(colIndex, rowIndex){
59995         return colIndex == 1;
59996     },
59997
59998     getRenderer : function(col){
59999         return col == 1 ?
60000             this.renderCellDelegate : this.renderPropDelegate;
60001     },
60002
60003     renderProp : function(v){
60004         return this.getPropertyName(v);
60005     },
60006
60007     renderCell : function(val){
60008         var rv = val;
60009         if(val instanceof Date){
60010             rv = this.renderDate(val);
60011         }else if(typeof val == 'boolean'){
60012             rv = this.renderBool(val);
60013         }
60014         return Roo.util.Format.htmlEncode(rv);
60015     },
60016
60017     getPropertyName : function(name){
60018         var pn = this.grid.propertyNames;
60019         return pn && pn[name] ? pn[name] : name;
60020     },
60021
60022     getCellEditor : function(colIndex, rowIndex){
60023         var p = this.store.getProperty(rowIndex);
60024         var n = p.data['name'], val = p.data['value'];
60025         
60026         if(typeof(this.grid.customEditors[n]) == 'string'){
60027             return this.editors[this.grid.customEditors[n]];
60028         }
60029         if(typeof(this.grid.customEditors[n]) != 'undefined'){
60030             return this.grid.customEditors[n];
60031         }
60032         if(val instanceof Date){
60033             return this.editors['date'];
60034         }else if(typeof val == 'number'){
60035             return this.editors['number'];
60036         }else if(typeof val == 'boolean'){
60037             return this.editors['boolean'];
60038         }else{
60039             return this.editors['string'];
60040         }
60041     }
60042 });
60043
60044 /**
60045  * @class Roo.grid.PropertyGrid
60046  * @extends Roo.grid.EditorGrid
60047  * This class represents the  interface of a component based property grid control.
60048  * <br><br>Usage:<pre><code>
60049  var grid = new Roo.grid.PropertyGrid("my-container-id", {
60050       
60051  });
60052  // set any options
60053  grid.render();
60054  * </code></pre>
60055   
60056  * @constructor
60057  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
60058  * The container MUST have some type of size defined for the grid to fill. The container will be
60059  * automatically set to position relative if it isn't already.
60060  * @param {Object} config A config object that sets properties on this grid.
60061  */
60062 Roo.grid.PropertyGrid = function(container, config){
60063     config = config || {};
60064     var store = new Roo.grid.PropertyStore(this);
60065     this.store = store;
60066     var cm = new Roo.grid.PropertyColumnModel(this, store);
60067     store.store.sort('name', 'ASC');
60068     Roo.grid.PropertyGrid.superclass.constructor.call(this, container, Roo.apply({
60069         ds: store.store,
60070         cm: cm,
60071         enableColLock:false,
60072         enableColumnMove:false,
60073         stripeRows:false,
60074         trackMouseOver: false,
60075         clicksToEdit:1
60076     }, config));
60077     this.getGridEl().addClass('x-props-grid');
60078     this.lastEditRow = null;
60079     this.on('columnresize', this.onColumnResize, this);
60080     this.addEvents({
60081          /**
60082              * @event beforepropertychange
60083              * Fires before a property changes (return false to stop?)
60084              * @param {Roo.grid.PropertyGrid} grid property grid? (check could be store)
60085              * @param {String} id Record Id
60086              * @param {String} newval New Value
60087          * @param {String} oldval Old Value
60088              */
60089         "beforepropertychange": true,
60090         /**
60091              * @event propertychange
60092              * Fires after a property changes
60093              * @param {Roo.grid.PropertyGrid} grid property grid? (check could be store)
60094              * @param {String} id Record Id
60095              * @param {String} newval New Value
60096          * @param {String} oldval Old Value
60097              */
60098         "propertychange": true
60099     });
60100     this.customEditors = this.customEditors || {};
60101 };
60102 Roo.extend(Roo.grid.PropertyGrid, Roo.grid.EditorGrid, {
60103     
60104      /**
60105      * @cfg {Object} customEditors map of colnames=> custom editors.
60106      * the custom editor can be one of the standard ones (date|string|number|int|boolean), or a
60107      * grid editor eg. Roo.grid.GridEditor(new Roo.form.TextArea({selectOnFocus:true})),
60108      * false disables editing of the field.
60109          */
60110     
60111       /**
60112      * @cfg {Object} propertyNames map of property Names to their displayed value
60113          */
60114     
60115     render : function(){
60116         Roo.grid.PropertyGrid.superclass.render.call(this);
60117         this.autoSize.defer(100, this);
60118     },
60119
60120     autoSize : function(){
60121         Roo.grid.PropertyGrid.superclass.autoSize.call(this);
60122         if(this.view){
60123             this.view.fitColumns();
60124         }
60125     },
60126
60127     onColumnResize : function(){
60128         this.colModel.setColumnWidth(1, this.container.getWidth(true)-this.colModel.getColumnWidth(0));
60129         this.autoSize();
60130     },
60131     /**
60132      * Sets the data for the Grid
60133      * accepts a Key => Value object of all the elements avaiable.
60134      * @param {Object} data  to appear in grid.
60135      */
60136     setSource : function(source){
60137         this.store.setSource(source);
60138         //this.autoSize();
60139     },
60140     /**
60141      * Gets all the data from the grid.
60142      * @return {Object} data  data stored in grid
60143      */
60144     getSource : function(){
60145         return this.store.getSource();
60146     }
60147 });/*
60148   
60149  * Licence LGPL
60150  
60151  */
60152  
60153 /**
60154  * @class Roo.grid.Calendar
60155  * @extends Roo.util.Grid
60156  * This class extends the Grid to provide a calendar widget
60157  * <br><br>Usage:<pre><code>
60158  var grid = new Roo.grid.Calendar("my-container-id", {
60159      ds: myDataStore,
60160      cm: myColModel,
60161      selModel: mySelectionModel,
60162      autoSizeColumns: true,
60163      monitorWindowResize: false,
60164      trackMouseOver: true
60165      eventstore : real data store..
60166  });
60167  // set any options
60168  grid.render();
60169   
60170   * @constructor
60171  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
60172  * The container MUST have some type of size defined for the grid to fill. The container will be
60173  * automatically set to position relative if it isn't already.
60174  * @param {Object} config A config object that sets properties on this grid.
60175  */
60176 Roo.grid.Calendar = function(container, config){
60177         // initialize the container
60178         this.container = Roo.get(container);
60179         this.container.update("");
60180         this.container.setStyle("overflow", "hidden");
60181     this.container.addClass('x-grid-container');
60182
60183     this.id = this.container.id;
60184
60185     Roo.apply(this, config);
60186     // check and correct shorthanded configs
60187     
60188     var rows = [];
60189     var d =1;
60190     for (var r = 0;r < 6;r++) {
60191         
60192         rows[r]=[];
60193         for (var c =0;c < 7;c++) {
60194             rows[r][c]= '';
60195         }
60196     }
60197     if (this.eventStore) {
60198         this.eventStore= Roo.factory(this.eventStore, Roo.data);
60199         this.eventStore.on('load',this.onLoad, this);
60200         this.eventStore.on('beforeload',this.clearEvents, this);
60201          
60202     }
60203     
60204     this.dataSource = new Roo.data.Store({
60205             proxy: new Roo.data.MemoryProxy(rows),
60206             reader: new Roo.data.ArrayReader({}, [
60207                    'weekday0', 'weekday1', 'weekday2', 'weekday3', 'weekday4', 'weekday5', 'weekday6' ])
60208     });
60209
60210     this.dataSource.load();
60211     this.ds = this.dataSource;
60212     this.ds.xmodule = this.xmodule || false;
60213     
60214     
60215     var cellRender = function(v,x,r)
60216     {
60217         return String.format(
60218             '<div class="fc-day  fc-widget-content"><div>' +
60219                 '<div class="fc-event-container"></div>' +
60220                 '<div class="fc-day-number">{0}</div>'+
60221                 
60222                 '<div class="fc-day-content"><div style="position:relative"></div></div>' +
60223             '</div></div>', v);
60224     
60225     }
60226     
60227     
60228     this.colModel = new Roo.grid.ColumnModel( [
60229         {
60230             xtype: 'ColumnModel',
60231             xns: Roo.grid,
60232             dataIndex : 'weekday0',
60233             header : 'Sunday',
60234             renderer : cellRender
60235         },
60236         {
60237             xtype: 'ColumnModel',
60238             xns: Roo.grid,
60239             dataIndex : 'weekday1',
60240             header : 'Monday',
60241             renderer : cellRender
60242         },
60243         {
60244             xtype: 'ColumnModel',
60245             xns: Roo.grid,
60246             dataIndex : 'weekday2',
60247             header : 'Tuesday',
60248             renderer : cellRender
60249         },
60250         {
60251             xtype: 'ColumnModel',
60252             xns: Roo.grid,
60253             dataIndex : 'weekday3',
60254             header : 'Wednesday',
60255             renderer : cellRender
60256         },
60257         {
60258             xtype: 'ColumnModel',
60259             xns: Roo.grid,
60260             dataIndex : 'weekday4',
60261             header : 'Thursday',
60262             renderer : cellRender
60263         },
60264         {
60265             xtype: 'ColumnModel',
60266             xns: Roo.grid,
60267             dataIndex : 'weekday5',
60268             header : 'Friday',
60269             renderer : cellRender
60270         },
60271         {
60272             xtype: 'ColumnModel',
60273             xns: Roo.grid,
60274             dataIndex : 'weekday6',
60275             header : 'Saturday',
60276             renderer : cellRender
60277         }
60278     ]);
60279     this.cm = this.colModel;
60280     this.cm.xmodule = this.xmodule || false;
60281  
60282         
60283           
60284     //this.selModel = new Roo.grid.CellSelectionModel();
60285     //this.sm = this.selModel;
60286     //this.selModel.init(this);
60287     
60288     
60289     if(this.width){
60290         this.container.setWidth(this.width);
60291     }
60292
60293     if(this.height){
60294         this.container.setHeight(this.height);
60295     }
60296     /** @private */
60297         this.addEvents({
60298         // raw events
60299         /**
60300          * @event click
60301          * The raw click event for the entire grid.
60302          * @param {Roo.EventObject} e
60303          */
60304         "click" : true,
60305         /**
60306          * @event dblclick
60307          * The raw dblclick event for the entire grid.
60308          * @param {Roo.EventObject} e
60309          */
60310         "dblclick" : true,
60311         /**
60312          * @event contextmenu
60313          * The raw contextmenu event for the entire grid.
60314          * @param {Roo.EventObject} e
60315          */
60316         "contextmenu" : true,
60317         /**
60318          * @event mousedown
60319          * The raw mousedown event for the entire grid.
60320          * @param {Roo.EventObject} e
60321          */
60322         "mousedown" : true,
60323         /**
60324          * @event mouseup
60325          * The raw mouseup event for the entire grid.
60326          * @param {Roo.EventObject} e
60327          */
60328         "mouseup" : true,
60329         /**
60330          * @event mouseover
60331          * The raw mouseover event for the entire grid.
60332          * @param {Roo.EventObject} e
60333          */
60334         "mouseover" : true,
60335         /**
60336          * @event mouseout
60337          * The raw mouseout event for the entire grid.
60338          * @param {Roo.EventObject} e
60339          */
60340         "mouseout" : true,
60341         /**
60342          * @event keypress
60343          * The raw keypress event for the entire grid.
60344          * @param {Roo.EventObject} e
60345          */
60346         "keypress" : true,
60347         /**
60348          * @event keydown
60349          * The raw keydown event for the entire grid.
60350          * @param {Roo.EventObject} e
60351          */
60352         "keydown" : true,
60353
60354         // custom events
60355
60356         /**
60357          * @event cellclick
60358          * Fires when a cell is clicked
60359          * @param {Grid} this
60360          * @param {Number} rowIndex
60361          * @param {Number} columnIndex
60362          * @param {Roo.EventObject} e
60363          */
60364         "cellclick" : true,
60365         /**
60366          * @event celldblclick
60367          * Fires when a cell is double clicked
60368          * @param {Grid} this
60369          * @param {Number} rowIndex
60370          * @param {Number} columnIndex
60371          * @param {Roo.EventObject} e
60372          */
60373         "celldblclick" : true,
60374         /**
60375          * @event rowclick
60376          * Fires when a row is clicked
60377          * @param {Grid} this
60378          * @param {Number} rowIndex
60379          * @param {Roo.EventObject} e
60380          */
60381         "rowclick" : true,
60382         /**
60383          * @event rowdblclick
60384          * Fires when a row is double clicked
60385          * @param {Grid} this
60386          * @param {Number} rowIndex
60387          * @param {Roo.EventObject} e
60388          */
60389         "rowdblclick" : true,
60390         /**
60391          * @event headerclick
60392          * Fires when a header is clicked
60393          * @param {Grid} this
60394          * @param {Number} columnIndex
60395          * @param {Roo.EventObject} e
60396          */
60397         "headerclick" : true,
60398         /**
60399          * @event headerdblclick
60400          * Fires when a header cell is double clicked
60401          * @param {Grid} this
60402          * @param {Number} columnIndex
60403          * @param {Roo.EventObject} e
60404          */
60405         "headerdblclick" : true,
60406         /**
60407          * @event rowcontextmenu
60408          * Fires when a row is right clicked
60409          * @param {Grid} this
60410          * @param {Number} rowIndex
60411          * @param {Roo.EventObject} e
60412          */
60413         "rowcontextmenu" : true,
60414         /**
60415          * @event cellcontextmenu
60416          * Fires when a cell is right clicked
60417          * @param {Grid} this
60418          * @param {Number} rowIndex
60419          * @param {Number} cellIndex
60420          * @param {Roo.EventObject} e
60421          */
60422          "cellcontextmenu" : true,
60423         /**
60424          * @event headercontextmenu
60425          * Fires when a header is right clicked
60426          * @param {Grid} this
60427          * @param {Number} columnIndex
60428          * @param {Roo.EventObject} e
60429          */
60430         "headercontextmenu" : true,
60431         /**
60432          * @event bodyscroll
60433          * Fires when the body element is scrolled
60434          * @param {Number} scrollLeft
60435          * @param {Number} scrollTop
60436          */
60437         "bodyscroll" : true,
60438         /**
60439          * @event columnresize
60440          * Fires when the user resizes a column
60441          * @param {Number} columnIndex
60442          * @param {Number} newSize
60443          */
60444         "columnresize" : true,
60445         /**
60446          * @event columnmove
60447          * Fires when the user moves a column
60448          * @param {Number} oldIndex
60449          * @param {Number} newIndex
60450          */
60451         "columnmove" : true,
60452         /**
60453          * @event startdrag
60454          * Fires when row(s) start being dragged
60455          * @param {Grid} this
60456          * @param {Roo.GridDD} dd The drag drop object
60457          * @param {event} e The raw browser event
60458          */
60459         "startdrag" : true,
60460         /**
60461          * @event enddrag
60462          * Fires when a drag operation is complete
60463          * @param {Grid} this
60464          * @param {Roo.GridDD} dd The drag drop object
60465          * @param {event} e The raw browser event
60466          */
60467         "enddrag" : true,
60468         /**
60469          * @event dragdrop
60470          * Fires when dragged row(s) are dropped on a valid DD target
60471          * @param {Grid} this
60472          * @param {Roo.GridDD} dd The drag drop object
60473          * @param {String} targetId The target drag drop object
60474          * @param {event} e The raw browser event
60475          */
60476         "dragdrop" : true,
60477         /**
60478          * @event dragover
60479          * Fires while row(s) are being dragged. "targetId" is the id of the Yahoo.util.DD object the selected rows are being dragged over.
60480          * @param {Grid} this
60481          * @param {Roo.GridDD} dd The drag drop object
60482          * @param {String} targetId The target drag drop object
60483          * @param {event} e The raw browser event
60484          */
60485         "dragover" : true,
60486         /**
60487          * @event dragenter
60488          *  Fires when the dragged row(s) first cross another DD target while being dragged
60489          * @param {Grid} this
60490          * @param {Roo.GridDD} dd The drag drop object
60491          * @param {String} targetId The target drag drop object
60492          * @param {event} e The raw browser event
60493          */
60494         "dragenter" : true,
60495         /**
60496          * @event dragout
60497          * Fires when the dragged row(s) leave another DD target while being dragged
60498          * @param {Grid} this
60499          * @param {Roo.GridDD} dd The drag drop object
60500          * @param {String} targetId The target drag drop object
60501          * @param {event} e The raw browser event
60502          */
60503         "dragout" : true,
60504         /**
60505          * @event rowclass
60506          * Fires when a row is rendered, so you can change add a style to it.
60507          * @param {GridView} gridview   The grid view
60508          * @param {Object} rowcfg   contains record  rowIndex and rowClass - set rowClass to add a style.
60509          */
60510         'rowclass' : true,
60511
60512         /**
60513          * @event render
60514          * Fires when the grid is rendered
60515          * @param {Grid} grid
60516          */
60517         'render' : true,
60518             /**
60519              * @event select
60520              * Fires when a date is selected
60521              * @param {DatePicker} this
60522              * @param {Date} date The selected date
60523              */
60524         'select': true,
60525         /**
60526              * @event monthchange
60527              * Fires when the displayed month changes 
60528              * @param {DatePicker} this
60529              * @param {Date} date The selected month
60530              */
60531         'monthchange': true,
60532         /**
60533              * @event evententer
60534              * Fires when mouse over an event
60535              * @param {Calendar} this
60536              * @param {event} Event
60537              */
60538         'evententer': true,
60539         /**
60540              * @event eventleave
60541              * Fires when the mouse leaves an
60542              * @param {Calendar} this
60543              * @param {event}
60544              */
60545         'eventleave': true,
60546         /**
60547              * @event eventclick
60548              * Fires when the mouse click an
60549              * @param {Calendar} this
60550              * @param {event}
60551              */
60552         'eventclick': true,
60553         /**
60554              * @event eventrender
60555              * Fires before each cell is rendered, so you can modify the contents, like cls / title / qtip
60556              * @param {Calendar} this
60557              * @param {data} data to be modified
60558              */
60559         'eventrender': true
60560         
60561     });
60562
60563     Roo.grid.Grid.superclass.constructor.call(this);
60564     this.on('render', function() {
60565         this.view.el.addClass('x-grid-cal'); 
60566         
60567         (function() { this.setDate(new Date()); }).defer(100,this); //default today..
60568
60569     },this);
60570     
60571     if (!Roo.grid.Calendar.style) {
60572         Roo.grid.Calendar.style = Roo.util.CSS.createStyleSheet({
60573             
60574             
60575             '.x-grid-cal .x-grid-col' :  {
60576                 height: 'auto !important',
60577                 'vertical-align': 'top'
60578             },
60579             '.x-grid-cal  .fc-event-hori' : {
60580                 height: '14px'
60581             }
60582              
60583             
60584         }, Roo.id());
60585     }
60586
60587     
60588     
60589 };
60590 Roo.extend(Roo.grid.Calendar, Roo.grid.Grid, {
60591     /**
60592      * @cfg {Store} eventStore The store that loads events.
60593      */
60594     eventStore : 25,
60595
60596      
60597     activeDate : false,
60598     startDay : 0,
60599     autoWidth : true,
60600     monitorWindowResize : false,
60601
60602     
60603     resizeColumns : function() {
60604         var col = (this.view.el.getWidth() / 7) - 3;
60605         // loop through cols, and setWidth
60606         for(var i =0 ; i < 7 ; i++){
60607             this.cm.setColumnWidth(i, col);
60608         }
60609     },
60610      setDate :function(date) {
60611         
60612         Roo.log('setDate?');
60613         
60614         this.resizeColumns();
60615         var vd = this.activeDate;
60616         this.activeDate = date;
60617 //        if(vd && this.el){
60618 //            var t = date.getTime();
60619 //            if(vd.getMonth() == date.getMonth() && vd.getFullYear() == date.getFullYear()){
60620 //                Roo.log('using add remove');
60621 //                
60622 //                this.fireEvent('monthchange', this, date);
60623 //                
60624 //                this.cells.removeClass("fc-state-highlight");
60625 //                this.cells.each(function(c){
60626 //                   if(c.dateValue == t){
60627 //                       c.addClass("fc-state-highlight");
60628 //                       setTimeout(function(){
60629 //                            try{c.dom.firstChild.focus();}catch(e){}
60630 //                       }, 50);
60631 //                       return false;
60632 //                   }
60633 //                   return true;
60634 //                });
60635 //                return;
60636 //            }
60637 //        }
60638         
60639         var days = date.getDaysInMonth();
60640         
60641         var firstOfMonth = date.getFirstDateOfMonth();
60642         var startingPos = firstOfMonth.getDay()-this.startDay;
60643         
60644         if(startingPos < this.startDay){
60645             startingPos += 7;
60646         }
60647         
60648         var pm = date.add(Date.MONTH, -1);
60649         var prevStart = pm.getDaysInMonth()-startingPos;
60650 //        
60651         
60652         
60653         this.cells = this.view.el.select('.x-grid-row .x-grid-col',true);
60654         
60655         this.textNodes = this.view.el.query('.x-grid-row .x-grid-col .x-grid-cell-text');
60656         //this.cells.addClassOnOver('fc-state-hover');
60657         
60658         var cells = this.cells.elements;
60659         var textEls = this.textNodes;
60660         
60661         //Roo.each(cells, function(cell){
60662         //    cell.removeClass([ 'fc-past', 'fc-other-month', 'fc-future', 'fc-state-highlight', 'fc-state-disabled']);
60663         //});
60664         
60665         days += startingPos;
60666
60667         // convert everything to numbers so it's fast
60668         var day = 86400000;
60669         var d = (new Date(pm.getFullYear(), pm.getMonth(), prevStart)).clearTime();
60670         //Roo.log(d);
60671         //Roo.log(pm);
60672         //Roo.log(prevStart);
60673         
60674         var today = new Date().clearTime().getTime();
60675         var sel = date.clearTime().getTime();
60676         var min = this.minDate ? this.minDate.clearTime() : Number.NEGATIVE_INFINITY;
60677         var max = this.maxDate ? this.maxDate.clearTime() : Number.POSITIVE_INFINITY;
60678         var ddMatch = this.disabledDatesRE;
60679         var ddText = this.disabledDatesText;
60680         var ddays = this.disabledDays ? this.disabledDays.join("") : false;
60681         var ddaysText = this.disabledDaysText;
60682         var format = this.format;
60683         
60684         var setCellClass = function(cal, cell){
60685             
60686             //Roo.log('set Cell Class');
60687             cell.title = "";
60688             var t = d.getTime();
60689             
60690             //Roo.log(d);
60691             
60692             
60693             cell.dateValue = t;
60694             if(t == today){
60695                 cell.className += " fc-today";
60696                 cell.className += " fc-state-highlight";
60697                 cell.title = cal.todayText;
60698             }
60699             if(t == sel){
60700                 // disable highlight in other month..
60701                 cell.className += " fc-state-highlight";
60702                 
60703             }
60704             // disabling
60705             if(t < min) {
60706                 //cell.className = " fc-state-disabled";
60707                 cell.title = cal.minText;
60708                 return;
60709             }
60710             if(t > max) {
60711                 //cell.className = " fc-state-disabled";
60712                 cell.title = cal.maxText;
60713                 return;
60714             }
60715             if(ddays){
60716                 if(ddays.indexOf(d.getDay()) != -1){
60717                     // cell.title = ddaysText;
60718                    // cell.className = " fc-state-disabled";
60719                 }
60720             }
60721             if(ddMatch && format){
60722                 var fvalue = d.dateFormat(format);
60723                 if(ddMatch.test(fvalue)){
60724                     cell.title = ddText.replace("%0", fvalue);
60725                    cell.className = " fc-state-disabled";
60726                 }
60727             }
60728             
60729             if (!cell.initialClassName) {
60730                 cell.initialClassName = cell.dom.className;
60731             }
60732             
60733             cell.dom.className = cell.initialClassName  + ' ' +  cell.className;
60734         };
60735
60736         var i = 0;
60737         
60738         for(; i < startingPos; i++) {
60739             cells[i].dayName =  (++prevStart);
60740             Roo.log(textEls[i]);
60741             d.setDate(d.getDate()+1);
60742             
60743             //cells[i].className = "fc-past fc-other-month";
60744             setCellClass(this, cells[i]);
60745         }
60746         
60747         var intDay = 0;
60748         
60749         for(; i < days; i++){
60750             intDay = i - startingPos + 1;
60751             cells[i].dayName =  (intDay);
60752             d.setDate(d.getDate()+1);
60753             
60754             cells[i].className = ''; // "x-date-active";
60755             setCellClass(this, cells[i]);
60756         }
60757         var extraDays = 0;
60758         
60759         for(; i < 42; i++) {
60760             //textEls[i].innerHTML = (++extraDays);
60761             
60762             d.setDate(d.getDate()+1);
60763             cells[i].dayName = (++extraDays);
60764             cells[i].className = "fc-future fc-other-month";
60765             setCellClass(this, cells[i]);
60766         }
60767         
60768         //this.el.select('.fc-header-title h2',true).update(Date.monthNames[date.getMonth()] + " " + date.getFullYear());
60769         
60770         var totalRows = Math.ceil((date.getDaysInMonth() + date.getFirstDateOfMonth().getDay()) / 7);
60771         
60772         // this will cause all the cells to mis
60773         var rows= [];
60774         var i =0;
60775         for (var r = 0;r < 6;r++) {
60776             for (var c =0;c < 7;c++) {
60777                 this.ds.getAt(r).set('weekday' + c ,cells[i++].dayName );
60778             }    
60779         }
60780         
60781         this.cells = this.view.el.select('.x-grid-row .x-grid-col',true);
60782         for(i=0;i<cells.length;i++) {
60783             
60784             this.cells.elements[i].dayName = cells[i].dayName ;
60785             this.cells.elements[i].className = cells[i].className;
60786             this.cells.elements[i].initialClassName = cells[i].initialClassName ;
60787             this.cells.elements[i].title = cells[i].title ;
60788             this.cells.elements[i].dateValue = cells[i].dateValue ;
60789         }
60790         
60791         
60792         
60793         
60794         //this.el.select('tr.fc-week.fc-prev-last',true).removeClass('fc-last');
60795         //this.el.select('tr.fc-week.fc-next-last',true).addClass('fc-last').show();
60796         
60797         ////if(totalRows != 6){
60798             //this.el.select('tr.fc-week.fc-last',true).removeClass('fc-last').addClass('fc-next-last').hide();
60799            // this.el.select('tr.fc-week.fc-prev-last',true).addClass('fc-last');
60800        // }
60801         
60802         this.fireEvent('monthchange', this, date);
60803         
60804         
60805     },
60806  /**
60807      * Returns the grid's SelectionModel.
60808      * @return {SelectionModel}
60809      */
60810     getSelectionModel : function(){
60811         if(!this.selModel){
60812             this.selModel = new Roo.grid.CellSelectionModel();
60813         }
60814         return this.selModel;
60815     },
60816
60817     load: function() {
60818         this.eventStore.load()
60819         
60820         
60821         
60822     },
60823     
60824     findCell : function(dt) {
60825         dt = dt.clearTime().getTime();
60826         var ret = false;
60827         this.cells.each(function(c){
60828             //Roo.log("check " +c.dateValue + '?=' + dt);
60829             if(c.dateValue == dt){
60830                 ret = c;
60831                 return false;
60832             }
60833             return true;
60834         });
60835         
60836         return ret;
60837     },
60838     
60839     findCells : function(rec) {
60840         var s = rec.data.start_dt.clone().clearTime().getTime();
60841        // Roo.log(s);
60842         var e= rec.data.end_dt.clone().clearTime().getTime();
60843        // Roo.log(e);
60844         var ret = [];
60845         this.cells.each(function(c){
60846              ////Roo.log("check " +c.dateValue + '<' + e + ' > ' + s);
60847             
60848             if(c.dateValue > e){
60849                 return ;
60850             }
60851             if(c.dateValue < s){
60852                 return ;
60853             }
60854             ret.push(c);
60855         });
60856         
60857         return ret;    
60858     },
60859     
60860     findBestRow: function(cells)
60861     {
60862         var ret = 0;
60863         
60864         for (var i =0 ; i < cells.length;i++) {
60865             ret  = Math.max(cells[i].rows || 0,ret);
60866         }
60867         return ret;
60868         
60869     },
60870     
60871     
60872     addItem : function(rec)
60873     {
60874         // look for vertical location slot in
60875         var cells = this.findCells(rec);
60876         
60877         rec.row = this.findBestRow(cells);
60878         
60879         // work out the location.
60880         
60881         var crow = false;
60882         var rows = [];
60883         for(var i =0; i < cells.length; i++) {
60884             if (!crow) {
60885                 crow = {
60886                     start : cells[i],
60887                     end :  cells[i]
60888                 };
60889                 continue;
60890             }
60891             if (crow.start.getY() == cells[i].getY()) {
60892                 // on same row.
60893                 crow.end = cells[i];
60894                 continue;
60895             }
60896             // different row.
60897             rows.push(crow);
60898             crow = {
60899                 start: cells[i],
60900                 end : cells[i]
60901             };
60902             
60903         }
60904         
60905         rows.push(crow);
60906         rec.els = [];
60907         rec.rows = rows;
60908         rec.cells = cells;
60909         for (var i = 0; i < cells.length;i++) {
60910             cells[i].rows = Math.max(cells[i].rows || 0 , rec.row + 1 );
60911             
60912         }
60913         
60914         
60915     },
60916     
60917     clearEvents: function() {
60918         
60919         if (!this.eventStore.getCount()) {
60920             return;
60921         }
60922         // reset number of rows in cells.
60923         Roo.each(this.cells.elements, function(c){
60924             c.rows = 0;
60925         });
60926         
60927         this.eventStore.each(function(e) {
60928             this.clearEvent(e);
60929         },this);
60930         
60931     },
60932     
60933     clearEvent : function(ev)
60934     {
60935         if (ev.els) {
60936             Roo.each(ev.els, function(el) {
60937                 el.un('mouseenter' ,this.onEventEnter, this);
60938                 el.un('mouseleave' ,this.onEventLeave, this);
60939                 el.remove();
60940             },this);
60941             ev.els = [];
60942         }
60943     },
60944     
60945     
60946     renderEvent : function(ev,ctr) {
60947         if (!ctr) {
60948              ctr = this.view.el.select('.fc-event-container',true).first();
60949         }
60950         
60951          
60952         this.clearEvent(ev);
60953             //code
60954        
60955         
60956         
60957         ev.els = [];
60958         var cells = ev.cells;
60959         var rows = ev.rows;
60960         this.fireEvent('eventrender', this, ev);
60961         
60962         for(var i =0; i < rows.length; i++) {
60963             
60964             cls = '';
60965             if (i == 0) {
60966                 cls += ' fc-event-start';
60967             }
60968             if ((i+1) == rows.length) {
60969                 cls += ' fc-event-end';
60970             }
60971             
60972             //Roo.log(ev.data);
60973             // how many rows should it span..
60974             var cg = this.eventTmpl.append(ctr,Roo.apply({
60975                 fccls : cls
60976                 
60977             }, ev.data) , true);
60978             
60979             
60980             cg.on('mouseenter' ,this.onEventEnter, this, ev);
60981             cg.on('mouseleave' ,this.onEventLeave, this, ev);
60982             cg.on('click', this.onEventClick, this, ev);
60983             
60984             ev.els.push(cg);
60985             
60986             var sbox = rows[i].start.select('.fc-day-content',true).first().getBox();
60987             var ebox = rows[i].end.select('.fc-day-content',true).first().getBox();
60988             //Roo.log(cg);
60989              
60990             cg.setXY([sbox.x +2, sbox.y +(ev.row * 20)]);    
60991             cg.setWidth(ebox.right - sbox.x -2);
60992         }
60993     },
60994     
60995     renderEvents: function()
60996     {   
60997         // first make sure there is enough space..
60998         
60999         if (!this.eventTmpl) {
61000             this.eventTmpl = new Roo.Template(
61001                 '<div class="roo-dynamic fc-event fc-event-hori fc-event-draggable ui-draggable {fccls} {cls}"  style="position: absolute" unselectable="on">' +
61002                     '<div class="fc-event-inner">' +
61003                         '<span class="fc-event-time">{time}</span>' +
61004                         '<span class="fc-event-title" qtip="{qtip}">{title}</span>' +
61005                     '</div>' +
61006                     '<div class="ui-resizable-heandle ui-resizable-e">&nbsp;&nbsp;&nbsp;</div>' +
61007                 '</div>'
61008             );
61009                 
61010         }
61011                
61012         
61013         
61014         this.cells.each(function(c) {
61015             //Roo.log(c.select('.fc-day-content div',true).first());
61016             c.select('.fc-day-content div',true).first().setHeight(Math.max(34, (c.rows || 1) * 20));
61017         });
61018         
61019         var ctr = this.view.el.select('.fc-event-container',true).first();
61020         
61021         var cls;
61022         this.eventStore.each(function(ev){
61023             
61024             this.renderEvent(ev);
61025              
61026              
61027         }, this);
61028         this.view.layout();
61029         
61030     },
61031     
61032     onEventEnter: function (e, el,event,d) {
61033         this.fireEvent('evententer', this, el, event);
61034     },
61035     
61036     onEventLeave: function (e, el,event,d) {
61037         this.fireEvent('eventleave', this, el, event);
61038     },
61039     
61040     onEventClick: function (e, el,event,d) {
61041         this.fireEvent('eventclick', this, el, event);
61042     },
61043     
61044     onMonthChange: function () {
61045         this.store.load();
61046     },
61047     
61048     onLoad: function () {
61049         
61050         //Roo.log('calendar onload');
61051 //         
61052         if(this.eventStore.getCount() > 0){
61053             
61054            
61055             
61056             this.eventStore.each(function(d){
61057                 
61058                 
61059                 // FIXME..
61060                 var add =   d.data;
61061                 if (typeof(add.end_dt) == 'undefined')  {
61062                     Roo.log("Missing End time in calendar data: ");
61063                     Roo.log(d);
61064                     return;
61065                 }
61066                 if (typeof(add.start_dt) == 'undefined')  {
61067                     Roo.log("Missing Start time in calendar data: ");
61068                     Roo.log(d);
61069                     return;
61070                 }
61071                 add.start_dt = typeof(add.start_dt) == 'string' ? Date.parseDate(add.start_dt,'Y-m-d H:i:s') : add.start_dt,
61072                 add.end_dt = typeof(add.end_dt) == 'string' ? Date.parseDate(add.end_dt,'Y-m-d H:i:s') : add.end_dt,
61073                 add.id = add.id || d.id;
61074                 add.title = add.title || '??';
61075                 
61076                 this.addItem(d);
61077                 
61078              
61079             },this);
61080         }
61081         
61082         this.renderEvents();
61083     }
61084     
61085
61086 });
61087 /*
61088  grid : {
61089                 xtype: 'Grid',
61090                 xns: Roo.grid,
61091                 listeners : {
61092                     render : function ()
61093                     {
61094                         _this.grid = this;
61095                         
61096                         if (!this.view.el.hasClass('course-timesheet')) {
61097                             this.view.el.addClass('course-timesheet');
61098                         }
61099                         if (this.tsStyle) {
61100                             this.ds.load({});
61101                             return; 
61102                         }
61103                         Roo.log('width');
61104                         Roo.log(_this.grid.view.el.getWidth());
61105                         
61106                         
61107                         this.tsStyle =  Roo.util.CSS.createStyleSheet({
61108                             '.course-timesheet .x-grid-row' : {
61109                                 height: '80px'
61110                             },
61111                             '.x-grid-row td' : {
61112                                 'vertical-align' : 0
61113                             },
61114                             '.course-edit-link' : {
61115                                 'color' : 'blue',
61116                                 'text-overflow' : 'ellipsis',
61117                                 'overflow' : 'hidden',
61118                                 'white-space' : 'nowrap',
61119                                 'cursor' : 'pointer'
61120                             },
61121                             '.sub-link' : {
61122                                 'color' : 'green'
61123                             },
61124                             '.de-act-sup-link' : {
61125                                 'color' : 'purple',
61126                                 'text-decoration' : 'line-through'
61127                             },
61128                             '.de-act-link' : {
61129                                 'color' : 'red',
61130                                 'text-decoration' : 'line-through'
61131                             },
61132                             '.course-timesheet .course-highlight' : {
61133                                 'border-top-style': 'dashed !important',
61134                                 'border-bottom-bottom': 'dashed !important'
61135                             },
61136                             '.course-timesheet .course-item' : {
61137                                 'font-family'   : 'tahoma, arial, helvetica',
61138                                 'font-size'     : '11px',
61139                                 'overflow'      : 'hidden',
61140                                 'padding-left'  : '10px',
61141                                 'padding-right' : '10px',
61142                                 'padding-top' : '10px' 
61143                             }
61144                             
61145                         }, Roo.id());
61146                                 this.ds.load({});
61147                     }
61148                 },
61149                 autoWidth : true,
61150                 monitorWindowResize : false,
61151                 cellrenderer : function(v,x,r)
61152                 {
61153                     return v;
61154                 },
61155                 sm : {
61156                     xtype: 'CellSelectionModel',
61157                     xns: Roo.grid
61158                 },
61159                 dataSource : {
61160                     xtype: 'Store',
61161                     xns: Roo.data,
61162                     listeners : {
61163                         beforeload : function (_self, options)
61164                         {
61165                             options.params = options.params || {};
61166                             options.params._month = _this.monthField.getValue();
61167                             options.params.limit = 9999;
61168                             options.params['sort'] = 'when_dt';    
61169                             options.params['dir'] = 'ASC';    
61170                             this.proxy.loadResponse = this.loadResponse;
61171                             Roo.log("load?");
61172                             //this.addColumns();
61173                         },
61174                         load : function (_self, records, options)
61175                         {
61176                             _this.grid.view.el.select('.course-edit-link', true).on('click', function() {
61177                                 // if you click on the translation.. you can edit it...
61178                                 var el = Roo.get(this);
61179                                 var id = el.dom.getAttribute('data-id');
61180                                 var d = el.dom.getAttribute('data-date');
61181                                 var t = el.dom.getAttribute('data-time');
61182                                 //var id = this.child('span').dom.textContent;
61183                                 
61184                                 //Roo.log(this);
61185                                 Pman.Dialog.CourseCalendar.show({
61186                                     id : id,
61187                                     when_d : d,
61188                                     when_t : t,
61189                                     productitem_active : id ? 1 : 0
61190                                 }, function() {
61191                                     _this.grid.ds.load({});
61192                                 });
61193                            
61194                            });
61195                            
61196                            _this.panel.fireEvent('resize', [ '', '' ]);
61197                         }
61198                     },
61199                     loadResponse : function(o, success, response){
61200                             // this is overridden on before load..
61201                             
61202                             Roo.log("our code?");       
61203                             //Roo.log(success);
61204                             //Roo.log(response)
61205                             delete this.activeRequest;
61206                             if(!success){
61207                                 this.fireEvent("loadexception", this, o, response);
61208                                 o.request.callback.call(o.request.scope, null, o.request.arg, false);
61209                                 return;
61210                             }
61211                             var result;
61212                             try {
61213                                 result = o.reader.read(response);
61214                             }catch(e){
61215                                 Roo.log("load exception?");
61216                                 this.fireEvent("loadexception", this, o, response, e);
61217                                 o.request.callback.call(o.request.scope, null, o.request.arg, false);
61218                                 return;
61219                             }
61220                             Roo.log("ready...");        
61221                             // loop through result.records;
61222                             // and set this.tdate[date] = [] << array of records..
61223                             _this.tdata  = {};
61224                             Roo.each(result.records, function(r){
61225                                 //Roo.log(r.data);
61226                                 if(typeof(_this.tdata[r.data.when_dt.format('j')]) == 'undefined'){
61227                                     _this.tdata[r.data.when_dt.format('j')] = [];
61228                                 }
61229                                 _this.tdata[r.data.when_dt.format('j')].push(r.data);
61230                             });
61231                             
61232                             //Roo.log(_this.tdata);
61233                             
61234                             result.records = [];
61235                             result.totalRecords = 6;
61236                     
61237                             // let's generate some duumy records for the rows.
61238                             //var st = _this.dateField.getValue();
61239                             
61240                             // work out monday..
61241                             //st = st.add(Date.DAY, -1 * st.format('w'));
61242                             
61243                             var date = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
61244                             
61245                             var firstOfMonth = date.getFirstDayOfMonth();
61246                             var days = date.getDaysInMonth();
61247                             var d = 1;
61248                             var firstAdded = false;
61249                             for (var i = 0; i < result.totalRecords ; i++) {
61250                                 //var d= st.add(Date.DAY, i);
61251                                 var row = {};
61252                                 var added = 0;
61253                                 for(var w = 0 ; w < 7 ; w++){
61254                                     if(!firstAdded && firstOfMonth != w){
61255                                         continue;
61256                                     }
61257                                     if(d > days){
61258                                         continue;
61259                                     }
61260                                     firstAdded = true;
61261                                     var dd = (d > 0 && d < 10) ? "0"+d : d;
61262                                     row['weekday'+w] = String.format(
61263                                                     '<span style="font-size: 16px;"><b>{0}</b></span>'+
61264                                                     '<span class="course-edit-link" style="color:blue;" data-id="0" data-date="{1}"> Add New</span>',
61265                                                     d,
61266                                                     date.format('Y-m-')+dd
61267                                                 );
61268                                     added++;
61269                                     if(typeof(_this.tdata[d]) != 'undefined'){
61270                                         Roo.each(_this.tdata[d], function(r){
61271                                             var is_sub = '';
61272                                             var deactive = '';
61273                                             var id = r.id;
61274                                             var desc = (r.productitem_id_descrip) ? r.productitem_id_descrip : '';
61275                                             if(r.parent_id*1>0){
61276                                                 is_sub = (r.productitem_id_visible*1 < 1) ? 'de-act-sup-link' :'sub-link';
61277                                                 id = r.parent_id;
61278                                             }
61279                                             if(r.productitem_id_visible*1 < 1 && r.parent_id*1 < 1){
61280                                                 deactive = 'de-act-link';
61281                                             }
61282                                             
61283                                             row['weekday'+w] += String.format(
61284                                                     '<br /><span class="course-edit-link {3} {4}" qtip="{5}" data-id="{0}">{2} - {1}</span>',
61285                                                     id, //0
61286                                                     r.product_id_name, //1
61287                                                     r.when_dt.format('h:ia'), //2
61288                                                     is_sub, //3
61289                                                     deactive, //4
61290                                                     desc // 5
61291                                             );
61292                                         });
61293                                     }
61294                                     d++;
61295                                 }
61296                                 
61297                                 // only do this if something added..
61298                                 if(added > 0){ 
61299                                     result.records.push(_this.grid.dataSource.reader.newRow(row));
61300                                 }
61301                                 
61302                                 
61303                                 // push it twice. (second one with an hour..
61304                                 
61305                             }
61306                             //Roo.log(result);
61307                             this.fireEvent("load", this, o, o.request.arg);
61308                             o.request.callback.call(o.request.scope, result, o.request.arg, true);
61309                         },
61310                     sortInfo : {field: 'when_dt', direction : 'ASC' },
61311                     proxy : {
61312                         xtype: 'HttpProxy',
61313                         xns: Roo.data,
61314                         method : 'GET',
61315                         url : baseURL + '/Roo/Shop_course.php'
61316                     },
61317                     reader : {
61318                         xtype: 'JsonReader',
61319                         xns: Roo.data,
61320                         id : 'id',
61321                         fields : [
61322                             {
61323                                 'name': 'id',
61324                                 'type': 'int'
61325                             },
61326                             {
61327                                 'name': 'when_dt',
61328                                 'type': 'string'
61329                             },
61330                             {
61331                                 'name': 'end_dt',
61332                                 'type': 'string'
61333                             },
61334                             {
61335                                 'name': 'parent_id',
61336                                 'type': 'int'
61337                             },
61338                             {
61339                                 'name': 'product_id',
61340                                 'type': 'int'
61341                             },
61342                             {
61343                                 'name': 'productitem_id',
61344                                 'type': 'int'
61345                             },
61346                             {
61347                                 'name': 'guid',
61348                                 'type': 'int'
61349                             }
61350                         ]
61351                     }
61352                 },
61353                 toolbar : {
61354                     xtype: 'Toolbar',
61355                     xns: Roo,
61356                     items : [
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 : "Back"
61370                         },
61371                         {
61372                             xtype: 'Separator',
61373                             xns: Roo.Toolbar
61374                         },
61375                         {
61376                             xtype: 'MonthField',
61377                             xns: Roo.form,
61378                             listeners : {
61379                                 render : function (_self)
61380                                 {
61381                                     _this.monthField = _self;
61382                                    // _this.monthField.set  today
61383                                 },
61384                                 select : function (combo, date)
61385                                 {
61386                                     _this.grid.ds.load({});
61387                                 }
61388                             },
61389                             value : (function() { return new Date(); })()
61390                         },
61391                         {
61392                             xtype: 'Separator',
61393                             xns: Roo.Toolbar
61394                         },
61395                         {
61396                             xtype: 'TextItem',
61397                             xns: Roo.Toolbar,
61398                             text : "Blue: in-active, green: in-active sup-event, red: de-active, purple: de-active sup-event"
61399                         },
61400                         {
61401                             xtype: 'Fill',
61402                             xns: Roo.Toolbar
61403                         },
61404                         {
61405                             xtype: 'Button',
61406                             xns: Roo.Toolbar,
61407                             listeners : {
61408                                 click : function (_self, e)
61409                                 {
61410                                     var sd = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
61411                                     sd.setMonth(sd.getMonth()+1);
61412                                     _this.monthField.setValue(sd.format('Y-m-d'));
61413                                     _this.grid.ds.load({});
61414                                 }
61415                             },
61416                             text : "Next"
61417                         }
61418                     ]
61419                 },
61420                  
61421             }
61422         };
61423         
61424         *//*
61425  * Based on:
61426  * Ext JS Library 1.1.1
61427  * Copyright(c) 2006-2007, Ext JS, LLC.
61428  *
61429  * Originally Released Under LGPL - original licence link has changed is not relivant.
61430  *
61431  * Fork - LGPL
61432  * <script type="text/javascript">
61433  */
61434  
61435 /**
61436  * @class Roo.LoadMask
61437  * A simple utility class for generically masking elements while loading data.  If the element being masked has
61438  * an underlying {@link Roo.data.Store}, the masking will be automatically synchronized with the store's loading
61439  * process and the mask element will be cached for reuse.  For all other elements, this mask will replace the
61440  * element's UpdateManager load indicator and will be destroyed after the initial load.
61441  * @constructor
61442  * Create a new LoadMask
61443  * @param {String/HTMLElement/Roo.Element} el The element or DOM node, or its id
61444  * @param {Object} config The config object
61445  */
61446 Roo.LoadMask = function(el, config){
61447     this.el = Roo.get(el);
61448     Roo.apply(this, config);
61449     if(this.store){
61450         this.store.on('beforeload', this.onBeforeLoad, this);
61451         this.store.on('load', this.onLoad, this);
61452         this.store.on('loadexception', this.onLoadException, this);
61453         this.removeMask = false;
61454     }else{
61455         var um = this.el.getUpdateManager();
61456         um.showLoadIndicator = false; // disable the default indicator
61457         um.on('beforeupdate', this.onBeforeLoad, this);
61458         um.on('update', this.onLoad, this);
61459         um.on('failure', this.onLoad, this);
61460         this.removeMask = true;
61461     }
61462 };
61463
61464 Roo.LoadMask.prototype = {
61465     /**
61466      * @cfg {Boolean} removeMask
61467      * True to create a single-use mask that is automatically destroyed after loading (useful for page loads),
61468      * False to persist the mask element reference for multiple uses (e.g., for paged data widgets).  Defaults to false.
61469      */
61470     /**
61471      * @cfg {String} msg
61472      * The text to display in a centered loading message box (defaults to 'Loading...')
61473      */
61474     msg : 'Loading...',
61475     /**
61476      * @cfg {String} msgCls
61477      * The CSS class to apply to the loading message element (defaults to "x-mask-loading")
61478      */
61479     msgCls : 'x-mask-loading',
61480
61481     /**
61482      * Read-only. True if the mask is currently disabled so that it will not be displayed (defaults to false)
61483      * @type Boolean
61484      */
61485     disabled: false,
61486
61487     /**
61488      * Disables the mask to prevent it from being displayed
61489      */
61490     disable : function(){
61491        this.disabled = true;
61492     },
61493
61494     /**
61495      * Enables the mask so that it can be displayed
61496      */
61497     enable : function(){
61498         this.disabled = false;
61499     },
61500     
61501     onLoadException : function()
61502     {
61503         Roo.log(arguments);
61504         
61505         if (typeof(arguments[3]) != 'undefined') {
61506             Roo.MessageBox.alert("Error loading",arguments[3]);
61507         } 
61508         /*
61509         try {
61510             if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
61511                 Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
61512             }   
61513         } catch(e) {
61514             
61515         }
61516         */
61517     
61518         (function() { this.el.unmask(this.removeMask); }).defer(50, this);
61519     },
61520     // private
61521     onLoad : function()
61522     {
61523         (function() { this.el.unmask(this.removeMask); }).defer(50, this);
61524     },
61525
61526     // private
61527     onBeforeLoad : function(){
61528         if(!this.disabled){
61529             (function() { this.el.mask(this.msg, this.msgCls); }).defer(50, this);
61530         }
61531     },
61532
61533     // private
61534     destroy : function(){
61535         if(this.store){
61536             this.store.un('beforeload', this.onBeforeLoad, this);
61537             this.store.un('load', this.onLoad, this);
61538             this.store.un('loadexception', this.onLoadException, this);
61539         }else{
61540             var um = this.el.getUpdateManager();
61541             um.un('beforeupdate', this.onBeforeLoad, this);
61542             um.un('update', this.onLoad, this);
61543             um.un('failure', this.onLoad, this);
61544         }
61545     }
61546 };/*
61547  * Based on:
61548  * Ext JS Library 1.1.1
61549  * Copyright(c) 2006-2007, Ext JS, LLC.
61550  *
61551  * Originally Released Under LGPL - original licence link has changed is not relivant.
61552  *
61553  * Fork - LGPL
61554  * <script type="text/javascript">
61555  */
61556
61557
61558 /**
61559  * @class Roo.XTemplate
61560  * @extends Roo.Template
61561  * Provides a template that can have nested templates for loops or conditionals. The syntax is:
61562 <pre><code>
61563 var t = new Roo.XTemplate(
61564         '&lt;select name="{name}"&gt;',
61565                 '&lt;tpl for="options"&gt;&lt;option value="{value:trim}"&gt;{text:ellipsis(10)}&lt;/option&gt;&lt;/tpl&gt;',
61566         '&lt;/select&gt;'
61567 );
61568  
61569 // then append, applying the master template values
61570  </code></pre>
61571  *
61572  * Supported features:
61573  *
61574  *  Tags:
61575
61576 <pre><code>
61577       {a_variable} - output encoded.
61578       {a_variable.format:("Y-m-d")} - call a method on the variable
61579       {a_variable:raw} - unencoded output
61580       {a_variable:toFixed(1,2)} - Roo.util.Format."toFixed"
61581       {a_variable:this.method_on_template(...)} - call a method on the template object.
61582  
61583 </code></pre>
61584  *  The tpl tag:
61585 <pre><code>
61586         &lt;tpl for="a_variable or condition.."&gt;&lt;/tpl&gt;
61587         &lt;tpl if="a_variable or condition"&gt;&lt;/tpl&gt;
61588         &lt;tpl exec="some javascript"&gt;&lt;/tpl&gt;
61589         &lt;tpl name="named_template"&gt;&lt;/tpl&gt; (experimental)
61590   
61591         &lt;tpl for="."&gt;&lt;/tpl&gt; - just iterate the property..
61592         &lt;tpl for=".."&gt;&lt;/tpl&gt; - iterates with the parent (probably the template) 
61593 </code></pre>
61594  *      
61595  */
61596 Roo.XTemplate = function()
61597 {
61598     Roo.XTemplate.superclass.constructor.apply(this, arguments);
61599     if (this.html) {
61600         this.compile();
61601     }
61602 };
61603
61604
61605 Roo.extend(Roo.XTemplate, Roo.Template, {
61606
61607     /**
61608      * The various sub templates
61609      */
61610     tpls : false,
61611     /**
61612      *
61613      * basic tag replacing syntax
61614      * WORD:WORD()
61615      *
61616      * // you can fake an object call by doing this
61617      *  x.t:(test,tesT) 
61618      * 
61619      */
61620     re : /\{([\w-\.]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
61621
61622     /**
61623      * compile the template
61624      *
61625      * This is not recursive, so I'm not sure how nested templates are really going to be handled..
61626      *
61627      */
61628     compile: function()
61629     {
61630         var s = this.html;
61631      
61632         s = ['<tpl>', s, '</tpl>'].join('');
61633     
61634         var re     = /<tpl\b[^>]*>((?:(?=([^<]+))\2|<(?!tpl\b[^>]*>))*?)<\/tpl>/,
61635             nameRe = /^<tpl\b[^>]*?for="(.*?)"/,
61636             ifRe   = /^<tpl\b[^>]*?if="(.*?)"/,
61637             execRe = /^<tpl\b[^>]*?exec="(.*?)"/,
61638             namedRe = /^<tpl\b[^>]*?name="(\w+)"/,  // named templates..
61639             m,
61640             id     = 0,
61641             tpls   = [];
61642     
61643         while(true == !!(m = s.match(re))){
61644             var forMatch   = m[0].match(nameRe),
61645                 ifMatch   = m[0].match(ifRe),
61646                 execMatch   = m[0].match(execRe),
61647                 namedMatch   = m[0].match(namedRe),
61648                 
61649                 exp  = null, 
61650                 fn   = null,
61651                 exec = null,
61652                 name = forMatch && forMatch[1] ? forMatch[1] : '';
61653                 
61654             if (ifMatch) {
61655                 // if - puts fn into test..
61656                 exp = ifMatch && ifMatch[1] ? ifMatch[1] : null;
61657                 if(exp){
61658                    fn = new Function('values', 'parent', 'with(values){ return '+(Roo.util.Format.htmlDecode(exp))+'; }');
61659                 }
61660             }
61661             
61662             if (execMatch) {
61663                 // exec - calls a function... returns empty if true is  returned.
61664                 exp = execMatch && execMatch[1] ? execMatch[1] : null;
61665                 if(exp){
61666                    exec = new Function('values', 'parent', 'with(values){ '+(Roo.util.Format.htmlDecode(exp))+'; }');
61667                 }
61668             }
61669             
61670             
61671             if (name) {
61672                 // for = 
61673                 switch(name){
61674                     case '.':  name = new Function('values', 'parent', 'with(values){ return values; }'); break;
61675                     case '..': name = new Function('values', 'parent', 'with(values){ return parent; }'); break;
61676                     default:   name = new Function('values', 'parent', 'with(values){ return '+name+'; }');
61677                 }
61678             }
61679             var uid = namedMatch ? namedMatch[1] : id;
61680             
61681             
61682             tpls.push({
61683                 id:     namedMatch ? namedMatch[1] : id,
61684                 target: name,
61685                 exec:   exec,
61686                 test:   fn,
61687                 body:   m[1] || ''
61688             });
61689             if (namedMatch) {
61690                 s = s.replace(m[0], '');
61691             } else { 
61692                 s = s.replace(m[0], '{xtpl'+ id + '}');
61693             }
61694             ++id;
61695         }
61696         this.tpls = [];
61697         for(var i = tpls.length-1; i >= 0; --i){
61698             this.compileTpl(tpls[i]);
61699             this.tpls[tpls[i].id] = tpls[i];
61700         }
61701         this.master = tpls[tpls.length-1];
61702         return this;
61703     },
61704     /**
61705      * same as applyTemplate, except it's done to one of the subTemplates
61706      * when using named templates, you can do:
61707      *
61708      * var str = pl.applySubTemplate('your-name', values);
61709      *
61710      * 
61711      * @param {Number} id of the template
61712      * @param {Object} values to apply to template
61713      * @param {Object} parent (normaly the instance of this object)
61714      */
61715     applySubTemplate : function(id, values, parent)
61716     {
61717         
61718         
61719         var t = this.tpls[id];
61720         
61721         
61722         try { 
61723             if(t.test && !t.test.call(this, values, parent)){
61724                 return '';
61725             }
61726         } catch(e) {
61727             Roo.log("Xtemplate.applySubTemplate 'test': Exception thrown");
61728             Roo.log(e.toString());
61729             Roo.log(t.test);
61730             return ''
61731         }
61732         try { 
61733             
61734             if(t.exec && t.exec.call(this, values, parent)){
61735                 return '';
61736             }
61737         } catch(e) {
61738             Roo.log("Xtemplate.applySubTemplate 'exec': Exception thrown");
61739             Roo.log(e.toString());
61740             Roo.log(t.exec);
61741             return ''
61742         }
61743         try {
61744             var vs = t.target ? t.target.call(this, values, parent) : values;
61745             parent = t.target ? values : parent;
61746             if(t.target && vs instanceof Array){
61747                 var buf = [];
61748                 for(var i = 0, len = vs.length; i < len; i++){
61749                     buf[buf.length] = t.compiled.call(this, vs[i], parent);
61750                 }
61751                 return buf.join('');
61752             }
61753             return t.compiled.call(this, vs, parent);
61754         } catch (e) {
61755             Roo.log("Xtemplate.applySubTemplate : Exception thrown");
61756             Roo.log(e.toString());
61757             Roo.log(t.compiled);
61758             return '';
61759         }
61760     },
61761
61762     compileTpl : function(tpl)
61763     {
61764         var fm = Roo.util.Format;
61765         var useF = this.disableFormats !== true;
61766         var sep = Roo.isGecko ? "+" : ",";
61767         var undef = function(str) {
61768             Roo.log("Property not found :"  + str);
61769             return '';
61770         };
61771         
61772         var fn = function(m, name, format, args)
61773         {
61774             //Roo.log(arguments);
61775             args = args ? args.replace(/\\'/g,"'") : args;
61776             //["{TEST:(a,b,c)}", "TEST", "", "a,b,c", 0, "{TEST:(a,b,c)}"]
61777             if (typeof(format) == 'undefined') {
61778                 format= 'htmlEncode';
61779             }
61780             if (format == 'raw' ) {
61781                 format = false;
61782             }
61783             
61784             if(name.substr(0, 4) == 'xtpl'){
61785                 return "'"+ sep +'this.applySubTemplate('+name.substr(4)+', values, parent)'+sep+"'";
61786             }
61787             
61788             // build an array of options to determine if value is undefined..
61789             
61790             // basically get 'xxxx.yyyy' then do
61791             // (typeof(xxxx) == 'undefined' || typeof(xxx.yyyy) == 'undefined') ?
61792             //    (function () { Roo.log("Property not found"); return ''; })() :
61793             //    ......
61794             
61795             var udef_ar = [];
61796             var lookfor = '';
61797             Roo.each(name.split('.'), function(st) {
61798                 lookfor += (lookfor.length ? '.': '') + st;
61799                 udef_ar.push(  "(typeof(" + lookfor + ") == 'undefined')"  );
61800             });
61801             
61802             var udef_st = '((' + udef_ar.join(" || ") +") ? undef('" + name + "') : "; // .. needs )
61803             
61804             
61805             if(format && useF){
61806                 
61807                 args = args ? ',' + args : "";
61808                  
61809                 if(format.substr(0, 5) != "this."){
61810                     format = "fm." + format + '(';
61811                 }else{
61812                     format = 'this.call("'+ format.substr(5) + '", ';
61813                     args = ", values";
61814                 }
61815                 
61816                 return "'"+ sep +   udef_st   +    format + name + args + "))"+sep+"'";
61817             }
61818              
61819             if (args.length) {
61820                 // called with xxyx.yuu:(test,test)
61821                 // change to ()
61822                 return "'"+ sep + udef_st  + name + '(' +  args + "))"+sep+"'";
61823             }
61824             // raw.. - :raw modifier..
61825             return "'"+ sep + udef_st  + name + ")"+sep+"'";
61826             
61827         };
61828         var body;
61829         // branched to use + in gecko and [].join() in others
61830         if(Roo.isGecko){
61831             body = "tpl.compiled = function(values, parent){  with(values) { return '" +
61832                    tpl.body.replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
61833                     "';};};";
61834         }else{
61835             body = ["tpl.compiled = function(values, parent){  with (values) { return ['"];
61836             body.push(tpl.body.replace(/(\r\n|\n)/g,
61837                             '\\n').replace(/'/g, "\\'").replace(this.re, fn));
61838             body.push("'].join('');};};");
61839             body = body.join('');
61840         }
61841         
61842         Roo.debug && Roo.log(body.replace(/\\n/,'\n'));
61843        
61844         /** eval:var:tpl eval:var:fm eval:var:useF eval:var:undef  */
61845         eval(body);
61846         
61847         return this;
61848     },
61849
61850     applyTemplate : function(values){
61851         return this.master.compiled.call(this, values, {});
61852         //var s = this.subs;
61853     },
61854
61855     apply : function(){
61856         return this.applyTemplate.apply(this, arguments);
61857     }
61858
61859  });
61860
61861 Roo.XTemplate.from = function(el){
61862     el = Roo.getDom(el);
61863     return new Roo.XTemplate(el.value || el.innerHTML);
61864 };