commit
[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             console.log(s);
346             
347         },
348         /**
349          * Takes an object and converts it to an encoded URL. e.g. Roo.urlEncode({foo: 1, bar: 2}); would return "foo=1&bar=2".  Optionally, property values can be arrays, instead of keys and the resulting string that's returned will contain a name/value pair for each array value.
350          * @param {Object} o
351          * @return {String}
352          */
353         urlEncode : function(o){
354             if(!o){
355                 return "";
356             }
357             var buf = [];
358             for(var key in o){
359                 var ov = o[key], k = Roo.encodeURIComponent(key);
360                 var type = typeof ov;
361                 if(type == 'undefined'){
362                     buf.push(k, "=&");
363                 }else if(type != "function" && type != "object"){
364                     buf.push(k, "=", Roo.encodeURIComponent(ov), "&");
365                 }else if(ov instanceof Array){
366                     if (ov.length) {
367                             for(var i = 0, len = ov.length; i < len; i++) {
368                                 buf.push(k, "=", Roo.encodeURIComponent(ov[i] === undefined ? '' : ov[i]), "&");
369                             }
370                         } else {
371                             buf.push(k, "=&");
372                         }
373                 }
374             }
375             buf.pop();
376             return buf.join("");
377         },
378          /**
379          * Safe version of encodeURIComponent
380          * @param {String} data 
381          * @return {String} 
382          */
383         
384         encodeURIComponent : function (data)
385         {
386             try {
387                 return encodeURIComponent(data);
388             } catch(e) {} // should be an uri encode error.
389             
390             if (data == '' || data == null){
391                return '';
392             }
393             // http://stackoverflow.com/questions/2596483/unicode-and-uri-encoding-decoding-and-escaping-in-javascript
394             function nibble_to_hex(nibble){
395                 var chars = '0123456789ABCDEF';
396                 return chars.charAt(nibble);
397             }
398             data = data.toString();
399             var buffer = '';
400             for(var i=0; i<data.length; i++){
401                 var c = data.charCodeAt(i);
402                 var bs = new Array();
403                 if (c > 0x10000){
404                         // 4 bytes
405                     bs[0] = 0xF0 | ((c & 0x1C0000) >>> 18);
406                     bs[1] = 0x80 | ((c & 0x3F000) >>> 12);
407                     bs[2] = 0x80 | ((c & 0xFC0) >>> 6);
408                     bs[3] = 0x80 | (c & 0x3F);
409                 }else if (c > 0x800){
410                          // 3 bytes
411                     bs[0] = 0xE0 | ((c & 0xF000) >>> 12);
412                     bs[1] = 0x80 | ((c & 0xFC0) >>> 6);
413                     bs[2] = 0x80 | (c & 0x3F);
414                 }else if (c > 0x80){
415                        // 2 bytes
416                     bs[0] = 0xC0 | ((c & 0x7C0) >>> 6);
417                     bs[1] = 0x80 | (c & 0x3F);
418                 }else{
419                         // 1 byte
420                     bs[0] = c;
421                 }
422                 for(var j=0; j<bs.length; j++){
423                     var b = bs[j];
424                     var hex = nibble_to_hex((b & 0xF0) >>> 4) 
425                             + nibble_to_hex(b &0x0F);
426                     buffer += '%'+hex;
427                }
428             }
429             return buffer;    
430              
431         },
432
433         /**
434          * Takes an encoded URL and and converts it to an object. e.g. Roo.urlDecode("foo=1&bar=2"); would return {foo: 1, bar: 2} or Roo.urlDecode("foo=1&bar=2&bar=3&bar=4", true); would return {foo: 1, bar: [2, 3, 4]}.
435          * @param {String} string
436          * @param {Boolean} overwrite (optional) Items of the same name will overwrite previous values instead of creating an an array (Defaults to false).
437          * @return {Object} A literal with members
438          */
439         urlDecode : function(string, overwrite){
440             if(!string || !string.length){
441                 return {};
442             }
443             var obj = {};
444             var pairs = string.split('&');
445             var pair, name, value;
446             for(var i = 0, len = pairs.length; i < len; i++){
447                 pair = pairs[i].split('=');
448                 name = decodeURIComponent(pair[0]);
449                 value = decodeURIComponent(pair[1]);
450                 if(overwrite !== true){
451                     if(typeof obj[name] == "undefined"){
452                         obj[name] = value;
453                     }else if(typeof obj[name] == "string"){
454                         obj[name] = [obj[name]];
455                         obj[name].push(value);
456                     }else{
457                         obj[name].push(value);
458                     }
459                 }else{
460                     obj[name] = value;
461                 }
462             }
463             return obj;
464         },
465
466         /**
467          * Iterates an array calling the passed function with each item, stopping if your function returns false. If the
468          * passed array is not really an array, your function is called once with it.
469          * The supplied function is called with (Object item, Number index, Array allItems).
470          * @param {Array/NodeList/Mixed} array
471          * @param {Function} fn
472          * @param {Object} scope
473          */
474         each : function(array, fn, scope){
475             if(typeof array.length == "undefined" || typeof array == "string"){
476                 array = [array];
477             }
478             for(var i = 0, len = array.length; i < len; i++){
479                 if(fn.call(scope || array[i], array[i], i, array) === false){ return i; };
480             }
481         },
482
483         // deprecated
484         combine : function(){
485             var as = arguments, l = as.length, r = [];
486             for(var i = 0; i < l; i++){
487                 var a = as[i];
488                 if(a instanceof Array){
489                     r = r.concat(a);
490                 }else if(a.length !== undefined && !a.substr){
491                     r = r.concat(Array.prototype.slice.call(a, 0));
492                 }else{
493                     r.push(a);
494                 }
495             }
496             return r;
497         },
498
499         /**
500          * Escapes the passed string for use in a regular expression
501          * @param {String} str
502          * @return {String}
503          */
504         escapeRe : function(s) {
505             return s.replace(/([.*+?^${}()|[\]\/\\])/g, "\\$1");
506         },
507
508         // internal
509         callback : function(cb, scope, args, delay){
510             if(typeof cb == "function"){
511                 if(delay){
512                     cb.defer(delay, scope, args || []);
513                 }else{
514                     cb.apply(scope, args || []);
515                 }
516             }
517         },
518
519         /**
520          * Return the dom node for the passed string (id), dom node, or Roo.Element
521          * @param {String/HTMLElement/Roo.Element} el
522          * @return HTMLElement
523          */
524         getDom : function(el){
525             if(!el){
526                 return null;
527             }
528             return el.dom ? el.dom : (typeof el == 'string' ? document.getElementById(el) : el);
529         },
530
531         /**
532         * Shorthand for {@link Roo.ComponentMgr#get}
533         * @param {String} id
534         * @return Roo.Component
535         */
536         getCmp : function(id){
537             return Roo.ComponentMgr.get(id);
538         },
539          
540         num : function(v, defaultValue){
541             if(typeof v != 'number'){
542                 return defaultValue;
543             }
544             return v;
545         },
546
547         destroy : function(){
548             for(var i = 0, a = arguments, len = a.length; i < len; i++) {
549                 var as = a[i];
550                 if(as){
551                     if(as.dom){
552                         as.removeAllListeners();
553                         as.remove();
554                         continue;
555                     }
556                     if(typeof as.purgeListeners == 'function'){
557                         as.purgeListeners();
558                     }
559                     if(typeof as.destroy == 'function'){
560                         as.destroy();
561                     }
562                 }
563             }
564         },
565
566         // inpired by a similar function in mootools library
567         /**
568          * Returns the type of object that is passed in. If the object passed in is null or undefined it
569          * return false otherwise it returns one of the following values:<ul>
570          * <li><b>string</b>: If the object passed is a string</li>
571          * <li><b>number</b>: If the object passed is a number</li>
572          * <li><b>boolean</b>: If the object passed is a boolean value</li>
573          * <li><b>function</b>: If the object passed is a function reference</li>
574          * <li><b>object</b>: If the object passed is an object</li>
575          * <li><b>array</b>: If the object passed is an array</li>
576          * <li><b>regexp</b>: If the object passed is a regular expression</li>
577          * <li><b>element</b>: If the object passed is a DOM Element</li>
578          * <li><b>nodelist</b>: If the object passed is a DOM NodeList</li>
579          * <li><b>textnode</b>: If the object passed is a DOM text node and contains something other than whitespace</li>
580          * <li><b>whitespace</b>: If the object passed is a DOM text node and contains only whitespace</li>
581          * @param {Mixed} object
582          * @return {String}
583          */
584         type : function(o){
585             if(o === undefined || o === null){
586                 return false;
587             }
588             if(o.htmlElement){
589                 return 'element';
590             }
591             var t = typeof o;
592             if(t == 'object' && o.nodeName) {
593                 switch(o.nodeType) {
594                     case 1: return 'element';
595                     case 3: return (/\S/).test(o.nodeValue) ? 'textnode' : 'whitespace';
596                 }
597             }
598             if(t == 'object' || t == 'function') {
599                 switch(o.constructor) {
600                     case Array: return 'array';
601                     case RegExp: return 'regexp';
602                 }
603                 if(typeof o.length == 'number' && typeof o.item == 'function') {
604                     return 'nodelist';
605                 }
606             }
607             return t;
608         },
609
610         /**
611          * Returns true if the passed value is null, undefined or an empty string (optional).
612          * @param {Mixed} value The value to test
613          * @param {Boolean} allowBlank (optional) Pass true if an empty string is not considered empty
614          * @return {Boolean}
615          */
616         isEmpty : function(v, allowBlank){
617             return v === null || v === undefined || (!allowBlank ? v === '' : false);
618         },
619         
620         /** @type Boolean */
621         isOpera : isOpera,
622         /** @type Boolean */
623         isSafari : isSafari,
624         /** @type Boolean */
625         isFirefox : isFirefox,
626         /** @type Boolean */
627         isIE : isIE,
628         /** @type Boolean */
629         isIE7 : isIE7,
630         /** @type Boolean */
631         isIE11 : isIE11,
632         /** @type Boolean */
633         isEdge : isEdge,
634         /** @type Boolean */
635         isGecko : isGecko,
636         /** @type Boolean */
637         isBorderBox : isBorderBox,
638         /** @type Boolean */
639         isWindows : isWindows,
640         /** @type Boolean */
641         isLinux : isLinux,
642         /** @type Boolean */
643         isMac : isMac,
644         /** @type Boolean */
645         isIOS : isIOS,
646         /** @type Boolean */
647         isAndroid : isAndroid,
648         /** @type Boolean */
649         isTouch : isTouch,
650
651         /**
652          * By default, Ext intelligently decides whether floating elements should be shimmed. If you are using flash,
653          * you may want to set this to true.
654          * @type Boolean
655          */
656         useShims : ((isIE && !isIE7) || (isGecko && isMac)),
657         
658         
659                 
660         /**
661          * Selects a single element as a Roo Element
662          * This is about as close as you can get to jQuery's $('do crazy stuff')
663          * @param {String} selector The selector/xpath query
664          * @param {Node} root (optional) The start of the query (defaults to document).
665          * @return {Roo.Element}
666          */
667         selectNode : function(selector, root) 
668         {
669             var node = Roo.DomQuery.selectNode(selector,root);
670             return node ? Roo.get(node) : new Roo.Element(false);
671         }
672         
673     });
674
675
676 })();
677
678 Roo.namespace("Roo", "Roo.util", "Roo.grid", "Roo.dd", "Roo.tree", "Roo.data",
679                 "Roo.form", "Roo.menu", "Roo.state", "Roo.lib", "Roo.layout",
680                 "Roo.app", "Roo.ux",
681                 "Roo.bootstrap",
682                 "Roo.bootstrap.dash");
683 /*
684  * Based on:
685  * Ext JS Library 1.1.1
686  * Copyright(c) 2006-2007, Ext JS, LLC.
687  *
688  * Originally Released Under LGPL - original licence link has changed is not relivant.
689  *
690  * Fork - LGPL
691  * <script type="text/javascript">
692  */
693
694 (function() {    
695     // wrappedn so fnCleanup is not in global scope...
696     if(Roo.isIE) {
697         function fnCleanUp() {
698             var p = Function.prototype;
699             delete p.createSequence;
700             delete p.defer;
701             delete p.createDelegate;
702             delete p.createCallback;
703             delete p.createInterceptor;
704
705             window.detachEvent("onunload", fnCleanUp);
706         }
707         window.attachEvent("onunload", fnCleanUp);
708     }
709 })();
710
711
712 /**
713  * @class Function
714  * These functions are available on every Function object (any JavaScript function).
715  */
716 Roo.apply(Function.prototype, {
717      /**
718      * Creates a callback that passes arguments[0], arguments[1], arguments[2], ...
719      * Call directly on any function. Example: <code>myFunction.createCallback(myarg, myarg2)</code>
720      * Will create a function that is bound to those 2 args.
721      * @return {Function} The new function
722     */
723     createCallback : function(/*args...*/){
724         // make args available, in function below
725         var args = arguments;
726         var method = this;
727         return function() {
728             return method.apply(window, args);
729         };
730     },
731
732     /**
733      * Creates a delegate (callback) that sets the scope to obj.
734      * Call directly on any function. Example: <code>this.myFunction.createDelegate(this)</code>
735      * Will create a function that is automatically scoped to this.
736      * @param {Object} obj (optional) The object for which the scope is set
737      * @param {Array} args (optional) Overrides arguments for the call. (Defaults to the arguments passed by the caller)
738      * @param {Boolean/Number} appendArgs (optional) if True args are appended to call args instead of overriding,
739      *                                             if a number the args are inserted at the specified position
740      * @return {Function} The new function
741      */
742     createDelegate : function(obj, args, appendArgs){
743         var method = this;
744         return function() {
745             var callArgs = args || arguments;
746             if(appendArgs === true){
747                 callArgs = Array.prototype.slice.call(arguments, 0);
748                 callArgs = callArgs.concat(args);
749             }else if(typeof appendArgs == "number"){
750                 callArgs = Array.prototype.slice.call(arguments, 0); // copy arguments first
751                 var applyArgs = [appendArgs, 0].concat(args); // create method call params
752                 Array.prototype.splice.apply(callArgs, applyArgs); // splice them in
753             }
754             return method.apply(obj || window, callArgs);
755         };
756     },
757
758     /**
759      * Calls this function after the number of millseconds specified.
760      * @param {Number} millis The number of milliseconds for the setTimeout call (if 0 the function is executed immediately)
761      * @param {Object} obj (optional) The object for which the scope is set
762      * @param {Array} args (optional) Overrides arguments for the call. (Defaults to the arguments passed by the caller)
763      * @param {Boolean/Number} appendArgs (optional) if True args are appended to call args instead of overriding,
764      *                                             if a number the args are inserted at the specified position
765      * @return {Number} The timeout id that can be used with clearTimeout
766      */
767     defer : function(millis, obj, args, appendArgs){
768         var fn = this.createDelegate(obj, args, appendArgs);
769         if(millis){
770             return setTimeout(fn, millis);
771         }
772         fn();
773         return 0;
774     },
775     /**
776      * Create a combined function call sequence of the original function + the passed function.
777      * The resulting function returns the results of the original function.
778      * The passed fcn is called with the parameters of the original function
779      * @param {Function} fcn The function to sequence
780      * @param {Object} scope (optional) The scope of the passed fcn (Defaults to scope of original function or window)
781      * @return {Function} The new function
782      */
783     createSequence : function(fcn, scope){
784         if(typeof fcn != "function"){
785             return this;
786         }
787         var method = this;
788         return function() {
789             var retval = method.apply(this || window, arguments);
790             fcn.apply(scope || this || window, arguments);
791             return retval;
792         };
793     },
794
795     /**
796      * Creates an interceptor function. The passed fcn is called before the original one. If it returns false, the original one is not called.
797      * The resulting function returns the results of the original function.
798      * The passed fcn is called with the parameters of the original function.
799      * @addon
800      * @param {Function} fcn The function to call before the original
801      * @param {Object} scope (optional) The scope of the passed fcn (Defaults to scope of original function or window)
802      * @return {Function} The new function
803      */
804     createInterceptor : function(fcn, scope){
805         if(typeof fcn != "function"){
806             return this;
807         }
808         var method = this;
809         return function() {
810             fcn.target = this;
811             fcn.method = method;
812             if(fcn.apply(scope || this || window, arguments) === false){
813                 return;
814             }
815             return method.apply(this || window, arguments);
816         };
817     }
818 });
819 /*
820  * Based on:
821  * Ext JS Library 1.1.1
822  * Copyright(c) 2006-2007, Ext JS, LLC.
823  *
824  * Originally Released Under LGPL - original licence link has changed is not relivant.
825  *
826  * Fork - LGPL
827  * <script type="text/javascript">
828  */
829
830 Roo.applyIf(String, {
831     
832     /** @scope String */
833     
834     /**
835      * Escapes the passed string for ' and \
836      * @param {String} string The string to escape
837      * @return {String} The escaped string
838      * @static
839      */
840     escape : function(string) {
841         return string.replace(/('|\\)/g, "\\$1");
842     },
843
844     /**
845      * Pads the left side of a string with a specified character.  This is especially useful
846      * for normalizing number and date strings.  Example usage:
847      * <pre><code>
848 var s = String.leftPad('123', 5, '0');
849 // s now contains the string: '00123'
850 </code></pre>
851      * @param {String} string The original string
852      * @param {Number} size The total length of the output string
853      * @param {String} char (optional) The character with which to pad the original string (defaults to empty string " ")
854      * @return {String} The padded string
855      * @static
856      */
857     leftPad : function (val, size, ch) {
858         var result = new String(val);
859         if(ch === null || ch === undefined || ch === '') {
860             ch = " ";
861         }
862         while (result.length < size) {
863             result = ch + result;
864         }
865         return result;
866     },
867
868     /**
869      * Allows you to define a tokenized string and pass an arbitrary number of arguments to replace the tokens.  Each
870      * token must be unique, and must increment in the format {0}, {1}, etc.  Example usage:
871      * <pre><code>
872 var cls = 'my-class', text = 'Some text';
873 var s = String.format('<div class="{0}">{1}</div>', cls, text);
874 // s now contains the string: '<div class="my-class">Some text</div>'
875 </code></pre>
876      * @param {String} string The tokenized string to be formatted
877      * @param {String} value1 The value to replace token {0}
878      * @param {String} value2 Etc...
879      * @return {String} The formatted string
880      * @static
881      */
882     format : function(format){
883         var args = Array.prototype.slice.call(arguments, 1);
884         return format.replace(/\{(\d+)\}/g, function(m, i){
885             return Roo.util.Format.htmlEncode(args[i]);
886         });
887     }
888   
889     
890 });
891
892 /**
893  * Utility function that allows you to easily switch a string between two alternating values.  The passed value
894  * is compared to the current string, and if they are equal, the other value that was passed in is returned.  If
895  * they are already different, the first value passed in is returned.  Note that this method returns the new value
896  * but does not change the current string.
897  * <pre><code>
898 // alternate sort directions
899 sort = sort.toggle('ASC', 'DESC');
900
901 // instead of conditional logic:
902 sort = (sort == 'ASC' ? 'DESC' : 'ASC');
903 </code></pre>
904  * @param {String} value The value to compare to the current string
905  * @param {String} other The new value to use if the string already equals the first value passed in
906  * @return {String} The new value
907  */
908  
909 String.prototype.toggle = function(value, other){
910     return this == value ? other : value;
911 };
912
913
914 /**
915   * Remove invalid unicode characters from a string 
916   *
917   * @return {String} The clean string
918   */
919 String.prototype.unicodeClean = function () {
920     return this.replace(/[\s\S]/g,
921         function(character) {
922             if (character.charCodeAt()< 256) {
923               return character;
924            }
925            try {
926                 encodeURIComponent(character);
927            } catch(e) { 
928               return '';
929            }
930            return character;
931         }
932     );
933 };
934   
935 /*
936  * Based on:
937  * Ext JS Library 1.1.1
938  * Copyright(c) 2006-2007, Ext JS, LLC.
939  *
940  * Originally Released Under LGPL - original licence link has changed is not relivant.
941  *
942  * Fork - LGPL
943  * <script type="text/javascript">
944  */
945
946  /**
947  * @class Number
948  */
949 Roo.applyIf(Number.prototype, {
950     /**
951      * Checks whether or not the current number is within a desired range.  If the number is already within the
952      * range it is returned, otherwise the min or max value is returned depending on which side of the range is
953      * exceeded.  Note that this method returns the constrained value but does not change the current number.
954      * @param {Number} min The minimum number in the range
955      * @param {Number} max The maximum number in the range
956      * @return {Number} The constrained value if outside the range, otherwise the current value
957      */
958     constrain : function(min, max){
959         return Math.min(Math.max(this, min), max);
960     }
961 });/*
962  * Based on:
963  * Ext JS Library 1.1.1
964  * Copyright(c) 2006-2007, Ext JS, LLC.
965  *
966  * Originally Released Under LGPL - original licence link has changed is not relivant.
967  *
968  * Fork - LGPL
969  * <script type="text/javascript">
970  */
971  /**
972  * @class Array
973  */
974 Roo.applyIf(Array.prototype, {
975     /**
976      * 
977      * Checks whether or not the specified object exists in the array.
978      * @param {Object} o The object to check for
979      * @return {Number} The index of o in the array (or -1 if it is not found)
980      */
981     indexOf : function(o){
982        for (var i = 0, len = this.length; i < len; i++){
983               if(this[i] == o) { return i; }
984        }
985            return -1;
986     },
987
988     /**
989      * Removes the specified object from the array.  If the object is not found nothing happens.
990      * @param {Object} o The object to remove
991      */
992     remove : function(o){
993        var index = this.indexOf(o);
994        if(index != -1){
995            this.splice(index, 1);
996        }
997     },
998     /**
999      * Map (JS 1.6 compatibility)
1000      * @param {Function} function  to call
1001      */
1002     map : function(fun )
1003     {
1004         var len = this.length >>> 0;
1005         if (typeof fun != "function") {
1006             throw new TypeError();
1007         }
1008         var res = new Array(len);
1009         var thisp = arguments[1];
1010         for (var i = 0; i < len; i++)
1011         {
1012             if (i in this) {
1013                 res[i] = fun.call(thisp, this[i], i, this);
1014             }
1015         }
1016
1017         return res;
1018     }
1019     
1020 });
1021
1022
1023  
1024 /*
1025  * Based on:
1026  * Ext JS Library 1.1.1
1027  * Copyright(c) 2006-2007, Ext JS, LLC.
1028  *
1029  * Originally Released Under LGPL - original licence link has changed is not relivant.
1030  *
1031  * Fork - LGPL
1032  * <script type="text/javascript">
1033  */
1034
1035 /**
1036  * @class Date
1037  *
1038  * The date parsing and format syntax is a subset of
1039  * <a href="http://www.php.net/date">PHP's date() function</a>, and the formats that are
1040  * supported will provide results equivalent to their PHP versions.
1041  *
1042  * Following is the list of all currently supported formats:
1043  *<pre>
1044 Sample date:
1045 'Wed Jan 10 2007 15:05:01 GMT-0600 (Central Standard Time)'
1046
1047 Format  Output      Description
1048 ------  ----------  --------------------------------------------------------------
1049   d      10         Day of the month, 2 digits with leading zeros
1050   D      Wed        A textual representation of a day, three letters
1051   j      10         Day of the month without leading zeros
1052   l      Wednesday  A full textual representation of the day of the week
1053   S      th         English ordinal day of month suffix, 2 chars (use with j)
1054   w      3          Numeric representation of the day of the week
1055   z      9          The julian date, or day of the year (0-365)
1056   W      01         ISO-8601 2-digit week number of year, weeks starting on Monday (00-52)
1057   F      January    A full textual representation of the month
1058   m      01         Numeric representation of a month, with leading zeros
1059   M      Jan        Month name abbreviation, three letters
1060   n      1          Numeric representation of a month, without leading zeros
1061   t      31         Number of days in the given month
1062   L      0          Whether it's a leap year (1 if it is a leap year, else 0)
1063   Y      2007       A full numeric representation of a year, 4 digits
1064   y      07         A two digit representation of a year
1065   a      pm         Lowercase Ante meridiem and Post meridiem
1066   A      PM         Uppercase Ante meridiem and Post meridiem
1067   g      3          12-hour format of an hour without leading zeros
1068   G      15         24-hour format of an hour without leading zeros
1069   h      03         12-hour format of an hour with leading zeros
1070   H      15         24-hour format of an hour with leading zeros
1071   i      05         Minutes with leading zeros
1072   s      01         Seconds, with leading zeros
1073   O      -0600      Difference to Greenwich time (GMT) in hours (Allows +08, without minutes)
1074   P      -06:00     Difference to Greenwich time (GMT) with colon between hours and minutes
1075   T      CST        Timezone setting of the machine running the code
1076   Z      -21600     Timezone offset in seconds (negative if west of UTC, positive if east)
1077 </pre>
1078  *
1079  * Example usage (note that you must escape format specifiers with '\\' to render them as character literals):
1080  * <pre><code>
1081 var dt = new Date('1/10/2007 03:05:01 PM GMT-0600');
1082 document.write(dt.format('Y-m-d'));                         //2007-01-10
1083 document.write(dt.format('F j, Y, g:i a'));                 //January 10, 2007, 3:05 pm
1084 document.write(dt.format('l, \\t\\he dS of F Y h:i:s A'));  //Wednesday, the 10th of January 2007 03:05:01 PM
1085  </code></pre>
1086  *
1087  * Here are some standard date/time patterns that you might find helpful.  They
1088  * are not part of the source of Date.js, but to use them you can simply copy this
1089  * block of code into any script that is included after Date.js and they will also become
1090  * globally available on the Date object.  Feel free to add or remove patterns as needed in your code.
1091  * <pre><code>
1092 Date.patterns = {
1093     ISO8601Long:"Y-m-d H:i:s",
1094     ISO8601Short:"Y-m-d",
1095     ShortDate: "n/j/Y",
1096     LongDate: "l, F d, Y",
1097     FullDateTime: "l, F d, Y g:i:s A",
1098     MonthDay: "F d",
1099     ShortTime: "g:i A",
1100     LongTime: "g:i:s A",
1101     SortableDateTime: "Y-m-d\\TH:i:s",
1102     UniversalSortableDateTime: "Y-m-d H:i:sO",
1103     YearMonth: "F, Y"
1104 };
1105 </code></pre>
1106  *
1107  * Example usage:
1108  * <pre><code>
1109 var dt = new Date();
1110 document.write(dt.format(Date.patterns.ShortDate));
1111  </code></pre>
1112  */
1113
1114 /*
1115  * Most of the date-formatting functions below are the excellent work of Baron Schwartz.
1116  * They generate precompiled functions from date formats instead of parsing and
1117  * processing the pattern every time you format a date.  These functions are available
1118  * on every Date object (any javascript function).
1119  *
1120  * The original article and download are here:
1121  * http://www.xaprb.com/blog/2005/12/12/javascript-closures-for-runtime-efficiency/
1122  *
1123  */
1124  
1125  
1126  // was in core
1127 /**
1128  Returns the number of milliseconds between this date and date
1129  @param {Date} date (optional) Defaults to now
1130  @return {Number} The diff in milliseconds
1131  @member Date getElapsed
1132  */
1133 Date.prototype.getElapsed = function(date) {
1134         return Math.abs((date || new Date()).getTime()-this.getTime());
1135 };
1136 // was in date file..
1137
1138
1139 // private
1140 Date.parseFunctions = {count:0};
1141 // private
1142 Date.parseRegexes = [];
1143 // private
1144 Date.formatFunctions = {count:0};
1145
1146 // private
1147 Date.prototype.dateFormat = function(format) {
1148     if (Date.formatFunctions[format] == null) {
1149         Date.createNewFormat(format);
1150     }
1151     var func = Date.formatFunctions[format];
1152     return this[func]();
1153 };
1154
1155
1156 /**
1157  * Formats a date given the supplied format string
1158  * @param {String} format The format string
1159  * @return {String} The formatted date
1160  * @method
1161  */
1162 Date.prototype.format = Date.prototype.dateFormat;
1163
1164 // private
1165 Date.createNewFormat = function(format) {
1166     var funcName = "format" + Date.formatFunctions.count++;
1167     Date.formatFunctions[format] = funcName;
1168     var code = "Date.prototype." + funcName + " = function(){return ";
1169     var special = false;
1170     var ch = '';
1171     for (var i = 0; i < format.length; ++i) {
1172         ch = format.charAt(i);
1173         if (!special && ch == "\\") {
1174             special = true;
1175         }
1176         else if (special) {
1177             special = false;
1178             code += "'" + String.escape(ch) + "' + ";
1179         }
1180         else {
1181             code += Date.getFormatCode(ch);
1182         }
1183     }
1184     /** eval:var:zzzzzzzzzzzzz */
1185     eval(code.substring(0, code.length - 3) + ";}");
1186 };
1187
1188 // private
1189 Date.getFormatCode = function(character) {
1190     switch (character) {
1191     case "d":
1192         return "String.leftPad(this.getDate(), 2, '0') + ";
1193     case "D":
1194         return "Date.dayNames[this.getDay()].substring(0, 3) + ";
1195     case "j":
1196         return "this.getDate() + ";
1197     case "l":
1198         return "Date.dayNames[this.getDay()] + ";
1199     case "S":
1200         return "this.getSuffix() + ";
1201     case "w":
1202         return "this.getDay() + ";
1203     case "z":
1204         return "this.getDayOfYear() + ";
1205     case "W":
1206         return "this.getWeekOfYear() + ";
1207     case "F":
1208         return "Date.monthNames[this.getMonth()] + ";
1209     case "m":
1210         return "String.leftPad(this.getMonth() + 1, 2, '0') + ";
1211     case "M":
1212         return "Date.monthNames[this.getMonth()].substring(0, 3) + ";
1213     case "n":
1214         return "(this.getMonth() + 1) + ";
1215     case "t":
1216         return "this.getDaysInMonth() + ";
1217     case "L":
1218         return "(this.isLeapYear() ? 1 : 0) + ";
1219     case "Y":
1220         return "this.getFullYear() + ";
1221     case "y":
1222         return "('' + this.getFullYear()).substring(2, 4) + ";
1223     case "a":
1224         return "(this.getHours() < 12 ? 'am' : 'pm') + ";
1225     case "A":
1226         return "(this.getHours() < 12 ? 'AM' : 'PM') + ";
1227     case "g":
1228         return "((this.getHours() % 12) ? this.getHours() % 12 : 12) + ";
1229     case "G":
1230         return "this.getHours() + ";
1231     case "h":
1232         return "String.leftPad((this.getHours() % 12) ? this.getHours() % 12 : 12, 2, '0') + ";
1233     case "H":
1234         return "String.leftPad(this.getHours(), 2, '0') + ";
1235     case "i":
1236         return "String.leftPad(this.getMinutes(), 2, '0') + ";
1237     case "s":
1238         return "String.leftPad(this.getSeconds(), 2, '0') + ";
1239     case "O":
1240         return "this.getGMTOffset() + ";
1241     case "P":
1242         return "this.getGMTColonOffset() + ";
1243     case "T":
1244         return "this.getTimezone() + ";
1245     case "Z":
1246         return "(this.getTimezoneOffset() * -60) + ";
1247     default:
1248         return "'" + String.escape(character) + "' + ";
1249     }
1250 };
1251
1252 /**
1253  * Parses the passed string using the specified format. Note that this function expects dates in normal calendar
1254  * format, meaning that months are 1-based (1 = January) and not zero-based like in JavaScript dates.  Any part of
1255  * the date format that is not specified will default to the current date value for that part.  Time parts can also
1256  * be specified, but default to 0.  Keep in mind that the input date string must precisely match the specified format
1257  * string or the parse operation will fail.
1258  * Example Usage:
1259 <pre><code>
1260 //dt = Fri May 25 2007 (current date)
1261 var dt = new Date();
1262
1263 //dt = Thu May 25 2006 (today's month/day in 2006)
1264 dt = Date.parseDate("2006", "Y");
1265
1266 //dt = Sun Jan 15 2006 (all date parts specified)
1267 dt = Date.parseDate("2006-1-15", "Y-m-d");
1268
1269 //dt = Sun Jan 15 2006 15:20:01 GMT-0600 (CST)
1270 dt = Date.parseDate("2006-1-15 3:20:01 PM", "Y-m-d h:i:s A" );
1271 </code></pre>
1272  * @param {String} input The unparsed date as a string
1273  * @param {String} format The format the date is in
1274  * @return {Date} The parsed date
1275  * @static
1276  */
1277 Date.parseDate = function(input, format) {
1278     if (Date.parseFunctions[format] == null) {
1279         Date.createParser(format);
1280     }
1281     var func = Date.parseFunctions[format];
1282     return Date[func](input);
1283 };
1284 /**
1285  * @private
1286  */
1287
1288 Date.createParser = function(format) {
1289     var funcName = "parse" + Date.parseFunctions.count++;
1290     var regexNum = Date.parseRegexes.length;
1291     var currentGroup = 1;
1292     Date.parseFunctions[format] = funcName;
1293
1294     var code = "Date." + funcName + " = function(input){\n"
1295         + "var y = -1, m = -1, d = -1, h = -1, i = -1, s = -1, o, z, v;\n"
1296         + "var d = new Date();\n"
1297         + "y = d.getFullYear();\n"
1298         + "m = d.getMonth();\n"
1299         + "d = d.getDate();\n"
1300         + "if (typeof(input) !== 'string') { input = input.toString(); }\n"
1301         + "var results = input.match(Date.parseRegexes[" + regexNum + "]);\n"
1302         + "if (results && results.length > 0) {";
1303     var regex = "";
1304
1305     var special = false;
1306     var ch = '';
1307     for (var i = 0; i < format.length; ++i) {
1308         ch = format.charAt(i);
1309         if (!special && ch == "\\") {
1310             special = true;
1311         }
1312         else if (special) {
1313             special = false;
1314             regex += String.escape(ch);
1315         }
1316         else {
1317             var obj = Date.formatCodeToRegex(ch, currentGroup);
1318             currentGroup += obj.g;
1319             regex += obj.s;
1320             if (obj.g && obj.c) {
1321                 code += obj.c;
1322             }
1323         }
1324     }
1325
1326     code += "if (y >= 0 && m >= 0 && d > 0 && h >= 0 && i >= 0 && s >= 0)\n"
1327         + "{v = new Date(y, m, d, h, i, s);}\n"
1328         + "else if (y >= 0 && m >= 0 && d > 0 && h >= 0 && i >= 0)\n"
1329         + "{v = new Date(y, m, d, h, i);}\n"
1330         + "else if (y >= 0 && m >= 0 && d > 0 && h >= 0)\n"
1331         + "{v = new Date(y, m, d, h);}\n"
1332         + "else if (y >= 0 && m >= 0 && d > 0)\n"
1333         + "{v = new Date(y, m, d);}\n"
1334         + "else if (y >= 0 && m >= 0)\n"
1335         + "{v = new Date(y, m);}\n"
1336         + "else if (y >= 0)\n"
1337         + "{v = new Date(y);}\n"
1338         + "}return (v && (z || o))?\n" // favour UTC offset over GMT offset
1339         + "    ((z)? v.add(Date.SECOND, (v.getTimezoneOffset() * 60) + (z*1)) :\n" // reset to UTC, then add offset
1340         + "        v.add(Date.HOUR, (v.getGMTOffset() / 100) + (o / -100))) : v\n" // reset to GMT, then add offset
1341         + ";}";
1342
1343     Date.parseRegexes[regexNum] = new RegExp("^" + regex + "$");
1344     /** eval:var:zzzzzzzzzzzzz */
1345     eval(code);
1346 };
1347
1348 // private
1349 Date.formatCodeToRegex = function(character, currentGroup) {
1350     switch (character) {
1351     case "D":
1352         return {g:0,
1353         c:null,
1354         s:"(?:Sun|Mon|Tue|Wed|Thu|Fri|Sat)"};
1355     case "j":
1356         return {g:1,
1357             c:"d = parseInt(results[" + currentGroup + "], 10);\n",
1358             s:"(\\d{1,2})"}; // day of month without leading zeroes
1359     case "d":
1360         return {g:1,
1361             c:"d = parseInt(results[" + currentGroup + "], 10);\n",
1362             s:"(\\d{2})"}; // day of month with leading zeroes
1363     case "l":
1364         return {g:0,
1365             c:null,
1366             s:"(?:" + Date.dayNames.join("|") + ")"};
1367     case "S":
1368         return {g:0,
1369             c:null,
1370             s:"(?:st|nd|rd|th)"};
1371     case "w":
1372         return {g:0,
1373             c:null,
1374             s:"\\d"};
1375     case "z":
1376         return {g:0,
1377             c:null,
1378             s:"(?:\\d{1,3})"};
1379     case "W":
1380         return {g:0,
1381             c:null,
1382             s:"(?:\\d{2})"};
1383     case "F":
1384         return {g:1,
1385             c:"m = parseInt(Date.monthNumbers[results[" + currentGroup + "].substring(0, 3)], 10);\n",
1386             s:"(" + Date.monthNames.join("|") + ")"};
1387     case "M":
1388         return {g:1,
1389             c:"m = parseInt(Date.monthNumbers[results[" + currentGroup + "]], 10);\n",
1390             s:"(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)"};
1391     case "n":
1392         return {g:1,
1393             c:"m = parseInt(results[" + currentGroup + "], 10) - 1;\n",
1394             s:"(\\d{1,2})"}; // Numeric representation of a month, without leading zeros
1395     case "m":
1396         return {g:1,
1397             c:"m = parseInt(results[" + currentGroup + "], 10) - 1;\n",
1398             s:"(\\d{2})"}; // Numeric representation of a month, with leading zeros
1399     case "t":
1400         return {g:0,
1401             c:null,
1402             s:"\\d{1,2}"};
1403     case "L":
1404         return {g:0,
1405             c:null,
1406             s:"(?:1|0)"};
1407     case "Y":
1408         return {g:1,
1409             c:"y = parseInt(results[" + currentGroup + "], 10);\n",
1410             s:"(\\d{4})"};
1411     case "y":
1412         return {g:1,
1413             c:"var ty = parseInt(results[" + currentGroup + "], 10);\n"
1414                 + "y = ty > Date.y2kYear ? 1900 + ty : 2000 + ty;\n",
1415             s:"(\\d{1,2})"};
1416     case "a":
1417         return {g:1,
1418             c:"if (results[" + currentGroup + "] == 'am') {\n"
1419                 + "if (h == 12) { h = 0; }\n"
1420                 + "} else { if (h < 12) { h += 12; }}",
1421             s:"(am|pm)"};
1422     case "A":
1423         return {g:1,
1424             c:"if (results[" + currentGroup + "] == 'AM') {\n"
1425                 + "if (h == 12) { h = 0; }\n"
1426                 + "} else { if (h < 12) { h += 12; }}",
1427             s:"(AM|PM)"};
1428     case "g":
1429     case "G":
1430         return {g:1,
1431             c:"h = parseInt(results[" + currentGroup + "], 10);\n",
1432             s:"(\\d{1,2})"}; // 12/24-hr format  format of an hour without leading zeroes
1433     case "h":
1434     case "H":
1435         return {g:1,
1436             c:"h = parseInt(results[" + currentGroup + "], 10);\n",
1437             s:"(\\d{2})"}; //  12/24-hr format  format of an hour with leading zeroes
1438     case "i":
1439         return {g:1,
1440             c:"i = parseInt(results[" + currentGroup + "], 10);\n",
1441             s:"(\\d{2})"};
1442     case "s":
1443         return {g:1,
1444             c:"s = parseInt(results[" + currentGroup + "], 10);\n",
1445             s:"(\\d{2})"};
1446     case "O":
1447         return {g:1,
1448             c:[
1449                 "o = results[", currentGroup, "];\n",
1450                 "var sn = o.substring(0,1);\n", // get + / - sign
1451                 "var hr = o.substring(1,3)*1 + Math.floor(o.substring(3,5) / 60);\n", // get hours (performs minutes-to-hour conversion also)
1452                 "var mn = o.substring(3,5) % 60;\n", // get minutes
1453                 "o = ((-12 <= (hr*60 + mn)/60) && ((hr*60 + mn)/60 <= 14))?\n", // -12hrs <= GMT offset <= 14hrs
1454                 "    (sn + String.leftPad(hr, 2, 0) + String.leftPad(mn, 2, 0)) : null;\n"
1455             ].join(""),
1456             s:"([+\-]\\d{2,4})"};
1457     
1458     
1459     case "P":
1460         return {g:1,
1461                 c:[
1462                    "o = results[", currentGroup, "];\n",
1463                    "var sn = o.substring(0,1);\n",
1464                    "var hr = o.substring(1,3)*1 + Math.floor(o.substring(4,6) / 60);\n",
1465                    "var mn = o.substring(4,6) % 60;\n",
1466                    "o = ((-12 <= (hr*60 + mn)/60) && ((hr*60 + mn)/60 <= 14))?\n",
1467                         "    (sn + String.leftPad(hr, 2, 0) + String.leftPad(mn, 2, 0)) : null;\n"
1468             ].join(""),
1469             s:"([+\-]\\d{4})"};
1470     case "T":
1471         return {g:0,
1472             c:null,
1473             s:"[A-Z]{1,4}"}; // timezone abbrev. may be between 1 - 4 chars
1474     case "Z":
1475         return {g:1,
1476             c:"z = results[" + currentGroup + "];\n" // -43200 <= UTC offset <= 50400
1477                   + "z = (-43200 <= z*1 && z*1 <= 50400)? z : null;\n",
1478             s:"([+\-]?\\d{1,5})"}; // leading '+' sign is optional for UTC offset
1479     default:
1480         return {g:0,
1481             c:null,
1482             s:String.escape(character)};
1483     }
1484 };
1485
1486 /**
1487  * Get the timezone abbreviation of the current date (equivalent to the format specifier 'T').
1488  * @return {String} The abbreviated timezone name (e.g. 'CST')
1489  */
1490 Date.prototype.getTimezone = function() {
1491     return this.toString().replace(/^.*? ([A-Z]{1,4})[\-+][0-9]{4} .*$/, "$1");
1492 };
1493
1494 /**
1495  * Get the offset from GMT of the current date (equivalent to the format specifier 'O').
1496  * @return {String} The 4-character offset string prefixed with + or - (e.g. '-0600')
1497  */
1498 Date.prototype.getGMTOffset = function() {
1499     return (this.getTimezoneOffset() > 0 ? "-" : "+")
1500         + String.leftPad(Math.abs(Math.floor(this.getTimezoneOffset() / 60)), 2, "0")
1501         + String.leftPad(this.getTimezoneOffset() % 60, 2, "0");
1502 };
1503
1504 /**
1505  * Get the offset from GMT of the current date (equivalent to the format specifier 'P').
1506  * @return {String} 2-characters representing hours and 2-characters representing minutes
1507  * seperated by a colon and prefixed with + or - (e.g. '-06:00')
1508  */
1509 Date.prototype.getGMTColonOffset = function() {
1510         return (this.getTimezoneOffset() > 0 ? "-" : "+")
1511                 + String.leftPad(Math.abs(Math.floor(this.getTimezoneOffset() / 60)), 2, "0")
1512                 + ":"
1513                 + String.leftPad(this.getTimezoneOffset() %60, 2, "0");
1514 }
1515
1516 /**
1517  * Get the numeric day number of the year, adjusted for leap year.
1518  * @return {Number} 0 through 364 (365 in leap years)
1519  */
1520 Date.prototype.getDayOfYear = function() {
1521     var num = 0;
1522     Date.daysInMonth[1] = this.isLeapYear() ? 29 : 28;
1523     for (var i = 0; i < this.getMonth(); ++i) {
1524         num += Date.daysInMonth[i];
1525     }
1526     return num + this.getDate() - 1;
1527 };
1528
1529 /**
1530  * Get the string representation of the numeric week number of the year
1531  * (equivalent to the format specifier 'W').
1532  * @return {String} '00' through '52'
1533  */
1534 Date.prototype.getWeekOfYear = function() {
1535     // Skip to Thursday of this week
1536     var now = this.getDayOfYear() + (4 - this.getDay());
1537     // Find the first Thursday of the year
1538     var jan1 = new Date(this.getFullYear(), 0, 1);
1539     var then = (7 - jan1.getDay() + 4);
1540     return String.leftPad(((now - then) / 7) + 1, 2, "0");
1541 };
1542
1543 /**
1544  * Whether or not the current date is in a leap year.
1545  * @return {Boolean} True if the current date is in a leap year, else false
1546  */
1547 Date.prototype.isLeapYear = function() {
1548     var year = this.getFullYear();
1549     return ((year & 3) == 0 && (year % 100 || (year % 400 == 0 && year)));
1550 };
1551
1552 /**
1553  * Get the first day of the current month, adjusted for leap year.  The returned value
1554  * is the numeric day index within the week (0-6) which can be used in conjunction with
1555  * the {@link #monthNames} array to retrieve the textual day name.
1556  * Example:
1557  *<pre><code>
1558 var dt = new Date('1/10/2007');
1559 document.write(Date.dayNames[dt.getFirstDayOfMonth()]); //output: 'Monday'
1560 </code></pre>
1561  * @return {Number} The day number (0-6)
1562  */
1563 Date.prototype.getFirstDayOfMonth = function() {
1564     var day = (this.getDay() - (this.getDate() - 1)) % 7;
1565     return (day < 0) ? (day + 7) : day;
1566 };
1567
1568 /**
1569  * Get the last day of the current month, adjusted for leap year.  The returned value
1570  * is the numeric day index within the week (0-6) which can be used in conjunction with
1571  * the {@link #monthNames} array to retrieve the textual day name.
1572  * Example:
1573  *<pre><code>
1574 var dt = new Date('1/10/2007');
1575 document.write(Date.dayNames[dt.getLastDayOfMonth()]); //output: 'Wednesday'
1576 </code></pre>
1577  * @return {Number} The day number (0-6)
1578  */
1579 Date.prototype.getLastDayOfMonth = function() {
1580     var day = (this.getDay() + (Date.daysInMonth[this.getMonth()] - this.getDate())) % 7;
1581     return (day < 0) ? (day + 7) : day;
1582 };
1583
1584
1585 /**
1586  * Get the first date of this date's month
1587  * @return {Date}
1588  */
1589 Date.prototype.getFirstDateOfMonth = function() {
1590     return new Date(this.getFullYear(), this.getMonth(), 1);
1591 };
1592
1593 /**
1594  * Get the last date of this date's month
1595  * @return {Date}
1596  */
1597 Date.prototype.getLastDateOfMonth = function() {
1598     return new Date(this.getFullYear(), this.getMonth(), this.getDaysInMonth());
1599 };
1600 /**
1601  * Get the number of days in the current month, adjusted for leap year.
1602  * @return {Number} The number of days in the month
1603  */
1604 Date.prototype.getDaysInMonth = function() {
1605     Date.daysInMonth[1] = this.isLeapYear() ? 29 : 28;
1606     return Date.daysInMonth[this.getMonth()];
1607 };
1608
1609 /**
1610  * Get the English ordinal suffix of the current day (equivalent to the format specifier 'S').
1611  * @return {String} 'st, 'nd', 'rd' or 'th'
1612  */
1613 Date.prototype.getSuffix = function() {
1614     switch (this.getDate()) {
1615         case 1:
1616         case 21:
1617         case 31:
1618             return "st";
1619         case 2:
1620         case 22:
1621             return "nd";
1622         case 3:
1623         case 23:
1624             return "rd";
1625         default:
1626             return "th";
1627     }
1628 };
1629
1630 // private
1631 Date.daysInMonth = [31,28,31,30,31,30,31,31,30,31,30,31];
1632
1633 /**
1634  * An array of textual month names.
1635  * Override these values for international dates, for example...
1636  * Date.monthNames = ['JanInYourLang', 'FebInYourLang', ...];
1637  * @type Array
1638  * @static
1639  */
1640 Date.monthNames =
1641    ["January",
1642     "February",
1643     "March",
1644     "April",
1645     "May",
1646     "June",
1647     "July",
1648     "August",
1649     "September",
1650     "October",
1651     "November",
1652     "December"];
1653
1654 /**
1655  * An array of textual day names.
1656  * Override these values for international dates, for example...
1657  * Date.dayNames = ['SundayInYourLang', 'MondayInYourLang', ...];
1658  * @type Array
1659  * @static
1660  */
1661 Date.dayNames =
1662    ["Sunday",
1663     "Monday",
1664     "Tuesday",
1665     "Wednesday",
1666     "Thursday",
1667     "Friday",
1668     "Saturday"];
1669
1670 // private
1671 Date.y2kYear = 50;
1672 // private
1673 Date.monthNumbers = {
1674     Jan:0,
1675     Feb:1,
1676     Mar:2,
1677     Apr:3,
1678     May:4,
1679     Jun:5,
1680     Jul:6,
1681     Aug:7,
1682     Sep:8,
1683     Oct:9,
1684     Nov:10,
1685     Dec:11};
1686
1687 /**
1688  * Creates and returns a new Date instance with the exact same date value as the called instance.
1689  * Dates are copied and passed by reference, so if a copied date variable is modified later, the original
1690  * variable will also be changed.  When the intention is to create a new variable that will not
1691  * modify the original instance, you should create a clone.
1692  *
1693  * Example of correctly cloning a date:
1694  * <pre><code>
1695 //wrong way:
1696 var orig = new Date('10/1/2006');
1697 var copy = orig;
1698 copy.setDate(5);
1699 document.write(orig);  //returns 'Thu Oct 05 2006'!
1700
1701 //correct way:
1702 var orig = new Date('10/1/2006');
1703 var copy = orig.clone();
1704 copy.setDate(5);
1705 document.write(orig);  //returns 'Thu Oct 01 2006'
1706 </code></pre>
1707  * @return {Date} The new Date instance
1708  */
1709 Date.prototype.clone = function() {
1710         return new Date(this.getTime());
1711 };
1712
1713 /**
1714  * Clears any time information from this date
1715  @param {Boolean} clone true to create a clone of this date, clear the time and return it
1716  @return {Date} this or the clone
1717  */
1718 Date.prototype.clearTime = function(clone){
1719     if(clone){
1720         return this.clone().clearTime();
1721     }
1722     this.setHours(0);
1723     this.setMinutes(0);
1724     this.setSeconds(0);
1725     this.setMilliseconds(0);
1726     return this;
1727 };
1728
1729 // private
1730 // safari setMonth is broken -- check that this is only donw once...
1731 if(Roo.isSafari && typeof(Date.brokenSetMonth) == 'undefined'){
1732     Date.brokenSetMonth = Date.prototype.setMonth;
1733         Date.prototype.setMonth = function(num){
1734                 if(num <= -1){
1735                         var n = Math.ceil(-num);
1736                         var back_year = Math.ceil(n/12);
1737                         var month = (n % 12) ? 12 - n % 12 : 0 ;
1738                         this.setFullYear(this.getFullYear() - back_year);
1739                         return Date.brokenSetMonth.call(this, month);
1740                 } else {
1741                         return Date.brokenSetMonth.apply(this, arguments);
1742                 }
1743         };
1744 }
1745
1746 /** Date interval constant 
1747 * @static 
1748 * @type String */
1749 Date.MILLI = "ms";
1750 /** Date interval constant 
1751 * @static 
1752 * @type String */
1753 Date.SECOND = "s";
1754 /** Date interval constant 
1755 * @static 
1756 * @type String */
1757 Date.MINUTE = "mi";
1758 /** Date interval constant 
1759 * @static 
1760 * @type String */
1761 Date.HOUR = "h";
1762 /** Date interval constant 
1763 * @static 
1764 * @type String */
1765 Date.DAY = "d";
1766 /** Date interval constant 
1767 * @static 
1768 * @type String */
1769 Date.MONTH = "mo";
1770 /** Date interval constant 
1771 * @static 
1772 * @type String */
1773 Date.YEAR = "y";
1774
1775 /**
1776  * Provides a convenient method of performing basic date arithmetic.  This method
1777  * does not modify the Date instance being called - it creates and returns
1778  * a new Date instance containing the resulting date value.
1779  *
1780  * Examples:
1781  * <pre><code>
1782 //Basic usage:
1783 var dt = new Date('10/29/2006').add(Date.DAY, 5);
1784 document.write(dt); //returns 'Fri Oct 06 2006 00:00:00'
1785
1786 //Negative values will subtract correctly:
1787 var dt2 = new Date('10/1/2006').add(Date.DAY, -5);
1788 document.write(dt2); //returns 'Tue Sep 26 2006 00:00:00'
1789
1790 //You can even chain several calls together in one line!
1791 var dt3 = new Date('10/1/2006').add(Date.DAY, 5).add(Date.HOUR, 8).add(Date.MINUTE, -30);
1792 document.write(dt3); //returns 'Fri Oct 06 2006 07:30:00'
1793  </code></pre>
1794  *
1795  * @param {String} interval   A valid date interval enum value
1796  * @param {Number} value      The amount to add to the current date
1797  * @return {Date} The new Date instance
1798  */
1799 Date.prototype.add = function(interval, value){
1800   var d = this.clone();
1801   if (!interval || value === 0) { return d; }
1802   switch(interval.toLowerCase()){
1803     case Date.MILLI:
1804       d.setMilliseconds(this.getMilliseconds() + value);
1805       break;
1806     case Date.SECOND:
1807       d.setSeconds(this.getSeconds() + value);
1808       break;
1809     case Date.MINUTE:
1810       d.setMinutes(this.getMinutes() + value);
1811       break;
1812     case Date.HOUR:
1813       d.setHours(this.getHours() + value);
1814       break;
1815     case Date.DAY:
1816       d.setDate(this.getDate() + value);
1817       break;
1818     case Date.MONTH:
1819       var day = this.getDate();
1820       if(day > 28){
1821           day = Math.min(day, this.getFirstDateOfMonth().add('mo', value).getLastDateOfMonth().getDate());
1822       }
1823       d.setDate(day);
1824       d.setMonth(this.getMonth() + value);
1825       break;
1826     case Date.YEAR:
1827       d.setFullYear(this.getFullYear() + value);
1828       break;
1829   }
1830   return d;
1831 };
1832 /*
1833  * Based on:
1834  * Ext JS Library 1.1.1
1835  * Copyright(c) 2006-2007, Ext JS, LLC.
1836  *
1837  * Originally Released Under LGPL - original licence link has changed is not relivant.
1838  *
1839  * Fork - LGPL
1840  * <script type="text/javascript">
1841  */
1842
1843 /**
1844  * @class Roo.lib.Dom
1845  * @static
1846  * 
1847  * Dom utils (from YIU afaik)
1848  * 
1849  **/
1850 Roo.lib.Dom = {
1851     /**
1852      * Get the view width
1853      * @param {Boolean} full True will get the full document, otherwise it's the view width
1854      * @return {Number} The width
1855      */
1856      
1857     getViewWidth : function(full) {
1858         return full ? this.getDocumentWidth() : this.getViewportWidth();
1859     },
1860     /**
1861      * Get the view height
1862      * @param {Boolean} full True will get the full document, otherwise it's the view height
1863      * @return {Number} The height
1864      */
1865     getViewHeight : function(full) {
1866         return full ? this.getDocumentHeight() : this.getViewportHeight();
1867     },
1868
1869     getDocumentHeight: function() {
1870         var scrollHeight = (document.compatMode != "CSS1Compat") ? document.body.scrollHeight : document.documentElement.scrollHeight;
1871         return Math.max(scrollHeight, this.getViewportHeight());
1872     },
1873
1874     getDocumentWidth: function() {
1875         var scrollWidth = (document.compatMode != "CSS1Compat") ? document.body.scrollWidth : document.documentElement.scrollWidth;
1876         return Math.max(scrollWidth, this.getViewportWidth());
1877     },
1878
1879     getViewportHeight: function() {
1880         var height = self.innerHeight;
1881         var mode = document.compatMode;
1882
1883         if ((mode || Roo.isIE) && !Roo.isOpera) {
1884             height = (mode == "CSS1Compat") ?
1885                      document.documentElement.clientHeight :
1886                      document.body.clientHeight;
1887         }
1888
1889         return height;
1890     },
1891
1892     getViewportWidth: function() {
1893         var width = self.innerWidth;
1894         var mode = document.compatMode;
1895
1896         if (mode || Roo.isIE) {
1897             width = (mode == "CSS1Compat") ?
1898                     document.documentElement.clientWidth :
1899                     document.body.clientWidth;
1900         }
1901         return width;
1902     },
1903
1904     isAncestor : function(p, c) {
1905         p = Roo.getDom(p);
1906         c = Roo.getDom(c);
1907         if (!p || !c) {
1908             return false;
1909         }
1910
1911         if (p.contains && !Roo.isSafari) {
1912             return p.contains(c);
1913         } else if (p.compareDocumentPosition) {
1914             return !!(p.compareDocumentPosition(c) & 16);
1915         } else {
1916             var parent = c.parentNode;
1917             while (parent) {
1918                 if (parent == p) {
1919                     return true;
1920                 }
1921                 else if (!parent.tagName || parent.tagName.toUpperCase() == "HTML") {
1922                     return false;
1923                 }
1924                 parent = parent.parentNode;
1925             }
1926             return false;
1927         }
1928     },
1929
1930     getRegion : function(el) {
1931         return Roo.lib.Region.getRegion(el);
1932     },
1933
1934     getY : function(el) {
1935         return this.getXY(el)[1];
1936     },
1937
1938     getX : function(el) {
1939         return this.getXY(el)[0];
1940     },
1941
1942     getXY : function(el) {
1943         var p, pe, b, scroll, bd = document.body;
1944         el = Roo.getDom(el);
1945         var fly = Roo.lib.AnimBase.fly;
1946         if (el.getBoundingClientRect) {
1947             b = el.getBoundingClientRect();
1948             scroll = fly(document).getScroll();
1949             return [b.left + scroll.left, b.top + scroll.top];
1950         }
1951         var x = 0, y = 0;
1952
1953         p = el;
1954
1955         var hasAbsolute = fly(el).getStyle("position") == "absolute";
1956
1957         while (p) {
1958
1959             x += p.offsetLeft;
1960             y += p.offsetTop;
1961
1962             if (!hasAbsolute && fly(p).getStyle("position") == "absolute") {
1963                 hasAbsolute = true;
1964             }
1965
1966             if (Roo.isGecko) {
1967                 pe = fly(p);
1968
1969                 var bt = parseInt(pe.getStyle("borderTopWidth"), 10) || 0;
1970                 var bl = parseInt(pe.getStyle("borderLeftWidth"), 10) || 0;
1971
1972
1973                 x += bl;
1974                 y += bt;
1975
1976
1977                 if (p != el && pe.getStyle('overflow') != 'visible') {
1978                     x += bl;
1979                     y += bt;
1980                 }
1981             }
1982             p = p.offsetParent;
1983         }
1984
1985         if (Roo.isSafari && hasAbsolute) {
1986             x -= bd.offsetLeft;
1987             y -= bd.offsetTop;
1988         }
1989
1990         if (Roo.isGecko && !hasAbsolute) {
1991             var dbd = fly(bd);
1992             x += parseInt(dbd.getStyle("borderLeftWidth"), 10) || 0;
1993             y += parseInt(dbd.getStyle("borderTopWidth"), 10) || 0;
1994         }
1995
1996         p = el.parentNode;
1997         while (p && p != bd) {
1998             if (!Roo.isOpera || (p.tagName != 'TR' && fly(p).getStyle("display") != "inline")) {
1999                 x -= p.scrollLeft;
2000                 y -= p.scrollTop;
2001             }
2002             p = p.parentNode;
2003         }
2004         return [x, y];
2005     },
2006  
2007   
2008
2009
2010     setXY : function(el, xy) {
2011         el = Roo.fly(el, '_setXY');
2012         el.position();
2013         var pts = el.translatePoints(xy);
2014         if (xy[0] !== false) {
2015             el.dom.style.left = pts.left + "px";
2016         }
2017         if (xy[1] !== false) {
2018             el.dom.style.top = pts.top + "px";
2019         }
2020     },
2021
2022     setX : function(el, x) {
2023         this.setXY(el, [x, false]);
2024     },
2025
2026     setY : function(el, y) {
2027         this.setXY(el, [false, y]);
2028     }
2029 };
2030 /*
2031  * Portions of this file are based on pieces of Yahoo User Interface Library
2032  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
2033  * YUI licensed under the BSD License:
2034  * http://developer.yahoo.net/yui/license.txt
2035  * <script type="text/javascript">
2036  *
2037  */
2038
2039 Roo.lib.Event = function() {
2040     var loadComplete = false;
2041     var listeners = [];
2042     var unloadListeners = [];
2043     var retryCount = 0;
2044     var onAvailStack = [];
2045     var counter = 0;
2046     var lastError = null;
2047
2048     return {
2049         POLL_RETRYS: 200,
2050         POLL_INTERVAL: 20,
2051         EL: 0,
2052         TYPE: 1,
2053         FN: 2,
2054         WFN: 3,
2055         OBJ: 3,
2056         ADJ_SCOPE: 4,
2057         _interval: null,
2058
2059         startInterval: function() {
2060             if (!this._interval) {
2061                 var self = this;
2062                 var callback = function() {
2063                     self._tryPreloadAttach();
2064                 };
2065                 this._interval = setInterval(callback, this.POLL_INTERVAL);
2066
2067             }
2068         },
2069
2070         onAvailable: function(p_id, p_fn, p_obj, p_override) {
2071             onAvailStack.push({ id:         p_id,
2072                 fn:         p_fn,
2073                 obj:        p_obj,
2074                 override:   p_override,
2075                 checkReady: false    });
2076
2077             retryCount = this.POLL_RETRYS;
2078             this.startInterval();
2079         },
2080
2081
2082         addListener: function(el, eventName, fn) {
2083             el = Roo.getDom(el);
2084             if (!el || !fn) {
2085                 return false;
2086             }
2087
2088             if ("unload" == eventName) {
2089                 unloadListeners[unloadListeners.length] =
2090                 [el, eventName, fn];
2091                 return true;
2092             }
2093
2094             var wrappedFn = function(e) {
2095                 return fn(Roo.lib.Event.getEvent(e));
2096             };
2097
2098             var li = [el, eventName, fn, wrappedFn];
2099
2100             var index = listeners.length;
2101             listeners[index] = li;
2102
2103             this.doAdd(el, eventName, wrappedFn, false);
2104             return true;
2105
2106         },
2107
2108
2109         removeListener: function(el, eventName, fn) {
2110             var i, len;
2111
2112             el = Roo.getDom(el);
2113
2114             if(!fn) {
2115                 return this.purgeElement(el, false, eventName);
2116             }
2117
2118
2119             if ("unload" == eventName) {
2120
2121                 for (i = 0,len = unloadListeners.length; i < len; i++) {
2122                     var li = unloadListeners[i];
2123                     if (li &&
2124                         li[0] == el &&
2125                         li[1] == eventName &&
2126                         li[2] == fn) {
2127                         unloadListeners.splice(i, 1);
2128                         return true;
2129                     }
2130                 }
2131
2132                 return false;
2133             }
2134
2135             var cacheItem = null;
2136
2137
2138             var index = arguments[3];
2139
2140             if ("undefined" == typeof index) {
2141                 index = this._getCacheIndex(el, eventName, fn);
2142             }
2143
2144             if (index >= 0) {
2145                 cacheItem = listeners[index];
2146             }
2147
2148             if (!el || !cacheItem) {
2149                 return false;
2150             }
2151
2152             this.doRemove(el, eventName, cacheItem[this.WFN], false);
2153
2154             delete listeners[index][this.WFN];
2155             delete listeners[index][this.FN];
2156             listeners.splice(index, 1);
2157
2158             return true;
2159
2160         },
2161
2162
2163         getTarget: function(ev, resolveTextNode) {
2164             ev = ev.browserEvent || ev;
2165             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2166             var t = ev.target || ev.srcElement;
2167             return this.resolveTextNode(t);
2168         },
2169
2170
2171         resolveTextNode: function(node) {
2172             if (Roo.isSafari && node && 3 == node.nodeType) {
2173                 return node.parentNode;
2174             } else {
2175                 return node;
2176             }
2177         },
2178
2179
2180         getPageX: function(ev) {
2181             ev = ev.browserEvent || ev;
2182             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2183             var x = ev.pageX;
2184             if (!x && 0 !== x) {
2185                 x = ev.clientX || 0;
2186
2187                 if (Roo.isIE) {
2188                     x += this.getScroll()[1];
2189                 }
2190             }
2191
2192             return x;
2193         },
2194
2195
2196         getPageY: function(ev) {
2197             ev = ev.browserEvent || ev;
2198             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2199             var y = ev.pageY;
2200             if (!y && 0 !== y) {
2201                 y = ev.clientY || 0;
2202
2203                 if (Roo.isIE) {
2204                     y += this.getScroll()[0];
2205                 }
2206             }
2207
2208
2209             return y;
2210         },
2211
2212
2213         getXY: function(ev) {
2214             ev = ev.browserEvent || ev;
2215             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2216             return [this.getPageX(ev), this.getPageY(ev)];
2217         },
2218
2219
2220         getRelatedTarget: function(ev) {
2221             ev = ev.browserEvent || ev;
2222             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2223             var t = ev.relatedTarget;
2224             if (!t) {
2225                 if (ev.type == "mouseout") {
2226                     t = ev.toElement;
2227                 } else if (ev.type == "mouseover") {
2228                     t = ev.fromElement;
2229                 }
2230             }
2231
2232             return this.resolveTextNode(t);
2233         },
2234
2235
2236         getTime: function(ev) {
2237             ev = ev.browserEvent || ev;
2238             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2239             if (!ev.time) {
2240                 var t = new Date().getTime();
2241                 try {
2242                     ev.time = t;
2243                 } catch(ex) {
2244                     this.lastError = ex;
2245                     return t;
2246                 }
2247             }
2248
2249             return ev.time;
2250         },
2251
2252
2253         stopEvent: function(ev) {
2254             this.stopPropagation(ev);
2255             this.preventDefault(ev);
2256         },
2257
2258
2259         stopPropagation: function(ev) {
2260             ev = ev.browserEvent || ev;
2261             if (ev.stopPropagation) {
2262                 ev.stopPropagation();
2263             } else {
2264                 ev.cancelBubble = true;
2265             }
2266         },
2267
2268
2269         preventDefault: function(ev) {
2270             ev = ev.browserEvent || ev;
2271             if(ev.preventDefault) {
2272                 ev.preventDefault();
2273             } else {
2274                 ev.returnValue = false;
2275             }
2276         },
2277
2278
2279         getEvent: function(e) {
2280             var ev = e || window.event;
2281             if (!ev) {
2282                 var c = this.getEvent.caller;
2283                 while (c) {
2284                     ev = c.arguments[0];
2285                     if (ev && Event == ev.constructor) {
2286                         break;
2287                     }
2288                     c = c.caller;
2289                 }
2290             }
2291             return ev;
2292         },
2293
2294
2295         getCharCode: function(ev) {
2296             ev = ev.browserEvent || ev;
2297             return ev.charCode || ev.keyCode || 0;
2298         },
2299
2300
2301         _getCacheIndex: function(el, eventName, fn) {
2302             for (var i = 0,len = listeners.length; i < len; ++i) {
2303                 var li = listeners[i];
2304                 if (li &&
2305                     li[this.FN] == fn &&
2306                     li[this.EL] == el &&
2307                     li[this.TYPE] == eventName) {
2308                     return i;
2309                 }
2310             }
2311
2312             return -1;
2313         },
2314
2315
2316         elCache: {},
2317
2318
2319         getEl: function(id) {
2320             return document.getElementById(id);
2321         },
2322
2323
2324         clearCache: function() {
2325         },
2326
2327
2328         _load: function(e) {
2329             loadComplete = true;
2330             var EU = Roo.lib.Event;
2331
2332
2333             if (Roo.isIE) {
2334                 EU.doRemove(window, "load", EU._load);
2335             }
2336         },
2337
2338
2339         _tryPreloadAttach: function() {
2340
2341             if (this.locked) {
2342                 return false;
2343             }
2344
2345             this.locked = true;
2346
2347
2348             var tryAgain = !loadComplete;
2349             if (!tryAgain) {
2350                 tryAgain = (retryCount > 0);
2351             }
2352
2353
2354             var notAvail = [];
2355             for (var i = 0,len = onAvailStack.length; i < len; ++i) {
2356                 var item = onAvailStack[i];
2357                 if (item) {
2358                     var el = this.getEl(item.id);
2359
2360                     if (el) {
2361                         if (!item.checkReady ||
2362                             loadComplete ||
2363                             el.nextSibling ||
2364                             (document && document.body)) {
2365
2366                             var scope = el;
2367                             if (item.override) {
2368                                 if (item.override === true) {
2369                                     scope = item.obj;
2370                                 } else {
2371                                     scope = item.override;
2372                                 }
2373                             }
2374                             item.fn.call(scope, item.obj);
2375                             onAvailStack[i] = null;
2376                         }
2377                     } else {
2378                         notAvail.push(item);
2379                     }
2380                 }
2381             }
2382
2383             retryCount = (notAvail.length === 0) ? 0 : retryCount - 1;
2384
2385             if (tryAgain) {
2386
2387                 this.startInterval();
2388             } else {
2389                 clearInterval(this._interval);
2390                 this._interval = null;
2391             }
2392
2393             this.locked = false;
2394
2395             return true;
2396
2397         },
2398
2399
2400         purgeElement: function(el, recurse, eventName) {
2401             var elListeners = this.getListeners(el, eventName);
2402             if (elListeners) {
2403                 for (var i = 0,len = elListeners.length; i < len; ++i) {
2404                     var l = elListeners[i];
2405                     this.removeListener(el, l.type, l.fn);
2406                 }
2407             }
2408
2409             if (recurse && el && el.childNodes) {
2410                 for (i = 0,len = el.childNodes.length; i < len; ++i) {
2411                     this.purgeElement(el.childNodes[i], recurse, eventName);
2412                 }
2413             }
2414         },
2415
2416
2417         getListeners: function(el, eventName) {
2418             var results = [], searchLists;
2419             if (!eventName) {
2420                 searchLists = [listeners, unloadListeners];
2421             } else if (eventName == "unload") {
2422                 searchLists = [unloadListeners];
2423             } else {
2424                 searchLists = [listeners];
2425             }
2426
2427             for (var j = 0; j < searchLists.length; ++j) {
2428                 var searchList = searchLists[j];
2429                 if (searchList && searchList.length > 0) {
2430                     for (var i = 0,len = searchList.length; i < len; ++i) {
2431                         var l = searchList[i];
2432                         if (l && l[this.EL] === el &&
2433                             (!eventName || eventName === l[this.TYPE])) {
2434                             results.push({
2435                                 type:   l[this.TYPE],
2436                                 fn:     l[this.FN],
2437                                 obj:    l[this.OBJ],
2438                                 adjust: l[this.ADJ_SCOPE],
2439                                 index:  i
2440                             });
2441                         }
2442                     }
2443                 }
2444             }
2445
2446             return (results.length) ? results : null;
2447         },
2448
2449
2450         _unload: function(e) {
2451
2452             var EU = Roo.lib.Event, i, j, l, len, index;
2453
2454             for (i = 0,len = unloadListeners.length; i < len; ++i) {
2455                 l = unloadListeners[i];
2456                 if (l) {
2457                     var scope = window;
2458                     if (l[EU.ADJ_SCOPE]) {
2459                         if (l[EU.ADJ_SCOPE] === true) {
2460                             scope = l[EU.OBJ];
2461                         } else {
2462                             scope = l[EU.ADJ_SCOPE];
2463                         }
2464                     }
2465                     l[EU.FN].call(scope, EU.getEvent(e), l[EU.OBJ]);
2466                     unloadListeners[i] = null;
2467                     l = null;
2468                     scope = null;
2469                 }
2470             }
2471
2472             unloadListeners = null;
2473
2474             if (listeners && listeners.length > 0) {
2475                 j = listeners.length;
2476                 while (j) {
2477                     index = j - 1;
2478                     l = listeners[index];
2479                     if (l) {
2480                         EU.removeListener(l[EU.EL], l[EU.TYPE],
2481                                 l[EU.FN], index);
2482                     }
2483                     j = j - 1;
2484                 }
2485                 l = null;
2486
2487                 EU.clearCache();
2488             }
2489
2490             EU.doRemove(window, "unload", EU._unload);
2491
2492         },
2493
2494
2495         getScroll: function() {
2496             var dd = document.documentElement, db = document.body;
2497             if (dd && (dd.scrollTop || dd.scrollLeft)) {
2498                 return [dd.scrollTop, dd.scrollLeft];
2499             } else if (db) {
2500                 return [db.scrollTop, db.scrollLeft];
2501             } else {
2502                 return [0, 0];
2503             }
2504         },
2505
2506
2507         doAdd: function () {
2508             if (window.addEventListener) {
2509                 return function(el, eventName, fn, capture) {
2510                     el.addEventListener(eventName, fn, (capture));
2511                 };
2512             } else if (window.attachEvent) {
2513                 return function(el, eventName, fn, capture) {
2514                     el.attachEvent("on" + eventName, fn);
2515                 };
2516             } else {
2517                 return function() {
2518                 };
2519             }
2520         }(),
2521
2522
2523         doRemove: function() {
2524             if (window.removeEventListener) {
2525                 return function (el, eventName, fn, capture) {
2526                     el.removeEventListener(eventName, fn, (capture));
2527                 };
2528             } else if (window.detachEvent) {
2529                 return function (el, eventName, fn) {
2530                     el.detachEvent("on" + eventName, fn);
2531                 };
2532             } else {
2533                 return function() {
2534                 };
2535             }
2536         }()
2537     };
2538     
2539 }();
2540 (function() {     
2541    
2542     var E = Roo.lib.Event;
2543     E.on = E.addListener;
2544     E.un = E.removeListener;
2545
2546     if (document && document.body) {
2547         E._load();
2548     } else {
2549         E.doAdd(window, "load", E._load);
2550     }
2551     E.doAdd(window, "unload", E._unload);
2552     E._tryPreloadAttach();
2553 })();
2554
2555 /*
2556  * Portions of this file are based on pieces of Yahoo User Interface Library
2557  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
2558  * YUI licensed under the BSD License:
2559  * http://developer.yahoo.net/yui/license.txt
2560  * <script type="text/javascript">
2561  *
2562  */
2563
2564 (function() {
2565     /**
2566      * @class Roo.lib.Ajax
2567      *
2568      */
2569     Roo.lib.Ajax = {
2570         /**
2571          * @static 
2572          */
2573         request : function(method, uri, cb, data, options) {
2574             if(options){
2575                 var hs = options.headers;
2576                 if(hs){
2577                     for(var h in hs){
2578                         if(hs.hasOwnProperty(h)){
2579                             this.initHeader(h, hs[h], false);
2580                         }
2581                     }
2582                 }
2583                 if(options.xmlData){
2584                     this.initHeader('Content-Type', 'text/xml', false);
2585                     method = 'POST';
2586                     data = options.xmlData;
2587                 }
2588             }
2589
2590             return this.asyncRequest(method, uri, cb, data);
2591         },
2592
2593         serializeForm : function(form) {
2594             if(typeof form == 'string') {
2595                 form = (document.getElementById(form) || document.forms[form]);
2596             }
2597
2598             var el, name, val, disabled, data = '', hasSubmit = false;
2599             for (var i = 0; i < form.elements.length; i++) {
2600                 el = form.elements[i];
2601                 disabled = form.elements[i].disabled;
2602                 name = form.elements[i].name;
2603                 val = form.elements[i].value;
2604
2605                 if (!disabled && name){
2606                     switch (el.type)
2607                             {
2608                         case 'select-one':
2609                         case 'select-multiple':
2610                             for (var j = 0; j < el.options.length; j++) {
2611                                 if (el.options[j].selected) {
2612                                     if (Roo.isIE) {
2613                                         data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(el.options[j].attributes['value'].specified ? el.options[j].value : el.options[j].text) + '&';
2614                                     }
2615                                     else {
2616                                         data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(el.options[j].hasAttribute('value') ? el.options[j].value : el.options[j].text) + '&';
2617                                     }
2618                                 }
2619                             }
2620                             break;
2621                         case 'radio':
2622                         case 'checkbox':
2623                             if (el.checked) {
2624                                 data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(val) + '&';
2625                             }
2626                             break;
2627                         case 'file':
2628
2629                         case undefined:
2630
2631                         case 'reset':
2632
2633                         case 'button':
2634
2635                             break;
2636                         case 'submit':
2637                             if(hasSubmit == false) {
2638                                 data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(val) + '&';
2639                                 hasSubmit = true;
2640                             }
2641                             break;
2642                         default:
2643                             data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(val) + '&';
2644                             break;
2645                     }
2646                 }
2647             }
2648             data = data.substr(0, data.length - 1);
2649             return data;
2650         },
2651
2652         headers:{},
2653
2654         hasHeaders:false,
2655
2656         useDefaultHeader:true,
2657
2658         defaultPostHeader:'application/x-www-form-urlencoded',
2659
2660         useDefaultXhrHeader:true,
2661
2662         defaultXhrHeader:'XMLHttpRequest',
2663
2664         hasDefaultHeaders:true,
2665
2666         defaultHeaders:{},
2667
2668         poll:{},
2669
2670         timeout:{},
2671
2672         pollInterval:50,
2673
2674         transactionId:0,
2675
2676         setProgId:function(id)
2677         {
2678             this.activeX.unshift(id);
2679         },
2680
2681         setDefaultPostHeader:function(b)
2682         {
2683             this.useDefaultHeader = b;
2684         },
2685
2686         setDefaultXhrHeader:function(b)
2687         {
2688             this.useDefaultXhrHeader = b;
2689         },
2690
2691         setPollingInterval:function(i)
2692         {
2693             if (typeof i == 'number' && isFinite(i)) {
2694                 this.pollInterval = i;
2695             }
2696         },
2697
2698         createXhrObject:function(transactionId)
2699         {
2700             var obj,http;
2701             try
2702             {
2703
2704                 http = new XMLHttpRequest();
2705
2706                 obj = { conn:http, tId:transactionId };
2707             }
2708             catch(e)
2709             {
2710                 for (var i = 0; i < this.activeX.length; ++i) {
2711                     try
2712                     {
2713
2714                         http = new ActiveXObject(this.activeX[i]);
2715
2716                         obj = { conn:http, tId:transactionId };
2717                         break;
2718                     }
2719                     catch(e) {
2720                     }
2721                 }
2722             }
2723             finally
2724             {
2725                 return obj;
2726             }
2727         },
2728
2729         getConnectionObject:function()
2730         {
2731             var o;
2732             var tId = this.transactionId;
2733
2734             try
2735             {
2736                 o = this.createXhrObject(tId);
2737                 if (o) {
2738                     this.transactionId++;
2739                 }
2740             }
2741             catch(e) {
2742             }
2743             finally
2744             {
2745                 return o;
2746             }
2747         },
2748
2749         asyncRequest:function(method, uri, callback, postData)
2750         {
2751             var o = this.getConnectionObject();
2752
2753             if (!o) {
2754                 return null;
2755             }
2756             else {
2757                 o.conn.open(method, uri, true);
2758
2759                 if (this.useDefaultXhrHeader) {
2760                     if (!this.defaultHeaders['X-Requested-With']) {
2761                         this.initHeader('X-Requested-With', this.defaultXhrHeader, true);
2762                     }
2763                 }
2764
2765                 if(postData && this.useDefaultHeader){
2766                     this.initHeader('Content-Type', this.defaultPostHeader);
2767                 }
2768
2769                  if (this.hasDefaultHeaders || this.hasHeaders) {
2770                     this.setHeader(o);
2771                 }
2772
2773                 this.handleReadyState(o, callback);
2774                 o.conn.send(postData || null);
2775
2776                 return o;
2777             }
2778         },
2779
2780         handleReadyState:function(o, callback)
2781         {
2782             var oConn = this;
2783
2784             if (callback && callback.timeout) {
2785                 
2786                 this.timeout[o.tId] = window.setTimeout(function() {
2787                     oConn.abort(o, callback, true);
2788                 }, callback.timeout);
2789             }
2790
2791             this.poll[o.tId] = window.setInterval(
2792                     function() {
2793                         if (o.conn && o.conn.readyState == 4) {
2794                             window.clearInterval(oConn.poll[o.tId]);
2795                             delete oConn.poll[o.tId];
2796
2797                             if(callback && callback.timeout) {
2798                                 window.clearTimeout(oConn.timeout[o.tId]);
2799                                 delete oConn.timeout[o.tId];
2800                             }
2801
2802                             oConn.handleTransactionResponse(o, callback);
2803                         }
2804                     }
2805                     , this.pollInterval);
2806         },
2807
2808         handleTransactionResponse:function(o, callback, isAbort)
2809         {
2810
2811             if (!callback) {
2812                 this.releaseObject(o);
2813                 return;
2814             }
2815
2816             var httpStatus, responseObject;
2817
2818             try
2819             {
2820                 if (o.conn.status !== undefined && o.conn.status != 0) {
2821                     httpStatus = o.conn.status;
2822                 }
2823                 else {
2824                     httpStatus = 13030;
2825                 }
2826             }
2827             catch(e) {
2828
2829
2830                 httpStatus = 13030;
2831             }
2832
2833             if (httpStatus >= 200 && httpStatus < 300) {
2834                 responseObject = this.createResponseObject(o, callback.argument);
2835                 if (callback.success) {
2836                     if (!callback.scope) {
2837                         callback.success(responseObject);
2838                     }
2839                     else {
2840
2841
2842                         callback.success.apply(callback.scope, [responseObject]);
2843                     }
2844                 }
2845             }
2846             else {
2847                 switch (httpStatus) {
2848
2849                     case 12002:
2850                     case 12029:
2851                     case 12030:
2852                     case 12031:
2853                     case 12152:
2854                     case 13030:
2855                         responseObject = this.createExceptionObject(o.tId, callback.argument, (isAbort ? isAbort : false));
2856                         if (callback.failure) {
2857                             if (!callback.scope) {
2858                                 callback.failure(responseObject);
2859                             }
2860                             else {
2861                                 callback.failure.apply(callback.scope, [responseObject]);
2862                             }
2863                         }
2864                         break;
2865                     default:
2866                         responseObject = this.createResponseObject(o, callback.argument);
2867                         if (callback.failure) {
2868                             if (!callback.scope) {
2869                                 callback.failure(responseObject);
2870                             }
2871                             else {
2872                                 callback.failure.apply(callback.scope, [responseObject]);
2873                             }
2874                         }
2875                 }
2876             }
2877
2878             this.releaseObject(o);
2879             responseObject = null;
2880         },
2881
2882         createResponseObject:function(o, callbackArg)
2883         {
2884             var obj = {};
2885             var headerObj = {};
2886
2887             try
2888             {
2889                 var headerStr = o.conn.getAllResponseHeaders();
2890                 var header = headerStr.split('\n');
2891                 for (var i = 0; i < header.length; i++) {
2892                     var delimitPos = header[i].indexOf(':');
2893                     if (delimitPos != -1) {
2894                         headerObj[header[i].substring(0, delimitPos)] = header[i].substring(delimitPos + 2);
2895                     }
2896                 }
2897             }
2898             catch(e) {
2899             }
2900
2901             obj.tId = o.tId;
2902             obj.status = o.conn.status;
2903             obj.statusText = o.conn.statusText;
2904             obj.getResponseHeader = headerObj;
2905             obj.getAllResponseHeaders = headerStr;
2906             obj.responseText = o.conn.responseText;
2907             obj.responseXML = o.conn.responseXML;
2908
2909             if (typeof callbackArg !== undefined) {
2910                 obj.argument = callbackArg;
2911             }
2912
2913             return obj;
2914         },
2915
2916         createExceptionObject:function(tId, callbackArg, isAbort)
2917         {
2918             var COMM_CODE = 0;
2919             var COMM_ERROR = 'communication failure';
2920             var ABORT_CODE = -1;
2921             var ABORT_ERROR = 'transaction aborted';
2922
2923             var obj = {};
2924
2925             obj.tId = tId;
2926             if (isAbort) {
2927                 obj.status = ABORT_CODE;
2928                 obj.statusText = ABORT_ERROR;
2929             }
2930             else {
2931                 obj.status = COMM_CODE;
2932                 obj.statusText = COMM_ERROR;
2933             }
2934
2935             if (callbackArg) {
2936                 obj.argument = callbackArg;
2937             }
2938
2939             return obj;
2940         },
2941
2942         initHeader:function(label, value, isDefault)
2943         {
2944             var headerObj = (isDefault) ? this.defaultHeaders : this.headers;
2945
2946             if (headerObj[label] === undefined) {
2947                 headerObj[label] = value;
2948             }
2949             else {
2950
2951
2952                 headerObj[label] = value + "," + headerObj[label];
2953             }
2954
2955             if (isDefault) {
2956                 this.hasDefaultHeaders = true;
2957             }
2958             else {
2959                 this.hasHeaders = true;
2960             }
2961         },
2962
2963
2964         setHeader:function(o)
2965         {
2966             if (this.hasDefaultHeaders) {
2967                 for (var prop in this.defaultHeaders) {
2968                     if (this.defaultHeaders.hasOwnProperty(prop)) {
2969                         o.conn.setRequestHeader(prop, this.defaultHeaders[prop]);
2970                     }
2971                 }
2972             }
2973
2974             if (this.hasHeaders) {
2975                 for (var prop in this.headers) {
2976                     if (this.headers.hasOwnProperty(prop)) {
2977                         o.conn.setRequestHeader(prop, this.headers[prop]);
2978                     }
2979                 }
2980                 this.headers = {};
2981                 this.hasHeaders = false;
2982             }
2983         },
2984
2985         resetDefaultHeaders:function() {
2986             delete this.defaultHeaders;
2987             this.defaultHeaders = {};
2988             this.hasDefaultHeaders = false;
2989         },
2990
2991         abort:function(o, callback, isTimeout)
2992         {
2993             if(this.isCallInProgress(o)) {
2994                 o.conn.abort();
2995                 window.clearInterval(this.poll[o.tId]);
2996                 delete this.poll[o.tId];
2997                 if (isTimeout) {
2998                     delete this.timeout[o.tId];
2999                 }
3000
3001                 this.handleTransactionResponse(o, callback, true);
3002
3003                 return true;
3004             }
3005             else {
3006                 return false;
3007             }
3008         },
3009
3010
3011         isCallInProgress:function(o)
3012         {
3013             if (o && o.conn) {
3014                 return o.conn.readyState != 4 && o.conn.readyState != 0;
3015             }
3016             else {
3017
3018                 return false;
3019             }
3020         },
3021
3022
3023         releaseObject:function(o)
3024         {
3025
3026             o.conn = null;
3027
3028             o = null;
3029         },
3030
3031         activeX:[
3032         'MSXML2.XMLHTTP.3.0',
3033         'MSXML2.XMLHTTP',
3034         'Microsoft.XMLHTTP'
3035         ]
3036
3037
3038     };
3039 })();/*
3040  * Portions of this file are based on pieces of Yahoo User Interface Library
3041  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3042  * YUI licensed under the BSD License:
3043  * http://developer.yahoo.net/yui/license.txt
3044  * <script type="text/javascript">
3045  *
3046  */
3047
3048 Roo.lib.Region = function(t, r, b, l) {
3049     this.top = t;
3050     this[1] = t;
3051     this.right = r;
3052     this.bottom = b;
3053     this.left = l;
3054     this[0] = l;
3055 };
3056
3057
3058 Roo.lib.Region.prototype = {
3059     contains : function(region) {
3060         return ( region.left >= this.left &&
3061                  region.right <= this.right &&
3062                  region.top >= this.top &&
3063                  region.bottom <= this.bottom    );
3064
3065     },
3066
3067     getArea : function() {
3068         return ( (this.bottom - this.top) * (this.right - this.left) );
3069     },
3070
3071     intersect : function(region) {
3072         var t = Math.max(this.top, region.top);
3073         var r = Math.min(this.right, region.right);
3074         var b = Math.min(this.bottom, region.bottom);
3075         var l = Math.max(this.left, region.left);
3076
3077         if (b >= t && r >= l) {
3078             return new Roo.lib.Region(t, r, b, l);
3079         } else {
3080             return null;
3081         }
3082     },
3083     union : function(region) {
3084         var t = Math.min(this.top, region.top);
3085         var r = Math.max(this.right, region.right);
3086         var b = Math.max(this.bottom, region.bottom);
3087         var l = Math.min(this.left, region.left);
3088
3089         return new Roo.lib.Region(t, r, b, l);
3090     },
3091
3092     adjust : function(t, l, b, r) {
3093         this.top += t;
3094         this.left += l;
3095         this.right += r;
3096         this.bottom += b;
3097         return this;
3098     }
3099 };
3100
3101 Roo.lib.Region.getRegion = function(el) {
3102     var p = Roo.lib.Dom.getXY(el);
3103
3104     var t = p[1];
3105     var r = p[0] + el.offsetWidth;
3106     var b = p[1] + el.offsetHeight;
3107     var l = p[0];
3108
3109     return new Roo.lib.Region(t, r, b, l);
3110 };
3111 /*
3112  * Portions of this file are based on pieces of Yahoo User Interface Library
3113  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3114  * YUI licensed under the BSD License:
3115  * http://developer.yahoo.net/yui/license.txt
3116  * <script type="text/javascript">
3117  *
3118  */
3119 //@@dep Roo.lib.Region
3120
3121
3122 Roo.lib.Point = function(x, y) {
3123     if (x instanceof Array) {
3124         y = x[1];
3125         x = x[0];
3126     }
3127     this.x = this.right = this.left = this[0] = x;
3128     this.y = this.top = this.bottom = this[1] = y;
3129 };
3130
3131 Roo.lib.Point.prototype = new Roo.lib.Region();
3132 /*
3133  * Portions of this file are based on pieces of Yahoo User Interface Library
3134  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3135  * YUI licensed under the BSD License:
3136  * http://developer.yahoo.net/yui/license.txt
3137  * <script type="text/javascript">
3138  *
3139  */
3140  
3141 (function() {   
3142
3143     Roo.lib.Anim = {
3144         scroll : function(el, args, duration, easing, cb, scope) {
3145             this.run(el, args, duration, easing, cb, scope, Roo.lib.Scroll);
3146         },
3147
3148         motion : function(el, args, duration, easing, cb, scope) {
3149             this.run(el, args, duration, easing, cb, scope, Roo.lib.Motion);
3150         },
3151
3152         color : function(el, args, duration, easing, cb, scope) {
3153             this.run(el, args, duration, easing, cb, scope, Roo.lib.ColorAnim);
3154         },
3155
3156         run : function(el, args, duration, easing, cb, scope, type) {
3157             type = type || Roo.lib.AnimBase;
3158             if (typeof easing == "string") {
3159                 easing = Roo.lib.Easing[easing];
3160             }
3161             var anim = new type(el, args, duration, easing);
3162             anim.animateX(function() {
3163                 Roo.callback(cb, scope);
3164             });
3165             return anim;
3166         }
3167     };
3168 })();/*
3169  * Portions of this file are based on pieces of Yahoo User Interface Library
3170  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3171  * YUI licensed under the BSD License:
3172  * http://developer.yahoo.net/yui/license.txt
3173  * <script type="text/javascript">
3174  *
3175  */
3176
3177 (function() {    
3178     var libFlyweight;
3179     
3180     function fly(el) {
3181         if (!libFlyweight) {
3182             libFlyweight = new Roo.Element.Flyweight();
3183         }
3184         libFlyweight.dom = el;
3185         return libFlyweight;
3186     }
3187
3188     // since this uses fly! - it cant be in DOM (which does not have fly yet..)
3189     
3190    
3191     
3192     Roo.lib.AnimBase = function(el, attributes, duration, method) {
3193         if (el) {
3194             this.init(el, attributes, duration, method);
3195         }
3196     };
3197
3198     Roo.lib.AnimBase.fly = fly;
3199     
3200     
3201     
3202     Roo.lib.AnimBase.prototype = {
3203
3204         toString: function() {
3205             var el = this.getEl();
3206             var id = el.id || el.tagName;
3207             return ("Anim " + id);
3208         },
3209
3210         patterns: {
3211             noNegatives:        /width|height|opacity|padding/i,
3212             offsetAttribute:  /^((width|height)|(top|left))$/,
3213             defaultUnit:        /width|height|top$|bottom$|left$|right$/i,
3214             offsetUnit:         /\d+(em|%|en|ex|pt|in|cm|mm|pc)$/i
3215         },
3216
3217
3218         doMethod: function(attr, start, end) {
3219             return this.method(this.currentFrame, start, end - start, this.totalFrames);
3220         },
3221
3222
3223         setAttribute: function(attr, val, unit) {
3224             if (this.patterns.noNegatives.test(attr)) {
3225                 val = (val > 0) ? val : 0;
3226             }
3227
3228             Roo.fly(this.getEl(), '_anim').setStyle(attr, val + unit);
3229         },
3230
3231
3232         getAttribute: function(attr) {
3233             var el = this.getEl();
3234             var val = fly(el).getStyle(attr);
3235
3236             if (val !== 'auto' && !this.patterns.offsetUnit.test(val)) {
3237                 return parseFloat(val);
3238             }
3239
3240             var a = this.patterns.offsetAttribute.exec(attr) || [];
3241             var pos = !!( a[3] );
3242             var box = !!( a[2] );
3243
3244
3245             if (box || (fly(el).getStyle('position') == 'absolute' && pos)) {
3246                 val = el['offset' + a[0].charAt(0).toUpperCase() + a[0].substr(1)];
3247             } else {
3248                 val = 0;
3249             }
3250
3251             return val;
3252         },
3253
3254
3255         getDefaultUnit: function(attr) {
3256             if (this.patterns.defaultUnit.test(attr)) {
3257                 return 'px';
3258             }
3259
3260             return '';
3261         },
3262
3263         animateX : function(callback, scope) {
3264             var f = function() {
3265                 this.onComplete.removeListener(f);
3266                 if (typeof callback == "function") {
3267                     callback.call(scope || this, this);
3268                 }
3269             };
3270             this.onComplete.addListener(f, this);
3271             this.animate();
3272         },
3273
3274
3275         setRuntimeAttribute: function(attr) {
3276             var start;
3277             var end;
3278             var attributes = this.attributes;
3279
3280             this.runtimeAttributes[attr] = {};
3281
3282             var isset = function(prop) {
3283                 return (typeof prop !== 'undefined');
3284             };
3285
3286             if (!isset(attributes[attr]['to']) && !isset(attributes[attr]['by'])) {
3287                 return false;
3288             }
3289
3290             start = ( isset(attributes[attr]['from']) ) ? attributes[attr]['from'] : this.getAttribute(attr);
3291
3292
3293             if (isset(attributes[attr]['to'])) {
3294                 end = attributes[attr]['to'];
3295             } else if (isset(attributes[attr]['by'])) {
3296                 if (start.constructor == Array) {
3297                     end = [];
3298                     for (var i = 0, len = start.length; i < len; ++i) {
3299                         end[i] = start[i] + attributes[attr]['by'][i];
3300                     }
3301                 } else {
3302                     end = start + attributes[attr]['by'];
3303                 }
3304             }
3305
3306             this.runtimeAttributes[attr].start = start;
3307             this.runtimeAttributes[attr].end = end;
3308
3309
3310             this.runtimeAttributes[attr].unit = ( isset(attributes[attr].unit) ) ? attributes[attr]['unit'] : this.getDefaultUnit(attr);
3311         },
3312
3313
3314         init: function(el, attributes, duration, method) {
3315
3316             var isAnimated = false;
3317
3318
3319             var startTime = null;
3320
3321
3322             var actualFrames = 0;
3323
3324
3325             el = Roo.getDom(el);
3326
3327
3328             this.attributes = attributes || {};
3329
3330
3331             this.duration = duration || 1;
3332
3333
3334             this.method = method || Roo.lib.Easing.easeNone;
3335
3336
3337             this.useSeconds = true;
3338
3339
3340             this.currentFrame = 0;
3341
3342
3343             this.totalFrames = Roo.lib.AnimMgr.fps;
3344
3345
3346             this.getEl = function() {
3347                 return el;
3348             };
3349
3350
3351             this.isAnimated = function() {
3352                 return isAnimated;
3353             };
3354
3355
3356             this.getStartTime = function() {
3357                 return startTime;
3358             };
3359
3360             this.runtimeAttributes = {};
3361
3362
3363             this.animate = function() {
3364                 if (this.isAnimated()) {
3365                     return false;
3366                 }
3367
3368                 this.currentFrame = 0;
3369
3370                 this.totalFrames = ( this.useSeconds ) ? Math.ceil(Roo.lib.AnimMgr.fps * this.duration) : this.duration;
3371
3372                 Roo.lib.AnimMgr.registerElement(this);
3373             };
3374
3375
3376             this.stop = function(finish) {
3377                 if (finish) {
3378                     this.currentFrame = this.totalFrames;
3379                     this._onTween.fire();
3380                 }
3381                 Roo.lib.AnimMgr.stop(this);
3382             };
3383
3384             var onStart = function() {
3385                 this.onStart.fire();
3386
3387                 this.runtimeAttributes = {};
3388                 for (var attr in this.attributes) {
3389                     this.setRuntimeAttribute(attr);
3390                 }
3391
3392                 isAnimated = true;
3393                 actualFrames = 0;
3394                 startTime = new Date();
3395             };
3396
3397
3398             var onTween = function() {
3399                 var data = {
3400                     duration: new Date() - this.getStartTime(),
3401                     currentFrame: this.currentFrame
3402                 };
3403
3404                 data.toString = function() {
3405                     return (
3406                             'duration: ' + data.duration +
3407                             ', currentFrame: ' + data.currentFrame
3408                             );
3409                 };
3410
3411                 this.onTween.fire(data);
3412
3413                 var runtimeAttributes = this.runtimeAttributes;
3414
3415                 for (var attr in runtimeAttributes) {
3416                     this.setAttribute(attr, this.doMethod(attr, runtimeAttributes[attr].start, runtimeAttributes[attr].end), runtimeAttributes[attr].unit);
3417                 }
3418
3419                 actualFrames += 1;
3420             };
3421
3422             var onComplete = function() {
3423                 var actual_duration = (new Date() - startTime) / 1000 ;
3424
3425                 var data = {
3426                     duration: actual_duration,
3427                     frames: actualFrames,
3428                     fps: actualFrames / actual_duration
3429                 };
3430
3431                 data.toString = function() {
3432                     return (
3433                             'duration: ' + data.duration +
3434                             ', frames: ' + data.frames +
3435                             ', fps: ' + data.fps
3436                             );
3437                 };
3438
3439                 isAnimated = false;
3440                 actualFrames = 0;
3441                 this.onComplete.fire(data);
3442             };
3443
3444
3445             this._onStart = new Roo.util.Event(this);
3446             this.onStart = new Roo.util.Event(this);
3447             this.onTween = new Roo.util.Event(this);
3448             this._onTween = new Roo.util.Event(this);
3449             this.onComplete = new Roo.util.Event(this);
3450             this._onComplete = new Roo.util.Event(this);
3451             this._onStart.addListener(onStart);
3452             this._onTween.addListener(onTween);
3453             this._onComplete.addListener(onComplete);
3454         }
3455     };
3456 })();
3457 /*
3458  * Portions of this file are based on pieces of Yahoo User Interface Library
3459  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3460  * YUI licensed under the BSD License:
3461  * http://developer.yahoo.net/yui/license.txt
3462  * <script type="text/javascript">
3463  *
3464  */
3465
3466 Roo.lib.AnimMgr = new function() {
3467
3468     var thread = null;
3469
3470
3471     var queue = [];
3472
3473
3474     var tweenCount = 0;
3475
3476
3477     this.fps = 1000;
3478
3479
3480     this.delay = 1;
3481
3482
3483     this.registerElement = function(tween) {
3484         queue[queue.length] = tween;
3485         tweenCount += 1;
3486         tween._onStart.fire();
3487         this.start();
3488     };
3489
3490
3491     this.unRegister = function(tween, index) {
3492         tween._onComplete.fire();
3493         index = index || getIndex(tween);
3494         if (index != -1) {
3495             queue.splice(index, 1);
3496         }
3497
3498         tweenCount -= 1;
3499         if (tweenCount <= 0) {
3500             this.stop();
3501         }
3502     };
3503
3504
3505     this.start = function() {
3506         if (thread === null) {
3507             thread = setInterval(this.run, this.delay);
3508         }
3509     };
3510
3511
3512     this.stop = function(tween) {
3513         if (!tween) {
3514             clearInterval(thread);
3515
3516             for (var i = 0, len = queue.length; i < len; ++i) {
3517                 if (queue[0].isAnimated()) {
3518                     this.unRegister(queue[0], 0);
3519                 }
3520             }
3521
3522             queue = [];
3523             thread = null;
3524             tweenCount = 0;
3525         }
3526         else {
3527             this.unRegister(tween);
3528         }
3529     };
3530
3531
3532     this.run = function() {
3533         for (var i = 0, len = queue.length; i < len; ++i) {
3534             var tween = queue[i];
3535             if (!tween || !tween.isAnimated()) {
3536                 continue;
3537             }
3538
3539             if (tween.currentFrame < tween.totalFrames || tween.totalFrames === null)
3540             {
3541                 tween.currentFrame += 1;
3542
3543                 if (tween.useSeconds) {
3544                     correctFrame(tween);
3545                 }
3546                 tween._onTween.fire();
3547             }
3548             else {
3549                 Roo.lib.AnimMgr.stop(tween, i);
3550             }
3551         }
3552     };
3553
3554     var getIndex = function(anim) {
3555         for (var i = 0, len = queue.length; i < len; ++i) {
3556             if (queue[i] == anim) {
3557                 return i;
3558             }
3559         }
3560         return -1;
3561     };
3562
3563
3564     var correctFrame = function(tween) {
3565         var frames = tween.totalFrames;
3566         var frame = tween.currentFrame;
3567         var expected = (tween.currentFrame * tween.duration * 1000 / tween.totalFrames);
3568         var elapsed = (new Date() - tween.getStartTime());
3569         var tweak = 0;
3570
3571         if (elapsed < tween.duration * 1000) {
3572             tweak = Math.round((elapsed / expected - 1) * tween.currentFrame);
3573         } else {
3574             tweak = frames - (frame + 1);
3575         }
3576         if (tweak > 0 && isFinite(tweak)) {
3577             if (tween.currentFrame + tweak >= frames) {
3578                 tweak = frames - (frame + 1);
3579             }
3580
3581             tween.currentFrame += tweak;
3582         }
3583     };
3584 };
3585
3586     /*
3587  * Portions of this file are based on pieces of Yahoo User Interface Library
3588  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3589  * YUI licensed under the BSD License:
3590  * http://developer.yahoo.net/yui/license.txt
3591  * <script type="text/javascript">
3592  *
3593  */
3594 Roo.lib.Bezier = new function() {
3595
3596         this.getPosition = function(points, t) {
3597             var n = points.length;
3598             var tmp = [];
3599
3600             for (var i = 0; i < n; ++i) {
3601                 tmp[i] = [points[i][0], points[i][1]];
3602             }
3603
3604             for (var j = 1; j < n; ++j) {
3605                 for (i = 0; i < n - j; ++i) {
3606                     tmp[i][0] = (1 - t) * tmp[i][0] + t * tmp[parseInt(i + 1, 10)][0];
3607                     tmp[i][1] = (1 - t) * tmp[i][1] + t * tmp[parseInt(i + 1, 10)][1];
3608                 }
3609             }
3610
3611             return [ tmp[0][0], tmp[0][1] ];
3612
3613         };
3614     };/*
3615  * Portions of this file are based on pieces of Yahoo User Interface Library
3616  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3617  * YUI licensed under the BSD License:
3618  * http://developer.yahoo.net/yui/license.txt
3619  * <script type="text/javascript">
3620  *
3621  */
3622 (function() {
3623
3624     Roo.lib.ColorAnim = function(el, attributes, duration, method) {
3625         Roo.lib.ColorAnim.superclass.constructor.call(this, el, attributes, duration, method);
3626     };
3627
3628     Roo.extend(Roo.lib.ColorAnim, Roo.lib.AnimBase);
3629
3630     var fly = Roo.lib.AnimBase.fly;
3631     var Y = Roo.lib;
3632     var superclass = Y.ColorAnim.superclass;
3633     var proto = Y.ColorAnim.prototype;
3634
3635     proto.toString = function() {
3636         var el = this.getEl();
3637         var id = el.id || el.tagName;
3638         return ("ColorAnim " + id);
3639     };
3640
3641     proto.patterns.color = /color$/i;
3642     proto.patterns.rgb = /^rgb\(([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\)$/i;
3643     proto.patterns.hex = /^#?([0-9A-F]{2})([0-9A-F]{2})([0-9A-F]{2})$/i;
3644     proto.patterns.hex3 = /^#?([0-9A-F]{1})([0-9A-F]{1})([0-9A-F]{1})$/i;
3645     proto.patterns.transparent = /^transparent|rgba\(0, 0, 0, 0\)$/;
3646
3647
3648     proto.parseColor = function(s) {
3649         if (s.length == 3) {
3650             return s;
3651         }
3652
3653         var c = this.patterns.hex.exec(s);
3654         if (c && c.length == 4) {
3655             return [ parseInt(c[1], 16), parseInt(c[2], 16), parseInt(c[3], 16) ];
3656         }
3657
3658         c = this.patterns.rgb.exec(s);
3659         if (c && c.length == 4) {
3660             return [ parseInt(c[1], 10), parseInt(c[2], 10), parseInt(c[3], 10) ];
3661         }
3662
3663         c = this.patterns.hex3.exec(s);
3664         if (c && c.length == 4) {
3665             return [ parseInt(c[1] + c[1], 16), parseInt(c[2] + c[2], 16), parseInt(c[3] + c[3], 16) ];
3666         }
3667
3668         return null;
3669     };
3670     // since this uses fly! - it cant be in ColorAnim (which does not have fly yet..)
3671     proto.getAttribute = function(attr) {
3672         var el = this.getEl();
3673         if (this.patterns.color.test(attr)) {
3674             var val = fly(el).getStyle(attr);
3675
3676             if (this.patterns.transparent.test(val)) {
3677                 var parent = el.parentNode;
3678                 val = fly(parent).getStyle(attr);
3679
3680                 while (parent && this.patterns.transparent.test(val)) {
3681                     parent = parent.parentNode;
3682                     val = fly(parent).getStyle(attr);
3683                     if (parent.tagName.toUpperCase() == 'HTML') {
3684                         val = '#fff';
3685                     }
3686                 }
3687             }
3688         } else {
3689             val = superclass.getAttribute.call(this, attr);
3690         }
3691
3692         return val;
3693     };
3694     proto.getAttribute = function(attr) {
3695         var el = this.getEl();
3696         if (this.patterns.color.test(attr)) {
3697             var val = fly(el).getStyle(attr);
3698
3699             if (this.patterns.transparent.test(val)) {
3700                 var parent = el.parentNode;
3701                 val = fly(parent).getStyle(attr);
3702
3703                 while (parent && this.patterns.transparent.test(val)) {
3704                     parent = parent.parentNode;
3705                     val = fly(parent).getStyle(attr);
3706                     if (parent.tagName.toUpperCase() == 'HTML') {
3707                         val = '#fff';
3708                     }
3709                 }
3710             }
3711         } else {
3712             val = superclass.getAttribute.call(this, attr);
3713         }
3714
3715         return val;
3716     };
3717
3718     proto.doMethod = function(attr, start, end) {
3719         var val;
3720
3721         if (this.patterns.color.test(attr)) {
3722             val = [];
3723             for (var i = 0, len = start.length; i < len; ++i) {
3724                 val[i] = superclass.doMethod.call(this, attr, start[i], end[i]);
3725             }
3726
3727             val = 'rgb(' + Math.floor(val[0]) + ',' + Math.floor(val[1]) + ',' + Math.floor(val[2]) + ')';
3728         }
3729         else {
3730             val = superclass.doMethod.call(this, attr, start, end);
3731         }
3732
3733         return val;
3734     };
3735
3736     proto.setRuntimeAttribute = function(attr) {
3737         superclass.setRuntimeAttribute.call(this, attr);
3738
3739         if (this.patterns.color.test(attr)) {
3740             var attributes = this.attributes;
3741             var start = this.parseColor(this.runtimeAttributes[attr].start);
3742             var end = this.parseColor(this.runtimeAttributes[attr].end);
3743
3744             if (typeof attributes[attr]['to'] === 'undefined' && typeof attributes[attr]['by'] !== 'undefined') {
3745                 end = this.parseColor(attributes[attr].by);
3746
3747                 for (var i = 0, len = start.length; i < len; ++i) {
3748                     end[i] = start[i] + end[i];
3749                 }
3750             }
3751
3752             this.runtimeAttributes[attr].start = start;
3753             this.runtimeAttributes[attr].end = end;
3754         }
3755     };
3756 })();
3757
3758 /*
3759  * Portions of this file are based on pieces of Yahoo User Interface Library
3760  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3761  * YUI licensed under the BSD License:
3762  * http://developer.yahoo.net/yui/license.txt
3763  * <script type="text/javascript">
3764  *
3765  */
3766 Roo.lib.Easing = {
3767
3768
3769     easeNone: function (t, b, c, d) {
3770         return c * t / d + b;
3771     },
3772
3773
3774     easeIn: function (t, b, c, d) {
3775         return c * (t /= d) * t + b;
3776     },
3777
3778
3779     easeOut: function (t, b, c, d) {
3780         return -c * (t /= d) * (t - 2) + b;
3781     },
3782
3783
3784     easeBoth: function (t, b, c, d) {
3785         if ((t /= d / 2) < 1) {
3786             return c / 2 * t * t + b;
3787         }
3788
3789         return -c / 2 * ((--t) * (t - 2) - 1) + b;
3790     },
3791
3792
3793     easeInStrong: function (t, b, c, d) {
3794         return c * (t /= d) * t * t * t + b;
3795     },
3796
3797
3798     easeOutStrong: function (t, b, c, d) {
3799         return -c * ((t = t / d - 1) * t * t * t - 1) + b;
3800     },
3801
3802
3803     easeBothStrong: function (t, b, c, d) {
3804         if ((t /= d / 2) < 1) {
3805             return c / 2 * t * t * t * t + b;
3806         }
3807
3808         return -c / 2 * ((t -= 2) * t * t * t - 2) + b;
3809     },
3810
3811
3812
3813     elasticIn: function (t, b, c, d, a, p) {
3814         if (t == 0) {
3815             return b;
3816         }
3817         if ((t /= d) == 1) {
3818             return b + c;
3819         }
3820         if (!p) {
3821             p = d * .3;
3822         }
3823
3824         if (!a || a < Math.abs(c)) {
3825             a = c;
3826             var s = p / 4;
3827         }
3828         else {
3829             var s = p / (2 * Math.PI) * Math.asin(c / a);
3830         }
3831
3832         return -(a * Math.pow(2, 10 * (t -= 1)) * Math.sin((t * d - s) * (2 * Math.PI) / p)) + b;
3833     },
3834
3835
3836     elasticOut: function (t, b, c, d, a, p) {
3837         if (t == 0) {
3838             return b;
3839         }
3840         if ((t /= d) == 1) {
3841             return b + c;
3842         }
3843         if (!p) {
3844             p = d * .3;
3845         }
3846
3847         if (!a || a < Math.abs(c)) {
3848             a = c;
3849             var s = p / 4;
3850         }
3851         else {
3852             var s = p / (2 * Math.PI) * Math.asin(c / a);
3853         }
3854
3855         return a * Math.pow(2, -10 * t) * Math.sin((t * d - s) * (2 * Math.PI) / p) + c + b;
3856     },
3857
3858
3859     elasticBoth: function (t, b, c, d, a, p) {
3860         if (t == 0) {
3861             return b;
3862         }
3863
3864         if ((t /= d / 2) == 2) {
3865             return b + c;
3866         }
3867
3868         if (!p) {
3869             p = d * (.3 * 1.5);
3870         }
3871
3872         if (!a || a < Math.abs(c)) {
3873             a = c;
3874             var s = p / 4;
3875         }
3876         else {
3877             var s = p / (2 * Math.PI) * Math.asin(c / a);
3878         }
3879
3880         if (t < 1) {
3881             return -.5 * (a * Math.pow(2, 10 * (t -= 1)) *
3882                           Math.sin((t * d - s) * (2 * Math.PI) / p)) + b;
3883         }
3884         return a * Math.pow(2, -10 * (t -= 1)) *
3885                Math.sin((t * d - s) * (2 * Math.PI) / p) * .5 + c + b;
3886     },
3887
3888
3889
3890     backIn: function (t, b, c, d, s) {
3891         if (typeof s == 'undefined') {
3892             s = 1.70158;
3893         }
3894         return c * (t /= d) * t * ((s + 1) * t - s) + b;
3895     },
3896
3897
3898     backOut: function (t, b, c, d, s) {
3899         if (typeof s == 'undefined') {
3900             s = 1.70158;
3901         }
3902         return c * ((t = t / d - 1) * t * ((s + 1) * t + s) + 1) + b;
3903     },
3904
3905
3906     backBoth: function (t, b, c, d, s) {
3907         if (typeof s == 'undefined') {
3908             s = 1.70158;
3909         }
3910
3911         if ((t /= d / 2 ) < 1) {
3912             return c / 2 * (t * t * (((s *= (1.525)) + 1) * t - s)) + b;
3913         }
3914         return c / 2 * ((t -= 2) * t * (((s *= (1.525)) + 1) * t + s) + 2) + b;
3915     },
3916
3917
3918     bounceIn: function (t, b, c, d) {
3919         return c - Roo.lib.Easing.bounceOut(d - t, 0, c, d) + b;
3920     },
3921
3922
3923     bounceOut: function (t, b, c, d) {
3924         if ((t /= d) < (1 / 2.75)) {
3925             return c * (7.5625 * t * t) + b;
3926         } else if (t < (2 / 2.75)) {
3927             return c * (7.5625 * (t -= (1.5 / 2.75)) * t + .75) + b;
3928         } else if (t < (2.5 / 2.75)) {
3929             return c * (7.5625 * (t -= (2.25 / 2.75)) * t + .9375) + b;
3930         }
3931         return c * (7.5625 * (t -= (2.625 / 2.75)) * t + .984375) + b;
3932     },
3933
3934
3935     bounceBoth: function (t, b, c, d) {
3936         if (t < d / 2) {
3937             return Roo.lib.Easing.bounceIn(t * 2, 0, c, d) * .5 + b;
3938         }
3939         return Roo.lib.Easing.bounceOut(t * 2 - d, 0, c, d) * .5 + c * .5 + b;
3940     }
3941 };/*
3942  * Portions of this file are based on pieces of Yahoo User Interface Library
3943  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3944  * YUI licensed under the BSD License:
3945  * http://developer.yahoo.net/yui/license.txt
3946  * <script type="text/javascript">
3947  *
3948  */
3949     (function() {
3950         Roo.lib.Motion = function(el, attributes, duration, method) {
3951             if (el) {
3952                 Roo.lib.Motion.superclass.constructor.call(this, el, attributes, duration, method);
3953             }
3954         };
3955
3956         Roo.extend(Roo.lib.Motion, Roo.lib.ColorAnim);
3957
3958
3959         var Y = Roo.lib;
3960         var superclass = Y.Motion.superclass;
3961         var proto = Y.Motion.prototype;
3962
3963         proto.toString = function() {
3964             var el = this.getEl();
3965             var id = el.id || el.tagName;
3966             return ("Motion " + id);
3967         };
3968
3969         proto.patterns.points = /^points$/i;
3970
3971         proto.setAttribute = function(attr, val, unit) {
3972             if (this.patterns.points.test(attr)) {
3973                 unit = unit || 'px';
3974                 superclass.setAttribute.call(this, 'left', val[0], unit);
3975                 superclass.setAttribute.call(this, 'top', val[1], unit);
3976             } else {
3977                 superclass.setAttribute.call(this, attr, val, unit);
3978             }
3979         };
3980
3981         proto.getAttribute = function(attr) {
3982             if (this.patterns.points.test(attr)) {
3983                 var val = [
3984                         superclass.getAttribute.call(this, 'left'),
3985                         superclass.getAttribute.call(this, 'top')
3986                         ];
3987             } else {
3988                 val = superclass.getAttribute.call(this, attr);
3989             }
3990
3991             return val;
3992         };
3993
3994         proto.doMethod = function(attr, start, end) {
3995             var val = null;
3996
3997             if (this.patterns.points.test(attr)) {
3998                 var t = this.method(this.currentFrame, 0, 100, this.totalFrames) / 100;
3999                 val = Y.Bezier.getPosition(this.runtimeAttributes[attr], t);
4000             } else {
4001                 val = superclass.doMethod.call(this, attr, start, end);
4002             }
4003             return val;
4004         };
4005
4006         proto.setRuntimeAttribute = function(attr) {
4007             if (this.patterns.points.test(attr)) {
4008                 var el = this.getEl();
4009                 var attributes = this.attributes;
4010                 var start;
4011                 var control = attributes['points']['control'] || [];
4012                 var end;
4013                 var i, len;
4014
4015                 if (control.length > 0 && !(control[0] instanceof Array)) {
4016                     control = [control];
4017                 } else {
4018                     var tmp = [];
4019                     for (i = 0,len = control.length; i < len; ++i) {
4020                         tmp[i] = control[i];
4021                     }
4022                     control = tmp;
4023                 }
4024
4025                 Roo.fly(el).position();
4026
4027                 if (isset(attributes['points']['from'])) {
4028                     Roo.lib.Dom.setXY(el, attributes['points']['from']);
4029                 }
4030                 else {
4031                     Roo.lib.Dom.setXY(el, Roo.lib.Dom.getXY(el));
4032                 }
4033
4034                 start = this.getAttribute('points');
4035
4036
4037                 if (isset(attributes['points']['to'])) {
4038                     end = translateValues.call(this, attributes['points']['to'], start);
4039
4040                     var pageXY = Roo.lib.Dom.getXY(this.getEl());
4041                     for (i = 0,len = control.length; i < len; ++i) {
4042                         control[i] = translateValues.call(this, control[i], start);
4043                     }
4044
4045
4046                 } else if (isset(attributes['points']['by'])) {
4047                     end = [ start[0] + attributes['points']['by'][0], start[1] + attributes['points']['by'][1] ];
4048
4049                     for (i = 0,len = control.length; i < len; ++i) {
4050                         control[i] = [ start[0] + control[i][0], start[1] + control[i][1] ];
4051                     }
4052                 }
4053
4054                 this.runtimeAttributes[attr] = [start];
4055
4056                 if (control.length > 0) {
4057                     this.runtimeAttributes[attr] = this.runtimeAttributes[attr].concat(control);
4058                 }
4059
4060                 this.runtimeAttributes[attr][this.runtimeAttributes[attr].length] = end;
4061             }
4062             else {
4063                 superclass.setRuntimeAttribute.call(this, attr);
4064             }
4065         };
4066
4067         var translateValues = function(val, start) {
4068             var pageXY = Roo.lib.Dom.getXY(this.getEl());
4069             val = [ val[0] - pageXY[0] + start[0], val[1] - pageXY[1] + start[1] ];
4070
4071             return val;
4072         };
4073
4074         var isset = function(prop) {
4075             return (typeof prop !== 'undefined');
4076         };
4077     })();
4078 /*
4079  * Portions of this file are based on pieces of Yahoo User Interface Library
4080  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
4081  * YUI licensed under the BSD License:
4082  * http://developer.yahoo.net/yui/license.txt
4083  * <script type="text/javascript">
4084  *
4085  */
4086     (function() {
4087         Roo.lib.Scroll = function(el, attributes, duration, method) {
4088             if (el) {
4089                 Roo.lib.Scroll.superclass.constructor.call(this, el, attributes, duration, method);
4090             }
4091         };
4092
4093         Roo.extend(Roo.lib.Scroll, Roo.lib.ColorAnim);
4094
4095
4096         var Y = Roo.lib;
4097         var superclass = Y.Scroll.superclass;
4098         var proto = Y.Scroll.prototype;
4099
4100         proto.toString = function() {
4101             var el = this.getEl();
4102             var id = el.id || el.tagName;
4103             return ("Scroll " + id);
4104         };
4105
4106         proto.doMethod = function(attr, start, end) {
4107             var val = null;
4108
4109             if (attr == 'scroll') {
4110                 val = [
4111                         this.method(this.currentFrame, start[0], end[0] - start[0], this.totalFrames),
4112                         this.method(this.currentFrame, start[1], end[1] - start[1], this.totalFrames)
4113                         ];
4114
4115             } else {
4116                 val = superclass.doMethod.call(this, attr, start, end);
4117             }
4118             return val;
4119         };
4120
4121         proto.getAttribute = function(attr) {
4122             var val = null;
4123             var el = this.getEl();
4124
4125             if (attr == 'scroll') {
4126                 val = [ el.scrollLeft, el.scrollTop ];
4127             } else {
4128                 val = superclass.getAttribute.call(this, attr);
4129             }
4130
4131             return val;
4132         };
4133
4134         proto.setAttribute = function(attr, val, unit) {
4135             var el = this.getEl();
4136
4137             if (attr == 'scroll') {
4138                 el.scrollLeft = val[0];
4139                 el.scrollTop = val[1];
4140             } else {
4141                 superclass.setAttribute.call(this, attr, val, unit);
4142             }
4143         };
4144     })();
4145 /*
4146  * Based on:
4147  * Ext JS Library 1.1.1
4148  * Copyright(c) 2006-2007, Ext JS, LLC.
4149  *
4150  * Originally Released Under LGPL - original licence link has changed is not relivant.
4151  *
4152  * Fork - LGPL
4153  * <script type="text/javascript">
4154  */
4155
4156
4157 // nasty IE9 hack - what a pile of crap that is..
4158
4159  if (typeof Range != "undefined" && typeof Range.prototype.createContextualFragment == "undefined") {
4160     Range.prototype.createContextualFragment = function (html) {
4161         var doc = window.document;
4162         var container = doc.createElement("div");
4163         container.innerHTML = html;
4164         var frag = doc.createDocumentFragment(), n;
4165         while ((n = container.firstChild)) {
4166             frag.appendChild(n);
4167         }
4168         return frag;
4169     };
4170 }
4171
4172 /**
4173  * @class Roo.DomHelper
4174  * Utility class for working with DOM and/or Templates. It transparently supports using HTML fragments or DOM.
4175  * For more information see <a href="http://web.archive.org/web/20071221063734/http://www.jackslocum.com/blog/2006/10/06/domhelper-create-elements-using-dom-html-fragments-or-templates/">this blog post with examples</a>.
4176  * @singleton
4177  */
4178 Roo.DomHelper = function(){
4179     var tempTableEl = null;
4180     var emptyTags = /^(?:br|frame|hr|img|input|link|meta|range|spacer|wbr|area|param|col)$/i;
4181     var tableRe = /^table|tbody|tr|td$/i;
4182     var xmlns = {};
4183     // build as innerHTML where available
4184     /** @ignore */
4185     var createHtml = function(o){
4186         if(typeof o == 'string'){
4187             return o;
4188         }
4189         var b = "";
4190         if(!o.tag){
4191             o.tag = "div";
4192         }
4193         b += "<" + o.tag;
4194         for(var attr in o){
4195             if(attr == "tag" || attr == "children" || attr == "cn" || attr == "html" || typeof o[attr] == "function") { continue; }
4196             if(attr == "style"){
4197                 var s = o["style"];
4198                 if(typeof s == "function"){
4199                     s = s.call();
4200                 }
4201                 if(typeof s == "string"){
4202                     b += ' style="' + s + '"';
4203                 }else if(typeof s == "object"){
4204                     b += ' style="';
4205                     for(var key in s){
4206                         if(typeof s[key] != "function"){
4207                             b += key + ":" + s[key] + ";";
4208                         }
4209                     }
4210                     b += '"';
4211                 }
4212             }else{
4213                 if(attr == "cls"){
4214                     b += ' class="' + o["cls"] + '"';
4215                 }else if(attr == "htmlFor"){
4216                     b += ' for="' + o["htmlFor"] + '"';
4217                 }else{
4218                     b += " " + attr + '="' + o[attr] + '"';
4219                 }
4220             }
4221         }
4222         if(emptyTags.test(o.tag)){
4223             b += "/>";
4224         }else{
4225             b += ">";
4226             var cn = o.children || o.cn;
4227             if(cn){
4228                 //http://bugs.kde.org/show_bug.cgi?id=71506
4229                 if((cn instanceof Array) || (Roo.isSafari && typeof(cn.join) == "function")){
4230                     for(var i = 0, len = cn.length; i < len; i++) {
4231                         b += createHtml(cn[i], b);
4232                     }
4233                 }else{
4234                     b += createHtml(cn, b);
4235                 }
4236             }
4237             if(o.html){
4238                 b += o.html;
4239             }
4240             b += "</" + o.tag + ">";
4241         }
4242         return b;
4243     };
4244
4245     // build as dom
4246     /** @ignore */
4247     var createDom = function(o, parentNode){
4248          
4249         // defininition craeted..
4250         var ns = false;
4251         if (o.ns && o.ns != 'html') {
4252                
4253             if (o.xmlns && typeof(xmlns[o.ns]) == 'undefined') {
4254                 xmlns[o.ns] = o.xmlns;
4255                 ns = o.xmlns;
4256             }
4257             if (typeof(xmlns[o.ns]) == 'undefined') {
4258                 console.log("Trying to create namespace element " + o.ns + ", however no xmlns was sent to builder previously");
4259             }
4260             ns = xmlns[o.ns];
4261         }
4262         
4263         
4264         if (typeof(o) == 'string') {
4265             return parentNode.appendChild(document.createTextNode(o));
4266         }
4267         o.tag = o.tag || div;
4268         if (o.ns && Roo.isIE) {
4269             ns = false;
4270             o.tag = o.ns + ':' + o.tag;
4271             
4272         }
4273         var el = ns ? document.createElementNS( ns, o.tag||'div') :  document.createElement(o.tag||'div');
4274         var useSet = el.setAttribute ? true : false; // In IE some elements don't have setAttribute
4275         for(var attr in o){
4276             
4277             if(attr == "tag" || attr == "ns" ||attr == "xmlns" ||attr == "children" || attr == "cn" || attr == "html" || 
4278                     attr == "style" || typeof o[attr] == "function") { continue; }
4279                     
4280             if(attr=="cls" && Roo.isIE){
4281                 el.className = o["cls"];
4282             }else{
4283                 if(useSet) { el.setAttribute(attr=="cls" ? 'class' : attr, o[attr]);}
4284                 else { 
4285                     el[attr] = o[attr];
4286                 }
4287             }
4288         }
4289         Roo.DomHelper.applyStyles(el, o.style);
4290         var cn = o.children || o.cn;
4291         if(cn){
4292             //http://bugs.kde.org/show_bug.cgi?id=71506
4293              if((cn instanceof Array) || (Roo.isSafari && typeof(cn.join) == "function")){
4294                 for(var i = 0, len = cn.length; i < len; i++) {
4295                     createDom(cn[i], el);
4296                 }
4297             }else{
4298                 createDom(cn, el);
4299             }
4300         }
4301         if(o.html){
4302             el.innerHTML = o.html;
4303         }
4304         if(parentNode){
4305            parentNode.appendChild(el);
4306         }
4307         return el;
4308     };
4309
4310     var ieTable = function(depth, s, h, e){
4311         tempTableEl.innerHTML = [s, h, e].join('');
4312         var i = -1, el = tempTableEl;
4313         while(++i < depth){
4314             el = el.firstChild;
4315         }
4316         return el;
4317     };
4318
4319     // kill repeat to save bytes
4320     var ts = '<table>',
4321         te = '</table>',
4322         tbs = ts+'<tbody>',
4323         tbe = '</tbody>'+te,
4324         trs = tbs + '<tr>',
4325         tre = '</tr>'+tbe;
4326
4327     /**
4328      * @ignore
4329      * Nasty code for IE's broken table implementation
4330      */
4331     var insertIntoTable = function(tag, where, el, html){
4332         if(!tempTableEl){
4333             tempTableEl = document.createElement('div');
4334         }
4335         var node;
4336         var before = null;
4337         if(tag == 'td'){
4338             if(where == 'afterbegin' || where == 'beforeend'){ // INTO a TD
4339                 return;
4340             }
4341             if(where == 'beforebegin'){
4342                 before = el;
4343                 el = el.parentNode;
4344             } else{
4345                 before = el.nextSibling;
4346                 el = el.parentNode;
4347             }
4348             node = ieTable(4, trs, html, tre);
4349         }
4350         else if(tag == 'tr'){
4351             if(where == 'beforebegin'){
4352                 before = el;
4353                 el = el.parentNode;
4354                 node = ieTable(3, tbs, html, tbe);
4355             } else if(where == 'afterend'){
4356                 before = el.nextSibling;
4357                 el = el.parentNode;
4358                 node = ieTable(3, tbs, html, tbe);
4359             } else{ // INTO a TR
4360                 if(where == 'afterbegin'){
4361                     before = el.firstChild;
4362                 }
4363                 node = ieTable(4, trs, html, tre);
4364             }
4365         } else if(tag == 'tbody'){
4366             if(where == 'beforebegin'){
4367                 before = el;
4368                 el = el.parentNode;
4369                 node = ieTable(2, ts, html, te);
4370             } else if(where == 'afterend'){
4371                 before = el.nextSibling;
4372                 el = el.parentNode;
4373                 node = ieTable(2, ts, html, te);
4374             } else{
4375                 if(where == 'afterbegin'){
4376                     before = el.firstChild;
4377                 }
4378                 node = ieTable(3, tbs, html, tbe);
4379             }
4380         } else{ // TABLE
4381             if(where == 'beforebegin' || where == 'afterend'){ // OUTSIDE the table
4382                 return;
4383             }
4384             if(where == 'afterbegin'){
4385                 before = el.firstChild;
4386             }
4387             node = ieTable(2, ts, html, te);
4388         }
4389         el.insertBefore(node, before);
4390         return node;
4391     };
4392
4393     return {
4394     /** True to force the use of DOM instead of html fragments @type Boolean */
4395     useDom : false,
4396
4397     /**
4398      * Returns the markup for the passed Element(s) config
4399      * @param {Object} o The Dom object spec (and children)
4400      * @return {String}
4401      */
4402     markup : function(o){
4403         return createHtml(o);
4404     },
4405
4406     /**
4407      * Applies a style specification to an element
4408      * @param {String/HTMLElement} el The element to apply styles to
4409      * @param {String/Object/Function} styles A style specification string eg "width:100px", or object in the form {width:"100px"}, or
4410      * a function which returns such a specification.
4411      */
4412     applyStyles : function(el, styles){
4413         if(styles){
4414            el = Roo.fly(el);
4415            if(typeof styles == "string"){
4416                var re = /\s?([a-z\-]*)\:\s?([^;]*);?/gi;
4417                var matches;
4418                while ((matches = re.exec(styles)) != null){
4419                    el.setStyle(matches[1], matches[2]);
4420                }
4421            }else if (typeof styles == "object"){
4422                for (var style in styles){
4423                   el.setStyle(style, styles[style]);
4424                }
4425            }else if (typeof styles == "function"){
4426                 Roo.DomHelper.applyStyles(el, styles.call());
4427            }
4428         }
4429     },
4430
4431     /**
4432      * Inserts an HTML fragment into the Dom
4433      * @param {String} where Where to insert the html in relation to el - beforeBegin, afterBegin, beforeEnd, afterEnd.
4434      * @param {HTMLElement} el The context element
4435      * @param {String} html The HTML fragmenet
4436      * @return {HTMLElement} The new node
4437      */
4438     insertHtml : function(where, el, html){
4439         where = where.toLowerCase();
4440         if(el.insertAdjacentHTML){
4441             if(tableRe.test(el.tagName)){
4442                 var rs;
4443                 if(rs = insertIntoTable(el.tagName.toLowerCase(), where, el, html)){
4444                     return rs;
4445                 }
4446             }
4447             switch(where){
4448                 case "beforebegin":
4449                     el.insertAdjacentHTML('BeforeBegin', html);
4450                     return el.previousSibling;
4451                 case "afterbegin":
4452                     el.insertAdjacentHTML('AfterBegin', html);
4453                     return el.firstChild;
4454                 case "beforeend":
4455                     el.insertAdjacentHTML('BeforeEnd', html);
4456                     return el.lastChild;
4457                 case "afterend":
4458                     el.insertAdjacentHTML('AfterEnd', html);
4459                     return el.nextSibling;
4460             }
4461             throw 'Illegal insertion point -> "' + where + '"';
4462         }
4463         var range = el.ownerDocument.createRange();
4464         var frag;
4465         switch(where){
4466              case "beforebegin":
4467                 range.setStartBefore(el);
4468                 frag = range.createContextualFragment(html);
4469                 el.parentNode.insertBefore(frag, el);
4470                 return el.previousSibling;
4471              case "afterbegin":
4472                 if(el.firstChild){
4473                     range.setStartBefore(el.firstChild);
4474                     frag = range.createContextualFragment(html);
4475                     el.insertBefore(frag, el.firstChild);
4476                     return el.firstChild;
4477                 }else{
4478                     el.innerHTML = html;
4479                     return el.firstChild;
4480                 }
4481             case "beforeend":
4482                 if(el.lastChild){
4483                     range.setStartAfter(el.lastChild);
4484                     frag = range.createContextualFragment(html);
4485                     el.appendChild(frag);
4486                     return el.lastChild;
4487                 }else{
4488                     el.innerHTML = html;
4489                     return el.lastChild;
4490                 }
4491             case "afterend":
4492                 range.setStartAfter(el);
4493                 frag = range.createContextualFragment(html);
4494                 el.parentNode.insertBefore(frag, el.nextSibling);
4495                 return el.nextSibling;
4496             }
4497             throw 'Illegal insertion point -> "' + where + '"';
4498     },
4499
4500     /**
4501      * Creates new Dom element(s) and inserts them before el
4502      * @param {String/HTMLElement/Element} el The context element
4503      * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
4504      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4505      * @return {HTMLElement/Roo.Element} The new node
4506      */
4507     insertBefore : function(el, o, returnElement){
4508         return this.doInsert(el, o, returnElement, "beforeBegin");
4509     },
4510
4511     /**
4512      * Creates new Dom element(s) and inserts them after el
4513      * @param {String/HTMLElement/Element} el The context element
4514      * @param {Object} o The Dom object spec (and children)
4515      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4516      * @return {HTMLElement/Roo.Element} The new node
4517      */
4518     insertAfter : function(el, o, returnElement){
4519         return this.doInsert(el, o, returnElement, "afterEnd", "nextSibling");
4520     },
4521
4522     /**
4523      * Creates new Dom element(s) and inserts them as the first child of el
4524      * @param {String/HTMLElement/Element} el The context element
4525      * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
4526      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4527      * @return {HTMLElement/Roo.Element} The new node
4528      */
4529     insertFirst : function(el, o, returnElement){
4530         return this.doInsert(el, o, returnElement, "afterBegin");
4531     },
4532
4533     // private
4534     doInsert : function(el, o, returnElement, pos, sibling){
4535         el = Roo.getDom(el);
4536         var newNode;
4537         if(this.useDom || o.ns){
4538             newNode = createDom(o, null);
4539             el.parentNode.insertBefore(newNode, sibling ? el[sibling] : el);
4540         }else{
4541             var html = createHtml(o);
4542             newNode = this.insertHtml(pos, el, html);
4543         }
4544         return returnElement ? Roo.get(newNode, true) : newNode;
4545     },
4546
4547     /**
4548      * Creates new Dom element(s) and appends them to el
4549      * @param {String/HTMLElement/Element} el The context element
4550      * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
4551      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4552      * @return {HTMLElement/Roo.Element} The new node
4553      */
4554     append : function(el, o, returnElement){
4555         el = Roo.getDom(el);
4556         var newNode;
4557         if(this.useDom || o.ns){
4558             newNode = createDom(o, null);
4559             el.appendChild(newNode);
4560         }else{
4561             var html = createHtml(o);
4562             newNode = this.insertHtml("beforeEnd", el, html);
4563         }
4564         return returnElement ? Roo.get(newNode, true) : newNode;
4565     },
4566
4567     /**
4568      * Creates new Dom element(s) and overwrites the contents of el with them
4569      * @param {String/HTMLElement/Element} el The context element
4570      * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
4571      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4572      * @return {HTMLElement/Roo.Element} The new node
4573      */
4574     overwrite : function(el, o, returnElement){
4575         el = Roo.getDom(el);
4576         if (o.ns) {
4577           
4578             while (el.childNodes.length) {
4579                 el.removeChild(el.firstChild);
4580             }
4581             createDom(o, el);
4582         } else {
4583             el.innerHTML = createHtml(o);   
4584         }
4585         
4586         return returnElement ? Roo.get(el.firstChild, true) : el.firstChild;
4587     },
4588
4589     /**
4590      * Creates a new Roo.DomHelper.Template from the Dom object spec
4591      * @param {Object} o The Dom object spec (and children)
4592      * @return {Roo.DomHelper.Template} The new template
4593      */
4594     createTemplate : function(o){
4595         var html = createHtml(o);
4596         return new Roo.Template(html);
4597     }
4598     };
4599 }();
4600 /*
4601  * Based on:
4602  * Ext JS Library 1.1.1
4603  * Copyright(c) 2006-2007, Ext JS, LLC.
4604  *
4605  * Originally Released Under LGPL - original licence link has changed is not relivant.
4606  *
4607  * Fork - LGPL
4608  * <script type="text/javascript">
4609  */
4610  
4611 /**
4612 * @class Roo.Template
4613 * Represents an HTML fragment template. Templates can be precompiled for greater performance.
4614 * For a list of available format functions, see {@link Roo.util.Format}.<br />
4615 * Usage:
4616 <pre><code>
4617 var t = new Roo.Template({
4618     html :  '&lt;div name="{id}"&gt;' + 
4619         '&lt;span class="{cls}"&gt;{name:trim} {someval:this.myformat}{value:ellipsis(10)}&lt;/span&gt;' +
4620         '&lt;/div&gt;',
4621     myformat: function (value, allValues) {
4622         return 'XX' + value;
4623     }
4624 });
4625 t.append('some-element', {id: 'myid', cls: 'myclass', name: 'foo', value: 'bar'});
4626 </code></pre>
4627 * For more information see this blog post with examples:
4628 *  <a href="http://www.cnitblog.com/seeyeah/archive/2011/12/30/38728.html/">DomHelper
4629      - Create Elements using DOM, HTML fragments and Templates</a>. 
4630 * @constructor
4631 * @param {Object} cfg - Configuration object.
4632 */
4633 Roo.Template = function(cfg){
4634     // BC!
4635     if(cfg instanceof Array){
4636         cfg = cfg.join("");
4637     }else if(arguments.length > 1){
4638         cfg = Array.prototype.join.call(arguments, "");
4639     }
4640     
4641     
4642     if (typeof(cfg) == 'object') {
4643         Roo.apply(this,cfg)
4644     } else {
4645         // bc
4646         this.html = cfg;
4647     }
4648     if (this.url) {
4649         this.load();
4650     }
4651     
4652 };
4653 Roo.Template.prototype = {
4654     
4655     /**
4656      * @cfg {String} url  The Url to load the template from. beware if you are loading from a url, the data may not be ready if you use it instantly..
4657      *                    it should be fixed so that template is observable...
4658      */
4659     url : false,
4660     /**
4661      * @cfg {String} html  The HTML fragment or an array of fragments to join("") or multiple arguments to join("")
4662      */
4663     html : '',
4664     /**
4665      * Returns an HTML fragment of this template with the specified values applied.
4666      * @param {Object} values The template values. Can be an array if your params are numeric (i.e. {0}) or an object (i.e. {foo: 'bar'})
4667      * @return {String} The HTML fragment
4668      */
4669     applyTemplate : function(values){
4670         try {
4671            
4672             if(this.compiled){
4673                 return this.compiled(values);
4674             }
4675             var useF = this.disableFormats !== true;
4676             var fm = Roo.util.Format, tpl = this;
4677             var fn = function(m, name, format, args){
4678                 if(format && useF){
4679                     if(format.substr(0, 5) == "this."){
4680                         return tpl.call(format.substr(5), values[name], values);
4681                     }else{
4682                         if(args){
4683                             // quoted values are required for strings in compiled templates, 
4684                             // but for non compiled we need to strip them
4685                             // quoted reversed for jsmin
4686                             var re = /^\s*['"](.*)["']\s*$/;
4687                             args = args.split(',');
4688                             for(var i = 0, len = args.length; i < len; i++){
4689                                 args[i] = args[i].replace(re, "$1");
4690                             }
4691                             args = [values[name]].concat(args);
4692                         }else{
4693                             args = [values[name]];
4694                         }
4695                         return fm[format].apply(fm, args);
4696                     }
4697                 }else{
4698                     return values[name] !== undefined ? values[name] : "";
4699                 }
4700             };
4701             return this.html.replace(this.re, fn);
4702         } catch (e) {
4703             Roo.log(e);
4704             throw e;
4705         }
4706          
4707     },
4708     
4709     loading : false,
4710       
4711     load : function ()
4712     {
4713          
4714         if (this.loading) {
4715             return;
4716         }
4717         var _t = this;
4718         
4719         this.loading = true;
4720         this.compiled = false;
4721         
4722         var cx = new Roo.data.Connection();
4723         cx.request({
4724             url : this.url,
4725             method : 'GET',
4726             success : function (response) {
4727                 _t.loading = false;
4728                 _t.html = response.responseText;
4729                 _t.url = false;
4730                 _t.compile();
4731              },
4732             failure : function(response) {
4733                 Roo.log("Template failed to load from " + _t.url);
4734                 _t.loading = false;
4735             }
4736         });
4737     },
4738
4739     /**
4740      * Sets the HTML used as the template and optionally compiles it.
4741      * @param {String} html
4742      * @param {Boolean} compile (optional) True to compile the template (defaults to undefined)
4743      * @return {Roo.Template} this
4744      */
4745     set : function(html, compile){
4746         this.html = html;
4747         this.compiled = null;
4748         if(compile){
4749             this.compile();
4750         }
4751         return this;
4752     },
4753     
4754     /**
4755      * True to disable format functions (defaults to false)
4756      * @type Boolean
4757      */
4758     disableFormats : false,
4759     
4760     /**
4761     * The regular expression used to match template variables 
4762     * @type RegExp
4763     * @property 
4764     */
4765     re : /\{([\w-]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
4766     
4767     /**
4768      * Compiles the template into an internal function, eliminating the RegEx overhead.
4769      * @return {Roo.Template} this
4770      */
4771     compile : function(){
4772         var fm = Roo.util.Format;
4773         var useF = this.disableFormats !== true;
4774         var sep = Roo.isGecko ? "+" : ",";
4775         var fn = function(m, name, format, args){
4776             if(format && useF){
4777                 args = args ? ',' + args : "";
4778                 if(format.substr(0, 5) != "this."){
4779                     format = "fm." + format + '(';
4780                 }else{
4781                     format = 'this.call("'+ format.substr(5) + '", ';
4782                     args = ", values";
4783                 }
4784             }else{
4785                 args= ''; format = "(values['" + name + "'] == undefined ? '' : ";
4786             }
4787             return "'"+ sep + format + "values['" + name + "']" + args + ")"+sep+"'";
4788         };
4789         var body;
4790         // branched to use + in gecko and [].join() in others
4791         if(Roo.isGecko){
4792             body = "this.compiled = function(values){ return '" +
4793                    this.html.replace(/\\/g, '\\\\').replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
4794                     "';};";
4795         }else{
4796             body = ["this.compiled = function(values){ return ['"];
4797             body.push(this.html.replace(/\\/g, '\\\\').replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn));
4798             body.push("'].join('');};");
4799             body = body.join('');
4800         }
4801         /**
4802          * eval:var:values
4803          * eval:var:fm
4804          */
4805         eval(body);
4806         return this;
4807     },
4808     
4809     // private function used to call members
4810     call : function(fnName, value, allValues){
4811         return this[fnName](value, allValues);
4812     },
4813     
4814     /**
4815      * Applies the supplied values to the template and inserts the new node(s) as the first child of el.
4816      * @param {String/HTMLElement/Roo.Element} el The context element
4817      * @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'})
4818      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4819      * @return {HTMLElement/Roo.Element} The new node or Element
4820      */
4821     insertFirst: function(el, values, returnElement){
4822         return this.doInsert('afterBegin', el, values, returnElement);
4823     },
4824
4825     /**
4826      * Applies the supplied values to the template and inserts the new node(s) before el.
4827      * @param {String/HTMLElement/Roo.Element} el The context element
4828      * @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'})
4829      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4830      * @return {HTMLElement/Roo.Element} The new node or Element
4831      */
4832     insertBefore: function(el, values, returnElement){
4833         return this.doInsert('beforeBegin', el, values, returnElement);
4834     },
4835
4836     /**
4837      * Applies the supplied values to the template and inserts the new node(s) after el.
4838      * @param {String/HTMLElement/Roo.Element} el The context element
4839      * @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'})
4840      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4841      * @return {HTMLElement/Roo.Element} The new node or Element
4842      */
4843     insertAfter : function(el, values, returnElement){
4844         return this.doInsert('afterEnd', el, values, returnElement);
4845     },
4846     
4847     /**
4848      * Applies the supplied values to the template and appends the new node(s) to el.
4849      * @param {String/HTMLElement/Roo.Element} el The context element
4850      * @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'})
4851      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4852      * @return {HTMLElement/Roo.Element} The new node or Element
4853      */
4854     append : function(el, values, returnElement){
4855         return this.doInsert('beforeEnd', el, values, returnElement);
4856     },
4857
4858     doInsert : function(where, el, values, returnEl){
4859         el = Roo.getDom(el);
4860         var newNode = Roo.DomHelper.insertHtml(where, el, this.applyTemplate(values));
4861         return returnEl ? Roo.get(newNode, true) : newNode;
4862     },
4863
4864     /**
4865      * Applies the supplied values to the template and overwrites the content of el with the new node(s).
4866      * @param {String/HTMLElement/Roo.Element} el The context element
4867      * @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'})
4868      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4869      * @return {HTMLElement/Roo.Element} The new node or Element
4870      */
4871     overwrite : function(el, values, returnElement){
4872         el = Roo.getDom(el);
4873         el.innerHTML = this.applyTemplate(values);
4874         return returnElement ? Roo.get(el.firstChild, true) : el.firstChild;
4875     }
4876 };
4877 /**
4878  * Alias for {@link #applyTemplate}
4879  * @method
4880  */
4881 Roo.Template.prototype.apply = Roo.Template.prototype.applyTemplate;
4882
4883 // backwards compat
4884 Roo.DomHelper.Template = Roo.Template;
4885
4886 /**
4887  * Creates a template from the passed element's value (<i>display:none</i> textarea, preferred) or innerHTML.
4888  * @param {String/HTMLElement} el A DOM element or its id
4889  * @returns {Roo.Template} The created template
4890  * @static
4891  */
4892 Roo.Template.from = function(el){
4893     el = Roo.getDom(el);
4894     return new Roo.Template(el.value || el.innerHTML);
4895 };/*
4896  * Based on:
4897  * Ext JS Library 1.1.1
4898  * Copyright(c) 2006-2007, Ext JS, LLC.
4899  *
4900  * Originally Released Under LGPL - original licence link has changed is not relivant.
4901  *
4902  * Fork - LGPL
4903  * <script type="text/javascript">
4904  */
4905  
4906
4907 /*
4908  * This is code is also distributed under MIT license for use
4909  * with jQuery and prototype JavaScript libraries.
4910  */
4911 /**
4912  * @class Roo.DomQuery
4913 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).
4914 <p>
4915 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>
4916
4917 <p>
4918 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.
4919 </p>
4920 <h4>Element Selectors:</h4>
4921 <ul class="list">
4922     <li> <b>*</b> any element</li>
4923     <li> <b>E</b> an element with the tag E</li>
4924     <li> <b>E F</b> All descendent elements of E that have the tag F</li>
4925     <li> <b>E > F</b> or <b>E/F</b> all direct children elements of E that have the tag F</li>
4926     <li> <b>E + F</b> all elements with the tag F that are immediately preceded by an element with the tag E</li>
4927     <li> <b>E ~ F</b> all elements with the tag F that are preceded by a sibling element with the tag E</li>
4928 </ul>
4929 <h4>Attribute Selectors:</h4>
4930 <p>The use of @ and quotes are optional. For example, div[@foo='bar'] is also a valid attribute selector.</p>
4931 <ul class="list">
4932     <li> <b>E[foo]</b> has an attribute "foo"</li>
4933     <li> <b>E[foo=bar]</b> has an attribute "foo" that equals "bar"</li>
4934     <li> <b>E[foo^=bar]</b> has an attribute "foo" that starts with "bar"</li>
4935     <li> <b>E[foo$=bar]</b> has an attribute "foo" that ends with "bar"</li>
4936     <li> <b>E[foo*=bar]</b> has an attribute "foo" that contains the substring "bar"</li>
4937     <li> <b>E[foo%=2]</b> has an attribute "foo" that is evenly divisible by 2</li>
4938     <li> <b>E[foo!=bar]</b> has an attribute "foo" that does not equal "bar"</li>
4939 </ul>
4940 <h4>Pseudo Classes:</h4>
4941 <ul class="list">
4942     <li> <b>E:first-child</b> E is the first child of its parent</li>
4943     <li> <b>E:last-child</b> E is the last child of its parent</li>
4944     <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>
4945     <li> <b>E:nth-child(odd)</b> E is an odd child of its parent</li>
4946     <li> <b>E:nth-child(even)</b> E is an even child of its parent</li>
4947     <li> <b>E:only-child</b> E is the only child of its parent</li>
4948     <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>
4949     <li> <b>E:first</b> the first E in the resultset</li>
4950     <li> <b>E:last</b> the last E in the resultset</li>
4951     <li> <b>E:nth(<i>n</i>)</b> the <i>n</i>th E in the resultset (1 based)</li>
4952     <li> <b>E:odd</b> shortcut for :nth-child(odd)</li>
4953     <li> <b>E:even</b> shortcut for :nth-child(even)</li>
4954     <li> <b>E:contains(foo)</b> E's innerHTML contains the substring "foo"</li>
4955     <li> <b>E:nodeValue(foo)</b> E contains a textNode with a nodeValue that equals "foo"</li>
4956     <li> <b>E:not(S)</b> an E element that does not match simple selector S</li>
4957     <li> <b>E:has(S)</b> an E element that has a descendent that matches simple selector S</li>
4958     <li> <b>E:next(S)</b> an E element whose next sibling matches simple selector S</li>
4959     <li> <b>E:prev(S)</b> an E element whose previous sibling matches simple selector S</li>
4960 </ul>
4961 <h4>CSS Value Selectors:</h4>
4962 <ul class="list">
4963     <li> <b>E{display=none}</b> css value "display" that equals "none"</li>
4964     <li> <b>E{display^=none}</b> css value "display" that starts with "none"</li>
4965     <li> <b>E{display$=none}</b> css value "display" that ends with "none"</li>
4966     <li> <b>E{display*=none}</b> css value "display" that contains the substring "none"</li>
4967     <li> <b>E{display%=2}</b> css value "display" that is evenly divisible by 2</li>
4968     <li> <b>E{display!=none}</b> css value "display" that does not equal "none"</li>
4969 </ul>
4970  * @singleton
4971  */
4972 Roo.DomQuery = function(){
4973     var cache = {}, simpleCache = {}, valueCache = {};
4974     var nonSpace = /\S/;
4975     var trimRe = /^\s+|\s+$/g;
4976     var tplRe = /\{(\d+)\}/g;
4977     var modeRe = /^(\s?[\/>+~]\s?|\s|$)/;
4978     var tagTokenRe = /^(#)?([\w-\*]+)/;
4979     var nthRe = /(\d*)n\+?(\d*)/, nthRe2 = /\D/;
4980
4981     function child(p, index){
4982         var i = 0;
4983         var n = p.firstChild;
4984         while(n){
4985             if(n.nodeType == 1){
4986                if(++i == index){
4987                    return n;
4988                }
4989             }
4990             n = n.nextSibling;
4991         }
4992         return null;
4993     };
4994
4995     function next(n){
4996         while((n = n.nextSibling) && n.nodeType != 1);
4997         return n;
4998     };
4999
5000     function prev(n){
5001         while((n = n.previousSibling) && n.nodeType != 1);
5002         return n;
5003     };
5004
5005     function children(d){
5006         var n = d.firstChild, ni = -1;
5007             while(n){
5008                 var nx = n.nextSibling;
5009                 if(n.nodeType == 3 && !nonSpace.test(n.nodeValue)){
5010                     d.removeChild(n);
5011                 }else{
5012                     n.nodeIndex = ++ni;
5013                 }
5014                 n = nx;
5015             }
5016             return this;
5017         };
5018
5019     function byClassName(c, a, v){
5020         if(!v){
5021             return c;
5022         }
5023         var r = [], ri = -1, cn;
5024         for(var i = 0, ci; ci = c[i]; i++){
5025             if((' '+ci.className+' ').indexOf(v) != -1){
5026                 r[++ri] = ci;
5027             }
5028         }
5029         return r;
5030     };
5031
5032     function attrValue(n, attr){
5033         if(!n.tagName && typeof n.length != "undefined"){
5034             n = n[0];
5035         }
5036         if(!n){
5037             return null;
5038         }
5039         if(attr == "for"){
5040             return n.htmlFor;
5041         }
5042         if(attr == "class" || attr == "className"){
5043             return n.className;
5044         }
5045         return n.getAttribute(attr) || n[attr];
5046
5047     };
5048
5049     function getNodes(ns, mode, tagName){
5050         var result = [], ri = -1, cs;
5051         if(!ns){
5052             return result;
5053         }
5054         tagName = tagName || "*";
5055         if(typeof ns.getElementsByTagName != "undefined"){
5056             ns = [ns];
5057         }
5058         if(!mode){
5059             for(var i = 0, ni; ni = ns[i]; i++){
5060                 cs = ni.getElementsByTagName(tagName);
5061                 for(var j = 0, ci; ci = cs[j]; j++){
5062                     result[++ri] = ci;
5063                 }
5064             }
5065         }else if(mode == "/" || mode == ">"){
5066             var utag = tagName.toUpperCase();
5067             for(var i = 0, ni, cn; ni = ns[i]; i++){
5068                 cn = ni.children || ni.childNodes;
5069                 for(var j = 0, cj; cj = cn[j]; j++){
5070                     if(cj.nodeName == utag || cj.nodeName == tagName  || tagName == '*'){
5071                         result[++ri] = cj;
5072                     }
5073                 }
5074             }
5075         }else if(mode == "+"){
5076             var utag = tagName.toUpperCase();
5077             for(var i = 0, n; n = ns[i]; i++){
5078                 while((n = n.nextSibling) && n.nodeType != 1);
5079                 if(n && (n.nodeName == utag || n.nodeName == tagName || tagName == '*')){
5080                     result[++ri] = n;
5081                 }
5082             }
5083         }else if(mode == "~"){
5084             for(var i = 0, n; n = ns[i]; i++){
5085                 while((n = n.nextSibling) && (n.nodeType != 1 || (tagName == '*' || n.tagName.toLowerCase()!=tagName)));
5086                 if(n){
5087                     result[++ri] = n;
5088                 }
5089             }
5090         }
5091         return result;
5092     };
5093
5094     function concat(a, b){
5095         if(b.slice){
5096             return a.concat(b);
5097         }
5098         for(var i = 0, l = b.length; i < l; i++){
5099             a[a.length] = b[i];
5100         }
5101         return a;
5102     }
5103
5104     function byTag(cs, tagName){
5105         if(cs.tagName || cs == document){
5106             cs = [cs];
5107         }
5108         if(!tagName){
5109             return cs;
5110         }
5111         var r = [], ri = -1;
5112         tagName = tagName.toLowerCase();
5113         for(var i = 0, ci; ci = cs[i]; i++){
5114             if(ci.nodeType == 1 && ci.tagName.toLowerCase()==tagName){
5115                 r[++ri] = ci;
5116             }
5117         }
5118         return r;
5119     };
5120
5121     function byId(cs, attr, id){
5122         if(cs.tagName || cs == document){
5123             cs = [cs];
5124         }
5125         if(!id){
5126             return cs;
5127         }
5128         var r = [], ri = -1;
5129         for(var i = 0,ci; ci = cs[i]; i++){
5130             if(ci && ci.id == id){
5131                 r[++ri] = ci;
5132                 return r;
5133             }
5134         }
5135         return r;
5136     };
5137
5138     function byAttribute(cs, attr, value, op, custom){
5139         var r = [], ri = -1, st = custom=="{";
5140         var f = Roo.DomQuery.operators[op];
5141         for(var i = 0, ci; ci = cs[i]; i++){
5142             var a;
5143             if(st){
5144                 a = Roo.DomQuery.getStyle(ci, attr);
5145             }
5146             else if(attr == "class" || attr == "className"){
5147                 a = ci.className;
5148             }else if(attr == "for"){
5149                 a = ci.htmlFor;
5150             }else if(attr == "href"){
5151                 a = ci.getAttribute("href", 2);
5152             }else{
5153                 a = ci.getAttribute(attr);
5154             }
5155             if((f && f(a, value)) || (!f && a)){
5156                 r[++ri] = ci;
5157             }
5158         }
5159         return r;
5160     };
5161
5162     function byPseudo(cs, name, value){
5163         return Roo.DomQuery.pseudos[name](cs, value);
5164     };
5165
5166     // This is for IE MSXML which does not support expandos.
5167     // IE runs the same speed using setAttribute, however FF slows way down
5168     // and Safari completely fails so they need to continue to use expandos.
5169     var isIE = window.ActiveXObject ? true : false;
5170
5171     // this eval is stop the compressor from
5172     // renaming the variable to something shorter
5173     
5174     /** eval:var:batch */
5175     var batch = 30803; 
5176
5177     var key = 30803;
5178
5179     function nodupIEXml(cs){
5180         var d = ++key;
5181         cs[0].setAttribute("_nodup", d);
5182         var r = [cs[0]];
5183         for(var i = 1, len = cs.length; i < len; i++){
5184             var c = cs[i];
5185             if(!c.getAttribute("_nodup") != d){
5186                 c.setAttribute("_nodup", d);
5187                 r[r.length] = c;
5188             }
5189         }
5190         for(var i = 0, len = cs.length; i < len; i++){
5191             cs[i].removeAttribute("_nodup");
5192         }
5193         return r;
5194     }
5195
5196     function nodup(cs){
5197         if(!cs){
5198             return [];
5199         }
5200         var len = cs.length, c, i, r = cs, cj, ri = -1;
5201         if(!len || typeof cs.nodeType != "undefined" || len == 1){
5202             return cs;
5203         }
5204         if(isIE && typeof cs[0].selectSingleNode != "undefined"){
5205             return nodupIEXml(cs);
5206         }
5207         var d = ++key;
5208         cs[0]._nodup = d;
5209         for(i = 1; c = cs[i]; i++){
5210             if(c._nodup != d){
5211                 c._nodup = d;
5212             }else{
5213                 r = [];
5214                 for(var j = 0; j < i; j++){
5215                     r[++ri] = cs[j];
5216                 }
5217                 for(j = i+1; cj = cs[j]; j++){
5218                     if(cj._nodup != d){
5219                         cj._nodup = d;
5220                         r[++ri] = cj;
5221                     }
5222                 }
5223                 return r;
5224             }
5225         }
5226         return r;
5227     }
5228
5229     function quickDiffIEXml(c1, c2){
5230         var d = ++key;
5231         for(var i = 0, len = c1.length; i < len; i++){
5232             c1[i].setAttribute("_qdiff", d);
5233         }
5234         var r = [];
5235         for(var i = 0, len = c2.length; i < len; i++){
5236             if(c2[i].getAttribute("_qdiff") != d){
5237                 r[r.length] = c2[i];
5238             }
5239         }
5240         for(var i = 0, len = c1.length; i < len; i++){
5241            c1[i].removeAttribute("_qdiff");
5242         }
5243         return r;
5244     }
5245
5246     function quickDiff(c1, c2){
5247         var len1 = c1.length;
5248         if(!len1){
5249             return c2;
5250         }
5251         if(isIE && c1[0].selectSingleNode){
5252             return quickDiffIEXml(c1, c2);
5253         }
5254         var d = ++key;
5255         for(var i = 0; i < len1; i++){
5256             c1[i]._qdiff = d;
5257         }
5258         var r = [];
5259         for(var i = 0, len = c2.length; i < len; i++){
5260             if(c2[i]._qdiff != d){
5261                 r[r.length] = c2[i];
5262             }
5263         }
5264         return r;
5265     }
5266
5267     function quickId(ns, mode, root, id){
5268         if(ns == root){
5269            var d = root.ownerDocument || root;
5270            return d.getElementById(id);
5271         }
5272         ns = getNodes(ns, mode, "*");
5273         return byId(ns, null, id);
5274     }
5275
5276     return {
5277         getStyle : function(el, name){
5278             return Roo.fly(el).getStyle(name);
5279         },
5280         /**
5281          * Compiles a selector/xpath query into a reusable function. The returned function
5282          * takes one parameter "root" (optional), which is the context node from where the query should start.
5283          * @param {String} selector The selector/xpath query
5284          * @param {String} type (optional) Either "select" (the default) or "simple" for a simple selector match
5285          * @return {Function}
5286          */
5287         compile : function(path, type){
5288             type = type || "select";
5289             
5290             var fn = ["var f = function(root){\n var mode; ++batch; var n = root || document;\n"];
5291             var q = path, mode, lq;
5292             var tk = Roo.DomQuery.matchers;
5293             var tklen = tk.length;
5294             var mm;
5295
5296             // accept leading mode switch
5297             var lmode = q.match(modeRe);
5298             if(lmode && lmode[1]){
5299                 fn[fn.length] = 'mode="'+lmode[1].replace(trimRe, "")+'";';
5300                 q = q.replace(lmode[1], "");
5301             }
5302             // strip leading slashes
5303             while(path.substr(0, 1)=="/"){
5304                 path = path.substr(1);
5305             }
5306
5307             while(q && lq != q){
5308                 lq = q;
5309                 var tm = q.match(tagTokenRe);
5310                 if(type == "select"){
5311                     if(tm){
5312                         if(tm[1] == "#"){
5313                             fn[fn.length] = 'n = quickId(n, mode, root, "'+tm[2]+'");';
5314                         }else{
5315                             fn[fn.length] = 'n = getNodes(n, mode, "'+tm[2]+'");';
5316                         }
5317                         q = q.replace(tm[0], "");
5318                     }else if(q.substr(0, 1) != '@'){
5319                         fn[fn.length] = 'n = getNodes(n, mode, "*");';
5320                     }
5321                 }else{
5322                     if(tm){
5323                         if(tm[1] == "#"){
5324                             fn[fn.length] = 'n = byId(n, null, "'+tm[2]+'");';
5325                         }else{
5326                             fn[fn.length] = 'n = byTag(n, "'+tm[2]+'");';
5327                         }
5328                         q = q.replace(tm[0], "");
5329                     }
5330                 }
5331                 while(!(mm = q.match(modeRe))){
5332                     var matched = false;
5333                     for(var j = 0; j < tklen; j++){
5334                         var t = tk[j];
5335                         var m = q.match(t.re);
5336                         if(m){
5337                             fn[fn.length] = t.select.replace(tplRe, function(x, i){
5338                                                     return m[i];
5339                                                 });
5340                             q = q.replace(m[0], "");
5341                             matched = true;
5342                             break;
5343                         }
5344                     }
5345                     // prevent infinite loop on bad selector
5346                     if(!matched){
5347                         throw 'Error parsing selector, parsing failed at "' + q + '"';
5348                     }
5349                 }
5350                 if(mm[1]){
5351                     fn[fn.length] = 'mode="'+mm[1].replace(trimRe, "")+'";';
5352                     q = q.replace(mm[1], "");
5353                 }
5354             }
5355             fn[fn.length] = "return nodup(n);\n}";
5356             
5357              /** 
5358               * list of variables that need from compression as they are used by eval.
5359              *  eval:var:batch 
5360              *  eval:var:nodup
5361              *  eval:var:byTag
5362              *  eval:var:ById
5363              *  eval:var:getNodes
5364              *  eval:var:quickId
5365              *  eval:var:mode
5366              *  eval:var:root
5367              *  eval:var:n
5368              *  eval:var:byClassName
5369              *  eval:var:byPseudo
5370              *  eval:var:byAttribute
5371              *  eval:var:attrValue
5372              * 
5373              **/ 
5374             eval(fn.join(""));
5375             return f;
5376         },
5377
5378         /**
5379          * Selects a group of elements.
5380          * @param {String} selector The selector/xpath query (can be a comma separated list of selectors)
5381          * @param {Node} root (optional) The start of the query (defaults to document).
5382          * @return {Array}
5383          */
5384         select : function(path, root, type){
5385             if(!root || root == document){
5386                 root = document;
5387             }
5388             if(typeof root == "string"){
5389                 root = document.getElementById(root);
5390             }
5391             var paths = path.split(",");
5392             var results = [];
5393             for(var i = 0, len = paths.length; i < len; i++){
5394                 var p = paths[i].replace(trimRe, "");
5395                 if(!cache[p]){
5396                     cache[p] = Roo.DomQuery.compile(p);
5397                     if(!cache[p]){
5398                         throw p + " is not a valid selector";
5399                     }
5400                 }
5401                 var result = cache[p](root);
5402                 if(result && result != document){
5403                     results = results.concat(result);
5404                 }
5405             }
5406             if(paths.length > 1){
5407                 return nodup(results);
5408             }
5409             return results;
5410         },
5411
5412         /**
5413          * Selects a single element.
5414          * @param {String} selector The selector/xpath query
5415          * @param {Node} root (optional) The start of the query (defaults to document).
5416          * @return {Element}
5417          */
5418         selectNode : function(path, root){
5419             return Roo.DomQuery.select(path, root)[0];
5420         },
5421
5422         /**
5423          * Selects the value of a node, optionally replacing null with the defaultValue.
5424          * @param {String} selector The selector/xpath query
5425          * @param {Node} root (optional) The start of the query (defaults to document).
5426          * @param {String} defaultValue
5427          */
5428         selectValue : function(path, root, defaultValue){
5429             path = path.replace(trimRe, "");
5430             if(!valueCache[path]){
5431                 valueCache[path] = Roo.DomQuery.compile(path, "select");
5432             }
5433             var n = valueCache[path](root);
5434             n = n[0] ? n[0] : n;
5435             var v = (n && n.firstChild ? n.firstChild.nodeValue : null);
5436             return ((v === null||v === undefined||v==='') ? defaultValue : v);
5437         },
5438
5439         /**
5440          * Selects the value of a node, parsing integers and floats.
5441          * @param {String} selector The selector/xpath query
5442          * @param {Node} root (optional) The start of the query (defaults to document).
5443          * @param {Number} defaultValue
5444          * @return {Number}
5445          */
5446         selectNumber : function(path, root, defaultValue){
5447             var v = Roo.DomQuery.selectValue(path, root, defaultValue || 0);
5448             return parseFloat(v);
5449         },
5450
5451         /**
5452          * Returns true if the passed element(s) match the passed simple selector (e.g. div.some-class or span:first-child)
5453          * @param {String/HTMLElement/Array} el An element id, element or array of elements
5454          * @param {String} selector The simple selector to test
5455          * @return {Boolean}
5456          */
5457         is : function(el, ss){
5458             if(typeof el == "string"){
5459                 el = document.getElementById(el);
5460             }
5461             var isArray = (el instanceof Array);
5462             var result = Roo.DomQuery.filter(isArray ? el : [el], ss);
5463             return isArray ? (result.length == el.length) : (result.length > 0);
5464         },
5465
5466         /**
5467          * Filters an array of elements to only include matches of a simple selector (e.g. div.some-class or span:first-child)
5468          * @param {Array} el An array of elements to filter
5469          * @param {String} selector The simple selector to test
5470          * @param {Boolean} nonMatches If true, it returns the elements that DON'T match
5471          * the selector instead of the ones that match
5472          * @return {Array}
5473          */
5474         filter : function(els, ss, nonMatches){
5475             ss = ss.replace(trimRe, "");
5476             if(!simpleCache[ss]){
5477                 simpleCache[ss] = Roo.DomQuery.compile(ss, "simple");
5478             }
5479             var result = simpleCache[ss](els);
5480             return nonMatches ? quickDiff(result, els) : result;
5481         },
5482
5483         /**
5484          * Collection of matching regular expressions and code snippets.
5485          */
5486         matchers : [{
5487                 re: /^\.([\w-]+)/,
5488                 select: 'n = byClassName(n, null, " {1} ");'
5489             }, {
5490                 re: /^\:([\w-]+)(?:\(((?:[^\s>\/]*|.*?))\))?/,
5491                 select: 'n = byPseudo(n, "{1}", "{2}");'
5492             },{
5493                 re: /^(?:([\[\{])(?:@)?([\w-]+)\s?(?:(=|.=)\s?['"]?(.*?)["']?)?[\]\}])/,
5494                 select: 'n = byAttribute(n, "{2}", "{4}", "{3}", "{1}");'
5495             }, {
5496                 re: /^#([\w-]+)/,
5497                 select: 'n = byId(n, null, "{1}");'
5498             },{
5499                 re: /^@([\w-]+)/,
5500                 select: 'return {firstChild:{nodeValue:attrValue(n, "{1}")}};'
5501             }
5502         ],
5503
5504         /**
5505          * Collection of operator comparison functions. The default operators are =, !=, ^=, $=, *=, %=, |= and ~=.
5506          * 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;.
5507          */
5508         operators : {
5509             "=" : function(a, v){
5510                 return a == v;
5511             },
5512             "!=" : function(a, v){
5513                 return a != v;
5514             },
5515             "^=" : function(a, v){
5516                 return a && a.substr(0, v.length) == v;
5517             },
5518             "$=" : function(a, v){
5519                 return a && a.substr(a.length-v.length) == v;
5520             },
5521             "*=" : function(a, v){
5522                 return a && a.indexOf(v) !== -1;
5523             },
5524             "%=" : function(a, v){
5525                 return (a % v) == 0;
5526             },
5527             "|=" : function(a, v){
5528                 return a && (a == v || a.substr(0, v.length+1) == v+'-');
5529             },
5530             "~=" : function(a, v){
5531                 return a && (' '+a+' ').indexOf(' '+v+' ') != -1;
5532             }
5533         },
5534
5535         /**
5536          * Collection of "pseudo class" processors. Each processor is passed the current nodeset (array)
5537          * and the argument (if any) supplied in the selector.
5538          */
5539         pseudos : {
5540             "first-child" : function(c){
5541                 var r = [], ri = -1, n;
5542                 for(var i = 0, ci; ci = n = c[i]; i++){
5543                     while((n = n.previousSibling) && n.nodeType != 1);
5544                     if(!n){
5545                         r[++ri] = ci;
5546                     }
5547                 }
5548                 return r;
5549             },
5550
5551             "last-child" : function(c){
5552                 var r = [], ri = -1, n;
5553                 for(var i = 0, ci; ci = n = c[i]; i++){
5554                     while((n = n.nextSibling) && n.nodeType != 1);
5555                     if(!n){
5556                         r[++ri] = ci;
5557                     }
5558                 }
5559                 return r;
5560             },
5561
5562             "nth-child" : function(c, a) {
5563                 var r = [], ri = -1;
5564                 var m = nthRe.exec(a == "even" && "2n" || a == "odd" && "2n+1" || !nthRe2.test(a) && "n+" + a || a);
5565                 var f = (m[1] || 1) - 0, l = m[2] - 0;
5566                 for(var i = 0, n; n = c[i]; i++){
5567                     var pn = n.parentNode;
5568                     if (batch != pn._batch) {
5569                         var j = 0;
5570                         for(var cn = pn.firstChild; cn; cn = cn.nextSibling){
5571                             if(cn.nodeType == 1){
5572                                cn.nodeIndex = ++j;
5573                             }
5574                         }
5575                         pn._batch = batch;
5576                     }
5577                     if (f == 1) {
5578                         if (l == 0 || n.nodeIndex == l){
5579                             r[++ri] = n;
5580                         }
5581                     } else if ((n.nodeIndex + l) % f == 0){
5582                         r[++ri] = n;
5583                     }
5584                 }
5585
5586                 return r;
5587             },
5588
5589             "only-child" : function(c){
5590                 var r = [], ri = -1;;
5591                 for(var i = 0, ci; ci = c[i]; i++){
5592                     if(!prev(ci) && !next(ci)){
5593                         r[++ri] = ci;
5594                     }
5595                 }
5596                 return r;
5597             },
5598
5599             "empty" : function(c){
5600                 var r = [], ri = -1;
5601                 for(var i = 0, ci; ci = c[i]; i++){
5602                     var cns = ci.childNodes, j = 0, cn, empty = true;
5603                     while(cn = cns[j]){
5604                         ++j;
5605                         if(cn.nodeType == 1 || cn.nodeType == 3){
5606                             empty = false;
5607                             break;
5608                         }
5609                     }
5610                     if(empty){
5611                         r[++ri] = ci;
5612                     }
5613                 }
5614                 return r;
5615             },
5616
5617             "contains" : function(c, v){
5618                 var r = [], ri = -1;
5619                 for(var i = 0, ci; ci = c[i]; i++){
5620                     if((ci.textContent||ci.innerText||'').indexOf(v) != -1){
5621                         r[++ri] = ci;
5622                     }
5623                 }
5624                 return r;
5625             },
5626
5627             "nodeValue" : function(c, v){
5628                 var r = [], ri = -1;
5629                 for(var i = 0, ci; ci = c[i]; i++){
5630                     if(ci.firstChild && ci.firstChild.nodeValue == v){
5631                         r[++ri] = ci;
5632                     }
5633                 }
5634                 return r;
5635             },
5636
5637             "checked" : function(c){
5638                 var r = [], ri = -1;
5639                 for(var i = 0, ci; ci = c[i]; i++){
5640                     if(ci.checked == true){
5641                         r[++ri] = ci;
5642                     }
5643                 }
5644                 return r;
5645             },
5646
5647             "not" : function(c, ss){
5648                 return Roo.DomQuery.filter(c, ss, true);
5649             },
5650
5651             "odd" : function(c){
5652                 return this["nth-child"](c, "odd");
5653             },
5654
5655             "even" : function(c){
5656                 return this["nth-child"](c, "even");
5657             },
5658
5659             "nth" : function(c, a){
5660                 return c[a-1] || [];
5661             },
5662
5663             "first" : function(c){
5664                 return c[0] || [];
5665             },
5666
5667             "last" : function(c){
5668                 return c[c.length-1] || [];
5669             },
5670
5671             "has" : function(c, ss){
5672                 var s = Roo.DomQuery.select;
5673                 var r = [], ri = -1;
5674                 for(var i = 0, ci; ci = c[i]; i++){
5675                     if(s(ss, ci).length > 0){
5676                         r[++ri] = ci;
5677                     }
5678                 }
5679                 return r;
5680             },
5681
5682             "next" : function(c, ss){
5683                 var is = Roo.DomQuery.is;
5684                 var r = [], ri = -1;
5685                 for(var i = 0, ci; ci = c[i]; i++){
5686                     var n = next(ci);
5687                     if(n && is(n, ss)){
5688                         r[++ri] = ci;
5689                     }
5690                 }
5691                 return r;
5692             },
5693
5694             "prev" : function(c, ss){
5695                 var is = Roo.DomQuery.is;
5696                 var r = [], ri = -1;
5697                 for(var i = 0, ci; ci = c[i]; i++){
5698                     var n = prev(ci);
5699                     if(n && is(n, ss)){
5700                         r[++ri] = ci;
5701                     }
5702                 }
5703                 return r;
5704             }
5705         }
5706     };
5707 }();
5708
5709 /**
5710  * Selects an array of DOM nodes by CSS/XPath selector. Shorthand of {@link Roo.DomQuery#select}
5711  * @param {String} path The selector/xpath query
5712  * @param {Node} root (optional) The start of the query (defaults to document).
5713  * @return {Array}
5714  * @member Roo
5715  * @method query
5716  */
5717 Roo.query = Roo.DomQuery.select;
5718 /*
5719  * Based on:
5720  * Ext JS Library 1.1.1
5721  * Copyright(c) 2006-2007, Ext JS, LLC.
5722  *
5723  * Originally Released Under LGPL - original licence link has changed is not relivant.
5724  *
5725  * Fork - LGPL
5726  * <script type="text/javascript">
5727  */
5728
5729 /**
5730  * @class Roo.util.Observable
5731  * Base class that provides a common interface for publishing events. Subclasses are expected to
5732  * to have a property "events" with all the events defined.<br>
5733  * For example:
5734  * <pre><code>
5735  Employee = function(name){
5736     this.name = name;
5737     this.addEvents({
5738         "fired" : true,
5739         "quit" : true
5740     });
5741  }
5742  Roo.extend(Employee, Roo.util.Observable);
5743 </code></pre>
5744  * @param {Object} config properties to use (incuding events / listeners)
5745  */
5746
5747 Roo.util.Observable = function(cfg){
5748     
5749     cfg = cfg|| {};
5750     this.addEvents(cfg.events || {});
5751     if (cfg.events) {
5752         delete cfg.events; // make sure
5753     }
5754      
5755     Roo.apply(this, cfg);
5756     
5757     if(this.listeners){
5758         this.on(this.listeners);
5759         delete this.listeners;
5760     }
5761 };
5762 Roo.util.Observable.prototype = {
5763     /** 
5764  * @cfg {Object} listeners  list of events and functions to call for this object, 
5765  * For example :
5766  * <pre><code>
5767     listeners :  { 
5768        'click' : function(e) {
5769            ..... 
5770         } ,
5771         .... 
5772     } 
5773   </code></pre>
5774  */
5775     
5776     
5777     /**
5778      * Fires the specified event with the passed parameters (minus the event name).
5779      * @param {String} eventName
5780      * @param {Object...} args Variable number of parameters are passed to handlers
5781      * @return {Boolean} returns false if any of the handlers return false otherwise it returns true
5782      */
5783     fireEvent : function(){
5784         var ce = this.events[arguments[0].toLowerCase()];
5785         if(typeof ce == "object"){
5786             return ce.fire.apply(ce, Array.prototype.slice.call(arguments, 1));
5787         }else{
5788             return true;
5789         }
5790     },
5791
5792     // private
5793     filterOptRe : /^(?:scope|delay|buffer|single)$/,
5794
5795     /**
5796      * Appends an event handler to this component
5797      * @param {String}   eventName The type of event to listen for
5798      * @param {Function} handler The method the event invokes
5799      * @param {Object}   scope (optional) The scope in which to execute the handler
5800      * function. The handler function's "this" context.
5801      * @param {Object}   options (optional) An object containing handler configuration
5802      * properties. This may contain any of the following properties:<ul>
5803      * <li>scope {Object} The scope in which to execute the handler function. The handler function's "this" context.</li>
5804      * <li>delay {Number} The number of milliseconds to delay the invocation of the handler after te event fires.</li>
5805      * <li>single {Boolean} True to add a handler to handle just the next firing of the event, and then remove itself.</li>
5806      * <li>buffer {Number} Causes the handler to be scheduled to run in an {@link Roo.util.DelayedTask} delayed
5807      * by the specified number of milliseconds. If the event fires again within that time, the original
5808      * handler is <em>not</em> invoked, but the new handler is scheduled in its place.</li>
5809      * </ul><br>
5810      * <p>
5811      * <b>Combining Options</b><br>
5812      * Using the options argument, it is possible to combine different types of listeners:<br>
5813      * <br>
5814      * A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)
5815                 <pre><code>
5816                 el.on('click', this.onClick, this, {
5817                         single: true,
5818                 delay: 100,
5819                 forumId: 4
5820                 });
5821                 </code></pre>
5822      * <p>
5823      * <b>Attaching multiple handlers in 1 call</b><br>
5824      * The method also allows for a single argument to be passed which is a config object containing properties
5825      * which specify multiple handlers.
5826      * <pre><code>
5827                 el.on({
5828                         'click': {
5829                         fn: this.onClick,
5830                         scope: this,
5831                         delay: 100
5832                 }, 
5833                 'mouseover': {
5834                         fn: this.onMouseOver,
5835                         scope: this
5836                 },
5837                 'mouseout': {
5838                         fn: this.onMouseOut,
5839                         scope: this
5840                 }
5841                 });
5842                 </code></pre>
5843      * <p>
5844      * Or a shorthand syntax which passes the same scope object to all handlers:
5845         <pre><code>
5846                 el.on({
5847                         'click': this.onClick,
5848                 'mouseover': this.onMouseOver,
5849                 'mouseout': this.onMouseOut,
5850                 scope: this
5851                 });
5852                 </code></pre>
5853      */
5854     addListener : function(eventName, fn, scope, o){
5855         if(typeof eventName == "object"){
5856             o = eventName;
5857             for(var e in o){
5858                 if(this.filterOptRe.test(e)){
5859                     continue;
5860                 }
5861                 if(typeof o[e] == "function"){
5862                     // shared options
5863                     this.addListener(e, o[e], o.scope,  o);
5864                 }else{
5865                     // individual options
5866                     this.addListener(e, o[e].fn, o[e].scope, o[e]);
5867                 }
5868             }
5869             return;
5870         }
5871         o = (!o || typeof o == "boolean") ? {} : o;
5872         eventName = eventName.toLowerCase();
5873         var ce = this.events[eventName] || true;
5874         if(typeof ce == "boolean"){
5875             ce = new Roo.util.Event(this, eventName);
5876             this.events[eventName] = ce;
5877         }
5878         ce.addListener(fn, scope, o);
5879     },
5880
5881     /**
5882      * Removes a listener
5883      * @param {String}   eventName     The type of event to listen for
5884      * @param {Function} handler        The handler to remove
5885      * @param {Object}   scope  (optional) The scope (this object) for the handler
5886      */
5887     removeListener : function(eventName, fn, scope){
5888         var ce = this.events[eventName.toLowerCase()];
5889         if(typeof ce == "object"){
5890             ce.removeListener(fn, scope);
5891         }
5892     },
5893
5894     /**
5895      * Removes all listeners for this object
5896      */
5897     purgeListeners : function(){
5898         for(var evt in this.events){
5899             if(typeof this.events[evt] == "object"){
5900                  this.events[evt].clearListeners();
5901             }
5902         }
5903     },
5904
5905     relayEvents : function(o, events){
5906         var createHandler = function(ename){
5907             return function(){
5908                 return this.fireEvent.apply(this, Roo.combine(ename, Array.prototype.slice.call(arguments, 0)));
5909             };
5910         };
5911         for(var i = 0, len = events.length; i < len; i++){
5912             var ename = events[i];
5913             if(!this.events[ename]){ this.events[ename] = true; };
5914             o.on(ename, createHandler(ename), this);
5915         }
5916     },
5917
5918     /**
5919      * Used to define events on this Observable
5920      * @param {Object} object The object with the events defined
5921      */
5922     addEvents : function(o){
5923         if(!this.events){
5924             this.events = {};
5925         }
5926         Roo.applyIf(this.events, o);
5927     },
5928
5929     /**
5930      * Checks to see if this object has any listeners for a specified event
5931      * @param {String} eventName The name of the event to check for
5932      * @return {Boolean} True if the event is being listened for, else false
5933      */
5934     hasListener : function(eventName){
5935         var e = this.events[eventName];
5936         return typeof e == "object" && e.listeners.length > 0;
5937     }
5938 };
5939 /**
5940  * Appends an event handler to this element (shorthand for addListener)
5941  * @param {String}   eventName     The type of event to listen for
5942  * @param {Function} handler        The method the event invokes
5943  * @param {Object}   scope (optional) The scope in which to execute the handler
5944  * function. The handler function's "this" context.
5945  * @param {Object}   options  (optional)
5946  * @method
5947  */
5948 Roo.util.Observable.prototype.on = Roo.util.Observable.prototype.addListener;
5949 /**
5950  * Removes a listener (shorthand for removeListener)
5951  * @param {String}   eventName     The type of event to listen for
5952  * @param {Function} handler        The handler to remove
5953  * @param {Object}   scope  (optional) The scope (this object) for the handler
5954  * @method
5955  */
5956 Roo.util.Observable.prototype.un = Roo.util.Observable.prototype.removeListener;
5957
5958 /**
5959  * Starts capture on the specified Observable. All events will be passed
5960  * to the supplied function with the event name + standard signature of the event
5961  * <b>before</b> the event is fired. If the supplied function returns false,
5962  * the event will not fire.
5963  * @param {Observable} o The Observable to capture
5964  * @param {Function} fn The function to call
5965  * @param {Object} scope (optional) The scope (this object) for the fn
5966  * @static
5967  */
5968 Roo.util.Observable.capture = function(o, fn, scope){
5969     o.fireEvent = o.fireEvent.createInterceptor(fn, scope);
5970 };
5971
5972 /**
5973  * Removes <b>all</b> added captures from the Observable.
5974  * @param {Observable} o The Observable to release
5975  * @static
5976  */
5977 Roo.util.Observable.releaseCapture = function(o){
5978     o.fireEvent = Roo.util.Observable.prototype.fireEvent;
5979 };
5980
5981 (function(){
5982
5983     var createBuffered = function(h, o, scope){
5984         var task = new Roo.util.DelayedTask();
5985         return function(){
5986             task.delay(o.buffer, h, scope, Array.prototype.slice.call(arguments, 0));
5987         };
5988     };
5989
5990     var createSingle = function(h, e, fn, scope){
5991         return function(){
5992             e.removeListener(fn, scope);
5993             return h.apply(scope, arguments);
5994         };
5995     };
5996
5997     var createDelayed = function(h, o, scope){
5998         return function(){
5999             var args = Array.prototype.slice.call(arguments, 0);
6000             setTimeout(function(){
6001                 h.apply(scope, args);
6002             }, o.delay || 10);
6003         };
6004     };
6005
6006     Roo.util.Event = function(obj, name){
6007         this.name = name;
6008         this.obj = obj;
6009         this.listeners = [];
6010     };
6011
6012     Roo.util.Event.prototype = {
6013         addListener : function(fn, scope, options){
6014             var o = options || {};
6015             scope = scope || this.obj;
6016             if(!this.isListening(fn, scope)){
6017                 var l = {fn: fn, scope: scope, options: o};
6018                 var h = fn;
6019                 if(o.delay){
6020                     h = createDelayed(h, o, scope);
6021                 }
6022                 if(o.single){
6023                     h = createSingle(h, this, fn, scope);
6024                 }
6025                 if(o.buffer){
6026                     h = createBuffered(h, o, scope);
6027                 }
6028                 l.fireFn = h;
6029                 if(!this.firing){ // if we are currently firing this event, don't disturb the listener loop
6030                     this.listeners.push(l);
6031                 }else{
6032                     this.listeners = this.listeners.slice(0);
6033                     this.listeners.push(l);
6034                 }
6035             }
6036         },
6037
6038         findListener : function(fn, scope){
6039             scope = scope || this.obj;
6040             var ls = this.listeners;
6041             for(var i = 0, len = ls.length; i < len; i++){
6042                 var l = ls[i];
6043                 if(l.fn == fn && l.scope == scope){
6044                     return i;
6045                 }
6046             }
6047             return -1;
6048         },
6049
6050         isListening : function(fn, scope){
6051             return this.findListener(fn, scope) != -1;
6052         },
6053
6054         removeListener : function(fn, scope){
6055             var index;
6056             if((index = this.findListener(fn, scope)) != -1){
6057                 if(!this.firing){
6058                     this.listeners.splice(index, 1);
6059                 }else{
6060                     this.listeners = this.listeners.slice(0);
6061                     this.listeners.splice(index, 1);
6062                 }
6063                 return true;
6064             }
6065             return false;
6066         },
6067
6068         clearListeners : function(){
6069             this.listeners = [];
6070         },
6071
6072         fire : function(){
6073             var ls = this.listeners, scope, len = ls.length;
6074             if(len > 0){
6075                 this.firing = true;
6076                 var args = Array.prototype.slice.call(arguments, 0);
6077                 for(var i = 0; i < len; i++){
6078                     var l = ls[i];
6079                     if(l.fireFn.apply(l.scope||this.obj||window, arguments) === false){
6080                         this.firing = false;
6081                         return false;
6082                     }
6083                 }
6084                 this.firing = false;
6085             }
6086             return true;
6087         }
6088     };
6089 })();/*
6090  * RooJS Library 
6091  * Copyright(c) 2007-2017, Roo J Solutions Ltd
6092  *
6093  * Licence LGPL 
6094  *
6095  */
6096  
6097 /**
6098  * @class Roo.Document
6099  * @extends Roo.util.Observable
6100  * This is a convience class to wrap up the main document loading code.. , rather than adding Roo.onReady(......)
6101  * 
6102  * @param {Object} config the methods and properties of the 'base' class for the application.
6103  * 
6104  *  Generic Page handler - implement this to start your app..
6105  * 
6106  * eg.
6107  *  MyProject = new Roo.Document({
6108         events : {
6109             'load' : true // your events..
6110         },
6111         listeners : {
6112             'ready' : function() {
6113                 // fired on Roo.onReady()
6114             }
6115         }
6116  * 
6117  */
6118 Roo.Document = function(cfg) {
6119      
6120     this.addEvents({ 
6121         'ready' : true
6122     });
6123     Roo.util.Observable.call(this,cfg);
6124     
6125     var _this = this;
6126     
6127     Roo.onReady(function() {
6128         _this.fireEvent('ready');
6129     },null,false);
6130     
6131     
6132 }
6133
6134 Roo.extend(Roo.Document, Roo.util.Observable, {});/*
6135  * Based on:
6136  * Ext JS Library 1.1.1
6137  * Copyright(c) 2006-2007, Ext JS, LLC.
6138  *
6139  * Originally Released Under LGPL - original licence link has changed is not relivant.
6140  *
6141  * Fork - LGPL
6142  * <script type="text/javascript">
6143  */
6144
6145 /**
6146  * @class Roo.EventManager
6147  * Registers event handlers that want to receive a normalized EventObject instead of the standard browser event and provides 
6148  * several useful events directly.
6149  * See {@link Roo.EventObject} for more details on normalized event objects.
6150  * @singleton
6151  */
6152 Roo.EventManager = function(){
6153     var docReadyEvent, docReadyProcId, docReadyState = false;
6154     var resizeEvent, resizeTask, textEvent, textSize;
6155     var E = Roo.lib.Event;
6156     var D = Roo.lib.Dom;
6157
6158     
6159     
6160
6161     var fireDocReady = function(){
6162         if(!docReadyState){
6163             docReadyState = true;
6164             Roo.isReady = true;
6165             if(docReadyProcId){
6166                 clearInterval(docReadyProcId);
6167             }
6168             if(Roo.isGecko || Roo.isOpera) {
6169                 document.removeEventListener("DOMContentLoaded", fireDocReady, false);
6170             }
6171             if(Roo.isIE){
6172                 var defer = document.getElementById("ie-deferred-loader");
6173                 if(defer){
6174                     defer.onreadystatechange = null;
6175                     defer.parentNode.removeChild(defer);
6176                 }
6177             }
6178             if(docReadyEvent){
6179                 docReadyEvent.fire();
6180                 docReadyEvent.clearListeners();
6181             }
6182         }
6183     };
6184     
6185     var initDocReady = function(){
6186         docReadyEvent = new Roo.util.Event();
6187         if(Roo.isGecko || Roo.isOpera) {
6188             document.addEventListener("DOMContentLoaded", fireDocReady, false);
6189         }else if(Roo.isIE){
6190             document.write("<s"+'cript id="ie-deferred-loader" defer="defer" src="/'+'/:"></s'+"cript>");
6191             var defer = document.getElementById("ie-deferred-loader");
6192             defer.onreadystatechange = function(){
6193                 if(this.readyState == "complete"){
6194                     fireDocReady();
6195                 }
6196             };
6197         }else if(Roo.isSafari){ 
6198             docReadyProcId = setInterval(function(){
6199                 var rs = document.readyState;
6200                 if(rs == "complete") {
6201                     fireDocReady();     
6202                  }
6203             }, 10);
6204         }
6205         // no matter what, make sure it fires on load
6206         E.on(window, "load", fireDocReady);
6207     };
6208
6209     var createBuffered = function(h, o){
6210         var task = new Roo.util.DelayedTask(h);
6211         return function(e){
6212             // create new event object impl so new events don't wipe out properties
6213             e = new Roo.EventObjectImpl(e);
6214             task.delay(o.buffer, h, null, [e]);
6215         };
6216     };
6217
6218     var createSingle = function(h, el, ename, fn){
6219         return function(e){
6220             Roo.EventManager.removeListener(el, ename, fn);
6221             h(e);
6222         };
6223     };
6224
6225     var createDelayed = function(h, o){
6226         return function(e){
6227             // create new event object impl so new events don't wipe out properties
6228             e = new Roo.EventObjectImpl(e);
6229             setTimeout(function(){
6230                 h(e);
6231             }, o.delay || 10);
6232         };
6233     };
6234     var transitionEndVal = false;
6235     
6236     var transitionEnd = function()
6237     {
6238         if (transitionEndVal) {
6239             return transitionEndVal;
6240         }
6241         var el = document.createElement('div');
6242
6243         var transEndEventNames = {
6244             WebkitTransition : 'webkitTransitionEnd',
6245             MozTransition    : 'transitionend',
6246             OTransition      : 'oTransitionEnd otransitionend',
6247             transition       : 'transitionend'
6248         };
6249     
6250         for (var name in transEndEventNames) {
6251             if (el.style[name] !== undefined) {
6252                 transitionEndVal = transEndEventNames[name];
6253                 return  transitionEndVal ;
6254             }
6255         }
6256     }
6257     
6258
6259     var listen = function(element, ename, opt, fn, scope){
6260         var o = (!opt || typeof opt == "boolean") ? {} : opt;
6261         fn = fn || o.fn; scope = scope || o.scope;
6262         var el = Roo.getDom(element);
6263         
6264         
6265         if(!el){
6266             throw "Error listening for \"" + ename + '\". Element "' + element + '" doesn\'t exist.';
6267         }
6268         
6269         if (ename == 'transitionend') {
6270             ename = transitionEnd();
6271         }
6272         var h = function(e){
6273             e = Roo.EventObject.setEvent(e);
6274             var t;
6275             if(o.delegate){
6276                 t = e.getTarget(o.delegate, el);
6277                 if(!t){
6278                     return;
6279                 }
6280             }else{
6281                 t = e.target;
6282             }
6283             if(o.stopEvent === true){
6284                 e.stopEvent();
6285             }
6286             if(o.preventDefault === true){
6287                e.preventDefault();
6288             }
6289             if(o.stopPropagation === true){
6290                 e.stopPropagation();
6291             }
6292
6293             if(o.normalized === false){
6294                 e = e.browserEvent;
6295             }
6296
6297             fn.call(scope || el, e, t, o);
6298         };
6299         if(o.delay){
6300             h = createDelayed(h, o);
6301         }
6302         if(o.single){
6303             h = createSingle(h, el, ename, fn);
6304         }
6305         if(o.buffer){
6306             h = createBuffered(h, o);
6307         }
6308         
6309         fn._handlers = fn._handlers || [];
6310         
6311         
6312         fn._handlers.push([Roo.id(el), ename, h]);
6313         
6314         
6315          
6316         E.on(el, ename, h);
6317         if(ename == "mousewheel" && el.addEventListener){ // workaround for jQuery
6318             el.addEventListener("DOMMouseScroll", h, false);
6319             E.on(window, 'unload', function(){
6320                 el.removeEventListener("DOMMouseScroll", h, false);
6321             });
6322         }
6323         if(ename == "mousedown" && el == document){ // fix stopped mousedowns on the document
6324             Roo.EventManager.stoppedMouseDownEvent.addListener(h);
6325         }
6326         return h;
6327     };
6328
6329     var stopListening = function(el, ename, fn){
6330         var id = Roo.id(el), hds = fn._handlers, hd = fn;
6331         if(hds){
6332             for(var i = 0, len = hds.length; i < len; i++){
6333                 var h = hds[i];
6334                 if(h[0] == id && h[1] == ename){
6335                     hd = h[2];
6336                     hds.splice(i, 1);
6337                     break;
6338                 }
6339             }
6340         }
6341         E.un(el, ename, hd);
6342         el = Roo.getDom(el);
6343         if(ename == "mousewheel" && el.addEventListener){
6344             el.removeEventListener("DOMMouseScroll", hd, false);
6345         }
6346         if(ename == "mousedown" && el == document){ // fix stopped mousedowns on the document
6347             Roo.EventManager.stoppedMouseDownEvent.removeListener(hd);
6348         }
6349     };
6350
6351     var propRe = /^(?:scope|delay|buffer|single|stopEvent|preventDefault|stopPropagation|normalized|args|delegate)$/;
6352     
6353     var pub = {
6354         
6355         
6356         /** 
6357          * Fix for doc tools
6358          * @scope Roo.EventManager
6359          */
6360         
6361         
6362         /** 
6363          * This is no longer needed and is deprecated. Places a simple wrapper around an event handler to override the browser event
6364          * object with a Roo.EventObject
6365          * @param {Function} fn        The method the event invokes
6366          * @param {Object}   scope    An object that becomes the scope of the handler
6367          * @param {boolean}  override If true, the obj passed in becomes
6368          *                             the execution scope of the listener
6369          * @return {Function} The wrapped function
6370          * @deprecated
6371          */
6372         wrap : function(fn, scope, override){
6373             return function(e){
6374                 Roo.EventObject.setEvent(e);
6375                 fn.call(override ? scope || window : window, Roo.EventObject, scope);
6376             };
6377         },
6378         
6379         /**
6380      * Appends an event handler to an element (shorthand for addListener)
6381      * @param {String/HTMLElement}   element        The html element or id to assign the
6382      * @param {String}   eventName The type of event to listen for
6383      * @param {Function} handler The method the event invokes
6384      * @param {Object}   scope (optional) The scope in which to execute the handler
6385      * function. The handler function's "this" context.
6386      * @param {Object}   options (optional) An object containing handler configuration
6387      * properties. This may contain any of the following properties:<ul>
6388      * <li>scope {Object} The scope in which to execute the handler function. The handler function's "this" context.</li>
6389      * <li>delegate {String} A simple selector to filter the target or look for a descendant of the target</li>
6390      * <li>stopEvent {Boolean} True to stop the event. That is stop propagation, and prevent the default action.</li>
6391      * <li>preventDefault {Boolean} True to prevent the default action</li>
6392      * <li>stopPropagation {Boolean} True to prevent event propagation</li>
6393      * <li>normalized {Boolean} False to pass a browser event to the handler function instead of an Roo.EventObject</li>
6394      * <li>delay {Number} The number of milliseconds to delay the invocation of the handler after te event fires.</li>
6395      * <li>single {Boolean} True to add a handler to handle just the next firing of the event, and then remove itself.</li>
6396      * <li>buffer {Number} Causes the handler to be scheduled to run in an {@link Roo.util.DelayedTask} delayed
6397      * by the specified number of milliseconds. If the event fires again within that time, the original
6398      * handler is <em>not</em> invoked, but the new handler is scheduled in its place.</li>
6399      * </ul><br>
6400      * <p>
6401      * <b>Combining Options</b><br>
6402      * Using the options argument, it is possible to combine different types of listeners:<br>
6403      * <br>
6404      * A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)<div style="margin: 5px 20px 20px;">
6405      * Code:<pre><code>
6406 el.on('click', this.onClick, this, {
6407     single: true,
6408     delay: 100,
6409     stopEvent : true,
6410     forumId: 4
6411 });</code></pre>
6412      * <p>
6413      * <b>Attaching multiple handlers in 1 call</b><br>
6414       * The method also allows for a single argument to be passed which is a config object containing properties
6415      * which specify multiple handlers.
6416      * <p>
6417      * Code:<pre><code>
6418 el.on({
6419     'click' : {
6420         fn: this.onClick
6421         scope: this,
6422         delay: 100
6423     },
6424     'mouseover' : {
6425         fn: this.onMouseOver
6426         scope: this
6427     },
6428     'mouseout' : {
6429         fn: this.onMouseOut
6430         scope: this
6431     }
6432 });</code></pre>
6433      * <p>
6434      * Or a shorthand syntax:<br>
6435      * Code:<pre><code>
6436 el.on({
6437     'click' : this.onClick,
6438     'mouseover' : this.onMouseOver,
6439     'mouseout' : this.onMouseOut
6440     scope: this
6441 });</code></pre>
6442      */
6443         addListener : function(element, eventName, fn, scope, options){
6444             if(typeof eventName == "object"){
6445                 var o = eventName;
6446                 for(var e in o){
6447                     if(propRe.test(e)){
6448                         continue;
6449                     }
6450                     if(typeof o[e] == "function"){
6451                         // shared options
6452                         listen(element, e, o, o[e], o.scope);
6453                     }else{
6454                         // individual options
6455                         listen(element, e, o[e]);
6456                     }
6457                 }
6458                 return;
6459             }
6460             return listen(element, eventName, options, fn, scope);
6461         },
6462         
6463         /**
6464          * Removes an event handler
6465          *
6466          * @param {String/HTMLElement}   element        The id or html element to remove the 
6467          *                             event from
6468          * @param {String}   eventName     The type of event
6469          * @param {Function} fn
6470          * @return {Boolean} True if a listener was actually removed
6471          */
6472         removeListener : function(element, eventName, fn){
6473             return stopListening(element, eventName, fn);
6474         },
6475         
6476         /**
6477          * Fires when the document is ready (before onload and before images are loaded). Can be 
6478          * accessed shorthanded Roo.onReady().
6479          * @param {Function} fn        The method the event invokes
6480          * @param {Object}   scope    An  object that becomes the scope of the handler
6481          * @param {boolean}  options
6482          */
6483         onDocumentReady : function(fn, scope, options){
6484             if(docReadyState){ // if it already fired
6485                 docReadyEvent.addListener(fn, scope, options);
6486                 docReadyEvent.fire();
6487                 docReadyEvent.clearListeners();
6488                 return;
6489             }
6490             if(!docReadyEvent){
6491                 initDocReady();
6492             }
6493             docReadyEvent.addListener(fn, scope, options);
6494         },
6495         
6496         /**
6497          * Fires when the window is resized and provides resize event buffering (50 milliseconds), passes new viewport width and height to handlers.
6498          * @param {Function} fn        The method the event invokes
6499          * @param {Object}   scope    An object that becomes the scope of the handler
6500          * @param {boolean}  options
6501          */
6502         onWindowResize : function(fn, scope, options){
6503             if(!resizeEvent){
6504                 resizeEvent = new Roo.util.Event();
6505                 resizeTask = new Roo.util.DelayedTask(function(){
6506                     resizeEvent.fire(D.getViewWidth(), D.getViewHeight());
6507                 });
6508                 E.on(window, "resize", function(){
6509                     if(Roo.isIE){
6510                         resizeTask.delay(50);
6511                     }else{
6512                         resizeEvent.fire(D.getViewWidth(), D.getViewHeight());
6513                     }
6514                 });
6515             }
6516             resizeEvent.addListener(fn, scope, options);
6517         },
6518
6519         /**
6520          * Fires when the user changes the active text size. Handler gets called with 2 params, the old size and the new size.
6521          * @param {Function} fn        The method the event invokes
6522          * @param {Object}   scope    An object that becomes the scope of the handler
6523          * @param {boolean}  options
6524          */
6525         onTextResize : function(fn, scope, options){
6526             if(!textEvent){
6527                 textEvent = new Roo.util.Event();
6528                 var textEl = new Roo.Element(document.createElement('div'));
6529                 textEl.dom.className = 'x-text-resize';
6530                 textEl.dom.innerHTML = 'X';
6531                 textEl.appendTo(document.body);
6532                 textSize = textEl.dom.offsetHeight;
6533                 setInterval(function(){
6534                     if(textEl.dom.offsetHeight != textSize){
6535                         textEvent.fire(textSize, textSize = textEl.dom.offsetHeight);
6536                     }
6537                 }, this.textResizeInterval);
6538             }
6539             textEvent.addListener(fn, scope, options);
6540         },
6541
6542         /**
6543          * Removes the passed window resize listener.
6544          * @param {Function} fn        The method the event invokes
6545          * @param {Object}   scope    The scope of handler
6546          */
6547         removeResizeListener : function(fn, scope){
6548             if(resizeEvent){
6549                 resizeEvent.removeListener(fn, scope);
6550             }
6551         },
6552
6553         // private
6554         fireResize : function(){
6555             if(resizeEvent){
6556                 resizeEvent.fire(D.getViewWidth(), D.getViewHeight());
6557             }   
6558         },
6559         /**
6560          * Url used for onDocumentReady with using SSL (defaults to Roo.SSL_SECURE_URL)
6561          */
6562         ieDeferSrc : false,
6563         /**
6564          * The frequency, in milliseconds, to check for text resize events (defaults to 50)
6565          */
6566         textResizeInterval : 50
6567     };
6568     
6569     /**
6570      * Fix for doc tools
6571      * @scopeAlias pub=Roo.EventManager
6572      */
6573     
6574      /**
6575      * Appends an event handler to an element (shorthand for addListener)
6576      * @param {String/HTMLElement}   element        The html element or id to assign the
6577      * @param {String}   eventName The type of event to listen for
6578      * @param {Function} handler The method the event invokes
6579      * @param {Object}   scope (optional) The scope in which to execute the handler
6580      * function. The handler function's "this" context.
6581      * @param {Object}   options (optional) An object containing handler configuration
6582      * properties. This may contain any of the following properties:<ul>
6583      * <li>scope {Object} The scope in which to execute the handler function. The handler function's "this" context.</li>
6584      * <li>delegate {String} A simple selector to filter the target or look for a descendant of the target</li>
6585      * <li>stopEvent {Boolean} True to stop the event. That is stop propagation, and prevent the default action.</li>
6586      * <li>preventDefault {Boolean} True to prevent the default action</li>
6587      * <li>stopPropagation {Boolean} True to prevent event propagation</li>
6588      * <li>normalized {Boolean} False to pass a browser event to the handler function instead of an Roo.EventObject</li>
6589      * <li>delay {Number} The number of milliseconds to delay the invocation of the handler after te event fires.</li>
6590      * <li>single {Boolean} True to add a handler to handle just the next firing of the event, and then remove itself.</li>
6591      * <li>buffer {Number} Causes the handler to be scheduled to run in an {@link Roo.util.DelayedTask} delayed
6592      * by the specified number of milliseconds. If the event fires again within that time, the original
6593      * handler is <em>not</em> invoked, but the new handler is scheduled in its place.</li>
6594      * </ul><br>
6595      * <p>
6596      * <b>Combining Options</b><br>
6597      * Using the options argument, it is possible to combine different types of listeners:<br>
6598      * <br>
6599      * A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)<div style="margin: 5px 20px 20px;">
6600      * Code:<pre><code>
6601 el.on('click', this.onClick, this, {
6602     single: true,
6603     delay: 100,
6604     stopEvent : true,
6605     forumId: 4
6606 });</code></pre>
6607      * <p>
6608      * <b>Attaching multiple handlers in 1 call</b><br>
6609       * The method also allows for a single argument to be passed which is a config object containing properties
6610      * which specify multiple handlers.
6611      * <p>
6612      * Code:<pre><code>
6613 el.on({
6614     'click' : {
6615         fn: this.onClick
6616         scope: this,
6617         delay: 100
6618     },
6619     'mouseover' : {
6620         fn: this.onMouseOver
6621         scope: this
6622     },
6623     'mouseout' : {
6624         fn: this.onMouseOut
6625         scope: this
6626     }
6627 });</code></pre>
6628      * <p>
6629      * Or a shorthand syntax:<br>
6630      * Code:<pre><code>
6631 el.on({
6632     'click' : this.onClick,
6633     'mouseover' : this.onMouseOver,
6634     'mouseout' : this.onMouseOut
6635     scope: this
6636 });</code></pre>
6637      */
6638     pub.on = pub.addListener;
6639     pub.un = pub.removeListener;
6640
6641     pub.stoppedMouseDownEvent = new Roo.util.Event();
6642     return pub;
6643 }();
6644 /**
6645   * Fires when the document is ready (before onload and before images are loaded).  Shorthand of {@link Roo.EventManager#onDocumentReady}.
6646   * @param {Function} fn        The method the event invokes
6647   * @param {Object}   scope    An  object that becomes the scope of the handler
6648   * @param {boolean}  override If true, the obj passed in becomes
6649   *                             the execution scope of the listener
6650   * @member Roo
6651   * @method onReady
6652  */
6653 Roo.onReady = Roo.EventManager.onDocumentReady;
6654
6655 Roo.onReady(function(){
6656     var bd = Roo.get(document.body);
6657     if(!bd){ return; }
6658
6659     var cls = [
6660             Roo.isIE ? "roo-ie"
6661             : Roo.isIE11 ? "roo-ie11"
6662             : Roo.isEdge ? "roo-edge"
6663             : Roo.isGecko ? "roo-gecko"
6664             : Roo.isOpera ? "roo-opera"
6665             : Roo.isSafari ? "roo-safari" : ""];
6666
6667     if(Roo.isMac){
6668         cls.push("roo-mac");
6669     }
6670     if(Roo.isLinux){
6671         cls.push("roo-linux");
6672     }
6673     if(Roo.isIOS){
6674         cls.push("roo-ios");
6675     }
6676     if(Roo.isTouch){
6677         cls.push("roo-touch");
6678     }
6679     if(Roo.isBorderBox){
6680         cls.push('roo-border-box');
6681     }
6682     if(Roo.isStrict){ // add to the parent to allow for selectors like ".ext-strict .ext-ie"
6683         var p = bd.dom.parentNode;
6684         if(p){
6685             p.className += ' roo-strict';
6686         }
6687     }
6688     bd.addClass(cls.join(' '));
6689 });
6690
6691 /**
6692  * @class Roo.EventObject
6693  * EventObject exposes the Yahoo! UI Event functionality directly on the object
6694  * passed to your event handler. It exists mostly for convenience. It also fixes the annoying null checks automatically to cleanup your code 
6695  * Example:
6696  * <pre><code>
6697  function handleClick(e){ // e is not a standard event object, it is a Roo.EventObject
6698     e.preventDefault();
6699     var target = e.getTarget();
6700     ...
6701  }
6702  var myDiv = Roo.get("myDiv");
6703  myDiv.on("click", handleClick);
6704  //or
6705  Roo.EventManager.on("myDiv", 'click', handleClick);
6706  Roo.EventManager.addListener("myDiv", 'click', handleClick);
6707  </code></pre>
6708  * @singleton
6709  */
6710 Roo.EventObject = function(){
6711     
6712     var E = Roo.lib.Event;
6713     
6714     // safari keypress events for special keys return bad keycodes
6715     var safariKeys = {
6716         63234 : 37, // left
6717         63235 : 39, // right
6718         63232 : 38, // up
6719         63233 : 40, // down
6720         63276 : 33, // page up
6721         63277 : 34, // page down
6722         63272 : 46, // delete
6723         63273 : 36, // home
6724         63275 : 35  // end
6725     };
6726
6727     // normalize button clicks
6728     var btnMap = Roo.isIE ? {1:0,4:1,2:2} :
6729                 (Roo.isSafari ? {1:0,2:1,3:2} : {0:0,1:1,2:2});
6730
6731     Roo.EventObjectImpl = function(e){
6732         if(e){
6733             this.setEvent(e.browserEvent || e);
6734         }
6735     };
6736     Roo.EventObjectImpl.prototype = {
6737         /**
6738          * Used to fix doc tools.
6739          * @scope Roo.EventObject.prototype
6740          */
6741             
6742
6743         
6744         
6745         /** The normal browser event */
6746         browserEvent : null,
6747         /** The button pressed in a mouse event */
6748         button : -1,
6749         /** True if the shift key was down during the event */
6750         shiftKey : false,
6751         /** True if the control key was down during the event */
6752         ctrlKey : false,
6753         /** True if the alt key was down during the event */
6754         altKey : false,
6755
6756         /** Key constant 
6757         * @type Number */
6758         BACKSPACE : 8,
6759         /** Key constant 
6760         * @type Number */
6761         TAB : 9,
6762         /** Key constant 
6763         * @type Number */
6764         RETURN : 13,
6765         /** Key constant 
6766         * @type Number */
6767         ENTER : 13,
6768         /** Key constant 
6769         * @type Number */
6770         SHIFT : 16,
6771         /** Key constant 
6772         * @type Number */
6773         CONTROL : 17,
6774         /** Key constant 
6775         * @type Number */
6776         ESC : 27,
6777         /** Key constant 
6778         * @type Number */
6779         SPACE : 32,
6780         /** Key constant 
6781         * @type Number */
6782         PAGEUP : 33,
6783         /** Key constant 
6784         * @type Number */
6785         PAGEDOWN : 34,
6786         /** Key constant 
6787         * @type Number */
6788         END : 35,
6789         /** Key constant 
6790         * @type Number */
6791         HOME : 36,
6792         /** Key constant 
6793         * @type Number */
6794         LEFT : 37,
6795         /** Key constant 
6796         * @type Number */
6797         UP : 38,
6798         /** Key constant 
6799         * @type Number */
6800         RIGHT : 39,
6801         /** Key constant 
6802         * @type Number */
6803         DOWN : 40,
6804         /** Key constant 
6805         * @type Number */
6806         DELETE : 46,
6807         /** Key constant 
6808         * @type Number */
6809         F5 : 116,
6810
6811            /** @private */
6812         setEvent : function(e){
6813             if(e == this || (e && e.browserEvent)){ // already wrapped
6814                 return e;
6815             }
6816             this.browserEvent = e;
6817             if(e){
6818                 // normalize buttons
6819                 this.button = e.button ? btnMap[e.button] : (e.which ? e.which-1 : -1);
6820                 if(e.type == 'click' && this.button == -1){
6821                     this.button = 0;
6822                 }
6823                 this.type = e.type;
6824                 this.shiftKey = e.shiftKey;
6825                 // mac metaKey behaves like ctrlKey
6826                 this.ctrlKey = e.ctrlKey || e.metaKey;
6827                 this.altKey = e.altKey;
6828                 // in getKey these will be normalized for the mac
6829                 this.keyCode = e.keyCode;
6830                 // keyup warnings on firefox.
6831                 this.charCode = (e.type == 'keyup' || e.type == 'keydown') ? 0 : e.charCode;
6832                 // cache the target for the delayed and or buffered events
6833                 this.target = E.getTarget(e);
6834                 // same for XY
6835                 this.xy = E.getXY(e);
6836             }else{
6837                 this.button = -1;
6838                 this.shiftKey = false;
6839                 this.ctrlKey = false;
6840                 this.altKey = false;
6841                 this.keyCode = 0;
6842                 this.charCode =0;
6843                 this.target = null;
6844                 this.xy = [0, 0];
6845             }
6846             return this;
6847         },
6848
6849         /**
6850          * Stop the event (preventDefault and stopPropagation)
6851          */
6852         stopEvent : function(){
6853             if(this.browserEvent){
6854                 if(this.browserEvent.type == 'mousedown'){
6855                     Roo.EventManager.stoppedMouseDownEvent.fire(this);
6856                 }
6857                 E.stopEvent(this.browserEvent);
6858             }
6859         },
6860
6861         /**
6862          * Prevents the browsers default handling of the event.
6863          */
6864         preventDefault : function(){
6865             if(this.browserEvent){
6866                 E.preventDefault(this.browserEvent);
6867             }
6868         },
6869
6870         /** @private */
6871         isNavKeyPress : function(){
6872             var k = this.keyCode;
6873             k = Roo.isSafari ? (safariKeys[k] || k) : k;
6874             return (k >= 33 && k <= 40) || k == this.RETURN || k == this.TAB || k == this.ESC;
6875         },
6876
6877         isSpecialKey : function(){
6878             var k = this.keyCode;
6879             return (this.type == 'keypress' && this.ctrlKey) || k == 9 || k == 13  || k == 40 || k == 27 ||
6880             (k == 16) || (k == 17) ||
6881             (k >= 18 && k <= 20) ||
6882             (k >= 33 && k <= 35) ||
6883             (k >= 36 && k <= 39) ||
6884             (k >= 44 && k <= 45);
6885         },
6886         /**
6887          * Cancels bubbling of the event.
6888          */
6889         stopPropagation : function(){
6890             if(this.browserEvent){
6891                 if(this.type == 'mousedown'){
6892                     Roo.EventManager.stoppedMouseDownEvent.fire(this);
6893                 }
6894                 E.stopPropagation(this.browserEvent);
6895             }
6896         },
6897
6898         /**
6899          * Gets the key code for the event.
6900          * @return {Number}
6901          */
6902         getCharCode : function(){
6903             return this.charCode || this.keyCode;
6904         },
6905
6906         /**
6907          * Returns a normalized keyCode for the event.
6908          * @return {Number} The key code
6909          */
6910         getKey : function(){
6911             var k = this.keyCode || this.charCode;
6912             return Roo.isSafari ? (safariKeys[k] || k) : k;
6913         },
6914
6915         /**
6916          * Gets the x coordinate of the event.
6917          * @return {Number}
6918          */
6919         getPageX : function(){
6920             return this.xy[0];
6921         },
6922
6923         /**
6924          * Gets the y coordinate of the event.
6925          * @return {Number}
6926          */
6927         getPageY : function(){
6928             return this.xy[1];
6929         },
6930
6931         /**
6932          * Gets the time of the event.
6933          * @return {Number}
6934          */
6935         getTime : function(){
6936             if(this.browserEvent){
6937                 return E.getTime(this.browserEvent);
6938             }
6939             return null;
6940         },
6941
6942         /**
6943          * Gets the page coordinates of the event.
6944          * @return {Array} The xy values like [x, y]
6945          */
6946         getXY : function(){
6947             return this.xy;
6948         },
6949
6950         /**
6951          * Gets the target for the event.
6952          * @param {String} selector (optional) A simple selector to filter the target or look for an ancestor of the target
6953          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
6954                 search as a number or element (defaults to 10 || document.body)
6955          * @param {Boolean} returnEl (optional) True to return a Roo.Element object instead of DOM node
6956          * @return {HTMLelement}
6957          */
6958         getTarget : function(selector, maxDepth, returnEl){
6959             return selector ? Roo.fly(this.target).findParent(selector, maxDepth, returnEl) : this.target;
6960         },
6961         /**
6962          * Gets the related target.
6963          * @return {HTMLElement}
6964          */
6965         getRelatedTarget : function(){
6966             if(this.browserEvent){
6967                 return E.getRelatedTarget(this.browserEvent);
6968             }
6969             return null;
6970         },
6971
6972         /**
6973          * Normalizes mouse wheel delta across browsers
6974          * @return {Number} The delta
6975          */
6976         getWheelDelta : function(){
6977             var e = this.browserEvent;
6978             var delta = 0;
6979             if(e.wheelDelta){ /* IE/Opera. */
6980                 delta = e.wheelDelta/120;
6981             }else if(e.detail){ /* Mozilla case. */
6982                 delta = -e.detail/3;
6983             }
6984             return delta;
6985         },
6986
6987         /**
6988          * Returns true if the control, meta, shift or alt key was pressed during this event.
6989          * @return {Boolean}
6990          */
6991         hasModifier : function(){
6992             return !!((this.ctrlKey || this.altKey) || this.shiftKey);
6993         },
6994
6995         /**
6996          * Returns true if the target of this event equals el or is a child of el
6997          * @param {String/HTMLElement/Element} el
6998          * @param {Boolean} related (optional) true to test if the related target is within el instead of the target
6999          * @return {Boolean}
7000          */
7001         within : function(el, related){
7002             var t = this[related ? "getRelatedTarget" : "getTarget"]();
7003             return t && Roo.fly(el).contains(t);
7004         },
7005
7006         getPoint : function(){
7007             return new Roo.lib.Point(this.xy[0], this.xy[1]);
7008         }
7009     };
7010
7011     return new Roo.EventObjectImpl();
7012 }();
7013             
7014     /*
7015  * Based on:
7016  * Ext JS Library 1.1.1
7017  * Copyright(c) 2006-2007, Ext JS, LLC.
7018  *
7019  * Originally Released Under LGPL - original licence link has changed is not relivant.
7020  *
7021  * Fork - LGPL
7022  * <script type="text/javascript">
7023  */
7024
7025  
7026 // was in Composite Element!??!?!
7027  
7028 (function(){
7029     var D = Roo.lib.Dom;
7030     var E = Roo.lib.Event;
7031     var A = Roo.lib.Anim;
7032
7033     // local style camelizing for speed
7034     var propCache = {};
7035     var camelRe = /(-[a-z])/gi;
7036     var camelFn = function(m, a){ return a.charAt(1).toUpperCase(); };
7037     var view = document.defaultView;
7038
7039 /**
7040  * @class Roo.Element
7041  * Represents an Element in the DOM.<br><br>
7042  * Usage:<br>
7043 <pre><code>
7044 var el = Roo.get("my-div");
7045
7046 // or with getEl
7047 var el = getEl("my-div");
7048
7049 // or with a DOM element
7050 var el = Roo.get(myDivElement);
7051 </code></pre>
7052  * Using Roo.get() or getEl() instead of calling the constructor directly ensures you get the same object
7053  * each call instead of constructing a new one.<br><br>
7054  * <b>Animations</b><br />
7055  * Many of the functions for manipulating an element have an optional "animate" parameter. The animate parameter
7056  * should either be a boolean (true) or an object literal with animation options. The animation options are:
7057 <pre>
7058 Option    Default   Description
7059 --------- --------  ---------------------------------------------
7060 duration  .35       The duration of the animation in seconds
7061 easing    easeOut   The YUI easing method
7062 callback  none      A function to execute when the anim completes
7063 scope     this      The scope (this) of the callback function
7064 </pre>
7065 * Also, the Anim object being used for the animation will be set on your options object as "anim", which allows you to stop or
7066 * manipulate the animation. Here's an example:
7067 <pre><code>
7068 var el = Roo.get("my-div");
7069
7070 // no animation
7071 el.setWidth(100);
7072
7073 // default animation
7074 el.setWidth(100, true);
7075
7076 // animation with some options set
7077 el.setWidth(100, {
7078     duration: 1,
7079     callback: this.foo,
7080     scope: this
7081 });
7082
7083 // using the "anim" property to get the Anim object
7084 var opt = {
7085     duration: 1,
7086     callback: this.foo,
7087     scope: this
7088 };
7089 el.setWidth(100, opt);
7090 ...
7091 if(opt.anim.isAnimated()){
7092     opt.anim.stop();
7093 }
7094 </code></pre>
7095 * <b> Composite (Collections of) Elements</b><br />
7096  * For working with collections of Elements, see <a href="Roo.CompositeElement.html">Roo.CompositeElement</a>
7097  * @constructor Create a new Element directly.
7098  * @param {String/HTMLElement} element
7099  * @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).
7100  */
7101     Roo.Element = function(element, forceNew){
7102         var dom = typeof element == "string" ?
7103                 document.getElementById(element) : element;
7104         if(!dom){ // invalid id/element
7105             return null;
7106         }
7107         var id = dom.id;
7108         if(forceNew !== true && id && Roo.Element.cache[id]){ // element object already exists
7109             return Roo.Element.cache[id];
7110         }
7111
7112         /**
7113          * The DOM element
7114          * @type HTMLElement
7115          */
7116         this.dom = dom;
7117
7118         /**
7119          * The DOM element ID
7120          * @type String
7121          */
7122         this.id = id || Roo.id(dom);
7123     };
7124
7125     var El = Roo.Element;
7126
7127     El.prototype = {
7128         /**
7129          * The element's default display mode  (defaults to "")
7130          * @type String
7131          */
7132         originalDisplay : "",
7133
7134         visibilityMode : 1,
7135         /**
7136          * The default unit to append to CSS values where a unit isn't provided (defaults to px).
7137          * @type String
7138          */
7139         defaultUnit : "px",
7140         
7141         /**
7142          * Sets the element's visibility mode. When setVisible() is called it
7143          * will use this to determine whether to set the visibility or the display property.
7144          * @param visMode Element.VISIBILITY or Element.DISPLAY
7145          * @return {Roo.Element} this
7146          */
7147         setVisibilityMode : function(visMode){
7148             this.visibilityMode = visMode;
7149             return this;
7150         },
7151         /**
7152          * Convenience method for setVisibilityMode(Element.DISPLAY)
7153          * @param {String} display (optional) What to set display to when visible
7154          * @return {Roo.Element} this
7155          */
7156         enableDisplayMode : function(display){
7157             this.setVisibilityMode(El.DISPLAY);
7158             if(typeof display != "undefined") { this.originalDisplay = display; }
7159             return this;
7160         },
7161
7162         /**
7163          * 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)
7164          * @param {String} selector The simple selector to test
7165          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
7166                 search as a number or element (defaults to 10 || document.body)
7167          * @param {Boolean} returnEl (optional) True to return a Roo.Element object instead of DOM node
7168          * @return {HTMLElement} The matching DOM node (or null if no match was found)
7169          */
7170         findParent : function(simpleSelector, maxDepth, returnEl){
7171             var p = this.dom, b = document.body, depth = 0, dq = Roo.DomQuery, stopEl;
7172             maxDepth = maxDepth || 50;
7173             if(typeof maxDepth != "number"){
7174                 stopEl = Roo.getDom(maxDepth);
7175                 maxDepth = 10;
7176             }
7177             while(p && p.nodeType == 1 && depth < maxDepth && p != b && p != stopEl){
7178                 if(dq.is(p, simpleSelector)){
7179                     return returnEl ? Roo.get(p) : p;
7180                 }
7181                 depth++;
7182                 p = p.parentNode;
7183             }
7184             return null;
7185         },
7186
7187
7188         /**
7189          * Looks at parent nodes for a match of the passed simple selector (e.g. div.some-class or span:first-child)
7190          * @param {String} selector The simple selector to test
7191          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
7192                 search as a number or element (defaults to 10 || document.body)
7193          * @param {Boolean} returnEl (optional) True to return a Roo.Element object instead of DOM node
7194          * @return {HTMLElement} The matching DOM node (or null if no match was found)
7195          */
7196         findParentNode : function(simpleSelector, maxDepth, returnEl){
7197             var p = Roo.fly(this.dom.parentNode, '_internal');
7198             return p ? p.findParent(simpleSelector, maxDepth, returnEl) : null;
7199         },
7200         
7201         /**
7202          * Looks at  the scrollable parent element
7203          */
7204         findScrollableParent : function()
7205         {
7206             var overflowRegex = /(auto|scroll)/;
7207             
7208             if(this.getStyle('position') === 'fixed'){
7209                 return Roo.isAndroid ? Roo.get(document.documentElement) : Roo.get(document.body);
7210             }
7211             
7212             var excludeStaticParent = this.getStyle('position') === "absolute";
7213             
7214             for (var parent = this; (parent = Roo.get(parent.dom.parentNode));){
7215                 
7216                 if (excludeStaticParent && parent.getStyle('position') === "static") {
7217                     continue;
7218                 }
7219                 
7220                 if (overflowRegex.test(parent.getStyle('overflow') + parent.getStyle('overflow-x') + parent.getStyle('overflow-y'))){
7221                     return parent;
7222                 }
7223                 
7224                 if(parent.dom.nodeName.toLowerCase() == 'body'){
7225                     return Roo.isAndroid ? Roo.get(document.documentElement) : Roo.get(document.body);
7226                 }
7227             }
7228             
7229             return Roo.isAndroid ? Roo.get(document.documentElement) : Roo.get(document.body);
7230         },
7231
7232         /**
7233          * Walks up the dom looking for a parent node that matches the passed simple selector (e.g. div.some-class or span:first-child).
7234          * This is a shortcut for findParentNode() that always returns an Roo.Element.
7235          * @param {String} selector The simple selector to test
7236          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
7237                 search as a number or element (defaults to 10 || document.body)
7238          * @return {Roo.Element} The matching DOM node (or null if no match was found)
7239          */
7240         up : function(simpleSelector, maxDepth){
7241             return this.findParentNode(simpleSelector, maxDepth, true);
7242         },
7243
7244
7245
7246         /**
7247          * Returns true if this element matches the passed simple selector (e.g. div.some-class or span:first-child)
7248          * @param {String} selector The simple selector to test
7249          * @return {Boolean} True if this element matches the selector, else false
7250          */
7251         is : function(simpleSelector){
7252             return Roo.DomQuery.is(this.dom, simpleSelector);
7253         },
7254
7255         /**
7256          * Perform animation on this element.
7257          * @param {Object} args The YUI animation control args
7258          * @param {Float} duration (optional) How long the animation lasts in seconds (defaults to .35)
7259          * @param {Function} onComplete (optional) Function to call when animation completes
7260          * @param {String} easing (optional) Easing method to use (defaults to 'easeOut')
7261          * @param {String} animType (optional) 'run' is the default. Can also be 'color', 'motion', or 'scroll'
7262          * @return {Roo.Element} this
7263          */
7264         animate : function(args, duration, onComplete, easing, animType){
7265             this.anim(args, {duration: duration, callback: onComplete, easing: easing}, animType);
7266             return this;
7267         },
7268
7269         /*
7270          * @private Internal animation call
7271          */
7272         anim : function(args, opt, animType, defaultDur, defaultEase, cb){
7273             animType = animType || 'run';
7274             opt = opt || {};
7275             var anim = Roo.lib.Anim[animType](
7276                 this.dom, args,
7277                 (opt.duration || defaultDur) || .35,
7278                 (opt.easing || defaultEase) || 'easeOut',
7279                 function(){
7280                     Roo.callback(cb, this);
7281                     Roo.callback(opt.callback, opt.scope || this, [this, opt]);
7282                 },
7283                 this
7284             );
7285             opt.anim = anim;
7286             return anim;
7287         },
7288
7289         // private legacy anim prep
7290         preanim : function(a, i){
7291             return !a[i] ? false : (typeof a[i] == "object" ? a[i]: {duration: a[i+1], callback: a[i+2], easing: a[i+3]});
7292         },
7293
7294         /**
7295          * Removes worthless text nodes
7296          * @param {Boolean} forceReclean (optional) By default the element
7297          * keeps track if it has been cleaned already so
7298          * you can call this over and over. However, if you update the element and
7299          * need to force a reclean, you can pass true.
7300          */
7301         clean : function(forceReclean){
7302             if(this.isCleaned && forceReclean !== true){
7303                 return this;
7304             }
7305             var ns = /\S/;
7306             var d = this.dom, n = d.firstChild, ni = -1;
7307             while(n){
7308                 var nx = n.nextSibling;
7309                 if(n.nodeType == 3 && !ns.test(n.nodeValue)){
7310                     d.removeChild(n);
7311                 }else{
7312                     n.nodeIndex = ++ni;
7313                 }
7314                 n = nx;
7315             }
7316             this.isCleaned = true;
7317             return this;
7318         },
7319
7320         // private
7321         calcOffsetsTo : function(el){
7322             el = Roo.get(el);
7323             var d = el.dom;
7324             var restorePos = false;
7325             if(el.getStyle('position') == 'static'){
7326                 el.position('relative');
7327                 restorePos = true;
7328             }
7329             var x = 0, y =0;
7330             var op = this.dom;
7331             while(op && op != d && op.tagName != 'HTML'){
7332                 x+= op.offsetLeft;
7333                 y+= op.offsetTop;
7334                 op = op.offsetParent;
7335             }
7336             if(restorePos){
7337                 el.position('static');
7338             }
7339             return [x, y];
7340         },
7341
7342         /**
7343          * Scrolls this element into view within the passed container.
7344          * @param {String/HTMLElement/Element} container (optional) The container element to scroll (defaults to document.body)
7345          * @param {Boolean} hscroll (optional) False to disable horizontal scroll (defaults to true)
7346          * @return {Roo.Element} this
7347          */
7348         scrollIntoView : function(container, hscroll){
7349             var c = Roo.getDom(container) || document.body;
7350             var el = this.dom;
7351
7352             var o = this.calcOffsetsTo(c),
7353                 l = o[0],
7354                 t = o[1],
7355                 b = t+el.offsetHeight,
7356                 r = l+el.offsetWidth;
7357
7358             var ch = c.clientHeight;
7359             var ct = parseInt(c.scrollTop, 10);
7360             var cl = parseInt(c.scrollLeft, 10);
7361             var cb = ct + ch;
7362             var cr = cl + c.clientWidth;
7363
7364             if(t < ct){
7365                 c.scrollTop = t;
7366             }else if(b > cb){
7367                 c.scrollTop = b-ch;
7368             }
7369
7370             if(hscroll !== false){
7371                 if(l < cl){
7372                     c.scrollLeft = l;
7373                 }else if(r > cr){
7374                     c.scrollLeft = r-c.clientWidth;
7375                 }
7376             }
7377             return this;
7378         },
7379
7380         // private
7381         scrollChildIntoView : function(child, hscroll){
7382             Roo.fly(child, '_scrollChildIntoView').scrollIntoView(this, hscroll);
7383         },
7384
7385         /**
7386          * Measures the element's content height and updates height to match. Note: this function uses setTimeout so
7387          * the new height may not be available immediately.
7388          * @param {Boolean} animate (optional) Animate the transition (defaults to false)
7389          * @param {Float} duration (optional) Length of the animation in seconds (defaults to .35)
7390          * @param {Function} onComplete (optional) Function to call when animation completes
7391          * @param {String} easing (optional) Easing method to use (defaults to easeOut)
7392          * @return {Roo.Element} this
7393          */
7394         autoHeight : function(animate, duration, onComplete, easing){
7395             var oldHeight = this.getHeight();
7396             this.clip();
7397             this.setHeight(1); // force clipping
7398             setTimeout(function(){
7399                 var height = parseInt(this.dom.scrollHeight, 10); // parseInt for Safari
7400                 if(!animate){
7401                     this.setHeight(height);
7402                     this.unclip();
7403                     if(typeof onComplete == "function"){
7404                         onComplete();
7405                     }
7406                 }else{
7407                     this.setHeight(oldHeight); // restore original height
7408                     this.setHeight(height, animate, duration, function(){
7409                         this.unclip();
7410                         if(typeof onComplete == "function") { onComplete(); }
7411                     }.createDelegate(this), easing);
7412                 }
7413             }.createDelegate(this), 0);
7414             return this;
7415         },
7416
7417         /**
7418          * Returns true if this element is an ancestor of the passed element
7419          * @param {HTMLElement/String} el The element to check
7420          * @return {Boolean} True if this element is an ancestor of el, else false
7421          */
7422         contains : function(el){
7423             if(!el){return false;}
7424             return D.isAncestor(this.dom, el.dom ? el.dom : el);
7425         },
7426
7427         /**
7428          * Checks whether the element is currently visible using both visibility and display properties.
7429          * @param {Boolean} deep (optional) True to walk the dom and see if parent elements are hidden (defaults to false)
7430          * @return {Boolean} True if the element is currently visible, else false
7431          */
7432         isVisible : function(deep) {
7433             var vis = !(this.getStyle("visibility") == "hidden" || this.getStyle("display") == "none");
7434             if(deep !== true || !vis){
7435                 return vis;
7436             }
7437             var p = this.dom.parentNode;
7438             while(p && p.tagName.toLowerCase() != "body"){
7439                 if(!Roo.fly(p, '_isVisible').isVisible()){
7440                     return false;
7441                 }
7442                 p = p.parentNode;
7443             }
7444             return true;
7445         },
7446
7447         /**
7448          * Creates a {@link Roo.CompositeElement} for child nodes based on the passed CSS selector (the selector should not contain an id).
7449          * @param {String} selector The CSS selector
7450          * @param {Boolean} unique (optional) True to create a unique Roo.Element for each child (defaults to false, which creates a single shared flyweight object)
7451          * @return {CompositeElement/CompositeElementLite} The composite element
7452          */
7453         select : function(selector, unique){
7454             return El.select(selector, unique, this.dom);
7455         },
7456
7457         /**
7458          * Selects child nodes based on the passed CSS selector (the selector should not contain an id).
7459          * @param {String} selector The CSS selector
7460          * @return {Array} An array of the matched nodes
7461          */
7462         query : function(selector, unique){
7463             return Roo.DomQuery.select(selector, this.dom);
7464         },
7465
7466         /**
7467          * Selects a single child at any depth below this element based on the passed CSS selector (the selector should not contain an id).
7468          * @param {String} selector The CSS selector
7469          * @param {Boolean} returnDom (optional) True to return the DOM node instead of Roo.Element (defaults to false)
7470          * @return {HTMLElement/Roo.Element} The child Roo.Element (or DOM node if returnDom = true)
7471          */
7472         child : function(selector, returnDom){
7473             var n = Roo.DomQuery.selectNode(selector, this.dom);
7474             return returnDom ? n : Roo.get(n);
7475         },
7476
7477         /**
7478          * Selects a single *direct* child based on the passed CSS selector (the selector should not contain an id).
7479          * @param {String} selector The CSS selector
7480          * @param {Boolean} returnDom (optional) True to return the DOM node instead of Roo.Element (defaults to false)
7481          * @return {HTMLElement/Roo.Element} The child Roo.Element (or DOM node if returnDom = true)
7482          */
7483         down : function(selector, returnDom){
7484             var n = Roo.DomQuery.selectNode(" > " + selector, this.dom);
7485             return returnDom ? n : Roo.get(n);
7486         },
7487
7488         /**
7489          * Initializes a {@link Roo.dd.DD} drag drop object for this element.
7490          * @param {String} group The group the DD object is member of
7491          * @param {Object} config The DD config object
7492          * @param {Object} overrides An object containing methods to override/implement on the DD object
7493          * @return {Roo.dd.DD} The DD object
7494          */
7495         initDD : function(group, config, overrides){
7496             var dd = new Roo.dd.DD(Roo.id(this.dom), group, config);
7497             return Roo.apply(dd, overrides);
7498         },
7499
7500         /**
7501          * Initializes a {@link Roo.dd.DDProxy} object for this element.
7502          * @param {String} group The group the DDProxy object is member of
7503          * @param {Object} config The DDProxy config object
7504          * @param {Object} overrides An object containing methods to override/implement on the DDProxy object
7505          * @return {Roo.dd.DDProxy} The DDProxy object
7506          */
7507         initDDProxy : function(group, config, overrides){
7508             var dd = new Roo.dd.DDProxy(Roo.id(this.dom), group, config);
7509             return Roo.apply(dd, overrides);
7510         },
7511
7512         /**
7513          * Initializes a {@link Roo.dd.DDTarget} object for this element.
7514          * @param {String} group The group the DDTarget object is member of
7515          * @param {Object} config The DDTarget config object
7516          * @param {Object} overrides An object containing methods to override/implement on the DDTarget object
7517          * @return {Roo.dd.DDTarget} The DDTarget object
7518          */
7519         initDDTarget : function(group, config, overrides){
7520             var dd = new Roo.dd.DDTarget(Roo.id(this.dom), group, config);
7521             return Roo.apply(dd, overrides);
7522         },
7523
7524         /**
7525          * Sets the visibility of the element (see details). If the visibilityMode is set to Element.DISPLAY, it will use
7526          * the display property to hide the element, otherwise it uses visibility. The default is to hide and show using the visibility property.
7527          * @param {Boolean} visible Whether the element is visible
7528          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7529          * @return {Roo.Element} this
7530          */
7531          setVisible : function(visible, animate){
7532             if(!animate || !A){
7533                 if(this.visibilityMode == El.DISPLAY){
7534                     this.setDisplayed(visible);
7535                 }else{
7536                     this.fixDisplay();
7537                     this.dom.style.visibility = visible ? "visible" : "hidden";
7538                 }
7539             }else{
7540                 // closure for composites
7541                 var dom = this.dom;
7542                 var visMode = this.visibilityMode;
7543                 if(visible){
7544                     this.setOpacity(.01);
7545                     this.setVisible(true);
7546                 }
7547                 this.anim({opacity: { to: (visible?1:0) }},
7548                       this.preanim(arguments, 1),
7549                       null, .35, 'easeIn', function(){
7550                          if(!visible){
7551                              if(visMode == El.DISPLAY){
7552                                  dom.style.display = "none";
7553                              }else{
7554                                  dom.style.visibility = "hidden";
7555                              }
7556                              Roo.get(dom).setOpacity(1);
7557                          }
7558                      });
7559             }
7560             return this;
7561         },
7562
7563         /**
7564          * Returns true if display is not "none"
7565          * @return {Boolean}
7566          */
7567         isDisplayed : function() {
7568             return this.getStyle("display") != "none";
7569         },
7570
7571         /**
7572          * Toggles the element's visibility or display, depending on visibility mode.
7573          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7574          * @return {Roo.Element} this
7575          */
7576         toggle : function(animate){
7577             this.setVisible(!this.isVisible(), this.preanim(arguments, 0));
7578             return this;
7579         },
7580
7581         /**
7582          * Sets the CSS display property. Uses originalDisplay if the specified value is a boolean true.
7583          * @param {Boolean} value Boolean value to display the element using its default display, or a string to set the display directly
7584          * @return {Roo.Element} this
7585          */
7586         setDisplayed : function(value) {
7587             if(typeof value == "boolean"){
7588                value = value ? this.originalDisplay : "none";
7589             }
7590             this.setStyle("display", value);
7591             return this;
7592         },
7593
7594         /**
7595          * Tries to focus the element. Any exceptions are caught and ignored.
7596          * @return {Roo.Element} this
7597          */
7598         focus : function() {
7599             try{
7600                 this.dom.focus();
7601             }catch(e){}
7602             return this;
7603         },
7604
7605         /**
7606          * Tries to blur the element. Any exceptions are caught and ignored.
7607          * @return {Roo.Element} this
7608          */
7609         blur : function() {
7610             try{
7611                 this.dom.blur();
7612             }catch(e){}
7613             return this;
7614         },
7615
7616         /**
7617          * Adds one or more CSS classes to the element. Duplicate classes are automatically filtered out.
7618          * @param {String/Array} className The CSS class to add, or an array of classes
7619          * @return {Roo.Element} this
7620          */
7621         addClass : function(className){
7622             if(className instanceof Array){
7623                 for(var i = 0, len = className.length; i < len; i++) {
7624                     this.addClass(className[i]);
7625                 }
7626             }else{
7627                 if(className && !this.hasClass(className)){
7628                     this.dom.className = this.dom.className + " " + className;
7629                 }
7630             }
7631             return this;
7632         },
7633
7634         /**
7635          * Adds one or more CSS classes to this element and removes the same class(es) from all siblings.
7636          * @param {String/Array} className The CSS class to add, or an array of classes
7637          * @return {Roo.Element} this
7638          */
7639         radioClass : function(className){
7640             var siblings = this.dom.parentNode.childNodes;
7641             for(var i = 0; i < siblings.length; i++) {
7642                 var s = siblings[i];
7643                 if(s.nodeType == 1){
7644                     Roo.get(s).removeClass(className);
7645                 }
7646             }
7647             this.addClass(className);
7648             return this;
7649         },
7650
7651         /**
7652          * Removes one or more CSS classes from the element.
7653          * @param {String/Array} className The CSS class to remove, or an array of classes
7654          * @return {Roo.Element} this
7655          */
7656         removeClass : function(className){
7657             if(!className || !this.dom.className){
7658                 return this;
7659             }
7660             if(className instanceof Array){
7661                 for(var i = 0, len = className.length; i < len; i++) {
7662                     this.removeClass(className[i]);
7663                 }
7664             }else{
7665                 if(this.hasClass(className)){
7666                     var re = this.classReCache[className];
7667                     if (!re) {
7668                        re = new RegExp('(?:^|\\s+)' + className + '(?:\\s+|$)', "g");
7669                        this.classReCache[className] = re;
7670                     }
7671                     this.dom.className =
7672                         this.dom.className.replace(re, " ");
7673                 }
7674             }
7675             return this;
7676         },
7677
7678         // private
7679         classReCache: {},
7680
7681         /**
7682          * Toggles the specified CSS class on this element (removes it if it already exists, otherwise adds it).
7683          * @param {String} className The CSS class to toggle
7684          * @return {Roo.Element} this
7685          */
7686         toggleClass : function(className){
7687             if(this.hasClass(className)){
7688                 this.removeClass(className);
7689             }else{
7690                 this.addClass(className);
7691             }
7692             return this;
7693         },
7694
7695         /**
7696          * Checks if the specified CSS class exists on this element's DOM node.
7697          * @param {String} className The CSS class to check for
7698          * @return {Boolean} True if the class exists, else false
7699          */
7700         hasClass : function(className){
7701             return className && (' '+this.dom.className+' ').indexOf(' '+className+' ') != -1;
7702         },
7703
7704         /**
7705          * Replaces a CSS class on the element with another.  If the old name does not exist, the new name will simply be added.
7706          * @param {String} oldClassName The CSS class to replace
7707          * @param {String} newClassName The replacement CSS class
7708          * @return {Roo.Element} this
7709          */
7710         replaceClass : function(oldClassName, newClassName){
7711             this.removeClass(oldClassName);
7712             this.addClass(newClassName);
7713             return this;
7714         },
7715
7716         /**
7717          * Returns an object with properties matching the styles requested.
7718          * For example, el.getStyles('color', 'font-size', 'width') might return
7719          * {'color': '#FFFFFF', 'font-size': '13px', 'width': '100px'}.
7720          * @param {String} style1 A style name
7721          * @param {String} style2 A style name
7722          * @param {String} etc.
7723          * @return {Object} The style object
7724          */
7725         getStyles : function(){
7726             var a = arguments, len = a.length, r = {};
7727             for(var i = 0; i < len; i++){
7728                 r[a[i]] = this.getStyle(a[i]);
7729             }
7730             return r;
7731         },
7732
7733         /**
7734          * Normalizes currentStyle and computedStyle. This is not YUI getStyle, it is an optimised version.
7735          * @param {String} property The style property whose value is returned.
7736          * @return {String} The current value of the style property for this element.
7737          */
7738         getStyle : function(){
7739             return view && view.getComputedStyle ?
7740                 function(prop){
7741                     var el = this.dom, v, cs, camel;
7742                     if(prop == 'float'){
7743                         prop = "cssFloat";
7744                     }
7745                     if(el.style && (v = el.style[prop])){
7746                         return v;
7747                     }
7748                     if(cs = view.getComputedStyle(el, "")){
7749                         if(!(camel = propCache[prop])){
7750                             camel = propCache[prop] = prop.replace(camelRe, camelFn);
7751                         }
7752                         return cs[camel];
7753                     }
7754                     return null;
7755                 } :
7756                 function(prop){
7757                     var el = this.dom, v, cs, camel;
7758                     if(prop == 'opacity'){
7759                         if(typeof el.style.filter == 'string'){
7760                             var m = el.style.filter.match(/alpha\(opacity=(.*)\)/i);
7761                             if(m){
7762                                 var fv = parseFloat(m[1]);
7763                                 if(!isNaN(fv)){
7764                                     return fv ? fv / 100 : 0;
7765                                 }
7766                             }
7767                         }
7768                         return 1;
7769                     }else if(prop == 'float'){
7770                         prop = "styleFloat";
7771                     }
7772                     if(!(camel = propCache[prop])){
7773                         camel = propCache[prop] = prop.replace(camelRe, camelFn);
7774                     }
7775                     if(v = el.style[camel]){
7776                         return v;
7777                     }
7778                     if(cs = el.currentStyle){
7779                         return cs[camel];
7780                     }
7781                     return null;
7782                 };
7783         }(),
7784
7785         /**
7786          * Wrapper for setting style properties, also takes single object parameter of multiple styles.
7787          * @param {String/Object} property The style property to be set, or an object of multiple styles.
7788          * @param {String} value (optional) The value to apply to the given property, or null if an object was passed.
7789          * @return {Roo.Element} this
7790          */
7791         setStyle : function(prop, value){
7792             if(typeof prop == "string"){
7793                 
7794                 if (prop == 'float') {
7795                     this.setStyle(Roo.isIE ? 'styleFloat'  : 'cssFloat', value);
7796                     return this;
7797                 }
7798                 
7799                 var camel;
7800                 if(!(camel = propCache[prop])){
7801                     camel = propCache[prop] = prop.replace(camelRe, camelFn);
7802                 }
7803                 
7804                 if(camel == 'opacity') {
7805                     this.setOpacity(value);
7806                 }else{
7807                     this.dom.style[camel] = value;
7808                 }
7809             }else{
7810                 for(var style in prop){
7811                     if(typeof prop[style] != "function"){
7812                        this.setStyle(style, prop[style]);
7813                     }
7814                 }
7815             }
7816             return this;
7817         },
7818
7819         /**
7820          * More flexible version of {@link #setStyle} for setting style properties.
7821          * @param {String/Object/Function} styles A style specification string, e.g. "width:100px", or object in the form {width:"100px"}, or
7822          * a function which returns such a specification.
7823          * @return {Roo.Element} this
7824          */
7825         applyStyles : function(style){
7826             Roo.DomHelper.applyStyles(this.dom, style);
7827             return this;
7828         },
7829
7830         /**
7831           * 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).
7832           * @return {Number} The X position of the element
7833           */
7834         getX : function(){
7835             return D.getX(this.dom);
7836         },
7837
7838         /**
7839           * 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).
7840           * @return {Number} The Y position of the element
7841           */
7842         getY : function(){
7843             return D.getY(this.dom);
7844         },
7845
7846         /**
7847           * 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).
7848           * @return {Array} The XY position of the element
7849           */
7850         getXY : function(){
7851             return D.getXY(this.dom);
7852         },
7853
7854         /**
7855          * 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).
7856          * @param {Number} The X position of the element
7857          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7858          * @return {Roo.Element} this
7859          */
7860         setX : function(x, animate){
7861             if(!animate || !A){
7862                 D.setX(this.dom, x);
7863             }else{
7864                 this.setXY([x, this.getY()], this.preanim(arguments, 1));
7865             }
7866             return this;
7867         },
7868
7869         /**
7870          * 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).
7871          * @param {Number} The Y position of the element
7872          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7873          * @return {Roo.Element} this
7874          */
7875         setY : function(y, animate){
7876             if(!animate || !A){
7877                 D.setY(this.dom, y);
7878             }else{
7879                 this.setXY([this.getX(), y], this.preanim(arguments, 1));
7880             }
7881             return this;
7882         },
7883
7884         /**
7885          * Sets the element's left position directly using CSS style (instead of {@link #setX}).
7886          * @param {String} left The left CSS property value
7887          * @return {Roo.Element} this
7888          */
7889         setLeft : function(left){
7890             this.setStyle("left", this.addUnits(left));
7891             return this;
7892         },
7893
7894         /**
7895          * Sets the element's top position directly using CSS style (instead of {@link #setY}).
7896          * @param {String} top The top CSS property value
7897          * @return {Roo.Element} this
7898          */
7899         setTop : function(top){
7900             this.setStyle("top", this.addUnits(top));
7901             return this;
7902         },
7903
7904         /**
7905          * Sets the element's CSS right style.
7906          * @param {String} right The right CSS property value
7907          * @return {Roo.Element} this
7908          */
7909         setRight : function(right){
7910             this.setStyle("right", this.addUnits(right));
7911             return this;
7912         },
7913
7914         /**
7915          * Sets the element's CSS bottom style.
7916          * @param {String} bottom The bottom CSS property value
7917          * @return {Roo.Element} this
7918          */
7919         setBottom : function(bottom){
7920             this.setStyle("bottom", this.addUnits(bottom));
7921             return this;
7922         },
7923
7924         /**
7925          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
7926          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
7927          * @param {Array} pos Contains X & Y [x, y] values for new position (coordinates are page-based)
7928          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7929          * @return {Roo.Element} this
7930          */
7931         setXY : function(pos, animate){
7932             if(!animate || !A){
7933                 D.setXY(this.dom, pos);
7934             }else{
7935                 this.anim({points: {to: pos}}, this.preanim(arguments, 1), 'motion');
7936             }
7937             return this;
7938         },
7939
7940         /**
7941          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
7942          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
7943          * @param {Number} x X value for new position (coordinates are page-based)
7944          * @param {Number} y Y value for new position (coordinates are page-based)
7945          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7946          * @return {Roo.Element} this
7947          */
7948         setLocation : function(x, y, animate){
7949             this.setXY([x, y], this.preanim(arguments, 2));
7950             return this;
7951         },
7952
7953         /**
7954          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
7955          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
7956          * @param {Number} x X value for new position (coordinates are page-based)
7957          * @param {Number} y Y value for new position (coordinates are page-based)
7958          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7959          * @return {Roo.Element} this
7960          */
7961         moveTo : function(x, y, animate){
7962             this.setXY([x, y], this.preanim(arguments, 2));
7963             return this;
7964         },
7965
7966         /**
7967          * Returns the region of the given element.
7968          * The element must be part of the DOM tree to have a region (display:none or elements not appended return false).
7969          * @return {Region} A Roo.lib.Region containing "top, left, bottom, right" member data.
7970          */
7971         getRegion : function(){
7972             return D.getRegion(this.dom);
7973         },
7974
7975         /**
7976          * Returns the offset height of the element
7977          * @param {Boolean} contentHeight (optional) true to get the height minus borders and padding
7978          * @return {Number} The element's height
7979          */
7980         getHeight : function(contentHeight){
7981             var h = this.dom.offsetHeight || 0;
7982             return contentHeight !== true ? h : h-this.getBorderWidth("tb")-this.getPadding("tb");
7983         },
7984
7985         /**
7986          * Returns the offset width of the element
7987          * @param {Boolean} contentWidth (optional) true to get the width minus borders and padding
7988          * @return {Number} The element's width
7989          */
7990         getWidth : function(contentWidth){
7991             var w = this.dom.offsetWidth || 0;
7992             return contentWidth !== true ? w : w-this.getBorderWidth("lr")-this.getPadding("lr");
7993         },
7994
7995         /**
7996          * Returns either the offsetHeight or the height of this element based on CSS height adjusted by padding or borders
7997          * when needed to simulate offsetHeight when offsets aren't available. This may not work on display:none elements
7998          * if a height has not been set using CSS.
7999          * @return {Number}
8000          */
8001         getComputedHeight : function(){
8002             var h = Math.max(this.dom.offsetHeight, this.dom.clientHeight);
8003             if(!h){
8004                 h = parseInt(this.getStyle('height'), 10) || 0;
8005                 if(!this.isBorderBox()){
8006                     h += this.getFrameWidth('tb');
8007                 }
8008             }
8009             return h;
8010         },
8011
8012         /**
8013          * Returns either the offsetWidth or the width of this element based on CSS width adjusted by padding or borders
8014          * when needed to simulate offsetWidth when offsets aren't available. This may not work on display:none elements
8015          * if a width has not been set using CSS.
8016          * @return {Number}
8017          */
8018         getComputedWidth : function(){
8019             var w = Math.max(this.dom.offsetWidth, this.dom.clientWidth);
8020             if(!w){
8021                 w = parseInt(this.getStyle('width'), 10) || 0;
8022                 if(!this.isBorderBox()){
8023                     w += this.getFrameWidth('lr');
8024                 }
8025             }
8026             return w;
8027         },
8028
8029         /**
8030          * Returns the size of the element.
8031          * @param {Boolean} contentSize (optional) true to get the width/size minus borders and padding
8032          * @return {Object} An object containing the element's size {width: (element width), height: (element height)}
8033          */
8034         getSize : function(contentSize){
8035             return {width: this.getWidth(contentSize), height: this.getHeight(contentSize)};
8036         },
8037
8038         /**
8039          * Returns the width and height of the viewport.
8040          * @return {Object} An object containing the viewport's size {width: (viewport width), height: (viewport height)}
8041          */
8042         getViewSize : function(){
8043             var d = this.dom, doc = document, aw = 0, ah = 0;
8044             if(d == doc || d == doc.body){
8045                 return {width : D.getViewWidth(), height: D.getViewHeight()};
8046             }else{
8047                 return {
8048                     width : d.clientWidth,
8049                     height: d.clientHeight
8050                 };
8051             }
8052         },
8053
8054         /**
8055          * Returns the value of the "value" attribute
8056          * @param {Boolean} asNumber true to parse the value as a number
8057          * @return {String/Number}
8058          */
8059         getValue : function(asNumber){
8060             return asNumber ? parseInt(this.dom.value, 10) : this.dom.value;
8061         },
8062
8063         // private
8064         adjustWidth : function(width){
8065             if(typeof width == "number"){
8066                 if(this.autoBoxAdjust && !this.isBorderBox()){
8067                    width -= (this.getBorderWidth("lr") + this.getPadding("lr"));
8068                 }
8069                 if(width < 0){
8070                     width = 0;
8071                 }
8072             }
8073             return width;
8074         },
8075
8076         // private
8077         adjustHeight : function(height){
8078             if(typeof height == "number"){
8079                if(this.autoBoxAdjust && !this.isBorderBox()){
8080                    height -= (this.getBorderWidth("tb") + this.getPadding("tb"));
8081                }
8082                if(height < 0){
8083                    height = 0;
8084                }
8085             }
8086             return height;
8087         },
8088
8089         /**
8090          * Set the width of the element
8091          * @param {Number} width The new width
8092          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8093          * @return {Roo.Element} this
8094          */
8095         setWidth : function(width, animate){
8096             width = this.adjustWidth(width);
8097             if(!animate || !A){
8098                 this.dom.style.width = this.addUnits(width);
8099             }else{
8100                 this.anim({width: {to: width}}, this.preanim(arguments, 1));
8101             }
8102             return this;
8103         },
8104
8105         /**
8106          * Set the height of the element
8107          * @param {Number} height The new height
8108          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8109          * @return {Roo.Element} this
8110          */
8111          setHeight : function(height, animate){
8112             height = this.adjustHeight(height);
8113             if(!animate || !A){
8114                 this.dom.style.height = this.addUnits(height);
8115             }else{
8116                 this.anim({height: {to: height}}, this.preanim(arguments, 1));
8117             }
8118             return this;
8119         },
8120
8121         /**
8122          * Set the size of the element. If animation is true, both width an height will be animated concurrently.
8123          * @param {Number} width The new width
8124          * @param {Number} height The new height
8125          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8126          * @return {Roo.Element} this
8127          */
8128          setSize : function(width, height, animate){
8129             if(typeof width == "object"){ // in case of object from getSize()
8130                 height = width.height; width = width.width;
8131             }
8132             width = this.adjustWidth(width); height = this.adjustHeight(height);
8133             if(!animate || !A){
8134                 this.dom.style.width = this.addUnits(width);
8135                 this.dom.style.height = this.addUnits(height);
8136             }else{
8137                 this.anim({width: {to: width}, height: {to: height}}, this.preanim(arguments, 2));
8138             }
8139             return this;
8140         },
8141
8142         /**
8143          * Sets the element's position and size in one shot. If animation is true then width, height, x and y will be animated concurrently.
8144          * @param {Number} x X value for new position (coordinates are page-based)
8145          * @param {Number} y Y value for new position (coordinates are page-based)
8146          * @param {Number} width The new width
8147          * @param {Number} height The new height
8148          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8149          * @return {Roo.Element} this
8150          */
8151         setBounds : function(x, y, width, height, animate){
8152             if(!animate || !A){
8153                 this.setSize(width, height);
8154                 this.setLocation(x, y);
8155             }else{
8156                 width = this.adjustWidth(width); height = this.adjustHeight(height);
8157                 this.anim({points: {to: [x, y]}, width: {to: width}, height: {to: height}},
8158                               this.preanim(arguments, 4), 'motion');
8159             }
8160             return this;
8161         },
8162
8163         /**
8164          * 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.
8165          * @param {Roo.lib.Region} region The region to fill
8166          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8167          * @return {Roo.Element} this
8168          */
8169         setRegion : function(region, animate){
8170             this.setBounds(region.left, region.top, region.right-region.left, region.bottom-region.top, this.preanim(arguments, 1));
8171             return this;
8172         },
8173
8174         /**
8175          * Appends an event handler
8176          *
8177          * @param {String}   eventName     The type of event to append
8178          * @param {Function} fn        The method the event invokes
8179          * @param {Object} scope       (optional) The scope (this object) of the fn
8180          * @param {Object}   options   (optional)An object with standard {@link Roo.EventManager#addListener} options
8181          */
8182         addListener : function(eventName, fn, scope, options){
8183             if (this.dom) {
8184                 Roo.EventManager.on(this.dom,  eventName, fn, scope || this, options);
8185             }
8186         },
8187
8188         /**
8189          * Removes an event handler from this element
8190          * @param {String} eventName the type of event to remove
8191          * @param {Function} fn the method the event invokes
8192          * @return {Roo.Element} this
8193          */
8194         removeListener : function(eventName, fn){
8195             Roo.EventManager.removeListener(this.dom,  eventName, fn);
8196             return this;
8197         },
8198
8199         /**
8200          * Removes all previous added listeners from this element
8201          * @return {Roo.Element} this
8202          */
8203         removeAllListeners : function(){
8204             E.purgeElement(this.dom);
8205             return this;
8206         },
8207
8208         relayEvent : function(eventName, observable){
8209             this.on(eventName, function(e){
8210                 observable.fireEvent(eventName, e);
8211             });
8212         },
8213
8214         /**
8215          * Set the opacity of the element
8216          * @param {Float} opacity The new opacity. 0 = transparent, .5 = 50% visibile, 1 = fully visible, etc
8217          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8218          * @return {Roo.Element} this
8219          */
8220          setOpacity : function(opacity, animate){
8221             if(!animate || !A){
8222                 var s = this.dom.style;
8223                 if(Roo.isIE){
8224                     s.zoom = 1;
8225                     s.filter = (s.filter || '').replace(/alpha\([^\)]*\)/gi,"") +
8226                                (opacity == 1 ? "" : "alpha(opacity=" + opacity * 100 + ")");
8227                 }else{
8228                     s.opacity = opacity;
8229                 }
8230             }else{
8231                 this.anim({opacity: {to: opacity}}, this.preanim(arguments, 1), null, .35, 'easeIn');
8232             }
8233             return this;
8234         },
8235
8236         /**
8237          * Gets the left X coordinate
8238          * @param {Boolean} local True to get the local css position instead of page coordinate
8239          * @return {Number}
8240          */
8241         getLeft : function(local){
8242             if(!local){
8243                 return this.getX();
8244             }else{
8245                 return parseInt(this.getStyle("left"), 10) || 0;
8246             }
8247         },
8248
8249         /**
8250          * Gets the right X coordinate of the element (element X position + element width)
8251          * @param {Boolean} local True to get the local css position instead of page coordinate
8252          * @return {Number}
8253          */
8254         getRight : function(local){
8255             if(!local){
8256                 return this.getX() + this.getWidth();
8257             }else{
8258                 return (this.getLeft(true) + this.getWidth()) || 0;
8259             }
8260         },
8261
8262         /**
8263          * Gets the top Y coordinate
8264          * @param {Boolean} local True to get the local css position instead of page coordinate
8265          * @return {Number}
8266          */
8267         getTop : function(local) {
8268             if(!local){
8269                 return this.getY();
8270             }else{
8271                 return parseInt(this.getStyle("top"), 10) || 0;
8272             }
8273         },
8274
8275         /**
8276          * Gets the bottom Y coordinate of the element (element Y position + element height)
8277          * @param {Boolean} local True to get the local css position instead of page coordinate
8278          * @return {Number}
8279          */
8280         getBottom : function(local){
8281             if(!local){
8282                 return this.getY() + this.getHeight();
8283             }else{
8284                 return (this.getTop(true) + this.getHeight()) || 0;
8285             }
8286         },
8287
8288         /**
8289         * Initializes positioning on this element. If a desired position is not passed, it will make the
8290         * the element positioned relative IF it is not already positioned.
8291         * @param {String} pos (optional) Positioning to use "relative", "absolute" or "fixed"
8292         * @param {Number} zIndex (optional) The zIndex to apply
8293         * @param {Number} x (optional) Set the page X position
8294         * @param {Number} y (optional) Set the page Y position
8295         */
8296         position : function(pos, zIndex, x, y){
8297             if(!pos){
8298                if(this.getStyle('position') == 'static'){
8299                    this.setStyle('position', 'relative');
8300                }
8301             }else{
8302                 this.setStyle("position", pos);
8303             }
8304             if(zIndex){
8305                 this.setStyle("z-index", zIndex);
8306             }
8307             if(x !== undefined && y !== undefined){
8308                 this.setXY([x, y]);
8309             }else if(x !== undefined){
8310                 this.setX(x);
8311             }else if(y !== undefined){
8312                 this.setY(y);
8313             }
8314         },
8315
8316         /**
8317         * Clear positioning back to the default when the document was loaded
8318         * @param {String} value (optional) The value to use for the left,right,top,bottom, defaults to '' (empty string). You could use 'auto'.
8319         * @return {Roo.Element} this
8320          */
8321         clearPositioning : function(value){
8322             value = value ||'';
8323             this.setStyle({
8324                 "left": value,
8325                 "right": value,
8326                 "top": value,
8327                 "bottom": value,
8328                 "z-index": "",
8329                 "position" : "static"
8330             });
8331             return this;
8332         },
8333
8334         /**
8335         * Gets an object with all CSS positioning properties. Useful along with setPostioning to get
8336         * snapshot before performing an update and then restoring the element.
8337         * @return {Object}
8338         */
8339         getPositioning : function(){
8340             var l = this.getStyle("left");
8341             var t = this.getStyle("top");
8342             return {
8343                 "position" : this.getStyle("position"),
8344                 "left" : l,
8345                 "right" : l ? "" : this.getStyle("right"),
8346                 "top" : t,
8347                 "bottom" : t ? "" : this.getStyle("bottom"),
8348                 "z-index" : this.getStyle("z-index")
8349             };
8350         },
8351
8352         /**
8353          * Gets the width of the border(s) for the specified side(s)
8354          * @param {String} side Can be t, l, r, b or any combination of those to add multiple values. For example,
8355          * passing lr would get the border (l)eft width + the border (r)ight width.
8356          * @return {Number} The width of the sides passed added together
8357          */
8358         getBorderWidth : function(side){
8359             return this.addStyles(side, El.borders);
8360         },
8361
8362         /**
8363          * Gets the width of the padding(s) for the specified side(s)
8364          * @param {String} side Can be t, l, r, b or any combination of those to add multiple values. For example,
8365          * passing lr would get the padding (l)eft + the padding (r)ight.
8366          * @return {Number} The padding of the sides passed added together
8367          */
8368         getPadding : function(side){
8369             return this.addStyles(side, El.paddings);
8370         },
8371
8372         /**
8373         * Set positioning with an object returned by getPositioning().
8374         * @param {Object} posCfg
8375         * @return {Roo.Element} this
8376          */
8377         setPositioning : function(pc){
8378             this.applyStyles(pc);
8379             if(pc.right == "auto"){
8380                 this.dom.style.right = "";
8381             }
8382             if(pc.bottom == "auto"){
8383                 this.dom.style.bottom = "";
8384             }
8385             return this;
8386         },
8387
8388         // private
8389         fixDisplay : function(){
8390             if(this.getStyle("display") == "none"){
8391                 this.setStyle("visibility", "hidden");
8392                 this.setStyle("display", this.originalDisplay); // first try reverting to default
8393                 if(this.getStyle("display") == "none"){ // if that fails, default to block
8394                     this.setStyle("display", "block");
8395                 }
8396             }
8397         },
8398
8399         /**
8400          * Quick set left and top adding default units
8401          * @param {String} left The left CSS property value
8402          * @param {String} top The top CSS property value
8403          * @return {Roo.Element} this
8404          */
8405          setLeftTop : function(left, top){
8406             this.dom.style.left = this.addUnits(left);
8407             this.dom.style.top = this.addUnits(top);
8408             return this;
8409         },
8410
8411         /**
8412          * Move this element relative to its current position.
8413          * @param {String} direction Possible values are: "l","left" - "r","right" - "t","top","up" - "b","bottom","down".
8414          * @param {Number} distance How far to move the element in pixels
8415          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8416          * @return {Roo.Element} this
8417          */
8418          move : function(direction, distance, animate){
8419             var xy = this.getXY();
8420             direction = direction.toLowerCase();
8421             switch(direction){
8422                 case "l":
8423                 case "left":
8424                     this.moveTo(xy[0]-distance, xy[1], this.preanim(arguments, 2));
8425                     break;
8426                case "r":
8427                case "right":
8428                     this.moveTo(xy[0]+distance, xy[1], this.preanim(arguments, 2));
8429                     break;
8430                case "t":
8431                case "top":
8432                case "up":
8433                     this.moveTo(xy[0], xy[1]-distance, this.preanim(arguments, 2));
8434                     break;
8435                case "b":
8436                case "bottom":
8437                case "down":
8438                     this.moveTo(xy[0], xy[1]+distance, this.preanim(arguments, 2));
8439                     break;
8440             }
8441             return this;
8442         },
8443
8444         /**
8445          *  Store the current overflow setting and clip overflow on the element - use {@link #unclip} to remove
8446          * @return {Roo.Element} this
8447          */
8448         clip : function(){
8449             if(!this.isClipped){
8450                this.isClipped = true;
8451                this.originalClip = {
8452                    "o": this.getStyle("overflow"),
8453                    "x": this.getStyle("overflow-x"),
8454                    "y": this.getStyle("overflow-y")
8455                };
8456                this.setStyle("overflow", "hidden");
8457                this.setStyle("overflow-x", "hidden");
8458                this.setStyle("overflow-y", "hidden");
8459             }
8460             return this;
8461         },
8462
8463         /**
8464          *  Return clipping (overflow) to original clipping before clip() was called
8465          * @return {Roo.Element} this
8466          */
8467         unclip : function(){
8468             if(this.isClipped){
8469                 this.isClipped = false;
8470                 var o = this.originalClip;
8471                 if(o.o){this.setStyle("overflow", o.o);}
8472                 if(o.x){this.setStyle("overflow-x", o.x);}
8473                 if(o.y){this.setStyle("overflow-y", o.y);}
8474             }
8475             return this;
8476         },
8477
8478
8479         /**
8480          * Gets the x,y coordinates specified by the anchor position on the element.
8481          * @param {String} anchor (optional) The specified anchor position (defaults to "c").  See {@link #alignTo} for details on supported anchor positions.
8482          * @param {Object} size (optional) An object containing the size to use for calculating anchor position
8483          *                       {width: (target width), height: (target height)} (defaults to the element's current size)
8484          * @param {Boolean} local (optional) True to get the local (element top/left-relative) anchor position instead of page coordinates
8485          * @return {Array} [x, y] An array containing the element's x and y coordinates
8486          */
8487         getAnchorXY : function(anchor, local, s){
8488             //Passing a different size is useful for pre-calculating anchors,
8489             //especially for anchored animations that change the el size.
8490
8491             var w, h, vp = false;
8492             if(!s){
8493                 var d = this.dom;
8494                 if(d == document.body || d == document){
8495                     vp = true;
8496                     w = D.getViewWidth(); h = D.getViewHeight();
8497                 }else{
8498                     w = this.getWidth(); h = this.getHeight();
8499                 }
8500             }else{
8501                 w = s.width;  h = s.height;
8502             }
8503             var x = 0, y = 0, r = Math.round;
8504             switch((anchor || "tl").toLowerCase()){
8505                 case "c":
8506                     x = r(w*.5);
8507                     y = r(h*.5);
8508                 break;
8509                 case "t":
8510                     x = r(w*.5);
8511                     y = 0;
8512                 break;
8513                 case "l":
8514                     x = 0;
8515                     y = r(h*.5);
8516                 break;
8517                 case "r":
8518                     x = w;
8519                     y = r(h*.5);
8520                 break;
8521                 case "b":
8522                     x = r(w*.5);
8523                     y = h;
8524                 break;
8525                 case "tl":
8526                     x = 0;
8527                     y = 0;
8528                 break;
8529                 case "bl":
8530                     x = 0;
8531                     y = h;
8532                 break;
8533                 case "br":
8534                     x = w;
8535                     y = h;
8536                 break;
8537                 case "tr":
8538                     x = w;
8539                     y = 0;
8540                 break;
8541             }
8542             if(local === true){
8543                 return [x, y];
8544             }
8545             if(vp){
8546                 var sc = this.getScroll();
8547                 return [x + sc.left, y + sc.top];
8548             }
8549             //Add the element's offset xy
8550             var o = this.getXY();
8551             return [x+o[0], y+o[1]];
8552         },
8553
8554         /**
8555          * Gets the x,y coordinates to align this element with another element. See {@link #alignTo} for more info on the
8556          * supported position values.
8557          * @param {String/HTMLElement/Roo.Element} element The element to align to.
8558          * @param {String} position The position to align to.
8559          * @param {Array} offsets (optional) Offset the positioning by [x, y]
8560          * @return {Array} [x, y]
8561          */
8562         getAlignToXY : function(el, p, o){
8563             el = Roo.get(el);
8564             var d = this.dom;
8565             if(!el.dom){
8566                 throw "Element.alignTo with an element that doesn't exist";
8567             }
8568             var c = false; //constrain to viewport
8569             var p1 = "", p2 = "";
8570             o = o || [0,0];
8571
8572             if(!p){
8573                 p = "tl-bl";
8574             }else if(p == "?"){
8575                 p = "tl-bl?";
8576             }else if(p.indexOf("-") == -1){
8577                 p = "tl-" + p;
8578             }
8579             p = p.toLowerCase();
8580             var m = p.match(/^([a-z]+)-([a-z]+)(\?)?$/);
8581             if(!m){
8582                throw "Element.alignTo with an invalid alignment " + p;
8583             }
8584             p1 = m[1]; p2 = m[2]; c = !!m[3];
8585
8586             //Subtract the aligned el's internal xy from the target's offset xy
8587             //plus custom offset to get the aligned el's new offset xy
8588             var a1 = this.getAnchorXY(p1, true);
8589             var a2 = el.getAnchorXY(p2, false);
8590             var x = a2[0] - a1[0] + o[0];
8591             var y = a2[1] - a1[1] + o[1];
8592             if(c){
8593                 //constrain the aligned el to viewport if necessary
8594                 var w = this.getWidth(), h = this.getHeight(), r = el.getRegion();
8595                 // 5px of margin for ie
8596                 var dw = D.getViewWidth()-5, dh = D.getViewHeight()-5;
8597
8598                 //If we are at a viewport boundary and the aligned el is anchored on a target border that is
8599                 //perpendicular to the vp border, allow the aligned el to slide on that border,
8600                 //otherwise swap the aligned el to the opposite border of the target.
8601                 var p1y = p1.charAt(0), p1x = p1.charAt(p1.length-1);
8602                var p2y = p2.charAt(0), p2x = p2.charAt(p2.length-1);
8603                var swapY = ((p1y=="t" && p2y=="b") || (p1y=="b" && p2y=="t"));
8604                var swapX = ((p1x=="r" && p2x=="l") || (p1x=="l" && p2x=="r"));
8605
8606                var doc = document;
8607                var scrollX = (doc.documentElement.scrollLeft || doc.body.scrollLeft || 0)+5;
8608                var scrollY = (doc.documentElement.scrollTop || doc.body.scrollTop || 0)+5;
8609
8610                if((x+w) > dw + scrollX){
8611                     x = swapX ? r.left-w : dw+scrollX-w;
8612                 }
8613                if(x < scrollX){
8614                    x = swapX ? r.right : scrollX;
8615                }
8616                if((y+h) > dh + scrollY){
8617                     y = swapY ? r.top-h : dh+scrollY-h;
8618                 }
8619                if (y < scrollY){
8620                    y = swapY ? r.bottom : scrollY;
8621                }
8622             }
8623             return [x,y];
8624         },
8625
8626         // private
8627         getConstrainToXY : function(){
8628             var os = {top:0, left:0, bottom:0, right: 0};
8629
8630             return function(el, local, offsets, proposedXY){
8631                 el = Roo.get(el);
8632                 offsets = offsets ? Roo.applyIf(offsets, os) : os;
8633
8634                 var vw, vh, vx = 0, vy = 0;
8635                 if(el.dom == document.body || el.dom == document){
8636                     vw = Roo.lib.Dom.getViewWidth();
8637                     vh = Roo.lib.Dom.getViewHeight();
8638                 }else{
8639                     vw = el.dom.clientWidth;
8640                     vh = el.dom.clientHeight;
8641                     if(!local){
8642                         var vxy = el.getXY();
8643                         vx = vxy[0];
8644                         vy = vxy[1];
8645                     }
8646                 }
8647
8648                 var s = el.getScroll();
8649
8650                 vx += offsets.left + s.left;
8651                 vy += offsets.top + s.top;
8652
8653                 vw -= offsets.right;
8654                 vh -= offsets.bottom;
8655
8656                 var vr = vx+vw;
8657                 var vb = vy+vh;
8658
8659                 var xy = proposedXY || (!local ? this.getXY() : [this.getLeft(true), this.getTop(true)]);
8660                 var x = xy[0], y = xy[1];
8661                 var w = this.dom.offsetWidth, h = this.dom.offsetHeight;
8662
8663                 // only move it if it needs it
8664                 var moved = false;
8665
8666                 // first validate right/bottom
8667                 if((x + w) > vr){
8668                     x = vr - w;
8669                     moved = true;
8670                 }
8671                 if((y + h) > vb){
8672                     y = vb - h;
8673                     moved = true;
8674                 }
8675                 // then make sure top/left isn't negative
8676                 if(x < vx){
8677                     x = vx;
8678                     moved = true;
8679                 }
8680                 if(y < vy){
8681                     y = vy;
8682                     moved = true;
8683                 }
8684                 return moved ? [x, y] : false;
8685             };
8686         }(),
8687
8688         // private
8689         adjustForConstraints : function(xy, parent, offsets){
8690             return this.getConstrainToXY(parent || document, false, offsets, xy) ||  xy;
8691         },
8692
8693         /**
8694          * Aligns this element with another element relative to the specified anchor points. If the other element is the
8695          * document it aligns it to the viewport.
8696          * The position parameter is optional, and can be specified in any one of the following formats:
8697          * <ul>
8698          *   <li><b>Blank</b>: Defaults to aligning the element's top-left corner to the target's bottom-left corner ("tl-bl").</li>
8699          *   <li><b>One anchor (deprecated)</b>: The passed anchor position is used as the target element's anchor point.
8700          *       The element being aligned will position its top-left corner (tl) to that point.  <i>This method has been
8701          *       deprecated in favor of the newer two anchor syntax below</i>.</li>
8702          *   <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
8703          *       element's anchor point, and the second value is used as the target's anchor point.</li>
8704          * </ul>
8705          * In addition to the anchor points, the position parameter also supports the "?" character.  If "?" is passed at the end of
8706          * the position string, the element will attempt to align as specified, but the position will be adjusted to constrain to
8707          * the viewport if necessary.  Note that the element being aligned might be swapped to align to a different position than
8708          * that specified in order to enforce the viewport constraints.
8709          * Following are all of the supported anchor positions:
8710     <pre>
8711     Value  Description
8712     -----  -----------------------------
8713     tl     The top left corner (default)
8714     t      The center of the top edge
8715     tr     The top right corner
8716     l      The center of the left edge
8717     c      In the center of the element
8718     r      The center of the right edge
8719     bl     The bottom left corner
8720     b      The center of the bottom edge
8721     br     The bottom right corner
8722     </pre>
8723     Example Usage:
8724     <pre><code>
8725     // align el to other-el using the default positioning ("tl-bl", non-constrained)
8726     el.alignTo("other-el");
8727
8728     // align the top left corner of el with the top right corner of other-el (constrained to viewport)
8729     el.alignTo("other-el", "tr?");
8730
8731     // align the bottom right corner of el with the center left edge of other-el
8732     el.alignTo("other-el", "br-l?");
8733
8734     // align the center of el with the bottom left corner of other-el and
8735     // adjust the x position by -6 pixels (and the y position by 0)
8736     el.alignTo("other-el", "c-bl", [-6, 0]);
8737     </code></pre>
8738          * @param {String/HTMLElement/Roo.Element} element The element to align to.
8739          * @param {String} position The position to align to.
8740          * @param {Array} offsets (optional) Offset the positioning by [x, y]
8741          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8742          * @return {Roo.Element} this
8743          */
8744         alignTo : function(element, position, offsets, animate){
8745             var xy = this.getAlignToXY(element, position, offsets);
8746             this.setXY(xy, this.preanim(arguments, 3));
8747             return this;
8748         },
8749
8750         /**
8751          * Anchors an element to another element and realigns it when the window is resized.
8752          * @param {String/HTMLElement/Roo.Element} element The element to align to.
8753          * @param {String} position The position to align to.
8754          * @param {Array} offsets (optional) Offset the positioning by [x, y]
8755          * @param {Boolean/Object} animate (optional) True for the default animation or a standard Element animation config object
8756          * @param {Boolean/Number} monitorScroll (optional) True to monitor body scroll and reposition. If this parameter
8757          * is a number, it is used as the buffer delay (defaults to 50ms).
8758          * @param {Function} callback The function to call after the animation finishes
8759          * @return {Roo.Element} this
8760          */
8761         anchorTo : function(el, alignment, offsets, animate, monitorScroll, callback){
8762             var action = function(){
8763                 this.alignTo(el, alignment, offsets, animate);
8764                 Roo.callback(callback, this);
8765             };
8766             Roo.EventManager.onWindowResize(action, this);
8767             var tm = typeof monitorScroll;
8768             if(tm != 'undefined'){
8769                 Roo.EventManager.on(window, 'scroll', action, this,
8770                     {buffer: tm == 'number' ? monitorScroll : 50});
8771             }
8772             action.call(this); // align immediately
8773             return this;
8774         },
8775         /**
8776          * Clears any opacity settings from this element. Required in some cases for IE.
8777          * @return {Roo.Element} this
8778          */
8779         clearOpacity : function(){
8780             if (window.ActiveXObject) {
8781                 if(typeof this.dom.style.filter == 'string' && (/alpha/i).test(this.dom.style.filter)){
8782                     this.dom.style.filter = "";
8783                 }
8784             } else {
8785                 this.dom.style.opacity = "";
8786                 this.dom.style["-moz-opacity"] = "";
8787                 this.dom.style["-khtml-opacity"] = "";
8788             }
8789             return this;
8790         },
8791
8792         /**
8793          * Hide this element - Uses display mode to determine whether to use "display" or "visibility". See {@link #setVisible}.
8794          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8795          * @return {Roo.Element} this
8796          */
8797         hide : function(animate){
8798             this.setVisible(false, this.preanim(arguments, 0));
8799             return this;
8800         },
8801
8802         /**
8803         * Show this element - Uses display mode to determine whether to use "display" or "visibility". See {@link #setVisible}.
8804         * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8805          * @return {Roo.Element} this
8806          */
8807         show : function(animate){
8808             this.setVisible(true, this.preanim(arguments, 0));
8809             return this;
8810         },
8811
8812         /**
8813          * @private Test if size has a unit, otherwise appends the default
8814          */
8815         addUnits : function(size){
8816             return Roo.Element.addUnits(size, this.defaultUnit);
8817         },
8818
8819         /**
8820          * Temporarily enables offsets (width,height,x,y) for an element with display:none, use endMeasure() when done.
8821          * @return {Roo.Element} this
8822          */
8823         beginMeasure : function(){
8824             var el = this.dom;
8825             if(el.offsetWidth || el.offsetHeight){
8826                 return this; // offsets work already
8827             }
8828             var changed = [];
8829             var p = this.dom, b = document.body; // start with this element
8830             while((!el.offsetWidth && !el.offsetHeight) && p && p.tagName && p != b){
8831                 var pe = Roo.get(p);
8832                 if(pe.getStyle('display') == 'none'){
8833                     changed.push({el: p, visibility: pe.getStyle("visibility")});
8834                     p.style.visibility = "hidden";
8835                     p.style.display = "block";
8836                 }
8837                 p = p.parentNode;
8838             }
8839             this._measureChanged = changed;
8840             return this;
8841
8842         },
8843
8844         /**
8845          * Restores displays to before beginMeasure was called
8846          * @return {Roo.Element} this
8847          */
8848         endMeasure : function(){
8849             var changed = this._measureChanged;
8850             if(changed){
8851                 for(var i = 0, len = changed.length; i < len; i++) {
8852                     var r = changed[i];
8853                     r.el.style.visibility = r.visibility;
8854                     r.el.style.display = "none";
8855                 }
8856                 this._measureChanged = null;
8857             }
8858             return this;
8859         },
8860
8861         /**
8862         * Update the innerHTML of this element, optionally searching for and processing scripts
8863         * @param {String} html The new HTML
8864         * @param {Boolean} loadScripts (optional) true to look for and process scripts
8865         * @param {Function} callback For async script loading you can be noticed when the update completes
8866         * @return {Roo.Element} this
8867          */
8868         update : function(html, loadScripts, callback){
8869             if(typeof html == "undefined"){
8870                 html = "";
8871             }
8872             if(loadScripts !== true){
8873                 this.dom.innerHTML = html;
8874                 if(typeof callback == "function"){
8875                     callback();
8876                 }
8877                 return this;
8878             }
8879             var id = Roo.id();
8880             var dom = this.dom;
8881
8882             html += '<span id="' + id + '"></span>';
8883
8884             E.onAvailable(id, function(){
8885                 var hd = document.getElementsByTagName("head")[0];
8886                 var re = /(?:<script([^>]*)?>)((\n|\r|.)*?)(?:<\/script>)/ig;
8887                 var srcRe = /\ssrc=([\'\"])(.*?)\1/i;
8888                 var typeRe = /\stype=([\'\"])(.*?)\1/i;
8889
8890                 var match;
8891                 while(match = re.exec(html)){
8892                     var attrs = match[1];
8893                     var srcMatch = attrs ? attrs.match(srcRe) : false;
8894                     if(srcMatch && srcMatch[2]){
8895                        var s = document.createElement("script");
8896                        s.src = srcMatch[2];
8897                        var typeMatch = attrs.match(typeRe);
8898                        if(typeMatch && typeMatch[2]){
8899                            s.type = typeMatch[2];
8900                        }
8901                        hd.appendChild(s);
8902                     }else if(match[2] && match[2].length > 0){
8903                         if(window.execScript) {
8904                            window.execScript(match[2]);
8905                         } else {
8906                             /**
8907                              * eval:var:id
8908                              * eval:var:dom
8909                              * eval:var:html
8910                              * 
8911                              */
8912                            window.eval(match[2]);
8913                         }
8914                     }
8915                 }
8916                 var el = document.getElementById(id);
8917                 if(el){el.parentNode.removeChild(el);}
8918                 if(typeof callback == "function"){
8919                     callback();
8920                 }
8921             });
8922             dom.innerHTML = html.replace(/(?:<script.*?>)((\n|\r|.)*?)(?:<\/script>)/ig, "");
8923             return this;
8924         },
8925
8926         /**
8927          * Direct access to the UpdateManager update() method (takes the same parameters).
8928          * @param {String/Function} url The url for this request or a function to call to get the url
8929          * @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}
8930          * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
8931          * @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.
8932          * @return {Roo.Element} this
8933          */
8934         load : function(){
8935             var um = this.getUpdateManager();
8936             um.update.apply(um, arguments);
8937             return this;
8938         },
8939
8940         /**
8941         * Gets this element's UpdateManager
8942         * @return {Roo.UpdateManager} The UpdateManager
8943         */
8944         getUpdateManager : function(){
8945             if(!this.updateManager){
8946                 this.updateManager = new Roo.UpdateManager(this);
8947             }
8948             return this.updateManager;
8949         },
8950
8951         /**
8952          * Disables text selection for this element (normalized across browsers)
8953          * @return {Roo.Element} this
8954          */
8955         unselectable : function(){
8956             this.dom.unselectable = "on";
8957             this.swallowEvent("selectstart", true);
8958             this.applyStyles("-moz-user-select:none;-khtml-user-select:none;");
8959             this.addClass("x-unselectable");
8960             return this;
8961         },
8962
8963         /**
8964         * Calculates the x, y to center this element on the screen
8965         * @return {Array} The x, y values [x, y]
8966         */
8967         getCenterXY : function(){
8968             return this.getAlignToXY(document, 'c-c');
8969         },
8970
8971         /**
8972         * Centers the Element in either the viewport, or another Element.
8973         * @param {String/HTMLElement/Roo.Element} centerIn (optional) The element in which to center the element.
8974         */
8975         center : function(centerIn){
8976             this.alignTo(centerIn || document, 'c-c');
8977             return this;
8978         },
8979
8980         /**
8981          * Tests various css rules/browsers to determine if this element uses a border box
8982          * @return {Boolean}
8983          */
8984         isBorderBox : function(){
8985             return noBoxAdjust[this.dom.tagName.toLowerCase()] || Roo.isBorderBox;
8986         },
8987
8988         /**
8989          * Return a box {x, y, width, height} that can be used to set another elements
8990          * size/location to match this element.
8991          * @param {Boolean} contentBox (optional) If true a box for the content of the element is returned.
8992          * @param {Boolean} local (optional) If true the element's left and top are returned instead of page x/y.
8993          * @return {Object} box An object in the format {x, y, width, height}
8994          */
8995         getBox : function(contentBox, local){
8996             var xy;
8997             if(!local){
8998                 xy = this.getXY();
8999             }else{
9000                 var left = parseInt(this.getStyle("left"), 10) || 0;
9001                 var top = parseInt(this.getStyle("top"), 10) || 0;
9002                 xy = [left, top];
9003             }
9004             var el = this.dom, w = el.offsetWidth, h = el.offsetHeight, bx;
9005             if(!contentBox){
9006                 bx = {x: xy[0], y: xy[1], 0: xy[0], 1: xy[1], width: w, height: h};
9007             }else{
9008                 var l = this.getBorderWidth("l")+this.getPadding("l");
9009                 var r = this.getBorderWidth("r")+this.getPadding("r");
9010                 var t = this.getBorderWidth("t")+this.getPadding("t");
9011                 var b = this.getBorderWidth("b")+this.getPadding("b");
9012                 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)};
9013             }
9014             bx.right = bx.x + bx.width;
9015             bx.bottom = bx.y + bx.height;
9016             return bx;
9017         },
9018
9019         /**
9020          * Returns the sum width of the padding and borders for the passed "sides". See getBorderWidth()
9021          for more information about the sides.
9022          * @param {String} sides
9023          * @return {Number}
9024          */
9025         getFrameWidth : function(sides, onlyContentBox){
9026             return onlyContentBox && Roo.isBorderBox ? 0 : (this.getPadding(sides) + this.getBorderWidth(sides));
9027         },
9028
9029         /**
9030          * 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.
9031          * @param {Object} box The box to fill {x, y, width, height}
9032          * @param {Boolean} adjust (optional) Whether to adjust for box-model issues automatically
9033          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9034          * @return {Roo.Element} this
9035          */
9036         setBox : function(box, adjust, animate){
9037             var w = box.width, h = box.height;
9038             if((adjust && !this.autoBoxAdjust) && !this.isBorderBox()){
9039                w -= (this.getBorderWidth("lr") + this.getPadding("lr"));
9040                h -= (this.getBorderWidth("tb") + this.getPadding("tb"));
9041             }
9042             this.setBounds(box.x, box.y, w, h, this.preanim(arguments, 2));
9043             return this;
9044         },
9045
9046         /**
9047          * Forces the browser to repaint this element
9048          * @return {Roo.Element} this
9049          */
9050          repaint : function(){
9051             var dom = this.dom;
9052             this.addClass("x-repaint");
9053             setTimeout(function(){
9054                 Roo.get(dom).removeClass("x-repaint");
9055             }, 1);
9056             return this;
9057         },
9058
9059         /**
9060          * Returns an object with properties top, left, right and bottom representing the margins of this element unless sides is passed,
9061          * then it returns the calculated width of the sides (see getPadding)
9062          * @param {String} sides (optional) Any combination of l, r, t, b to get the sum of those sides
9063          * @return {Object/Number}
9064          */
9065         getMargins : function(side){
9066             if(!side){
9067                 return {
9068                     top: parseInt(this.getStyle("margin-top"), 10) || 0,
9069                     left: parseInt(this.getStyle("margin-left"), 10) || 0,
9070                     bottom: parseInt(this.getStyle("margin-bottom"), 10) || 0,
9071                     right: parseInt(this.getStyle("margin-right"), 10) || 0
9072                 };
9073             }else{
9074                 return this.addStyles(side, El.margins);
9075              }
9076         },
9077
9078         // private
9079         addStyles : function(sides, styles){
9080             var val = 0, v, w;
9081             for(var i = 0, len = sides.length; i < len; i++){
9082                 v = this.getStyle(styles[sides.charAt(i)]);
9083                 if(v){
9084                      w = parseInt(v, 10);
9085                      if(w){ val += w; }
9086                 }
9087             }
9088             return val;
9089         },
9090
9091         /**
9092          * Creates a proxy element of this element
9093          * @param {String/Object} config The class name of the proxy element or a DomHelper config object
9094          * @param {String/HTMLElement} renderTo (optional) The element or element id to render the proxy to (defaults to document.body)
9095          * @param {Boolean} matchBox (optional) True to align and size the proxy to this element now (defaults to false)
9096          * @return {Roo.Element} The new proxy element
9097          */
9098         createProxy : function(config, renderTo, matchBox){
9099             if(renderTo){
9100                 renderTo = Roo.getDom(renderTo);
9101             }else{
9102                 renderTo = document.body;
9103             }
9104             config = typeof config == "object" ?
9105                 config : {tag : "div", cls: config};
9106             var proxy = Roo.DomHelper.append(renderTo, config, true);
9107             if(matchBox){
9108                proxy.setBox(this.getBox());
9109             }
9110             return proxy;
9111         },
9112
9113         /**
9114          * Puts a mask over this element to disable user interaction. Requires core.css.
9115          * This method can only be applied to elements which accept child nodes.
9116          * @param {String} msg (optional) A message to display in the mask
9117          * @param {String} msgCls (optional) A css class to apply to the msg element
9118          * @return {Element} The mask  element
9119          */
9120         mask : function(msg, msgCls)
9121         {
9122             if(this.getStyle("position") == "static" && this.dom.tagName !== 'BODY'){
9123                 this.setStyle("position", "relative");
9124             }
9125             if(!this._mask){
9126                 this._mask = Roo.DomHelper.append(this.dom, {cls:"roo-el-mask"}, true);
9127             }
9128             this.addClass("x-masked");
9129             this._mask.setDisplayed(true);
9130             
9131             // we wander
9132             var z = 0;
9133             var dom = this.dom;
9134             while (dom && dom.style) {
9135                 if (!isNaN(parseInt(dom.style.zIndex))) {
9136                     z = Math.max(z, parseInt(dom.style.zIndex));
9137                 }
9138                 dom = dom.parentNode;
9139             }
9140             // if we are masking the body - then it hides everything..
9141             if (this.dom == document.body) {
9142                 z = 1000000;
9143                 this._mask.setWidth(Roo.lib.Dom.getDocumentWidth());
9144                 this._mask.setHeight(Roo.lib.Dom.getDocumentHeight());
9145             }
9146            
9147             if(typeof msg == 'string'){
9148                 if(!this._maskMsg){
9149                     this._maskMsg = Roo.DomHelper.append(this.dom, {cls:"roo-el-mask-msg", cn:{tag:'div'}}, true);
9150                 }
9151                 var mm = this._maskMsg;
9152                 mm.dom.className = msgCls ? "roo-el-mask-msg " + msgCls : "roo-el-mask-msg";
9153                 if (mm.dom.firstChild) { // weird IE issue?
9154                     mm.dom.firstChild.innerHTML = msg;
9155                 }
9156                 mm.setDisplayed(true);
9157                 mm.center(this);
9158                 mm.setStyle('z-index', z + 102);
9159             }
9160             if(Roo.isIE && !(Roo.isIE7 && Roo.isStrict) && this.getStyle('height') == 'auto'){ // ie will not expand full height automatically
9161                 this._mask.setHeight(this.getHeight());
9162             }
9163             this._mask.setStyle('z-index', z + 100);
9164             
9165             return this._mask;
9166         },
9167
9168         /**
9169          * Removes a previously applied mask. If removeEl is true the mask overlay is destroyed, otherwise
9170          * it is cached for reuse.
9171          */
9172         unmask : function(removeEl){
9173             if(this._mask){
9174                 if(removeEl === true){
9175                     this._mask.remove();
9176                     delete this._mask;
9177                     if(this._maskMsg){
9178                         this._maskMsg.remove();
9179                         delete this._maskMsg;
9180                     }
9181                 }else{
9182                     this._mask.setDisplayed(false);
9183                     if(this._maskMsg){
9184                         this._maskMsg.setDisplayed(false);
9185                     }
9186                 }
9187             }
9188             this.removeClass("x-masked");
9189         },
9190
9191         /**
9192          * Returns true if this element is masked
9193          * @return {Boolean}
9194          */
9195         isMasked : function(){
9196             return this._mask && this._mask.isVisible();
9197         },
9198
9199         /**
9200          * Creates an iframe shim for this element to keep selects and other windowed objects from
9201          * showing through.
9202          * @return {Roo.Element} The new shim element
9203          */
9204         createShim : function(){
9205             var el = document.createElement('iframe');
9206             el.frameBorder = 'no';
9207             el.className = 'roo-shim';
9208             if(Roo.isIE && Roo.isSecure){
9209                 el.src = Roo.SSL_SECURE_URL;
9210             }
9211             var shim = Roo.get(this.dom.parentNode.insertBefore(el, this.dom));
9212             shim.autoBoxAdjust = false;
9213             return shim;
9214         },
9215
9216         /**
9217          * Removes this element from the DOM and deletes it from the cache
9218          */
9219         remove : function(){
9220             if(this.dom.parentNode){
9221                 this.dom.parentNode.removeChild(this.dom);
9222             }
9223             delete El.cache[this.dom.id];
9224         },
9225
9226         /**
9227          * Sets up event handlers to add and remove a css class when the mouse is over this element
9228          * @param {String} className
9229          * @param {Boolean} preventFlicker (optional) If set to true, it prevents flickering by filtering
9230          * mouseout events for children elements
9231          * @return {Roo.Element} this
9232          */
9233         addClassOnOver : function(className, preventFlicker){
9234             this.on("mouseover", function(){
9235                 Roo.fly(this, '_internal').addClass(className);
9236             }, this.dom);
9237             var removeFn = function(e){
9238                 if(preventFlicker !== true || !e.within(this, true)){
9239                     Roo.fly(this, '_internal').removeClass(className);
9240                 }
9241             };
9242             this.on("mouseout", removeFn, this.dom);
9243             return this;
9244         },
9245
9246         /**
9247          * Sets up event handlers to add and remove a css class when this element has the focus
9248          * @param {String} className
9249          * @return {Roo.Element} this
9250          */
9251         addClassOnFocus : function(className){
9252             this.on("focus", function(){
9253                 Roo.fly(this, '_internal').addClass(className);
9254             }, this.dom);
9255             this.on("blur", function(){
9256                 Roo.fly(this, '_internal').removeClass(className);
9257             }, this.dom);
9258             return this;
9259         },
9260         /**
9261          * 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)
9262          * @param {String} className
9263          * @return {Roo.Element} this
9264          */
9265         addClassOnClick : function(className){
9266             var dom = this.dom;
9267             this.on("mousedown", function(){
9268                 Roo.fly(dom, '_internal').addClass(className);
9269                 var d = Roo.get(document);
9270                 var fn = function(){
9271                     Roo.fly(dom, '_internal').removeClass(className);
9272                     d.removeListener("mouseup", fn);
9273                 };
9274                 d.on("mouseup", fn);
9275             });
9276             return this;
9277         },
9278
9279         /**
9280          * Stops the specified event from bubbling and optionally prevents the default action
9281          * @param {String} eventName
9282          * @param {Boolean} preventDefault (optional) true to prevent the default action too
9283          * @return {Roo.Element} this
9284          */
9285         swallowEvent : function(eventName, preventDefault){
9286             var fn = function(e){
9287                 e.stopPropagation();
9288                 if(preventDefault){
9289                     e.preventDefault();
9290                 }
9291             };
9292             if(eventName instanceof Array){
9293                 for(var i = 0, len = eventName.length; i < len; i++){
9294                      this.on(eventName[i], fn);
9295                 }
9296                 return this;
9297             }
9298             this.on(eventName, fn);
9299             return this;
9300         },
9301
9302         /**
9303          * @private
9304          */
9305       fitToParentDelegate : Roo.emptyFn, // keep a reference to the fitToParent delegate
9306
9307         /**
9308          * Sizes this element to its parent element's dimensions performing
9309          * neccessary box adjustments.
9310          * @param {Boolean} monitorResize (optional) If true maintains the fit when the browser window is resized.
9311          * @param {String/HTMLElment/Element} targetParent (optional) The target parent, default to the parentNode.
9312          * @return {Roo.Element} this
9313          */
9314         fitToParent : function(monitorResize, targetParent) {
9315           Roo.EventManager.removeResizeListener(this.fitToParentDelegate); // always remove previous fitToParent delegate from onWindowResize
9316           this.fitToParentDelegate = Roo.emptyFn; // remove reference to previous delegate
9317           if (monitorResize === true && !this.dom.parentNode) { // check if this Element still exists
9318             return;
9319           }
9320           var p = Roo.get(targetParent || this.dom.parentNode);
9321           this.setSize(p.getComputedWidth() - p.getFrameWidth('lr'), p.getComputedHeight() - p.getFrameWidth('tb'));
9322           if (monitorResize === true) {
9323             this.fitToParentDelegate = this.fitToParent.createDelegate(this, [true, targetParent]);
9324             Roo.EventManager.onWindowResize(this.fitToParentDelegate);
9325           }
9326           return this;
9327         },
9328
9329         /**
9330          * Gets the next sibling, skipping text nodes
9331          * @return {HTMLElement} The next sibling or null
9332          */
9333         getNextSibling : function(){
9334             var n = this.dom.nextSibling;
9335             while(n && n.nodeType != 1){
9336                 n = n.nextSibling;
9337             }
9338             return n;
9339         },
9340
9341         /**
9342          * Gets the previous sibling, skipping text nodes
9343          * @return {HTMLElement} The previous sibling or null
9344          */
9345         getPrevSibling : function(){
9346             var n = this.dom.previousSibling;
9347             while(n && n.nodeType != 1){
9348                 n = n.previousSibling;
9349             }
9350             return n;
9351         },
9352
9353
9354         /**
9355          * Appends the passed element(s) to this element
9356          * @param {String/HTMLElement/Array/Element/CompositeElement} el
9357          * @return {Roo.Element} this
9358          */
9359         appendChild: function(el){
9360             el = Roo.get(el);
9361             el.appendTo(this);
9362             return this;
9363         },
9364
9365         /**
9366          * Creates the passed DomHelper config and appends it to this element or optionally inserts it before the passed child element.
9367          * @param {Object} config DomHelper element config object.  If no tag is specified (e.g., {tag:'input'}) then a div will be
9368          * automatically generated with the specified attributes.
9369          * @param {HTMLElement} insertBefore (optional) a child element of this element
9370          * @param {Boolean} returnDom (optional) true to return the dom node instead of creating an Element
9371          * @return {Roo.Element} The new child element
9372          */
9373         createChild: function(config, insertBefore, returnDom){
9374             config = config || {tag:'div'};
9375             if(insertBefore){
9376                 return Roo.DomHelper.insertBefore(insertBefore, config, returnDom !== true);
9377             }
9378             return Roo.DomHelper[!this.dom.firstChild ? 'overwrite' : 'append'](this.dom, config,  returnDom !== true);
9379         },
9380
9381         /**
9382          * Appends this element to the passed element
9383          * @param {String/HTMLElement/Element} el The new parent element
9384          * @return {Roo.Element} this
9385          */
9386         appendTo: function(el){
9387             el = Roo.getDom(el);
9388             el.appendChild(this.dom);
9389             return this;
9390         },
9391
9392         /**
9393          * Inserts this element before the passed element in the DOM
9394          * @param {String/HTMLElement/Element} el The element to insert before
9395          * @return {Roo.Element} this
9396          */
9397         insertBefore: function(el){
9398             el = Roo.getDom(el);
9399             el.parentNode.insertBefore(this.dom, el);
9400             return this;
9401         },
9402
9403         /**
9404          * Inserts this element after the passed element in the DOM
9405          * @param {String/HTMLElement/Element} el The element to insert after
9406          * @return {Roo.Element} this
9407          */
9408         insertAfter: function(el){
9409             el = Roo.getDom(el);
9410             el.parentNode.insertBefore(this.dom, el.nextSibling);
9411             return this;
9412         },
9413
9414         /**
9415          * Inserts (or creates) an element (or DomHelper config) as the first child of the this element
9416          * @param {String/HTMLElement/Element/Object} el The id or element to insert or a DomHelper config to create and insert
9417          * @return {Roo.Element} The new child
9418          */
9419         insertFirst: function(el, returnDom){
9420             el = el || {};
9421             if(typeof el == 'object' && !el.nodeType){ // dh config
9422                 return this.createChild(el, this.dom.firstChild, returnDom);
9423             }else{
9424                 el = Roo.getDom(el);
9425                 this.dom.insertBefore(el, this.dom.firstChild);
9426                 return !returnDom ? Roo.get(el) : el;
9427             }
9428         },
9429
9430         /**
9431          * Inserts (or creates) the passed element (or DomHelper config) as a sibling of this element
9432          * @param {String/HTMLElement/Element/Object} el The id or element to insert or a DomHelper config to create and insert
9433          * @param {String} where (optional) 'before' or 'after' defaults to before
9434          * @param {Boolean} returnDom (optional) True to return the raw DOM element instead of Roo.Element
9435          * @return {Roo.Element} the inserted Element
9436          */
9437         insertSibling: function(el, where, returnDom){
9438             where = where ? where.toLowerCase() : 'before';
9439             el = el || {};
9440             var rt, refNode = where == 'before' ? this.dom : this.dom.nextSibling;
9441
9442             if(typeof el == 'object' && !el.nodeType){ // dh config
9443                 if(where == 'after' && !this.dom.nextSibling){
9444                     rt = Roo.DomHelper.append(this.dom.parentNode, el, !returnDom);
9445                 }else{
9446                     rt = Roo.DomHelper[where == 'after' ? 'insertAfter' : 'insertBefore'](this.dom, el, !returnDom);
9447                 }
9448
9449             }else{
9450                 rt = this.dom.parentNode.insertBefore(Roo.getDom(el),
9451                             where == 'before' ? this.dom : this.dom.nextSibling);
9452                 if(!returnDom){
9453                     rt = Roo.get(rt);
9454                 }
9455             }
9456             return rt;
9457         },
9458
9459         /**
9460          * Creates and wraps this element with another element
9461          * @param {Object} config (optional) DomHelper element config object for the wrapper element or null for an empty div
9462          * @param {Boolean} returnDom (optional) True to return the raw DOM element instead of Roo.Element
9463          * @return {HTMLElement/Element} The newly created wrapper element
9464          */
9465         wrap: function(config, returnDom){
9466             if(!config){
9467                 config = {tag: "div"};
9468             }
9469             var newEl = Roo.DomHelper.insertBefore(this.dom, config, !returnDom);
9470             newEl.dom ? newEl.dom.appendChild(this.dom) : newEl.appendChild(this.dom);
9471             return newEl;
9472         },
9473
9474         /**
9475          * Replaces the passed element with this element
9476          * @param {String/HTMLElement/Element} el The element to replace
9477          * @return {Roo.Element} this
9478          */
9479         replace: function(el){
9480             el = Roo.get(el);
9481             this.insertBefore(el);
9482             el.remove();
9483             return this;
9484         },
9485
9486         /**
9487          * Inserts an html fragment into this element
9488          * @param {String} where Where to insert the html in relation to the this element - beforeBegin, afterBegin, beforeEnd, afterEnd.
9489          * @param {String} html The HTML fragment
9490          * @param {Boolean} returnEl True to return an Roo.Element
9491          * @return {HTMLElement/Roo.Element} The inserted node (or nearest related if more than 1 inserted)
9492          */
9493         insertHtml : function(where, html, returnEl){
9494             var el = Roo.DomHelper.insertHtml(where, this.dom, html);
9495             return returnEl ? Roo.get(el) : el;
9496         },
9497
9498         /**
9499          * Sets the passed attributes as attributes of this element (a style attribute can be a string, object or function)
9500          * @param {Object} o The object with the attributes
9501          * @param {Boolean} useSet (optional) false to override the default setAttribute to use expandos.
9502          * @return {Roo.Element} this
9503          */
9504         set : function(o, useSet){
9505             var el = this.dom;
9506             useSet = typeof useSet == 'undefined' ? (el.setAttribute ? true : false) : useSet;
9507             for(var attr in o){
9508                 if(attr == "style" || typeof o[attr] == "function")  { continue; }
9509                 if(attr=="cls"){
9510                     el.className = o["cls"];
9511                 }else{
9512                     if(useSet) {
9513                         el.setAttribute(attr, o[attr]);
9514                     } else {
9515                         el[attr] = o[attr];
9516                     }
9517                 }
9518             }
9519             if(o.style){
9520                 Roo.DomHelper.applyStyles(el, o.style);
9521             }
9522             return this;
9523         },
9524
9525         /**
9526          * Convenience method for constructing a KeyMap
9527          * @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:
9528          *                                  {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
9529          * @param {Function} fn The function to call
9530          * @param {Object} scope (optional) The scope of the function
9531          * @return {Roo.KeyMap} The KeyMap created
9532          */
9533         addKeyListener : function(key, fn, scope){
9534             var config;
9535             if(typeof key != "object" || key instanceof Array){
9536                 config = {
9537                     key: key,
9538                     fn: fn,
9539                     scope: scope
9540                 };
9541             }else{
9542                 config = {
9543                     key : key.key,
9544                     shift : key.shift,
9545                     ctrl : key.ctrl,
9546                     alt : key.alt,
9547                     fn: fn,
9548                     scope: scope
9549                 };
9550             }
9551             return new Roo.KeyMap(this, config);
9552         },
9553
9554         /**
9555          * Creates a KeyMap for this element
9556          * @param {Object} config The KeyMap config. See {@link Roo.KeyMap} for more details
9557          * @return {Roo.KeyMap} The KeyMap created
9558          */
9559         addKeyMap : function(config){
9560             return new Roo.KeyMap(this, config);
9561         },
9562
9563         /**
9564          * Returns true if this element is scrollable.
9565          * @return {Boolean}
9566          */
9567          isScrollable : function(){
9568             var dom = this.dom;
9569             return dom.scrollHeight > dom.clientHeight || dom.scrollWidth > dom.clientWidth;
9570         },
9571
9572         /**
9573          * 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().
9574          * @param {String} side Either "left" for scrollLeft values or "top" for scrollTop values.
9575          * @param {Number} value The new scroll value
9576          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9577          * @return {Element} this
9578          */
9579
9580         scrollTo : function(side, value, animate){
9581             var prop = side.toLowerCase() == "left" ? "scrollLeft" : "scrollTop";
9582             if(!animate || !A){
9583                 this.dom[prop] = value;
9584             }else{
9585                 var to = prop == "scrollLeft" ? [value, this.dom.scrollTop] : [this.dom.scrollLeft, value];
9586                 this.anim({scroll: {"to": to}}, this.preanim(arguments, 2), 'scroll');
9587             }
9588             return this;
9589         },
9590
9591         /**
9592          * Scrolls this element the specified direction. Does bounds checking to make sure the scroll is
9593          * within this element's scrollable range.
9594          * @param {String} direction Possible values are: "l","left" - "r","right" - "t","top","up" - "b","bottom","down".
9595          * @param {Number} distance How far to scroll the element in pixels
9596          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9597          * @return {Boolean} Returns true if a scroll was triggered or false if the element
9598          * was scrolled as far as it could go.
9599          */
9600          scroll : function(direction, distance, animate){
9601              if(!this.isScrollable()){
9602                  return;
9603              }
9604              var el = this.dom;
9605              var l = el.scrollLeft, t = el.scrollTop;
9606              var w = el.scrollWidth, h = el.scrollHeight;
9607              var cw = el.clientWidth, ch = el.clientHeight;
9608              direction = direction.toLowerCase();
9609              var scrolled = false;
9610              var a = this.preanim(arguments, 2);
9611              switch(direction){
9612                  case "l":
9613                  case "left":
9614                      if(w - l > cw){
9615                          var v = Math.min(l + distance, w-cw);
9616                          this.scrollTo("left", v, a);
9617                          scrolled = true;
9618                      }
9619                      break;
9620                 case "r":
9621                 case "right":
9622                      if(l > 0){
9623                          var v = Math.max(l - distance, 0);
9624                          this.scrollTo("left", v, a);
9625                          scrolled = true;
9626                      }
9627                      break;
9628                 case "t":
9629                 case "top":
9630                 case "up":
9631                      if(t > 0){
9632                          var v = Math.max(t - distance, 0);
9633                          this.scrollTo("top", v, a);
9634                          scrolled = true;
9635                      }
9636                      break;
9637                 case "b":
9638                 case "bottom":
9639                 case "down":
9640                      if(h - t > ch){
9641                          var v = Math.min(t + distance, h-ch);
9642                          this.scrollTo("top", v, a);
9643                          scrolled = true;
9644                      }
9645                      break;
9646              }
9647              return scrolled;
9648         },
9649
9650         /**
9651          * Translates the passed page coordinates into left/top css values for this element
9652          * @param {Number/Array} x The page x or an array containing [x, y]
9653          * @param {Number} y The page y
9654          * @return {Object} An object with left and top properties. e.g. {left: (value), top: (value)}
9655          */
9656         translatePoints : function(x, y){
9657             if(typeof x == 'object' || x instanceof Array){
9658                 y = x[1]; x = x[0];
9659             }
9660             var p = this.getStyle('position');
9661             var o = this.getXY();
9662
9663             var l = parseInt(this.getStyle('left'), 10);
9664             var t = parseInt(this.getStyle('top'), 10);
9665
9666             if(isNaN(l)){
9667                 l = (p == "relative") ? 0 : this.dom.offsetLeft;
9668             }
9669             if(isNaN(t)){
9670                 t = (p == "relative") ? 0 : this.dom.offsetTop;
9671             }
9672
9673             return {left: (x - o[0] + l), top: (y - o[1] + t)};
9674         },
9675
9676         /**
9677          * Returns the current scroll position of the element.
9678          * @return {Object} An object containing the scroll position in the format {left: (scrollLeft), top: (scrollTop)}
9679          */
9680         getScroll : function(){
9681             var d = this.dom, doc = document;
9682             if(d == doc || d == doc.body){
9683                 var l = window.pageXOffset || doc.documentElement.scrollLeft || doc.body.scrollLeft || 0;
9684                 var t = window.pageYOffset || doc.documentElement.scrollTop || doc.body.scrollTop || 0;
9685                 return {left: l, top: t};
9686             }else{
9687                 return {left: d.scrollLeft, top: d.scrollTop};
9688             }
9689         },
9690
9691         /**
9692          * Return the CSS color for the specified CSS attribute. rgb, 3 digit (like #fff) and valid values
9693          * are convert to standard 6 digit hex color.
9694          * @param {String} attr The css attribute
9695          * @param {String} defaultValue The default value to use when a valid color isn't found
9696          * @param {String} prefix (optional) defaults to #. Use an empty string when working with
9697          * YUI color anims.
9698          */
9699         getColor : function(attr, defaultValue, prefix){
9700             var v = this.getStyle(attr);
9701             if(!v || v == "transparent" || v == "inherit") {
9702                 return defaultValue;
9703             }
9704             var color = typeof prefix == "undefined" ? "#" : prefix;
9705             if(v.substr(0, 4) == "rgb("){
9706                 var rvs = v.slice(4, v.length -1).split(",");
9707                 for(var i = 0; i < 3; i++){
9708                     var h = parseInt(rvs[i]).toString(16);
9709                     if(h < 16){
9710                         h = "0" + h;
9711                     }
9712                     color += h;
9713                 }
9714             } else {
9715                 if(v.substr(0, 1) == "#"){
9716                     if(v.length == 4) {
9717                         for(var i = 1; i < 4; i++){
9718                             var c = v.charAt(i);
9719                             color +=  c + c;
9720                         }
9721                     }else if(v.length == 7){
9722                         color += v.substr(1);
9723                     }
9724                 }
9725             }
9726             return(color.length > 5 ? color.toLowerCase() : defaultValue);
9727         },
9728
9729         /**
9730          * Wraps the specified element with a special markup/CSS block that renders by default as a gray container with a
9731          * gradient background, rounded corners and a 4-way shadow.
9732          * @param {String} class (optional) A base CSS class to apply to the containing wrapper element (defaults to 'x-box').
9733          * Note that there are a number of CSS rules that are dependent on this name to make the overall effect work,
9734          * so if you supply an alternate base class, make sure you also supply all of the necessary rules.
9735          * @return {Roo.Element} this
9736          */
9737         boxWrap : function(cls){
9738             cls = cls || 'x-box';
9739             var el = Roo.get(this.insertHtml('beforeBegin', String.format('<div class="{0}">'+El.boxMarkup+'</div>', cls)));
9740             el.child('.'+cls+'-mc').dom.appendChild(this.dom);
9741             return el;
9742         },
9743
9744         /**
9745          * Returns the value of a namespaced attribute from the element's underlying DOM node.
9746          * @param {String} namespace The namespace in which to look for the attribute
9747          * @param {String} name The attribute name
9748          * @return {String} The attribute value
9749          */
9750         getAttributeNS : Roo.isIE ? function(ns, name){
9751             var d = this.dom;
9752             var type = typeof d[ns+":"+name];
9753             if(type != 'undefined' && type != 'unknown'){
9754                 return d[ns+":"+name];
9755             }
9756             return d[name];
9757         } : function(ns, name){
9758             var d = this.dom;
9759             return d.getAttributeNS(ns, name) || d.getAttribute(ns+":"+name) || d.getAttribute(name) || d[name];
9760         },
9761         
9762         
9763         /**
9764          * Sets or Returns the value the dom attribute value
9765          * @param {String|Object} name The attribute name (or object to set multiple attributes)
9766          * @param {String} value (optional) The value to set the attribute to
9767          * @return {String} The attribute value
9768          */
9769         attr : function(name){
9770             if (arguments.length > 1) {
9771                 this.dom.setAttribute(name, arguments[1]);
9772                 return arguments[1];
9773             }
9774             if (typeof(name) == 'object') {
9775                 for(var i in name) {
9776                     this.attr(i, name[i]);
9777                 }
9778                 return name;
9779             }
9780             
9781             
9782             if (!this.dom.hasAttribute(name)) {
9783                 return undefined;
9784             }
9785             return this.dom.getAttribute(name);
9786         }
9787         
9788         
9789         
9790     };
9791
9792     var ep = El.prototype;
9793
9794     /**
9795      * Appends an event handler (Shorthand for addListener)
9796      * @param {String}   eventName     The type of event to append
9797      * @param {Function} fn        The method the event invokes
9798      * @param {Object} scope       (optional) The scope (this object) of the fn
9799      * @param {Object}   options   (optional)An object with standard {@link Roo.EventManager#addListener} options
9800      * @method
9801      */
9802     ep.on = ep.addListener;
9803         // backwards compat
9804     ep.mon = ep.addListener;
9805
9806     /**
9807      * Removes an event handler from this element (shorthand for removeListener)
9808      * @param {String} eventName the type of event to remove
9809      * @param {Function} fn the method the event invokes
9810      * @return {Roo.Element} this
9811      * @method
9812      */
9813     ep.un = ep.removeListener;
9814
9815     /**
9816      * true to automatically adjust width and height settings for box-model issues (default to true)
9817      */
9818     ep.autoBoxAdjust = true;
9819
9820     // private
9821     El.unitPattern = /\d+(px|em|%|en|ex|pt|in|cm|mm|pc)$/i;
9822
9823     // private
9824     El.addUnits = function(v, defaultUnit){
9825         if(v === "" || v == "auto"){
9826             return v;
9827         }
9828         if(v === undefined){
9829             return '';
9830         }
9831         if(typeof v == "number" || !El.unitPattern.test(v)){
9832             return v + (defaultUnit || 'px');
9833         }
9834         return v;
9835     };
9836
9837     // special markup used throughout Roo when box wrapping elements
9838     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>';
9839     /**
9840      * Visibility mode constant - Use visibility to hide element
9841      * @static
9842      * @type Number
9843      */
9844     El.VISIBILITY = 1;
9845     /**
9846      * Visibility mode constant - Use display to hide element
9847      * @static
9848      * @type Number
9849      */
9850     El.DISPLAY = 2;
9851
9852     El.borders = {l: "border-left-width", r: "border-right-width", t: "border-top-width", b: "border-bottom-width"};
9853     El.paddings = {l: "padding-left", r: "padding-right", t: "padding-top", b: "padding-bottom"};
9854     El.margins = {l: "margin-left", r: "margin-right", t: "margin-top", b: "margin-bottom"};
9855
9856
9857
9858     /**
9859      * @private
9860      */
9861     El.cache = {};
9862
9863     var docEl;
9864
9865     /**
9866      * Static method to retrieve Element objects. Uses simple caching to consistently return the same object.
9867      * Automatically fixes if an object was recreated with the same id via AJAX or DOM.
9868      * @param {String/HTMLElement/Element} el The id of the node, a DOM Node or an existing Element.
9869      * @return {Element} The Element object
9870      * @static
9871      */
9872     El.get = function(el){
9873         var ex, elm, id;
9874         if(!el){ return null; }
9875         if(typeof el == "string"){ // element id
9876             if(!(elm = document.getElementById(el))){
9877                 return null;
9878             }
9879             if(ex = El.cache[el]){
9880                 ex.dom = elm;
9881             }else{
9882                 ex = El.cache[el] = new El(elm);
9883             }
9884             return ex;
9885         }else if(el.tagName){ // dom element
9886             if(!(id = el.id)){
9887                 id = Roo.id(el);
9888             }
9889             if(ex = El.cache[id]){
9890                 ex.dom = el;
9891             }else{
9892                 ex = El.cache[id] = new El(el);
9893             }
9894             return ex;
9895         }else if(el instanceof El){
9896             if(el != docEl){
9897                 el.dom = document.getElementById(el.id) || el.dom; // refresh dom element in case no longer valid,
9898                                                               // catch case where it hasn't been appended
9899                 El.cache[el.id] = el; // in case it was created directly with Element(), let's cache it
9900             }
9901             return el;
9902         }else if(el.isComposite){
9903             return el;
9904         }else if(el instanceof Array){
9905             return El.select(el);
9906         }else if(el == document){
9907             // create a bogus element object representing the document object
9908             if(!docEl){
9909                 var f = function(){};
9910                 f.prototype = El.prototype;
9911                 docEl = new f();
9912                 docEl.dom = document;
9913             }
9914             return docEl;
9915         }
9916         return null;
9917     };
9918
9919     // private
9920     El.uncache = function(el){
9921         for(var i = 0, a = arguments, len = a.length; i < len; i++) {
9922             if(a[i]){
9923                 delete El.cache[a[i].id || a[i]];
9924             }
9925         }
9926     };
9927
9928     // private
9929     // Garbage collection - uncache elements/purge listeners on orphaned elements
9930     // so we don't hold a reference and cause the browser to retain them
9931     El.garbageCollect = function(){
9932         if(!Roo.enableGarbageCollector){
9933             clearInterval(El.collectorThread);
9934             return;
9935         }
9936         for(var eid in El.cache){
9937             var el = El.cache[eid], d = el.dom;
9938             // -------------------------------------------------------
9939             // Determining what is garbage:
9940             // -------------------------------------------------------
9941             // !d
9942             // dom node is null, definitely garbage
9943             // -------------------------------------------------------
9944             // !d.parentNode
9945             // no parentNode == direct orphan, definitely garbage
9946             // -------------------------------------------------------
9947             // !d.offsetParent && !document.getElementById(eid)
9948             // display none elements have no offsetParent so we will
9949             // also try to look it up by it's id. However, check
9950             // offsetParent first so we don't do unneeded lookups.
9951             // This enables collection of elements that are not orphans
9952             // directly, but somewhere up the line they have an orphan
9953             // parent.
9954             // -------------------------------------------------------
9955             if(!d || !d.parentNode || (!d.offsetParent && !document.getElementById(eid))){
9956                 delete El.cache[eid];
9957                 if(d && Roo.enableListenerCollection){
9958                     E.purgeElement(d);
9959                 }
9960             }
9961         }
9962     }
9963     El.collectorThreadId = setInterval(El.garbageCollect, 30000);
9964
9965
9966     // dom is optional
9967     El.Flyweight = function(dom){
9968         this.dom = dom;
9969     };
9970     El.Flyweight.prototype = El.prototype;
9971
9972     El._flyweights = {};
9973     /**
9974      * Gets the globally shared flyweight Element, with the passed node as the active element. Do not store a reference to this element -
9975      * the dom node can be overwritten by other code.
9976      * @param {String/HTMLElement} el The dom node or id
9977      * @param {String} named (optional) Allows for creation of named reusable flyweights to
9978      *                                  prevent conflicts (e.g. internally Roo uses "_internal")
9979      * @static
9980      * @return {Element} The shared Element object
9981      */
9982     El.fly = function(el, named){
9983         named = named || '_global';
9984         el = Roo.getDom(el);
9985         if(!el){
9986             return null;
9987         }
9988         if(!El._flyweights[named]){
9989             El._flyweights[named] = new El.Flyweight();
9990         }
9991         El._flyweights[named].dom = el;
9992         return El._flyweights[named];
9993     };
9994
9995     /**
9996      * Static method to retrieve Element objects. Uses simple caching to consistently return the same object.
9997      * Automatically fixes if an object was recreated with the same id via AJAX or DOM.
9998      * Shorthand of {@link Roo.Element#get}
9999      * @param {String/HTMLElement/Element} el The id of the node, a DOM Node or an existing Element.
10000      * @return {Element} The Element object
10001      * @member Roo
10002      * @method get
10003      */
10004     Roo.get = El.get;
10005     /**
10006      * Gets the globally shared flyweight Element, with the passed node as the active element. Do not store a reference to this element -
10007      * the dom node can be overwritten by other code.
10008      * Shorthand of {@link Roo.Element#fly}
10009      * @param {String/HTMLElement} el The dom node or id
10010      * @param {String} named (optional) Allows for creation of named reusable flyweights to
10011      *                                  prevent conflicts (e.g. internally Roo uses "_internal")
10012      * @static
10013      * @return {Element} The shared Element object
10014      * @member Roo
10015      * @method fly
10016      */
10017     Roo.fly = El.fly;
10018
10019     // speedy lookup for elements never to box adjust
10020     var noBoxAdjust = Roo.isStrict ? {
10021         select:1
10022     } : {
10023         input:1, select:1, textarea:1
10024     };
10025     if(Roo.isIE || Roo.isGecko){
10026         noBoxAdjust['button'] = 1;
10027     }
10028
10029
10030     Roo.EventManager.on(window, 'unload', function(){
10031         delete El.cache;
10032         delete El._flyweights;
10033     });
10034 })();
10035
10036
10037
10038
10039 if(Roo.DomQuery){
10040     Roo.Element.selectorFunction = Roo.DomQuery.select;
10041 }
10042
10043 Roo.Element.select = function(selector, unique, root){
10044     var els;
10045     if(typeof selector == "string"){
10046         els = Roo.Element.selectorFunction(selector, root);
10047     }else if(selector.length !== undefined){
10048         els = selector;
10049     }else{
10050         throw "Invalid selector";
10051     }
10052     if(unique === true){
10053         return new Roo.CompositeElement(els);
10054     }else{
10055         return new Roo.CompositeElementLite(els);
10056     }
10057 };
10058 /**
10059  * Selects elements based on the passed CSS selector to enable working on them as 1.
10060  * @param {String/Array} selector The CSS selector or an array of elements
10061  * @param {Boolean} unique (optional) true to create a unique Roo.Element for each element (defaults to a shared flyweight object)
10062  * @param {HTMLElement/String} root (optional) The root element of the query or id of the root
10063  * @return {CompositeElementLite/CompositeElement}
10064  * @member Roo
10065  * @method select
10066  */
10067 Roo.select = Roo.Element.select;
10068
10069
10070
10071
10072
10073
10074
10075
10076
10077
10078
10079
10080
10081
10082 /*
10083  * Based on:
10084  * Ext JS Library 1.1.1
10085  * Copyright(c) 2006-2007, Ext JS, LLC.
10086  *
10087  * Originally Released Under LGPL - original licence link has changed is not relivant.
10088  *
10089  * Fork - LGPL
10090  * <script type="text/javascript">
10091  */
10092
10093
10094
10095 //Notifies Element that fx methods are available
10096 Roo.enableFx = true;
10097
10098 /**
10099  * @class Roo.Fx
10100  * <p>A class to provide basic animation and visual effects support.  <b>Note:</b> This class is automatically applied
10101  * to the {@link Roo.Element} interface when included, so all effects calls should be performed via Element.
10102  * Conversely, since the effects are not actually defined in Element, Roo.Fx <b>must</b> be included in order for the 
10103  * Element effects to work.</p><br/>
10104  *
10105  * <p>It is important to note that although the Fx methods and many non-Fx Element methods support "method chaining" in that
10106  * they return the Element object itself as the method return value, it is not always possible to mix the two in a single
10107  * method chain.  The Fx methods use an internal effects queue so that each effect can be properly timed and sequenced.
10108  * Non-Fx methods, on the other hand, have no such internal queueing and will always execute immediately.  For this reason,
10109  * while it may be possible to mix certain Fx and non-Fx method calls in a single chain, it may not always provide the
10110  * expected results and should be done with care.</p><br/>
10111  *
10112  * <p>Motion effects support 8-way anchoring, meaning that you can choose one of 8 different anchor points on the Element
10113  * that will serve as either the start or end point of the animation.  Following are all of the supported anchor positions:</p>
10114 <pre>
10115 Value  Description
10116 -----  -----------------------------
10117 tl     The top left corner
10118 t      The center of the top edge
10119 tr     The top right corner
10120 l      The center of the left edge
10121 r      The center of the right edge
10122 bl     The bottom left corner
10123 b      The center of the bottom edge
10124 br     The bottom right corner
10125 </pre>
10126  * <b>Although some Fx methods accept specific custom config parameters, the ones shown in the Config Options section
10127  * below are common options that can be passed to any Fx method.</b>
10128  * @cfg {Function} callback A function called when the effect is finished
10129  * @cfg {Object} scope The scope of the effect function
10130  * @cfg {String} easing A valid Easing value for the effect
10131  * @cfg {String} afterCls A css class to apply after the effect
10132  * @cfg {Number} duration The length of time (in seconds) that the effect should last
10133  * @cfg {Boolean} remove Whether the Element should be removed from the DOM and destroyed after the effect finishes
10134  * @cfg {Boolean} useDisplay Whether to use the <i>display</i> CSS property instead of <i>visibility</i> when hiding Elements (only applies to 
10135  * effects that end with the element being visually hidden, ignored otherwise)
10136  * @cfg {String/Object/Function} afterStyle A style specification string, e.g. "width:100px", or an object in the form {width:"100px"}, or
10137  * a function which returns such a specification that will be applied to the Element after the effect finishes
10138  * @cfg {Boolean} block Whether the effect should block other effects from queueing while it runs
10139  * @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
10140  * @cfg {Boolean} stopFx Whether subsequent effects should be stopped and removed after the current effect finishes
10141  */
10142 Roo.Fx = {
10143         /**
10144          * Slides the element into view.  An anchor point can be optionally passed to set the point of
10145          * origin for the slide effect.  This function automatically handles wrapping the element with
10146          * a fixed-size container if needed.  See the Fx class overview for valid anchor point options.
10147          * Usage:
10148          *<pre><code>
10149 // default: slide the element in from the top
10150 el.slideIn();
10151
10152 // custom: slide the element in from the right with a 2-second duration
10153 el.slideIn('r', { duration: 2 });
10154
10155 // common config options shown with default values
10156 el.slideIn('t', {
10157     easing: 'easeOut',
10158     duration: .5
10159 });
10160 </code></pre>
10161          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to top: 't')
10162          * @param {Object} options (optional) Object literal with any of the Fx config options
10163          * @return {Roo.Element} The Element
10164          */
10165     slideIn : function(anchor, o){
10166         var el = this.getFxEl();
10167         o = o || {};
10168
10169         el.queueFx(o, function(){
10170
10171             anchor = anchor || "t";
10172
10173             // fix display to visibility
10174             this.fixDisplay();
10175
10176             // restore values after effect
10177             var r = this.getFxRestore();
10178             var b = this.getBox();
10179             // fixed size for slide
10180             this.setSize(b);
10181
10182             // wrap if needed
10183             var wrap = this.fxWrap(r.pos, o, "hidden");
10184
10185             var st = this.dom.style;
10186             st.visibility = "visible";
10187             st.position = "absolute";
10188
10189             // clear out temp styles after slide and unwrap
10190             var after = function(){
10191                 el.fxUnwrap(wrap, r.pos, o);
10192                 st.width = r.width;
10193                 st.height = r.height;
10194                 el.afterFx(o);
10195             };
10196             // time to calc the positions
10197             var a, pt = {to: [b.x, b.y]}, bw = {to: b.width}, bh = {to: b.height};
10198
10199             switch(anchor.toLowerCase()){
10200                 case "t":
10201                     wrap.setSize(b.width, 0);
10202                     st.left = st.bottom = "0";
10203                     a = {height: bh};
10204                 break;
10205                 case "l":
10206                     wrap.setSize(0, b.height);
10207                     st.right = st.top = "0";
10208                     a = {width: bw};
10209                 break;
10210                 case "r":
10211                     wrap.setSize(0, b.height);
10212                     wrap.setX(b.right);
10213                     st.left = st.top = "0";
10214                     a = {width: bw, points: pt};
10215                 break;
10216                 case "b":
10217                     wrap.setSize(b.width, 0);
10218                     wrap.setY(b.bottom);
10219                     st.left = st.top = "0";
10220                     a = {height: bh, points: pt};
10221                 break;
10222                 case "tl":
10223                     wrap.setSize(0, 0);
10224                     st.right = st.bottom = "0";
10225                     a = {width: bw, height: bh};
10226                 break;
10227                 case "bl":
10228                     wrap.setSize(0, 0);
10229                     wrap.setY(b.y+b.height);
10230                     st.right = st.top = "0";
10231                     a = {width: bw, height: bh, points: pt};
10232                 break;
10233                 case "br":
10234                     wrap.setSize(0, 0);
10235                     wrap.setXY([b.right, b.bottom]);
10236                     st.left = st.top = "0";
10237                     a = {width: bw, height: bh, points: pt};
10238                 break;
10239                 case "tr":
10240                     wrap.setSize(0, 0);
10241                     wrap.setX(b.x+b.width);
10242                     st.left = st.bottom = "0";
10243                     a = {width: bw, height: bh, points: pt};
10244                 break;
10245             }
10246             this.dom.style.visibility = "visible";
10247             wrap.show();
10248
10249             arguments.callee.anim = wrap.fxanim(a,
10250                 o,
10251                 'motion',
10252                 .5,
10253                 'easeOut', after);
10254         });
10255         return this;
10256     },
10257     
10258         /**
10259          * Slides the element out of view.  An anchor point can be optionally passed to set the end point
10260          * for the slide effect.  When the effect is completed, the element will be hidden (visibility = 
10261          * 'hidden') but block elements will still take up space in the document.  The element must be removed
10262          * from the DOM using the 'remove' config option if desired.  This function automatically handles 
10263          * wrapping the element with a fixed-size container if needed.  See the Fx class overview for valid anchor point options.
10264          * Usage:
10265          *<pre><code>
10266 // default: slide the element out to the top
10267 el.slideOut();
10268
10269 // custom: slide the element out to the right with a 2-second duration
10270 el.slideOut('r', { duration: 2 });
10271
10272 // common config options shown with default values
10273 el.slideOut('t', {
10274     easing: 'easeOut',
10275     duration: .5,
10276     remove: false,
10277     useDisplay: false
10278 });
10279 </code></pre>
10280          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to top: 't')
10281          * @param {Object} options (optional) Object literal with any of the Fx config options
10282          * @return {Roo.Element} The Element
10283          */
10284     slideOut : function(anchor, o){
10285         var el = this.getFxEl();
10286         o = o || {};
10287
10288         el.queueFx(o, function(){
10289
10290             anchor = anchor || "t";
10291
10292             // restore values after effect
10293             var r = this.getFxRestore();
10294             
10295             var b = this.getBox();
10296             // fixed size for slide
10297             this.setSize(b);
10298
10299             // wrap if needed
10300             var wrap = this.fxWrap(r.pos, o, "visible");
10301
10302             var st = this.dom.style;
10303             st.visibility = "visible";
10304             st.position = "absolute";
10305
10306             wrap.setSize(b);
10307
10308             var after = function(){
10309                 if(o.useDisplay){
10310                     el.setDisplayed(false);
10311                 }else{
10312                     el.hide();
10313                 }
10314
10315                 el.fxUnwrap(wrap, r.pos, o);
10316
10317                 st.width = r.width;
10318                 st.height = r.height;
10319
10320                 el.afterFx(o);
10321             };
10322
10323             var a, zero = {to: 0};
10324             switch(anchor.toLowerCase()){
10325                 case "t":
10326                     st.left = st.bottom = "0";
10327                     a = {height: zero};
10328                 break;
10329                 case "l":
10330                     st.right = st.top = "0";
10331                     a = {width: zero};
10332                 break;
10333                 case "r":
10334                     st.left = st.top = "0";
10335                     a = {width: zero, points: {to:[b.right, b.y]}};
10336                 break;
10337                 case "b":
10338                     st.left = st.top = "0";
10339                     a = {height: zero, points: {to:[b.x, b.bottom]}};
10340                 break;
10341                 case "tl":
10342                     st.right = st.bottom = "0";
10343                     a = {width: zero, height: zero};
10344                 break;
10345                 case "bl":
10346                     st.right = st.top = "0";
10347                     a = {width: zero, height: zero, points: {to:[b.x, b.bottom]}};
10348                 break;
10349                 case "br":
10350                     st.left = st.top = "0";
10351                     a = {width: zero, height: zero, points: {to:[b.x+b.width, b.bottom]}};
10352                 break;
10353                 case "tr":
10354                     st.left = st.bottom = "0";
10355                     a = {width: zero, height: zero, points: {to:[b.right, b.y]}};
10356                 break;
10357             }
10358
10359             arguments.callee.anim = wrap.fxanim(a,
10360                 o,
10361                 'motion',
10362                 .5,
10363                 "easeOut", after);
10364         });
10365         return this;
10366     },
10367
10368         /**
10369          * Fades the element out while slowly expanding it in all directions.  When the effect is completed, the 
10370          * element will be hidden (visibility = 'hidden') but block elements will still take up space in the document. 
10371          * The element must be removed from the DOM using the 'remove' config option if desired.
10372          * Usage:
10373          *<pre><code>
10374 // default
10375 el.puff();
10376
10377 // common config options shown with default values
10378 el.puff({
10379     easing: 'easeOut',
10380     duration: .5,
10381     remove: false,
10382     useDisplay: false
10383 });
10384 </code></pre>
10385          * @param {Object} options (optional) Object literal with any of the Fx config options
10386          * @return {Roo.Element} The Element
10387          */
10388     puff : function(o){
10389         var el = this.getFxEl();
10390         o = o || {};
10391
10392         el.queueFx(o, function(){
10393             this.clearOpacity();
10394             this.show();
10395
10396             // restore values after effect
10397             var r = this.getFxRestore();
10398             var st = this.dom.style;
10399
10400             var after = function(){
10401                 if(o.useDisplay){
10402                     el.setDisplayed(false);
10403                 }else{
10404                     el.hide();
10405                 }
10406
10407                 el.clearOpacity();
10408
10409                 el.setPositioning(r.pos);
10410                 st.width = r.width;
10411                 st.height = r.height;
10412                 st.fontSize = '';
10413                 el.afterFx(o);
10414             };
10415
10416             var width = this.getWidth();
10417             var height = this.getHeight();
10418
10419             arguments.callee.anim = this.fxanim({
10420                     width : {to: this.adjustWidth(width * 2)},
10421                     height : {to: this.adjustHeight(height * 2)},
10422                     points : {by: [-(width * .5), -(height * .5)]},
10423                     opacity : {to: 0},
10424                     fontSize: {to:200, unit: "%"}
10425                 },
10426                 o,
10427                 'motion',
10428                 .5,
10429                 "easeOut", after);
10430         });
10431         return this;
10432     },
10433
10434         /**
10435          * Blinks the element as if it was clicked and then collapses on its center (similar to switching off a television).
10436          * When the effect is completed, the element will be hidden (visibility = 'hidden') but block elements will still 
10437          * take up space in the document. The element must be removed from the DOM using the 'remove' config option if desired.
10438          * Usage:
10439          *<pre><code>
10440 // default
10441 el.switchOff();
10442
10443 // all config options shown with default values
10444 el.switchOff({
10445     easing: 'easeIn',
10446     duration: .3,
10447     remove: false,
10448     useDisplay: false
10449 });
10450 </code></pre>
10451          * @param {Object} options (optional) Object literal with any of the Fx config options
10452          * @return {Roo.Element} The Element
10453          */
10454     switchOff : function(o){
10455         var el = this.getFxEl();
10456         o = o || {};
10457
10458         el.queueFx(o, function(){
10459             this.clearOpacity();
10460             this.clip();
10461
10462             // restore values after effect
10463             var r = this.getFxRestore();
10464             var st = this.dom.style;
10465
10466             var after = function(){
10467                 if(o.useDisplay){
10468                     el.setDisplayed(false);
10469                 }else{
10470                     el.hide();
10471                 }
10472
10473                 el.clearOpacity();
10474                 el.setPositioning(r.pos);
10475                 st.width = r.width;
10476                 st.height = r.height;
10477
10478                 el.afterFx(o);
10479             };
10480
10481             this.fxanim({opacity:{to:0.3}}, null, null, .1, null, function(){
10482                 this.clearOpacity();
10483                 (function(){
10484                     this.fxanim({
10485                         height:{to:1},
10486                         points:{by:[0, this.getHeight() * .5]}
10487                     }, o, 'motion', 0.3, 'easeIn', after);
10488                 }).defer(100, this);
10489             });
10490         });
10491         return this;
10492     },
10493
10494     /**
10495      * Highlights the Element by setting a color (applies to the background-color by default, but can be
10496      * changed using the "attr" config option) and then fading back to the original color. If no original
10497      * color is available, you should provide the "endColor" config option which will be cleared after the animation.
10498      * Usage:
10499 <pre><code>
10500 // default: highlight background to yellow
10501 el.highlight();
10502
10503 // custom: highlight foreground text to blue for 2 seconds
10504 el.highlight("0000ff", { attr: 'color', duration: 2 });
10505
10506 // common config options shown with default values
10507 el.highlight("ffff9c", {
10508     attr: "background-color", //can be any valid CSS property (attribute) that supports a color value
10509     endColor: (current color) or "ffffff",
10510     easing: 'easeIn',
10511     duration: 1
10512 });
10513 </code></pre>
10514      * @param {String} color (optional) The highlight color. Should be a 6 char hex color without the leading # (defaults to yellow: 'ffff9c')
10515      * @param {Object} options (optional) Object literal with any of the Fx config options
10516      * @return {Roo.Element} The Element
10517      */ 
10518     highlight : function(color, o){
10519         var el = this.getFxEl();
10520         o = o || {};
10521
10522         el.queueFx(o, function(){
10523             color = color || "ffff9c";
10524             attr = o.attr || "backgroundColor";
10525
10526             this.clearOpacity();
10527             this.show();
10528
10529             var origColor = this.getColor(attr);
10530             var restoreColor = this.dom.style[attr];
10531             endColor = (o.endColor || origColor) || "ffffff";
10532
10533             var after = function(){
10534                 el.dom.style[attr] = restoreColor;
10535                 el.afterFx(o);
10536             };
10537
10538             var a = {};
10539             a[attr] = {from: color, to: endColor};
10540             arguments.callee.anim = this.fxanim(a,
10541                 o,
10542                 'color',
10543                 1,
10544                 'easeIn', after);
10545         });
10546         return this;
10547     },
10548
10549    /**
10550     * Shows a ripple of exploding, attenuating borders to draw attention to an Element.
10551     * Usage:
10552 <pre><code>
10553 // default: a single light blue ripple
10554 el.frame();
10555
10556 // custom: 3 red ripples lasting 3 seconds total
10557 el.frame("ff0000", 3, { duration: 3 });
10558
10559 // common config options shown with default values
10560 el.frame("C3DAF9", 1, {
10561     duration: 1 //duration of entire animation (not each individual ripple)
10562     // Note: Easing is not configurable and will be ignored if included
10563 });
10564 </code></pre>
10565     * @param {String} color (optional) The color of the border.  Should be a 6 char hex color without the leading # (defaults to light blue: 'C3DAF9').
10566     * @param {Number} count (optional) The number of ripples to display (defaults to 1)
10567     * @param {Object} options (optional) Object literal with any of the Fx config options
10568     * @return {Roo.Element} The Element
10569     */
10570     frame : function(color, count, o){
10571         var el = this.getFxEl();
10572         o = o || {};
10573
10574         el.queueFx(o, function(){
10575             color = color || "#C3DAF9";
10576             if(color.length == 6){
10577                 color = "#" + color;
10578             }
10579             count = count || 1;
10580             duration = o.duration || 1;
10581             this.show();
10582
10583             var b = this.getBox();
10584             var animFn = function(){
10585                 var proxy = this.createProxy({
10586
10587                      style:{
10588                         visbility:"hidden",
10589                         position:"absolute",
10590                         "z-index":"35000", // yee haw
10591                         border:"0px solid " + color
10592                      }
10593                   });
10594                 var scale = Roo.isBorderBox ? 2 : 1;
10595                 proxy.animate({
10596                     top:{from:b.y, to:b.y - 20},
10597                     left:{from:b.x, to:b.x - 20},
10598                     borderWidth:{from:0, to:10},
10599                     opacity:{from:1, to:0},
10600                     height:{from:b.height, to:(b.height + (20*scale))},
10601                     width:{from:b.width, to:(b.width + (20*scale))}
10602                 }, duration, function(){
10603                     proxy.remove();
10604                 });
10605                 if(--count > 0){
10606                      animFn.defer((duration/2)*1000, this);
10607                 }else{
10608                     el.afterFx(o);
10609                 }
10610             };
10611             animFn.call(this);
10612         });
10613         return this;
10614     },
10615
10616    /**
10617     * Creates a pause before any subsequent queued effects begin.  If there are
10618     * no effects queued after the pause it will have no effect.
10619     * Usage:
10620 <pre><code>
10621 el.pause(1);
10622 </code></pre>
10623     * @param {Number} seconds The length of time to pause (in seconds)
10624     * @return {Roo.Element} The Element
10625     */
10626     pause : function(seconds){
10627         var el = this.getFxEl();
10628         var o = {};
10629
10630         el.queueFx(o, function(){
10631             setTimeout(function(){
10632                 el.afterFx(o);
10633             }, seconds * 1000);
10634         });
10635         return this;
10636     },
10637
10638    /**
10639     * Fade an element in (from transparent to opaque).  The ending opacity can be specified
10640     * using the "endOpacity" config option.
10641     * Usage:
10642 <pre><code>
10643 // default: fade in from opacity 0 to 100%
10644 el.fadeIn();
10645
10646 // custom: fade in from opacity 0 to 75% over 2 seconds
10647 el.fadeIn({ endOpacity: .75, duration: 2});
10648
10649 // common config options shown with default values
10650 el.fadeIn({
10651     endOpacity: 1, //can be any value between 0 and 1 (e.g. .5)
10652     easing: 'easeOut',
10653     duration: .5
10654 });
10655 </code></pre>
10656     * @param {Object} options (optional) Object literal with any of the Fx config options
10657     * @return {Roo.Element} The Element
10658     */
10659     fadeIn : function(o){
10660         var el = this.getFxEl();
10661         o = o || {};
10662         el.queueFx(o, function(){
10663             this.setOpacity(0);
10664             this.fixDisplay();
10665             this.dom.style.visibility = 'visible';
10666             var to = o.endOpacity || 1;
10667             arguments.callee.anim = this.fxanim({opacity:{to:to}},
10668                 o, null, .5, "easeOut", function(){
10669                 if(to == 1){
10670                     this.clearOpacity();
10671                 }
10672                 el.afterFx(o);
10673             });
10674         });
10675         return this;
10676     },
10677
10678    /**
10679     * Fade an element out (from opaque to transparent).  The ending opacity can be specified
10680     * using the "endOpacity" config option.
10681     * Usage:
10682 <pre><code>
10683 // default: fade out from the element's current opacity to 0
10684 el.fadeOut();
10685
10686 // custom: fade out from the element's current opacity to 25% over 2 seconds
10687 el.fadeOut({ endOpacity: .25, duration: 2});
10688
10689 // common config options shown with default values
10690 el.fadeOut({
10691     endOpacity: 0, //can be any value between 0 and 1 (e.g. .5)
10692     easing: 'easeOut',
10693     duration: .5
10694     remove: false,
10695     useDisplay: false
10696 });
10697 </code></pre>
10698     * @param {Object} options (optional) Object literal with any of the Fx config options
10699     * @return {Roo.Element} The Element
10700     */
10701     fadeOut : function(o){
10702         var el = this.getFxEl();
10703         o = o || {};
10704         el.queueFx(o, function(){
10705             arguments.callee.anim = this.fxanim({opacity:{to:o.endOpacity || 0}},
10706                 o, null, .5, "easeOut", function(){
10707                 if(this.visibilityMode == Roo.Element.DISPLAY || o.useDisplay){
10708                      this.dom.style.display = "none";
10709                 }else{
10710                      this.dom.style.visibility = "hidden";
10711                 }
10712                 this.clearOpacity();
10713                 el.afterFx(o);
10714             });
10715         });
10716         return this;
10717     },
10718
10719    /**
10720     * Animates the transition of an element's dimensions from a starting height/width
10721     * to an ending height/width.
10722     * Usage:
10723 <pre><code>
10724 // change height and width to 100x100 pixels
10725 el.scale(100, 100);
10726
10727 // common config options shown with default values.  The height and width will default to
10728 // the element's existing values if passed as null.
10729 el.scale(
10730     [element's width],
10731     [element's height], {
10732     easing: 'easeOut',
10733     duration: .35
10734 });
10735 </code></pre>
10736     * @param {Number} width  The new width (pass undefined to keep the original width)
10737     * @param {Number} height  The new height (pass undefined to keep the original height)
10738     * @param {Object} options (optional) Object literal with any of the Fx config options
10739     * @return {Roo.Element} The Element
10740     */
10741     scale : function(w, h, o){
10742         this.shift(Roo.apply({}, o, {
10743             width: w,
10744             height: h
10745         }));
10746         return this;
10747     },
10748
10749    /**
10750     * Animates the transition of any combination of an element's dimensions, xy position and/or opacity.
10751     * Any of these properties not specified in the config object will not be changed.  This effect 
10752     * requires that at least one new dimension, position or opacity setting must be passed in on
10753     * the config object in order for the function to have any effect.
10754     * Usage:
10755 <pre><code>
10756 // slide the element horizontally to x position 200 while changing the height and opacity
10757 el.shift({ x: 200, height: 50, opacity: .8 });
10758
10759 // common config options shown with default values.
10760 el.shift({
10761     width: [element's width],
10762     height: [element's height],
10763     x: [element's x position],
10764     y: [element's y position],
10765     opacity: [element's opacity],
10766     easing: 'easeOut',
10767     duration: .35
10768 });
10769 </code></pre>
10770     * @param {Object} options  Object literal with any of the Fx config options
10771     * @return {Roo.Element} The Element
10772     */
10773     shift : function(o){
10774         var el = this.getFxEl();
10775         o = o || {};
10776         el.queueFx(o, function(){
10777             var a = {}, w = o.width, h = o.height, x = o.x, y = o.y,  op = o.opacity;
10778             if(w !== undefined){
10779                 a.width = {to: this.adjustWidth(w)};
10780             }
10781             if(h !== undefined){
10782                 a.height = {to: this.adjustHeight(h)};
10783             }
10784             if(x !== undefined || y !== undefined){
10785                 a.points = {to: [
10786                     x !== undefined ? x : this.getX(),
10787                     y !== undefined ? y : this.getY()
10788                 ]};
10789             }
10790             if(op !== undefined){
10791                 a.opacity = {to: op};
10792             }
10793             if(o.xy !== undefined){
10794                 a.points = {to: o.xy};
10795             }
10796             arguments.callee.anim = this.fxanim(a,
10797                 o, 'motion', .35, "easeOut", function(){
10798                 el.afterFx(o);
10799             });
10800         });
10801         return this;
10802     },
10803
10804         /**
10805          * Slides the element while fading it out of view.  An anchor point can be optionally passed to set the 
10806          * ending point of the effect.
10807          * Usage:
10808          *<pre><code>
10809 // default: slide the element downward while fading out
10810 el.ghost();
10811
10812 // custom: slide the element out to the right with a 2-second duration
10813 el.ghost('r', { duration: 2 });
10814
10815 // common config options shown with default values
10816 el.ghost('b', {
10817     easing: 'easeOut',
10818     duration: .5
10819     remove: false,
10820     useDisplay: false
10821 });
10822 </code></pre>
10823          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to bottom: 'b')
10824          * @param {Object} options (optional) Object literal with any of the Fx config options
10825          * @return {Roo.Element} The Element
10826          */
10827     ghost : function(anchor, o){
10828         var el = this.getFxEl();
10829         o = o || {};
10830
10831         el.queueFx(o, function(){
10832             anchor = anchor || "b";
10833
10834             // restore values after effect
10835             var r = this.getFxRestore();
10836             var w = this.getWidth(),
10837                 h = this.getHeight();
10838
10839             var st = this.dom.style;
10840
10841             var after = function(){
10842                 if(o.useDisplay){
10843                     el.setDisplayed(false);
10844                 }else{
10845                     el.hide();
10846                 }
10847
10848                 el.clearOpacity();
10849                 el.setPositioning(r.pos);
10850                 st.width = r.width;
10851                 st.height = r.height;
10852
10853                 el.afterFx(o);
10854             };
10855
10856             var a = {opacity: {to: 0}, points: {}}, pt = a.points;
10857             switch(anchor.toLowerCase()){
10858                 case "t":
10859                     pt.by = [0, -h];
10860                 break;
10861                 case "l":
10862                     pt.by = [-w, 0];
10863                 break;
10864                 case "r":
10865                     pt.by = [w, 0];
10866                 break;
10867                 case "b":
10868                     pt.by = [0, h];
10869                 break;
10870                 case "tl":
10871                     pt.by = [-w, -h];
10872                 break;
10873                 case "bl":
10874                     pt.by = [-w, h];
10875                 break;
10876                 case "br":
10877                     pt.by = [w, h];
10878                 break;
10879                 case "tr":
10880                     pt.by = [w, -h];
10881                 break;
10882             }
10883
10884             arguments.callee.anim = this.fxanim(a,
10885                 o,
10886                 'motion',
10887                 .5,
10888                 "easeOut", after);
10889         });
10890         return this;
10891     },
10892
10893         /**
10894          * Ensures that all effects queued after syncFx is called on the element are
10895          * run concurrently.  This is the opposite of {@link #sequenceFx}.
10896          * @return {Roo.Element} The Element
10897          */
10898     syncFx : function(){
10899         this.fxDefaults = Roo.apply(this.fxDefaults || {}, {
10900             block : false,
10901             concurrent : true,
10902             stopFx : false
10903         });
10904         return this;
10905     },
10906
10907         /**
10908          * Ensures that all effects queued after sequenceFx is called on the element are
10909          * run in sequence.  This is the opposite of {@link #syncFx}.
10910          * @return {Roo.Element} The Element
10911          */
10912     sequenceFx : function(){
10913         this.fxDefaults = Roo.apply(this.fxDefaults || {}, {
10914             block : false,
10915             concurrent : false,
10916             stopFx : false
10917         });
10918         return this;
10919     },
10920
10921         /* @private */
10922     nextFx : function(){
10923         var ef = this.fxQueue[0];
10924         if(ef){
10925             ef.call(this);
10926         }
10927     },
10928
10929         /**
10930          * Returns true if the element has any effects actively running or queued, else returns false.
10931          * @return {Boolean} True if element has active effects, else false
10932          */
10933     hasActiveFx : function(){
10934         return this.fxQueue && this.fxQueue[0];
10935     },
10936
10937         /**
10938          * Stops any running effects and clears the element's internal effects queue if it contains
10939          * any additional effects that haven't started yet.
10940          * @return {Roo.Element} The Element
10941          */
10942     stopFx : function(){
10943         if(this.hasActiveFx()){
10944             var cur = this.fxQueue[0];
10945             if(cur && cur.anim && cur.anim.isAnimated()){
10946                 this.fxQueue = [cur]; // clear out others
10947                 cur.anim.stop(true);
10948             }
10949         }
10950         return this;
10951     },
10952
10953         /* @private */
10954     beforeFx : function(o){
10955         if(this.hasActiveFx() && !o.concurrent){
10956            if(o.stopFx){
10957                this.stopFx();
10958                return true;
10959            }
10960            return false;
10961         }
10962         return true;
10963     },
10964
10965         /**
10966          * Returns true if the element is currently blocking so that no other effect can be queued
10967          * until this effect is finished, else returns false if blocking is not set.  This is commonly
10968          * used to ensure that an effect initiated by a user action runs to completion prior to the
10969          * same effect being restarted (e.g., firing only one effect even if the user clicks several times).
10970          * @return {Boolean} True if blocking, else false
10971          */
10972     hasFxBlock : function(){
10973         var q = this.fxQueue;
10974         return q && q[0] && q[0].block;
10975     },
10976
10977         /* @private */
10978     queueFx : function(o, fn){
10979         if(!this.fxQueue){
10980             this.fxQueue = [];
10981         }
10982         if(!this.hasFxBlock()){
10983             Roo.applyIf(o, this.fxDefaults);
10984             if(!o.concurrent){
10985                 var run = this.beforeFx(o);
10986                 fn.block = o.block;
10987                 this.fxQueue.push(fn);
10988                 if(run){
10989                     this.nextFx();
10990                 }
10991             }else{
10992                 fn.call(this);
10993             }
10994         }
10995         return this;
10996     },
10997
10998         /* @private */
10999     fxWrap : function(pos, o, vis){
11000         var wrap;
11001         if(!o.wrap || !(wrap = Roo.get(o.wrap))){
11002             var wrapXY;
11003             if(o.fixPosition){
11004                 wrapXY = this.getXY();
11005             }
11006             var div = document.createElement("div");
11007             div.style.visibility = vis;
11008             wrap = Roo.get(this.dom.parentNode.insertBefore(div, this.dom));
11009             wrap.setPositioning(pos);
11010             if(wrap.getStyle("position") == "static"){
11011                 wrap.position("relative");
11012             }
11013             this.clearPositioning('auto');
11014             wrap.clip();
11015             wrap.dom.appendChild(this.dom);
11016             if(wrapXY){
11017                 wrap.setXY(wrapXY);
11018             }
11019         }
11020         return wrap;
11021     },
11022
11023         /* @private */
11024     fxUnwrap : function(wrap, pos, o){
11025         this.clearPositioning();
11026         this.setPositioning(pos);
11027         if(!o.wrap){
11028             wrap.dom.parentNode.insertBefore(this.dom, wrap.dom);
11029             wrap.remove();
11030         }
11031     },
11032
11033         /* @private */
11034     getFxRestore : function(){
11035         var st = this.dom.style;
11036         return {pos: this.getPositioning(), width: st.width, height : st.height};
11037     },
11038
11039         /* @private */
11040     afterFx : function(o){
11041         if(o.afterStyle){
11042             this.applyStyles(o.afterStyle);
11043         }
11044         if(o.afterCls){
11045             this.addClass(o.afterCls);
11046         }
11047         if(o.remove === true){
11048             this.remove();
11049         }
11050         Roo.callback(o.callback, o.scope, [this]);
11051         if(!o.concurrent){
11052             this.fxQueue.shift();
11053             this.nextFx();
11054         }
11055     },
11056
11057         /* @private */
11058     getFxEl : function(){ // support for composite element fx
11059         return Roo.get(this.dom);
11060     },
11061
11062         /* @private */
11063     fxanim : function(args, opt, animType, defaultDur, defaultEase, cb){
11064         animType = animType || 'run';
11065         opt = opt || {};
11066         var anim = Roo.lib.Anim[animType](
11067             this.dom, args,
11068             (opt.duration || defaultDur) || .35,
11069             (opt.easing || defaultEase) || 'easeOut',
11070             function(){
11071                 Roo.callback(cb, this);
11072             },
11073             this
11074         );
11075         opt.anim = anim;
11076         return anim;
11077     }
11078 };
11079
11080 // backwords compat
11081 Roo.Fx.resize = Roo.Fx.scale;
11082
11083 //When included, Roo.Fx is automatically applied to Element so that all basic
11084 //effects are available directly via the Element API
11085 Roo.apply(Roo.Element.prototype, Roo.Fx);/*
11086  * Based on:
11087  * Ext JS Library 1.1.1
11088  * Copyright(c) 2006-2007, Ext JS, LLC.
11089  *
11090  * Originally Released Under LGPL - original licence link has changed is not relivant.
11091  *
11092  * Fork - LGPL
11093  * <script type="text/javascript">
11094  */
11095
11096
11097 /**
11098  * @class Roo.CompositeElement
11099  * Standard composite class. Creates a Roo.Element for every element in the collection.
11100  * <br><br>
11101  * <b>NOTE: Although they are not listed, this class supports all of the set/update methods of Roo.Element. All Roo.Element
11102  * actions will be performed on all the elements in this collection.</b>
11103  * <br><br>
11104  * All methods return <i>this</i> and can be chained.
11105  <pre><code>
11106  var els = Roo.select("#some-el div.some-class", true);
11107  // or select directly from an existing element
11108  var el = Roo.get('some-el');
11109  el.select('div.some-class', true);
11110
11111  els.setWidth(100); // all elements become 100 width
11112  els.hide(true); // all elements fade out and hide
11113  // or
11114  els.setWidth(100).hide(true);
11115  </code></pre>
11116  */
11117 Roo.CompositeElement = function(els){
11118     this.elements = [];
11119     this.addElements(els);
11120 };
11121 Roo.CompositeElement.prototype = {
11122     isComposite: true,
11123     addElements : function(els){
11124         if(!els) {
11125             return this;
11126         }
11127         if(typeof els == "string"){
11128             els = Roo.Element.selectorFunction(els);
11129         }
11130         var yels = this.elements;
11131         var index = yels.length-1;
11132         for(var i = 0, len = els.length; i < len; i++) {
11133                 yels[++index] = Roo.get(els[i]);
11134         }
11135         return this;
11136     },
11137
11138     /**
11139     * Clears this composite and adds the elements returned by the passed selector.
11140     * @param {String/Array} els A string CSS selector, an array of elements or an element
11141     * @return {CompositeElement} this
11142     */
11143     fill : function(els){
11144         this.elements = [];
11145         this.add(els);
11146         return this;
11147     },
11148
11149     /**
11150     * Filters this composite to only elements that match the passed selector.
11151     * @param {String} selector A string CSS selector
11152     * @param {Boolean} inverse return inverse filter (not matches)
11153     * @return {CompositeElement} this
11154     */
11155     filter : function(selector, inverse){
11156         var els = [];
11157         inverse = inverse || false;
11158         this.each(function(el){
11159             var match = inverse ? !el.is(selector) : el.is(selector);
11160             if(match){
11161                 els[els.length] = el.dom;
11162             }
11163         });
11164         this.fill(els);
11165         return this;
11166     },
11167
11168     invoke : function(fn, args){
11169         var els = this.elements;
11170         for(var i = 0, len = els.length; i < len; i++) {
11171                 Roo.Element.prototype[fn].apply(els[i], args);
11172         }
11173         return this;
11174     },
11175     /**
11176     * Adds elements to this composite.
11177     * @param {String/Array} els A string CSS selector, an array of elements or an element
11178     * @return {CompositeElement} this
11179     */
11180     add : function(els){
11181         if(typeof els == "string"){
11182             this.addElements(Roo.Element.selectorFunction(els));
11183         }else if(els.length !== undefined){
11184             this.addElements(els);
11185         }else{
11186             this.addElements([els]);
11187         }
11188         return this;
11189     },
11190     /**
11191     * Calls the passed function passing (el, this, index) for each element in this composite.
11192     * @param {Function} fn The function to call
11193     * @param {Object} scope (optional) The <i>this</i> object (defaults to the element)
11194     * @return {CompositeElement} this
11195     */
11196     each : function(fn, scope){
11197         var els = this.elements;
11198         for(var i = 0, len = els.length; i < len; i++){
11199             if(fn.call(scope || els[i], els[i], this, i) === false) {
11200                 break;
11201             }
11202         }
11203         return this;
11204     },
11205
11206     /**
11207      * Returns the Element object at the specified index
11208      * @param {Number} index
11209      * @return {Roo.Element}
11210      */
11211     item : function(index){
11212         return this.elements[index] || null;
11213     },
11214
11215     /**
11216      * Returns the first Element
11217      * @return {Roo.Element}
11218      */
11219     first : function(){
11220         return this.item(0);
11221     },
11222
11223     /**
11224      * Returns the last Element
11225      * @return {Roo.Element}
11226      */
11227     last : function(){
11228         return this.item(this.elements.length-1);
11229     },
11230
11231     /**
11232      * Returns the number of elements in this composite
11233      * @return Number
11234      */
11235     getCount : function(){
11236         return this.elements.length;
11237     },
11238
11239     /**
11240      * Returns true if this composite contains the passed element
11241      * @return Boolean
11242      */
11243     contains : function(el){
11244         return this.indexOf(el) !== -1;
11245     },
11246
11247     /**
11248      * Returns true if this composite contains the passed element
11249      * @return Boolean
11250      */
11251     indexOf : function(el){
11252         return this.elements.indexOf(Roo.get(el));
11253     },
11254
11255
11256     /**
11257     * Removes the specified element(s).
11258     * @param {Mixed} el The id of an element, the Element itself, the index of the element in this composite
11259     * or an array of any of those.
11260     * @param {Boolean} removeDom (optional) True to also remove the element from the document
11261     * @return {CompositeElement} this
11262     */
11263     removeElement : function(el, removeDom){
11264         if(el instanceof Array){
11265             for(var i = 0, len = el.length; i < len; i++){
11266                 this.removeElement(el[i]);
11267             }
11268             return this;
11269         }
11270         var index = typeof el == 'number' ? el : this.indexOf(el);
11271         if(index !== -1){
11272             if(removeDom){
11273                 var d = this.elements[index];
11274                 if(d.dom){
11275                     d.remove();
11276                 }else{
11277                     d.parentNode.removeChild(d);
11278                 }
11279             }
11280             this.elements.splice(index, 1);
11281         }
11282         return this;
11283     },
11284
11285     /**
11286     * Replaces the specified element with the passed element.
11287     * @param {String/HTMLElement/Element/Number} el The id of an element, the Element itself, the index of the element in this composite
11288     * to replace.
11289     * @param {String/HTMLElement/Element} replacement The id of an element or the Element itself.
11290     * @param {Boolean} domReplace (Optional) True to remove and replace the element in the document too.
11291     * @return {CompositeElement} this
11292     */
11293     replaceElement : function(el, replacement, domReplace){
11294         var index = typeof el == 'number' ? el : this.indexOf(el);
11295         if(index !== -1){
11296             if(domReplace){
11297                 this.elements[index].replaceWith(replacement);
11298             }else{
11299                 this.elements.splice(index, 1, Roo.get(replacement))
11300             }
11301         }
11302         return this;
11303     },
11304
11305     /**
11306      * Removes all elements.
11307      */
11308     clear : function(){
11309         this.elements = [];
11310     }
11311 };
11312 (function(){
11313     Roo.CompositeElement.createCall = function(proto, fnName){
11314         if(!proto[fnName]){
11315             proto[fnName] = function(){
11316                 return this.invoke(fnName, arguments);
11317             };
11318         }
11319     };
11320     for(var fnName in Roo.Element.prototype){
11321         if(typeof Roo.Element.prototype[fnName] == "function"){
11322             Roo.CompositeElement.createCall(Roo.CompositeElement.prototype, fnName);
11323         }
11324     };
11325 })();
11326 /*
11327  * Based on:
11328  * Ext JS Library 1.1.1
11329  * Copyright(c) 2006-2007, Ext JS, LLC.
11330  *
11331  * Originally Released Under LGPL - original licence link has changed is not relivant.
11332  *
11333  * Fork - LGPL
11334  * <script type="text/javascript">
11335  */
11336
11337 /**
11338  * @class Roo.CompositeElementLite
11339  * @extends Roo.CompositeElement
11340  * Flyweight composite class. Reuses the same Roo.Element for element operations.
11341  <pre><code>
11342  var els = Roo.select("#some-el div.some-class");
11343  // or select directly from an existing element
11344  var el = Roo.get('some-el');
11345  el.select('div.some-class');
11346
11347  els.setWidth(100); // all elements become 100 width
11348  els.hide(true); // all elements fade out and hide
11349  // or
11350  els.setWidth(100).hide(true);
11351  </code></pre><br><br>
11352  * <b>NOTE: Although they are not listed, this class supports all of the set/update methods of Roo.Element. All Roo.Element
11353  * actions will be performed on all the elements in this collection.</b>
11354  */
11355 Roo.CompositeElementLite = function(els){
11356     Roo.CompositeElementLite.superclass.constructor.call(this, els);
11357     this.el = new Roo.Element.Flyweight();
11358 };
11359 Roo.extend(Roo.CompositeElementLite, Roo.CompositeElement, {
11360     addElements : function(els){
11361         if(els){
11362             if(els instanceof Array){
11363                 this.elements = this.elements.concat(els);
11364             }else{
11365                 var yels = this.elements;
11366                 var index = yels.length-1;
11367                 for(var i = 0, len = els.length; i < len; i++) {
11368                     yels[++index] = els[i];
11369                 }
11370             }
11371         }
11372         return this;
11373     },
11374     invoke : function(fn, args){
11375         var els = this.elements;
11376         var el = this.el;
11377         for(var i = 0, len = els.length; i < len; i++) {
11378             el.dom = els[i];
11379                 Roo.Element.prototype[fn].apply(el, args);
11380         }
11381         return this;
11382     },
11383     /**
11384      * Returns a flyweight Element of the dom element object at the specified index
11385      * @param {Number} index
11386      * @return {Roo.Element}
11387      */
11388     item : function(index){
11389         if(!this.elements[index]){
11390             return null;
11391         }
11392         this.el.dom = this.elements[index];
11393         return this.el;
11394     },
11395
11396     // fixes scope with flyweight
11397     addListener : function(eventName, handler, scope, opt){
11398         var els = this.elements;
11399         for(var i = 0, len = els.length; i < len; i++) {
11400             Roo.EventManager.on(els[i], eventName, handler, scope || els[i], opt);
11401         }
11402         return this;
11403     },
11404
11405     /**
11406     * Calls the passed function passing (el, this, index) for each element in this composite. <b>The element
11407     * passed is the flyweight (shared) Roo.Element instance, so if you require a
11408     * a reference to the dom node, use el.dom.</b>
11409     * @param {Function} fn The function to call
11410     * @param {Object} scope (optional) The <i>this</i> object (defaults to the element)
11411     * @return {CompositeElement} this
11412     */
11413     each : function(fn, scope){
11414         var els = this.elements;
11415         var el = this.el;
11416         for(var i = 0, len = els.length; i < len; i++){
11417             el.dom = els[i];
11418                 if(fn.call(scope || el, el, this, i) === false){
11419                 break;
11420             }
11421         }
11422         return this;
11423     },
11424
11425     indexOf : function(el){
11426         return this.elements.indexOf(Roo.getDom(el));
11427     },
11428
11429     replaceElement : function(el, replacement, domReplace){
11430         var index = typeof el == 'number' ? el : this.indexOf(el);
11431         if(index !== -1){
11432             replacement = Roo.getDom(replacement);
11433             if(domReplace){
11434                 var d = this.elements[index];
11435                 d.parentNode.insertBefore(replacement, d);
11436                 d.parentNode.removeChild(d);
11437             }
11438             this.elements.splice(index, 1, replacement);
11439         }
11440         return this;
11441     }
11442 });
11443 Roo.CompositeElementLite.prototype.on = Roo.CompositeElementLite.prototype.addListener;
11444
11445 /*
11446  * Based on:
11447  * Ext JS Library 1.1.1
11448  * Copyright(c) 2006-2007, Ext JS, LLC.
11449  *
11450  * Originally Released Under LGPL - original licence link has changed is not relivant.
11451  *
11452  * Fork - LGPL
11453  * <script type="text/javascript">
11454  */
11455
11456  
11457
11458 /**
11459  * @class Roo.data.Connection
11460  * @extends Roo.util.Observable
11461  * The class encapsulates a connection to the page's originating domain, allowing requests to be made
11462  * either to a configured URL, or to a URL specified at request time.<br><br>
11463  * <p>
11464  * Requests made by this class are asynchronous, and will return immediately. No data from
11465  * the server will be available to the statement immediately following the {@link #request} call.
11466  * To process returned data, use a callback in the request options object, or an event listener.</p><br>
11467  * <p>
11468  * Note: If you are doing a file upload, you will not get a normal response object sent back to
11469  * your callback or event handler.  Since the upload is handled via in IFRAME, there is no XMLHttpRequest.
11470  * The response object is created using the innerHTML of the IFRAME's document as the responseText
11471  * property and, if present, the IFRAME's XML document as the responseXML property.</p><br>
11472  * This means that a valid XML or HTML document must be returned. If JSON data is required, it is suggested
11473  * that it be placed either inside a &lt;textarea> in an HTML document and retrieved from the responseText
11474  * using a regex, or inside a CDATA section in an XML document and retrieved from the responseXML using
11475  * standard DOM methods.
11476  * @constructor
11477  * @param {Object} config a configuration object.
11478  */
11479 Roo.data.Connection = function(config){
11480     Roo.apply(this, config);
11481     this.addEvents({
11482         /**
11483          * @event beforerequest
11484          * Fires before a network request is made to retrieve a data object.
11485          * @param {Connection} conn This Connection object.
11486          * @param {Object} options The options config object passed to the {@link #request} method.
11487          */
11488         "beforerequest" : true,
11489         /**
11490          * @event requestcomplete
11491          * Fires if the request was successfully completed.
11492          * @param {Connection} conn This Connection object.
11493          * @param {Object} response The XHR object containing the response data.
11494          * See {@link http://www.w3.org/TR/XMLHttpRequest/} for details.
11495          * @param {Object} options The options config object passed to the {@link #request} method.
11496          */
11497         "requestcomplete" : true,
11498         /**
11499          * @event requestexception
11500          * Fires if an error HTTP status was returned from the server.
11501          * See {@link http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html} for details of HTTP status codes.
11502          * @param {Connection} conn This Connection object.
11503          * @param {Object} response The XHR object containing the response data.
11504          * See {@link http://www.w3.org/TR/XMLHttpRequest/} for details.
11505          * @param {Object} options The options config object passed to the {@link #request} method.
11506          */
11507         "requestexception" : true
11508     });
11509     Roo.data.Connection.superclass.constructor.call(this);
11510 };
11511
11512 Roo.extend(Roo.data.Connection, Roo.util.Observable, {
11513     /**
11514      * @cfg {String} url (Optional) The default URL to be used for requests to the server. (defaults to undefined)
11515      */
11516     /**
11517      * @cfg {Object} extraParams (Optional) An object containing properties which are used as
11518      * extra parameters to each request made by this object. (defaults to undefined)
11519      */
11520     /**
11521      * @cfg {Object} defaultHeaders (Optional) An object containing request headers which are added
11522      *  to each request made by this object. (defaults to undefined)
11523      */
11524     /**
11525      * @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)
11526      */
11527     /**
11528      * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
11529      */
11530     timeout : 30000,
11531     /**
11532      * @cfg {Boolean} autoAbort (Optional) Whether this request should abort any pending requests. (defaults to false)
11533      * @type Boolean
11534      */
11535     autoAbort:false,
11536
11537     /**
11538      * @cfg {Boolean} disableCaching (Optional) True to add a unique cache-buster param to GET requests. (defaults to true)
11539      * @type Boolean
11540      */
11541     disableCaching: true,
11542
11543     /**
11544      * Sends an HTTP request to a remote server.
11545      * @param {Object} options An object which may contain the following properties:<ul>
11546      * <li><b>url</b> {String} (Optional) The URL to which to send the request. Defaults to configured URL</li>
11547      * <li><b>params</b> {Object/String/Function} (Optional) An object containing properties which are used as parameters to the
11548      * request, a url encoded string or a function to call to get either.</li>
11549      * <li><b>method</b> {String} (Optional) The HTTP method to use for the request. Defaults to the configured method, or
11550      * if no method was configured, "GET" if no parameters are being sent, and "POST" if parameters are being sent.</li>
11551      * <li><b>callback</b> {Function} (Optional) The function to be called upon receipt of the HTTP response.
11552      * The callback is called regardless of success or failure and is passed the following parameters:<ul>
11553      * <li>options {Object} The parameter to the request call.</li>
11554      * <li>success {Boolean} True if the request succeeded.</li>
11555      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
11556      * </ul></li>
11557      * <li><b>success</b> {Function} (Optional) The function to be called upon success of the request.
11558      * The callback is passed the following parameters:<ul>
11559      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
11560      * <li>options {Object} The parameter to the request call.</li>
11561      * </ul></li>
11562      * <li><b>failure</b> {Function} (Optional) The function to be called upon failure of the request.
11563      * The callback is passed the following parameters:<ul>
11564      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
11565      * <li>options {Object} The parameter to the request call.</li>
11566      * </ul></li>
11567      * <li><b>scope</b> {Object} (Optional) The scope in which to execute the callbacks: The "this" object
11568      * for the callback function. Defaults to the browser window.</li>
11569      * <li><b>form</b> {Object/String} (Optional) A form object or id to pull parameters from.</li>
11570      * <li><b>isUpload</b> {Boolean} (Optional) True if the form object is a file upload (will usually be automatically detected).</li>
11571      * <li><b>headers</b> {Object} (Optional) Request headers to set for the request.</li>
11572      * <li><b>xmlData</b> {Object} (Optional) XML document to use for the post. Note: This will be used instead of
11573      * params for the post data. Any params will be appended to the URL.</li>
11574      * <li><b>disableCaching</b> {Boolean} (Optional) True to add a unique cache-buster param to GET requests.</li>
11575      * </ul>
11576      * @return {Number} transactionId
11577      */
11578     request : function(o){
11579         if(this.fireEvent("beforerequest", this, o) !== false){
11580             var p = o.params;
11581
11582             if(typeof p == "function"){
11583                 p = p.call(o.scope||window, o);
11584             }
11585             if(typeof p == "object"){
11586                 p = Roo.urlEncode(o.params);
11587             }
11588             if(this.extraParams){
11589                 var extras = Roo.urlEncode(this.extraParams);
11590                 p = p ? (p + '&' + extras) : extras;
11591             }
11592
11593             var url = o.url || this.url;
11594             if(typeof url == 'function'){
11595                 url = url.call(o.scope||window, o);
11596             }
11597
11598             if(o.form){
11599                 var form = Roo.getDom(o.form);
11600                 url = url || form.action;
11601
11602                 var enctype = form.getAttribute("enctype");
11603                 if(o.isUpload || (enctype && enctype.toLowerCase() == 'multipart/form-data')){
11604                     return this.doFormUpload(o, p, url);
11605                 }
11606                 var f = Roo.lib.Ajax.serializeForm(form);
11607                 p = p ? (p + '&' + f) : f;
11608             }
11609
11610             var hs = o.headers;
11611             if(this.defaultHeaders){
11612                 hs = Roo.apply(hs || {}, this.defaultHeaders);
11613                 if(!o.headers){
11614                     o.headers = hs;
11615                 }
11616             }
11617
11618             var cb = {
11619                 success: this.handleResponse,
11620                 failure: this.handleFailure,
11621                 scope: this,
11622                 argument: {options: o},
11623                 timeout : o.timeout || this.timeout
11624             };
11625
11626             var method = o.method||this.method||(p ? "POST" : "GET");
11627
11628             if(method == 'GET' && (this.disableCaching && o.disableCaching !== false) || o.disableCaching === true){
11629                 url += (url.indexOf('?') != -1 ? '&' : '?') + '_dc=' + (new Date().getTime());
11630             }
11631
11632             if(typeof o.autoAbort == 'boolean'){ // options gets top priority
11633                 if(o.autoAbort){
11634                     this.abort();
11635                 }
11636             }else if(this.autoAbort !== false){
11637                 this.abort();
11638             }
11639
11640             if((method == 'GET' && p) || o.xmlData){
11641                 url += (url.indexOf('?') != -1 ? '&' : '?') + p;
11642                 p = '';
11643             }
11644             this.transId = Roo.lib.Ajax.request(method, url, cb, p, o);
11645             return this.transId;
11646         }else{
11647             Roo.callback(o.callback, o.scope, [o, null, null]);
11648             return null;
11649         }
11650     },
11651
11652     /**
11653      * Determine whether this object has a request outstanding.
11654      * @param {Number} transactionId (Optional) defaults to the last transaction
11655      * @return {Boolean} True if there is an outstanding request.
11656      */
11657     isLoading : function(transId){
11658         if(transId){
11659             return Roo.lib.Ajax.isCallInProgress(transId);
11660         }else{
11661             return this.transId ? true : false;
11662         }
11663     },
11664
11665     /**
11666      * Aborts any outstanding request.
11667      * @param {Number} transactionId (Optional) defaults to the last transaction
11668      */
11669     abort : function(transId){
11670         if(transId || this.isLoading()){
11671             Roo.lib.Ajax.abort(transId || this.transId);
11672         }
11673     },
11674
11675     // private
11676     handleResponse : function(response){
11677         this.transId = false;
11678         var options = response.argument.options;
11679         response.argument = options ? options.argument : null;
11680         this.fireEvent("requestcomplete", this, response, options);
11681         Roo.callback(options.success, options.scope, [response, options]);
11682         Roo.callback(options.callback, options.scope, [options, true, response]);
11683     },
11684
11685     // private
11686     handleFailure : function(response, e){
11687         this.transId = false;
11688         var options = response.argument.options;
11689         response.argument = options ? options.argument : null;
11690         this.fireEvent("requestexception", this, response, options, e);
11691         Roo.callback(options.failure, options.scope, [response, options]);
11692         Roo.callback(options.callback, options.scope, [options, false, response]);
11693     },
11694
11695     // private
11696     doFormUpload : function(o, ps, url){
11697         var id = Roo.id();
11698         var frame = document.createElement('iframe');
11699         frame.id = id;
11700         frame.name = id;
11701         frame.className = 'x-hidden';
11702         if(Roo.isIE){
11703             frame.src = Roo.SSL_SECURE_URL;
11704         }
11705         document.body.appendChild(frame);
11706
11707         if(Roo.isIE){
11708            document.frames[id].name = id;
11709         }
11710
11711         var form = Roo.getDom(o.form);
11712         form.target = id;
11713         form.method = 'POST';
11714         form.enctype = form.encoding = 'multipart/form-data';
11715         if(url){
11716             form.action = url;
11717         }
11718
11719         var hiddens, hd;
11720         if(ps){ // add dynamic params
11721             hiddens = [];
11722             ps = Roo.urlDecode(ps, false);
11723             for(var k in ps){
11724                 if(ps.hasOwnProperty(k)){
11725                     hd = document.createElement('input');
11726                     hd.type = 'hidden';
11727                     hd.name = k;
11728                     hd.value = ps[k];
11729                     form.appendChild(hd);
11730                     hiddens.push(hd);
11731                 }
11732             }
11733         }
11734
11735         function cb(){
11736             var r = {  // bogus response object
11737                 responseText : '',
11738                 responseXML : null
11739             };
11740
11741             r.argument = o ? o.argument : null;
11742
11743             try { //
11744                 var doc;
11745                 if(Roo.isIE){
11746                     doc = frame.contentWindow.document;
11747                 }else {
11748                     doc = (frame.contentDocument || window.frames[id].document);
11749                 }
11750                 if(doc && doc.body){
11751                     r.responseText = doc.body.innerHTML;
11752                 }
11753                 if(doc && doc.XMLDocument){
11754                     r.responseXML = doc.XMLDocument;
11755                 }else {
11756                     r.responseXML = doc;
11757                 }
11758             }
11759             catch(e) {
11760                 // ignore
11761             }
11762
11763             Roo.EventManager.removeListener(frame, 'load', cb, this);
11764
11765             this.fireEvent("requestcomplete", this, r, o);
11766             Roo.callback(o.success, o.scope, [r, o]);
11767             Roo.callback(o.callback, o.scope, [o, true, r]);
11768
11769             setTimeout(function(){document.body.removeChild(frame);}, 100);
11770         }
11771
11772         Roo.EventManager.on(frame, 'load', cb, this);
11773         form.submit();
11774
11775         if(hiddens){ // remove dynamic params
11776             for(var i = 0, len = hiddens.length; i < len; i++){
11777                 form.removeChild(hiddens[i]);
11778             }
11779         }
11780     }
11781 });
11782 /*
11783  * Based on:
11784  * Ext JS Library 1.1.1
11785  * Copyright(c) 2006-2007, Ext JS, LLC.
11786  *
11787  * Originally Released Under LGPL - original licence link has changed is not relivant.
11788  *
11789  * Fork - LGPL
11790  * <script type="text/javascript">
11791  */
11792  
11793 /**
11794  * Global Ajax request class.
11795  * 
11796  * @class Roo.Ajax
11797  * @extends Roo.data.Connection
11798  * @static
11799  * 
11800  * @cfg {String} url  The default URL to be used for requests to the server. (defaults to undefined)
11801  * @cfg {Object} extraParams  An object containing properties which are used as extra parameters to each request made by this object. (defaults to undefined)
11802  * @cfg {Object} defaultHeaders  An object containing request headers which are added to each request made by this object. (defaults to undefined)
11803  * @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)
11804  * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
11805  * @cfg {Boolean} autoAbort (Optional) Whether a new request should abort any pending requests. (defaults to false)
11806  * @cfg {Boolean} disableCaching (Optional)   True to add a unique cache-buster param to GET requests. (defaults to true)
11807  */
11808 Roo.Ajax = new Roo.data.Connection({
11809     // fix up the docs
11810     /**
11811      * @scope Roo.Ajax
11812      * @type {Boolear} 
11813      */
11814     autoAbort : false,
11815
11816     /**
11817      * Serialize the passed form into a url encoded string
11818      * @scope Roo.Ajax
11819      * @param {String/HTMLElement} form
11820      * @return {String}
11821      */
11822     serializeForm : function(form){
11823         return Roo.lib.Ajax.serializeForm(form);
11824     }
11825 });/*
11826  * Based on:
11827  * Ext JS Library 1.1.1
11828  * Copyright(c) 2006-2007, Ext JS, LLC.
11829  *
11830  * Originally Released Under LGPL - original licence link has changed is not relivant.
11831  *
11832  * Fork - LGPL
11833  * <script type="text/javascript">
11834  */
11835
11836  
11837 /**
11838  * @class Roo.UpdateManager
11839  * @extends Roo.util.Observable
11840  * Provides AJAX-style update for Element object.<br><br>
11841  * Usage:<br>
11842  * <pre><code>
11843  * // Get it from a Roo.Element object
11844  * var el = Roo.get("foo");
11845  * var mgr = el.getUpdateManager();
11846  * mgr.update("http://myserver.com/index.php", "param1=1&amp;param2=2");
11847  * ...
11848  * mgr.formUpdate("myFormId", "http://myserver.com/index.php");
11849  * <br>
11850  * // or directly (returns the same UpdateManager instance)
11851  * var mgr = new Roo.UpdateManager("myElementId");
11852  * mgr.startAutoRefresh(60, "http://myserver.com/index.php");
11853  * mgr.on("update", myFcnNeedsToKnow);
11854  * <br>
11855    // short handed call directly from the element object
11856    Roo.get("foo").load({
11857         url: "bar.php",
11858         scripts:true,
11859         params: "for=bar",
11860         text: "Loading Foo..."
11861    });
11862  * </code></pre>
11863  * @constructor
11864  * Create new UpdateManager directly.
11865  * @param {String/HTMLElement/Roo.Element} el The element to update
11866  * @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).
11867  */
11868 Roo.UpdateManager = function(el, forceNew){
11869     el = Roo.get(el);
11870     if(!forceNew && el.updateManager){
11871         return el.updateManager;
11872     }
11873     /**
11874      * The Element object
11875      * @type Roo.Element
11876      */
11877     this.el = el;
11878     /**
11879      * Cached url to use for refreshes. Overwritten every time update() is called unless "discardUrl" param is set to true.
11880      * @type String
11881      */
11882     this.defaultUrl = null;
11883
11884     this.addEvents({
11885         /**
11886          * @event beforeupdate
11887          * Fired before an update is made, return false from your handler and the update is cancelled.
11888          * @param {Roo.Element} el
11889          * @param {String/Object/Function} url
11890          * @param {String/Object} params
11891          */
11892         "beforeupdate": true,
11893         /**
11894          * @event update
11895          * Fired after successful update is made.
11896          * @param {Roo.Element} el
11897          * @param {Object} oResponseObject The response Object
11898          */
11899         "update": true,
11900         /**
11901          * @event failure
11902          * Fired on update failure.
11903          * @param {Roo.Element} el
11904          * @param {Object} oResponseObject The response Object
11905          */
11906         "failure": true
11907     });
11908     var d = Roo.UpdateManager.defaults;
11909     /**
11910      * Blank page URL to use with SSL file uploads (Defaults to Roo.UpdateManager.defaults.sslBlankUrl or "about:blank").
11911      * @type String
11912      */
11913     this.sslBlankUrl = d.sslBlankUrl;
11914     /**
11915      * Whether to append unique parameter on get request to disable caching (Defaults to Roo.UpdateManager.defaults.disableCaching or false).
11916      * @type Boolean
11917      */
11918     this.disableCaching = d.disableCaching;
11919     /**
11920      * Text for loading indicator (Defaults to Roo.UpdateManager.defaults.indicatorText or '&lt;div class="loading-indicator"&gt;Loading...&lt;/div&gt;').
11921      * @type String
11922      */
11923     this.indicatorText = d.indicatorText;
11924     /**
11925      * Whether to show indicatorText when loading (Defaults to Roo.UpdateManager.defaults.showLoadIndicator or true).
11926      * @type String
11927      */
11928     this.showLoadIndicator = d.showLoadIndicator;
11929     /**
11930      * Timeout for requests or form posts in seconds (Defaults to Roo.UpdateManager.defaults.timeout or 30 seconds).
11931      * @type Number
11932      */
11933     this.timeout = d.timeout;
11934
11935     /**
11936      * True to process scripts in the output (Defaults to Roo.UpdateManager.defaults.loadScripts (false)).
11937      * @type Boolean
11938      */
11939     this.loadScripts = d.loadScripts;
11940
11941     /**
11942      * Transaction object of current executing transaction
11943      */
11944     this.transaction = null;
11945
11946     /**
11947      * @private
11948      */
11949     this.autoRefreshProcId = null;
11950     /**
11951      * Delegate for refresh() prebound to "this", use myUpdater.refreshDelegate.createCallback(arg1, arg2) to bind arguments
11952      * @type Function
11953      */
11954     this.refreshDelegate = this.refresh.createDelegate(this);
11955     /**
11956      * Delegate for update() prebound to "this", use myUpdater.updateDelegate.createCallback(arg1, arg2) to bind arguments
11957      * @type Function
11958      */
11959     this.updateDelegate = this.update.createDelegate(this);
11960     /**
11961      * Delegate for formUpdate() prebound to "this", use myUpdater.formUpdateDelegate.createCallback(arg1, arg2) to bind arguments
11962      * @type Function
11963      */
11964     this.formUpdateDelegate = this.formUpdate.createDelegate(this);
11965     /**
11966      * @private
11967      */
11968     this.successDelegate = this.processSuccess.createDelegate(this);
11969     /**
11970      * @private
11971      */
11972     this.failureDelegate = this.processFailure.createDelegate(this);
11973
11974     if(!this.renderer){
11975      /**
11976       * The renderer for this UpdateManager. Defaults to {@link Roo.UpdateManager.BasicRenderer}.
11977       */
11978     this.renderer = new Roo.UpdateManager.BasicRenderer();
11979     }
11980     
11981     Roo.UpdateManager.superclass.constructor.call(this);
11982 };
11983
11984 Roo.extend(Roo.UpdateManager, Roo.util.Observable, {
11985     /**
11986      * Get the Element this UpdateManager is bound to
11987      * @return {Roo.Element} The element
11988      */
11989     getEl : function(){
11990         return this.el;
11991     },
11992     /**
11993      * Performs an async request, updating this element with the response. If params are specified it uses POST, otherwise it uses GET.
11994      * @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:
11995 <pre><code>
11996 um.update({<br/>
11997     url: "your-url.php",<br/>
11998     params: {param1: "foo", param2: "bar"}, // or a URL encoded string<br/>
11999     callback: yourFunction,<br/>
12000     scope: yourObject, //(optional scope)  <br/>
12001     discardUrl: false, <br/>
12002     nocache: false,<br/>
12003     text: "Loading...",<br/>
12004     timeout: 30,<br/>
12005     scripts: false<br/>
12006 });
12007 </code></pre>
12008      * The only required property is url. The optional properties nocache, text and scripts
12009      * are shorthand for disableCaching, indicatorText and loadScripts and are used to set their associated property on this UpdateManager instance.
12010      * @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}
12011      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess, oResponse)
12012      * @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.
12013      */
12014     update : function(url, params, callback, discardUrl){
12015         if(this.fireEvent("beforeupdate", this.el, url, params) !== false){
12016             var method = this.method,
12017                 cfg;
12018             if(typeof url == "object"){ // must be config object
12019                 cfg = url;
12020                 url = cfg.url;
12021                 params = params || cfg.params;
12022                 callback = callback || cfg.callback;
12023                 discardUrl = discardUrl || cfg.discardUrl;
12024                 if(callback && cfg.scope){
12025                     callback = callback.createDelegate(cfg.scope);
12026                 }
12027                 if(typeof cfg.method != "undefined"){method = cfg.method;};
12028                 if(typeof cfg.nocache != "undefined"){this.disableCaching = cfg.nocache;};
12029                 if(typeof cfg.text != "undefined"){this.indicatorText = '<div class="loading-indicator">'+cfg.text+"</div>";};
12030                 if(typeof cfg.scripts != "undefined"){this.loadScripts = cfg.scripts;};
12031                 if(typeof cfg.timeout != "undefined"){this.timeout = cfg.timeout;};
12032             }
12033             this.showLoading();
12034             if(!discardUrl){
12035                 this.defaultUrl = url;
12036             }
12037             if(typeof url == "function"){
12038                 url = url.call(this);
12039             }
12040
12041             method = method || (params ? "POST" : "GET");
12042             if(method == "GET"){
12043                 url = this.prepareUrl(url);
12044             }
12045
12046             var o = Roo.apply(cfg ||{}, {
12047                 url : url,
12048                 params: params,
12049                 success: this.successDelegate,
12050                 failure: this.failureDelegate,
12051                 callback: undefined,
12052                 timeout: (this.timeout*1000),
12053                 argument: {"url": url, "form": null, "callback": callback, "params": params}
12054             });
12055             Roo.log("updated manager called with timeout of " + o.timeout);
12056             this.transaction = Roo.Ajax.request(o);
12057         }
12058     },
12059
12060     /**
12061      * 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.
12062      * Uses this.sslBlankUrl for SSL file uploads to prevent IE security warning.
12063      * @param {String/HTMLElement} form The form Id or form element
12064      * @param {String} url (optional) The url to pass the form to. If omitted the action attribute on the form will be used.
12065      * @param {Boolean} reset (optional) Whether to try to reset the form after the update
12066      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess, oResponse)
12067      */
12068     formUpdate : function(form, url, reset, callback){
12069         if(this.fireEvent("beforeupdate", this.el, form, url) !== false){
12070             if(typeof url == "function"){
12071                 url = url.call(this);
12072             }
12073             form = Roo.getDom(form);
12074             this.transaction = Roo.Ajax.request({
12075                 form: form,
12076                 url:url,
12077                 success: this.successDelegate,
12078                 failure: this.failureDelegate,
12079                 timeout: (this.timeout*1000),
12080                 argument: {"url": url, "form": form, "callback": callback, "reset": reset}
12081             });
12082             this.showLoading.defer(1, this);
12083         }
12084     },
12085
12086     /**
12087      * Refresh the element with the last used url or defaultUrl. If there is no url, it returns immediately
12088      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
12089      */
12090     refresh : function(callback){
12091         if(this.defaultUrl == null){
12092             return;
12093         }
12094         this.update(this.defaultUrl, null, callback, true);
12095     },
12096
12097     /**
12098      * Set this element to auto refresh.
12099      * @param {Number} interval How often to update (in seconds).
12100      * @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)
12101      * @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}
12102      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
12103      * @param {Boolean} refreshNow (optional) Whether to execute the refresh now, or wait the interval
12104      */
12105     startAutoRefresh : function(interval, url, params, callback, refreshNow){
12106         if(refreshNow){
12107             this.update(url || this.defaultUrl, params, callback, true);
12108         }
12109         if(this.autoRefreshProcId){
12110             clearInterval(this.autoRefreshProcId);
12111         }
12112         this.autoRefreshProcId = setInterval(this.update.createDelegate(this, [url || this.defaultUrl, params, callback, true]), interval*1000);
12113     },
12114
12115     /**
12116      * Stop auto refresh on this element.
12117      */
12118      stopAutoRefresh : function(){
12119         if(this.autoRefreshProcId){
12120             clearInterval(this.autoRefreshProcId);
12121             delete this.autoRefreshProcId;
12122         }
12123     },
12124
12125     isAutoRefreshing : function(){
12126        return this.autoRefreshProcId ? true : false;
12127     },
12128     /**
12129      * Called to update the element to "Loading" state. Override to perform custom action.
12130      */
12131     showLoading : function(){
12132         if(this.showLoadIndicator){
12133             this.el.update(this.indicatorText);
12134         }
12135     },
12136
12137     /**
12138      * Adds unique parameter to query string if disableCaching = true
12139      * @private
12140      */
12141     prepareUrl : function(url){
12142         if(this.disableCaching){
12143             var append = "_dc=" + (new Date().getTime());
12144             if(url.indexOf("?") !== -1){
12145                 url += "&" + append;
12146             }else{
12147                 url += "?" + append;
12148             }
12149         }
12150         return url;
12151     },
12152
12153     /**
12154      * @private
12155      */
12156     processSuccess : function(response){
12157         this.transaction = null;
12158         if(response.argument.form && response.argument.reset){
12159             try{ // put in try/catch since some older FF releases had problems with this
12160                 response.argument.form.reset();
12161             }catch(e){}
12162         }
12163         if(this.loadScripts){
12164             this.renderer.render(this.el, response, this,
12165                 this.updateComplete.createDelegate(this, [response]));
12166         }else{
12167             this.renderer.render(this.el, response, this);
12168             this.updateComplete(response);
12169         }
12170     },
12171
12172     updateComplete : function(response){
12173         this.fireEvent("update", this.el, response);
12174         if(typeof response.argument.callback == "function"){
12175             response.argument.callback(this.el, true, response);
12176         }
12177     },
12178
12179     /**
12180      * @private
12181      */
12182     processFailure : function(response){
12183         this.transaction = null;
12184         this.fireEvent("failure", this.el, response);
12185         if(typeof response.argument.callback == "function"){
12186             response.argument.callback(this.el, false, response);
12187         }
12188     },
12189
12190     /**
12191      * Set the content renderer for this UpdateManager. See {@link Roo.UpdateManager.BasicRenderer#render} for more details.
12192      * @param {Object} renderer The object implementing the render() method
12193      */
12194     setRenderer : function(renderer){
12195         this.renderer = renderer;
12196     },
12197
12198     getRenderer : function(){
12199        return this.renderer;
12200     },
12201
12202     /**
12203      * Set the defaultUrl used for updates
12204      * @param {String/Function} defaultUrl The url or a function to call to get the url
12205      */
12206     setDefaultUrl : function(defaultUrl){
12207         this.defaultUrl = defaultUrl;
12208     },
12209
12210     /**
12211      * Aborts the executing transaction
12212      */
12213     abort : function(){
12214         if(this.transaction){
12215             Roo.Ajax.abort(this.transaction);
12216         }
12217     },
12218
12219     /**
12220      * Returns true if an update is in progress
12221      * @return {Boolean}
12222      */
12223     isUpdating : function(){
12224         if(this.transaction){
12225             return Roo.Ajax.isLoading(this.transaction);
12226         }
12227         return false;
12228     }
12229 });
12230
12231 /**
12232  * @class Roo.UpdateManager.defaults
12233  * @static (not really - but it helps the doc tool)
12234  * The defaults collection enables customizing the default properties of UpdateManager
12235  */
12236    Roo.UpdateManager.defaults = {
12237        /**
12238          * Timeout for requests or form posts in seconds (Defaults 30 seconds).
12239          * @type Number
12240          */
12241          timeout : 30,
12242
12243          /**
12244          * True to process scripts by default (Defaults to false).
12245          * @type Boolean
12246          */
12247         loadScripts : false,
12248
12249         /**
12250         * Blank page URL to use with SSL file uploads (Defaults to "javascript:false").
12251         * @type String
12252         */
12253         sslBlankUrl : (Roo.SSL_SECURE_URL || "javascript:false"),
12254         /**
12255          * Whether to append unique parameter on get request to disable caching (Defaults to false).
12256          * @type Boolean
12257          */
12258         disableCaching : false,
12259         /**
12260          * Whether to show indicatorText when loading (Defaults to true).
12261          * @type Boolean
12262          */
12263         showLoadIndicator : true,
12264         /**
12265          * Text for loading indicator (Defaults to '&lt;div class="loading-indicator"&gt;Loading...&lt;/div&gt;').
12266          * @type String
12267          */
12268         indicatorText : '<div class="loading-indicator">Loading...</div>'
12269    };
12270
12271 /**
12272  * Static convenience method. This method is deprecated in favor of el.load({url:'foo.php', ...}).
12273  *Usage:
12274  * <pre><code>Roo.UpdateManager.updateElement("my-div", "stuff.php");</code></pre>
12275  * @param {String/HTMLElement/Roo.Element} el The element to update
12276  * @param {String} url The url
12277  * @param {String/Object} params (optional) Url encoded param string or an object of name/value pairs
12278  * @param {Object} options (optional) A config object with any of the UpdateManager properties you want to set - for example: {disableCaching:true, indicatorText: "Loading data..."}
12279  * @static
12280  * @deprecated
12281  * @member Roo.UpdateManager
12282  */
12283 Roo.UpdateManager.updateElement = function(el, url, params, options){
12284     var um = Roo.get(el, true).getUpdateManager();
12285     Roo.apply(um, options);
12286     um.update(url, params, options ? options.callback : null);
12287 };
12288 // alias for backwards compat
12289 Roo.UpdateManager.update = Roo.UpdateManager.updateElement;
12290 /**
12291  * @class Roo.UpdateManager.BasicRenderer
12292  * Default Content renderer. Updates the elements innerHTML with the responseText.
12293  */
12294 Roo.UpdateManager.BasicRenderer = function(){};
12295
12296 Roo.UpdateManager.BasicRenderer.prototype = {
12297     /**
12298      * This is called when the transaction is completed and it's time to update the element - The BasicRenderer
12299      * updates the elements innerHTML with the responseText - To perform a custom render (i.e. XML or JSON processing),
12300      * create an object with a "render(el, response)" method and pass it to setRenderer on the UpdateManager.
12301      * @param {Roo.Element} el The element being rendered
12302      * @param {Object} response The YUI Connect response object
12303      * @param {UpdateManager} updateManager The calling update manager
12304      * @param {Function} callback A callback that will need to be called if loadScripts is true on the UpdateManager
12305      */
12306      render : function(el, response, updateManager, callback){
12307         el.update(response.responseText, updateManager.loadScripts, callback);
12308     }
12309 };
12310 /*
12311  * Based on:
12312  * Roo JS
12313  * (c)) Alan Knowles
12314  * Licence : LGPL
12315  */
12316
12317
12318 /**
12319  * @class Roo.DomTemplate
12320  * @extends Roo.Template
12321  * An effort at a dom based template engine..
12322  *
12323  * Similar to XTemplate, except it uses dom parsing to create the template..
12324  *
12325  * Supported features:
12326  *
12327  *  Tags:
12328
12329 <pre><code>
12330       {a_variable} - output encoded.
12331       {a_variable.format:("Y-m-d")} - call a method on the variable
12332       {a_variable:raw} - unencoded output
12333       {a_variable:toFixed(1,2)} - Roo.util.Format."toFixed"
12334       {a_variable:this.method_on_template(...)} - call a method on the template object.
12335  
12336 </code></pre>
12337  *  The tpl tag:
12338 <pre><code>
12339         &lt;div roo-for="a_variable or condition.."&gt;&lt;/div&gt;
12340         &lt;div roo-if="a_variable or condition"&gt;&lt;/div&gt;
12341         &lt;div roo-exec="some javascript"&gt;&lt;/div&gt;
12342         &lt;div roo-name="named_template"&gt;&lt;/div&gt; 
12343   
12344 </code></pre>
12345  *      
12346  */
12347 Roo.DomTemplate = function()
12348 {
12349      Roo.DomTemplate.superclass.constructor.apply(this, arguments);
12350      if (this.html) {
12351         this.compile();
12352      }
12353 };
12354
12355
12356 Roo.extend(Roo.DomTemplate, Roo.Template, {
12357     /**
12358      * id counter for sub templates.
12359      */
12360     id : 0,
12361     /**
12362      * flag to indicate if dom parser is inside a pre,
12363      * it will strip whitespace if not.
12364      */
12365     inPre : false,
12366     
12367     /**
12368      * The various sub templates
12369      */
12370     tpls : false,
12371     
12372     
12373     
12374     /**
12375      *
12376      * basic tag replacing syntax
12377      * WORD:WORD()
12378      *
12379      * // you can fake an object call by doing this
12380      *  x.t:(test,tesT) 
12381      * 
12382      */
12383     re : /(\{|\%7B)([\w-\.]+)(?:\:([\w\.]*)(?:\(([^)]*?)?\))?)?(\}|\%7D)/g,
12384     //re : /\{([\w-\.]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
12385     
12386     iterChild : function (node, method) {
12387         
12388         var oldPre = this.inPre;
12389         if (node.tagName == 'PRE') {
12390             this.inPre = true;
12391         }
12392         for( var i = 0; i < node.childNodes.length; i++) {
12393             method.call(this, node.childNodes[i]);
12394         }
12395         this.inPre = oldPre;
12396     },
12397     
12398     
12399     
12400     /**
12401      * compile the template
12402      *
12403      * This is not recursive, so I'm not sure how nested templates are really going to be handled..
12404      *
12405      */
12406     compile: function()
12407     {
12408         var s = this.html;
12409         
12410         // covert the html into DOM...
12411         var doc = false;
12412         var div =false;
12413         try {
12414             doc = document.implementation.createHTMLDocument("");
12415             doc.documentElement.innerHTML =   this.html  ;
12416             div = doc.documentElement;
12417         } catch (e) {
12418             // old IE... - nasty -- it causes all sorts of issues.. with
12419             // images getting pulled from server..
12420             div = document.createElement('div');
12421             div.innerHTML = this.html;
12422         }
12423         //doc.documentElement.innerHTML = htmlBody
12424          
12425         
12426         
12427         this.tpls = [];
12428         var _t = this;
12429         this.iterChild(div, function(n) {_t.compileNode(n, true); });
12430         
12431         var tpls = this.tpls;
12432         
12433         // create a top level template from the snippet..
12434         
12435         //Roo.log(div.innerHTML);
12436         
12437         var tpl = {
12438             uid : 'master',
12439             id : this.id++,
12440             attr : false,
12441             value : false,
12442             body : div.innerHTML,
12443             
12444             forCall : false,
12445             execCall : false,
12446             dom : div,
12447             isTop : true
12448             
12449         };
12450         tpls.unshift(tpl);
12451         
12452         
12453         // compile them...
12454         this.tpls = [];
12455         Roo.each(tpls, function(tp){
12456             this.compileTpl(tp);
12457             this.tpls[tp.id] = tp;
12458         }, this);
12459         
12460         this.master = tpls[0];
12461         return this;
12462         
12463         
12464     },
12465     
12466     compileNode : function(node, istop) {
12467         // test for
12468         //Roo.log(node);
12469         
12470         
12471         // skip anything not a tag..
12472         if (node.nodeType != 1) {
12473             if (node.nodeType == 3 && !this.inPre) {
12474                 // reduce white space..
12475                 node.nodeValue = node.nodeValue.replace(/\s+/g, ' '); 
12476                 
12477             }
12478             return;
12479         }
12480         
12481         var tpl = {
12482             uid : false,
12483             id : false,
12484             attr : false,
12485             value : false,
12486             body : '',
12487             
12488             forCall : false,
12489             execCall : false,
12490             dom : false,
12491             isTop : istop
12492             
12493             
12494         };
12495         
12496         
12497         switch(true) {
12498             case (node.hasAttribute('roo-for')): tpl.attr = 'for'; break;
12499             case (node.hasAttribute('roo-if')): tpl.attr = 'if'; break;
12500             case (node.hasAttribute('roo-name')): tpl.attr = 'name'; break;
12501             case (node.hasAttribute('roo-exec')): tpl.attr = 'exec'; break;
12502             // no default..
12503         }
12504         
12505         
12506         if (!tpl.attr) {
12507             // just itterate children..
12508             this.iterChild(node,this.compileNode);
12509             return;
12510         }
12511         tpl.uid = this.id++;
12512         tpl.value = node.getAttribute('roo-' +  tpl.attr);
12513         node.removeAttribute('roo-'+ tpl.attr);
12514         if (tpl.attr != 'name') {
12515             var placeholder = document.createTextNode('{domtpl' + tpl.uid + '}');
12516             node.parentNode.replaceChild(placeholder,  node);
12517         } else {
12518             
12519             var placeholder =  document.createElement('span');
12520             placeholder.className = 'roo-tpl-' + tpl.value;
12521             node.parentNode.replaceChild(placeholder,  node);
12522         }
12523         
12524         // parent now sees '{domtplXXXX}
12525         this.iterChild(node,this.compileNode);
12526         
12527         // we should now have node body...
12528         var div = document.createElement('div');
12529         div.appendChild(node);
12530         tpl.dom = node;
12531         // this has the unfortunate side effect of converting tagged attributes
12532         // eg. href="{...}" into %7C...%7D
12533         // this has been fixed by searching for those combo's although it's a bit hacky..
12534         
12535         
12536         tpl.body = div.innerHTML;
12537         
12538         
12539          
12540         tpl.id = tpl.uid;
12541         switch(tpl.attr) {
12542             case 'for' :
12543                 switch (tpl.value) {
12544                     case '.':  tpl.forCall = new Function('values', 'parent', 'with(values){ return values; }'); break;
12545                     case '..': tpl.forCall= new Function('values', 'parent', 'with(values){ return parent; }'); break;
12546                     default:   tpl.forCall= new Function('values', 'parent', 'with(values){ return '+tpl.value+'; }');
12547                 }
12548                 break;
12549             
12550             case 'exec':
12551                 tpl.execCall = new Function('values', 'parent', 'with(values){ '+(Roo.util.Format.htmlDecode(tpl.value))+'; }');
12552                 break;
12553             
12554             case 'if':     
12555                 tpl.ifCall = new Function('values', 'parent', 'with(values){ return '+(Roo.util.Format.htmlDecode(tpl.value))+'; }');
12556                 break;
12557             
12558             case 'name':
12559                 tpl.id  = tpl.value; // replace non characters???
12560                 break;
12561             
12562         }
12563         
12564         
12565         this.tpls.push(tpl);
12566         
12567         
12568         
12569     },
12570     
12571     
12572     
12573     
12574     /**
12575      * Compile a segment of the template into a 'sub-template'
12576      *
12577      * 
12578      * 
12579      *
12580      */
12581     compileTpl : function(tpl)
12582     {
12583         var fm = Roo.util.Format;
12584         var useF = this.disableFormats !== true;
12585         
12586         var sep = Roo.isGecko ? "+\n" : ",\n";
12587         
12588         var undef = function(str) {
12589             Roo.debug && Roo.log("Property not found :"  + str);
12590             return '';
12591         };
12592           
12593         //Roo.log(tpl.body);
12594         
12595         
12596         
12597         var fn = function(m, lbrace, name, format, args)
12598         {
12599             //Roo.log("ARGS");
12600             //Roo.log(arguments);
12601             args = args ? args.replace(/\\'/g,"'") : args;
12602             //["{TEST:(a,b,c)}", "TEST", "", "a,b,c", 0, "{TEST:(a,b,c)}"]
12603             if (typeof(format) == 'undefined') {
12604                 format =  'htmlEncode'; 
12605             }
12606             if (format == 'raw' ) {
12607                 format = false;
12608             }
12609             
12610             if(name.substr(0, 6) == 'domtpl'){
12611                 return "'"+ sep +'this.applySubTemplate('+name.substr(6)+', values, parent)'+sep+"'";
12612             }
12613             
12614             // build an array of options to determine if value is undefined..
12615             
12616             // basically get 'xxxx.yyyy' then do
12617             // (typeof(xxxx) == 'undefined' || typeof(xxx.yyyy) == 'undefined') ?
12618             //    (function () { Roo.log("Property not found"); return ''; })() :
12619             //    ......
12620             
12621             var udef_ar = [];
12622             var lookfor = '';
12623             Roo.each(name.split('.'), function(st) {
12624                 lookfor += (lookfor.length ? '.': '') + st;
12625                 udef_ar.push(  "(typeof(" + lookfor + ") == 'undefined')"  );
12626             });
12627             
12628             var udef_st = '((' + udef_ar.join(" || ") +") ? undef('" + name + "') : "; // .. needs )
12629             
12630             
12631             if(format && useF){
12632                 
12633                 args = args ? ',' + args : "";
12634                  
12635                 if(format.substr(0, 5) != "this."){
12636                     format = "fm." + format + '(';
12637                 }else{
12638                     format = 'this.call("'+ format.substr(5) + '", ';
12639                     args = ", values";
12640                 }
12641                 
12642                 return "'"+ sep +   udef_st   +    format + name + args + "))"+sep+"'";
12643             }
12644              
12645             if (args && args.length) {
12646                 // called with xxyx.yuu:(test,test)
12647                 // change to ()
12648                 return "'"+ sep + udef_st  + name + '(' +  args + "))"+sep+"'";
12649             }
12650             // raw.. - :raw modifier..
12651             return "'"+ sep + udef_st  + name + ")"+sep+"'";
12652             
12653         };
12654         var body;
12655         // branched to use + in gecko and [].join() in others
12656         if(Roo.isGecko){
12657             body = "tpl.compiled = function(values, parent){  with(values) { return '" +
12658                    tpl.body.replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
12659                     "';};};";
12660         }else{
12661             body = ["tpl.compiled = function(values, parent){  with (values) { return ['"];
12662             body.push(tpl.body.replace(/(\r\n|\n)/g,
12663                             '\\n').replace(/'/g, "\\'").replace(this.re, fn));
12664             body.push("'].join('');};};");
12665             body = body.join('');
12666         }
12667         
12668         Roo.debug && Roo.log(body.replace(/\\n/,'\n'));
12669        
12670         /** eval:var:tpl eval:var:fm eval:var:useF eval:var:undef  */
12671         eval(body);
12672         
12673         return this;
12674     },
12675      
12676     /**
12677      * same as applyTemplate, except it's done to one of the subTemplates
12678      * when using named templates, you can do:
12679      *
12680      * var str = pl.applySubTemplate('your-name', values);
12681      *
12682      * 
12683      * @param {Number} id of the template
12684      * @param {Object} values to apply to template
12685      * @param {Object} parent (normaly the instance of this object)
12686      */
12687     applySubTemplate : function(id, values, parent)
12688     {
12689         
12690         
12691         var t = this.tpls[id];
12692         
12693         
12694         try { 
12695             if(t.ifCall && !t.ifCall.call(this, values, parent)){
12696                 Roo.debug && Roo.log('if call on ' + t.value + ' return false');
12697                 return '';
12698             }
12699         } catch(e) {
12700             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-if="' + t.value + '" - ' + e.toString());
12701             Roo.log(values);
12702           
12703             return '';
12704         }
12705         try { 
12706             
12707             if(t.execCall && t.execCall.call(this, values, parent)){
12708                 return '';
12709             }
12710         } catch(e) {
12711             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-for="' + t.value + '" - ' + e.toString());
12712             Roo.log(values);
12713             return '';
12714         }
12715         
12716         try {
12717             var vs = t.forCall ? t.forCall.call(this, values, parent) : values;
12718             parent = t.target ? values : parent;
12719             if(t.forCall && vs instanceof Array){
12720                 var buf = [];
12721                 for(var i = 0, len = vs.length; i < len; i++){
12722                     try {
12723                         buf[buf.length] = t.compiled.call(this, vs[i], parent);
12724                     } catch (e) {
12725                         Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on body="' + t.value + '" - ' + e.toString());
12726                         Roo.log(e.body);
12727                         //Roo.log(t.compiled);
12728                         Roo.log(vs[i]);
12729                     }   
12730                 }
12731                 return buf.join('');
12732             }
12733         } catch (e) {
12734             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-for="' + t.value + '" - ' + e.toString());
12735             Roo.log(values);
12736             return '';
12737         }
12738         try {
12739             return t.compiled.call(this, vs, parent);
12740         } catch (e) {
12741             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on body="' + t.value + '" - ' + e.toString());
12742             Roo.log(e.body);
12743             //Roo.log(t.compiled);
12744             Roo.log(values);
12745             return '';
12746         }
12747     },
12748
12749    
12750
12751     applyTemplate : function(values){
12752         return this.master.compiled.call(this, values, {});
12753         //var s = this.subs;
12754     },
12755
12756     apply : function(){
12757         return this.applyTemplate.apply(this, arguments);
12758     }
12759
12760  });
12761
12762 Roo.DomTemplate.from = function(el){
12763     el = Roo.getDom(el);
12764     return new Roo.Domtemplate(el.value || el.innerHTML);
12765 };/*
12766  * Based on:
12767  * Ext JS Library 1.1.1
12768  * Copyright(c) 2006-2007, Ext JS, LLC.
12769  *
12770  * Originally Released Under LGPL - original licence link has changed is not relivant.
12771  *
12772  * Fork - LGPL
12773  * <script type="text/javascript">
12774  */
12775
12776 /**
12777  * @class Roo.util.DelayedTask
12778  * Provides a convenient method of performing setTimeout where a new
12779  * timeout cancels the old timeout. An example would be performing validation on a keypress.
12780  * You can use this class to buffer
12781  * the keypress events for a certain number of milliseconds, and perform only if they stop
12782  * for that amount of time.
12783  * @constructor The parameters to this constructor serve as defaults and are not required.
12784  * @param {Function} fn (optional) The default function to timeout
12785  * @param {Object} scope (optional) The default scope of that timeout
12786  * @param {Array} args (optional) The default Array of arguments
12787  */
12788 Roo.util.DelayedTask = function(fn, scope, args){
12789     var id = null, d, t;
12790
12791     var call = function(){
12792         var now = new Date().getTime();
12793         if(now - t >= d){
12794             clearInterval(id);
12795             id = null;
12796             fn.apply(scope, args || []);
12797         }
12798     };
12799     /**
12800      * Cancels any pending timeout and queues a new one
12801      * @param {Number} delay The milliseconds to delay
12802      * @param {Function} newFn (optional) Overrides function passed to constructor
12803      * @param {Object} newScope (optional) Overrides scope passed to constructor
12804      * @param {Array} newArgs (optional) Overrides args passed to constructor
12805      */
12806     this.delay = function(delay, newFn, newScope, newArgs){
12807         if(id && delay != d){
12808             this.cancel();
12809         }
12810         d = delay;
12811         t = new Date().getTime();
12812         fn = newFn || fn;
12813         scope = newScope || scope;
12814         args = newArgs || args;
12815         if(!id){
12816             id = setInterval(call, d);
12817         }
12818     };
12819
12820     /**
12821      * Cancel the last queued timeout
12822      */
12823     this.cancel = function(){
12824         if(id){
12825             clearInterval(id);
12826             id = null;
12827         }
12828     };
12829 };/*
12830  * Based on:
12831  * Ext JS Library 1.1.1
12832  * Copyright(c) 2006-2007, Ext JS, LLC.
12833  *
12834  * Originally Released Under LGPL - original licence link has changed is not relivant.
12835  *
12836  * Fork - LGPL
12837  * <script type="text/javascript">
12838  */
12839  
12840  
12841 Roo.util.TaskRunner = function(interval){
12842     interval = interval || 10;
12843     var tasks = [], removeQueue = [];
12844     var id = 0;
12845     var running = false;
12846
12847     var stopThread = function(){
12848         running = false;
12849         clearInterval(id);
12850         id = 0;
12851     };
12852
12853     var startThread = function(){
12854         if(!running){
12855             running = true;
12856             id = setInterval(runTasks, interval);
12857         }
12858     };
12859
12860     var removeTask = function(task){
12861         removeQueue.push(task);
12862         if(task.onStop){
12863             task.onStop();
12864         }
12865     };
12866
12867     var runTasks = function(){
12868         if(removeQueue.length > 0){
12869             for(var i = 0, len = removeQueue.length; i < len; i++){
12870                 tasks.remove(removeQueue[i]);
12871             }
12872             removeQueue = [];
12873             if(tasks.length < 1){
12874                 stopThread();
12875                 return;
12876             }
12877         }
12878         var now = new Date().getTime();
12879         for(var i = 0, len = tasks.length; i < len; ++i){
12880             var t = tasks[i];
12881             var itime = now - t.taskRunTime;
12882             if(t.interval <= itime){
12883                 var rt = t.run.apply(t.scope || t, t.args || [++t.taskRunCount]);
12884                 t.taskRunTime = now;
12885                 if(rt === false || t.taskRunCount === t.repeat){
12886                     removeTask(t);
12887                     return;
12888                 }
12889             }
12890             if(t.duration && t.duration <= (now - t.taskStartTime)){
12891                 removeTask(t);
12892             }
12893         }
12894     };
12895
12896     /**
12897      * Queues a new task.
12898      * @param {Object} task
12899      */
12900     this.start = function(task){
12901         tasks.push(task);
12902         task.taskStartTime = new Date().getTime();
12903         task.taskRunTime = 0;
12904         task.taskRunCount = 0;
12905         startThread();
12906         return task;
12907     };
12908
12909     this.stop = function(task){
12910         removeTask(task);
12911         return task;
12912     };
12913
12914     this.stopAll = function(){
12915         stopThread();
12916         for(var i = 0, len = tasks.length; i < len; i++){
12917             if(tasks[i].onStop){
12918                 tasks[i].onStop();
12919             }
12920         }
12921         tasks = [];
12922         removeQueue = [];
12923     };
12924 };
12925
12926 Roo.TaskMgr = new Roo.util.TaskRunner();/*
12927  * Based on:
12928  * Ext JS Library 1.1.1
12929  * Copyright(c) 2006-2007, Ext JS, LLC.
12930  *
12931  * Originally Released Under LGPL - original licence link has changed is not relivant.
12932  *
12933  * Fork - LGPL
12934  * <script type="text/javascript">
12935  */
12936
12937  
12938 /**
12939  * @class Roo.util.MixedCollection
12940  * @extends Roo.util.Observable
12941  * A Collection class that maintains both numeric indexes and keys and exposes events.
12942  * @constructor
12943  * @param {Boolean} allowFunctions True if the addAll function should add function references to the
12944  * collection (defaults to false)
12945  * @param {Function} keyFn A function that can accept an item of the type(s) stored in this MixedCollection
12946  * and return the key value for that item.  This is used when available to look up the key on items that
12947  * were passed without an explicit key parameter to a MixedCollection method.  Passing this parameter is
12948  * equivalent to providing an implementation for the {@link #getKey} method.
12949  */
12950 Roo.util.MixedCollection = function(allowFunctions, keyFn){
12951     this.items = [];
12952     this.map = {};
12953     this.keys = [];
12954     this.length = 0;
12955     this.addEvents({
12956         /**
12957          * @event clear
12958          * Fires when the collection is cleared.
12959          */
12960         "clear" : true,
12961         /**
12962          * @event add
12963          * Fires when an item is added to the collection.
12964          * @param {Number} index The index at which the item was added.
12965          * @param {Object} o The item added.
12966          * @param {String} key The key associated with the added item.
12967          */
12968         "add" : true,
12969         /**
12970          * @event replace
12971          * Fires when an item is replaced in the collection.
12972          * @param {String} key he key associated with the new added.
12973          * @param {Object} old The item being replaced.
12974          * @param {Object} new The new item.
12975          */
12976         "replace" : true,
12977         /**
12978          * @event remove
12979          * Fires when an item is removed from the collection.
12980          * @param {Object} o The item being removed.
12981          * @param {String} key (optional) The key associated with the removed item.
12982          */
12983         "remove" : true,
12984         "sort" : true
12985     });
12986     this.allowFunctions = allowFunctions === true;
12987     if(keyFn){
12988         this.getKey = keyFn;
12989     }
12990     Roo.util.MixedCollection.superclass.constructor.call(this);
12991 };
12992
12993 Roo.extend(Roo.util.MixedCollection, Roo.util.Observable, {
12994     allowFunctions : false,
12995     
12996 /**
12997  * Adds an item to the collection.
12998  * @param {String} key The key to associate with the item
12999  * @param {Object} o The item to add.
13000  * @return {Object} The item added.
13001  */
13002     add : function(key, o){
13003         if(arguments.length == 1){
13004             o = arguments[0];
13005             key = this.getKey(o);
13006         }
13007         if(typeof key == "undefined" || key === null){
13008             this.length++;
13009             this.items.push(o);
13010             this.keys.push(null);
13011         }else{
13012             var old = this.map[key];
13013             if(old){
13014                 return this.replace(key, o);
13015             }
13016             this.length++;
13017             this.items.push(o);
13018             this.map[key] = o;
13019             this.keys.push(key);
13020         }
13021         this.fireEvent("add", this.length-1, o, key);
13022         return o;
13023     },
13024        
13025 /**
13026   * MixedCollection has a generic way to fetch keys if you implement getKey.
13027 <pre><code>
13028 // normal way
13029 var mc = new Roo.util.MixedCollection();
13030 mc.add(someEl.dom.id, someEl);
13031 mc.add(otherEl.dom.id, otherEl);
13032 //and so on
13033
13034 // using getKey
13035 var mc = new Roo.util.MixedCollection();
13036 mc.getKey = function(el){
13037    return el.dom.id;
13038 };
13039 mc.add(someEl);
13040 mc.add(otherEl);
13041
13042 // or via the constructor
13043 var mc = new Roo.util.MixedCollection(false, function(el){
13044    return el.dom.id;
13045 });
13046 mc.add(someEl);
13047 mc.add(otherEl);
13048 </code></pre>
13049  * @param o {Object} The item for which to find the key.
13050  * @return {Object} The key for the passed item.
13051  */
13052     getKey : function(o){
13053          return o.id; 
13054     },
13055    
13056 /**
13057  * Replaces an item in the collection.
13058  * @param {String} key The key associated with the item to replace, or the item to replace.
13059  * @param o {Object} o (optional) If the first parameter passed was a key, the item to associate with that key.
13060  * @return {Object}  The new item.
13061  */
13062     replace : function(key, o){
13063         if(arguments.length == 1){
13064             o = arguments[0];
13065             key = this.getKey(o);
13066         }
13067         var old = this.item(key);
13068         if(typeof key == "undefined" || key === null || typeof old == "undefined"){
13069              return this.add(key, o);
13070         }
13071         var index = this.indexOfKey(key);
13072         this.items[index] = o;
13073         this.map[key] = o;
13074         this.fireEvent("replace", key, old, o);
13075         return o;
13076     },
13077    
13078 /**
13079  * Adds all elements of an Array or an Object to the collection.
13080  * @param {Object/Array} objs An Object containing properties which will be added to the collection, or
13081  * an Array of values, each of which are added to the collection.
13082  */
13083     addAll : function(objs){
13084         if(arguments.length > 1 || objs instanceof Array){
13085             var args = arguments.length > 1 ? arguments : objs;
13086             for(var i = 0, len = args.length; i < len; i++){
13087                 this.add(args[i]);
13088             }
13089         }else{
13090             for(var key in objs){
13091                 if(this.allowFunctions || typeof objs[key] != "function"){
13092                     this.add(key, objs[key]);
13093                 }
13094             }
13095         }
13096     },
13097    
13098 /**
13099  * Executes the specified function once for every item in the collection, passing each
13100  * item as the first and only parameter. returning false from the function will stop the iteration.
13101  * @param {Function} fn The function to execute for each item.
13102  * @param {Object} scope (optional) The scope in which to execute the function.
13103  */
13104     each : function(fn, scope){
13105         var items = [].concat(this.items); // each safe for removal
13106         for(var i = 0, len = items.length; i < len; i++){
13107             if(fn.call(scope || items[i], items[i], i, len) === false){
13108                 break;
13109             }
13110         }
13111     },
13112    
13113 /**
13114  * Executes the specified function once for every key in the collection, passing each
13115  * key, and its associated item as the first two parameters.
13116  * @param {Function} fn The function to execute for each item.
13117  * @param {Object} scope (optional) The scope in which to execute the function.
13118  */
13119     eachKey : function(fn, scope){
13120         for(var i = 0, len = this.keys.length; i < len; i++){
13121             fn.call(scope || window, this.keys[i], this.items[i], i, len);
13122         }
13123     },
13124    
13125 /**
13126  * Returns the first item in the collection which elicits a true return value from the
13127  * passed selection function.
13128  * @param {Function} fn The selection function to execute for each item.
13129  * @param {Object} scope (optional) The scope in which to execute the function.
13130  * @return {Object} The first item in the collection which returned true from the selection function.
13131  */
13132     find : function(fn, scope){
13133         for(var i = 0, len = this.items.length; i < len; i++){
13134             if(fn.call(scope || window, this.items[i], this.keys[i])){
13135                 return this.items[i];
13136             }
13137         }
13138         return null;
13139     },
13140    
13141 /**
13142  * Inserts an item at the specified index in the collection.
13143  * @param {Number} index The index to insert the item at.
13144  * @param {String} key The key to associate with the new item, or the item itself.
13145  * @param {Object} o  (optional) If the second parameter was a key, the new item.
13146  * @return {Object} The item inserted.
13147  */
13148     insert : function(index, key, o){
13149         if(arguments.length == 2){
13150             o = arguments[1];
13151             key = this.getKey(o);
13152         }
13153         if(index >= this.length){
13154             return this.add(key, o);
13155         }
13156         this.length++;
13157         this.items.splice(index, 0, o);
13158         if(typeof key != "undefined" && key != null){
13159             this.map[key] = o;
13160         }
13161         this.keys.splice(index, 0, key);
13162         this.fireEvent("add", index, o, key);
13163         return o;
13164     },
13165    
13166 /**
13167  * Removed an item from the collection.
13168  * @param {Object} o The item to remove.
13169  * @return {Object} The item removed.
13170  */
13171     remove : function(o){
13172         return this.removeAt(this.indexOf(o));
13173     },
13174    
13175 /**
13176  * Remove an item from a specified index in the collection.
13177  * @param {Number} index The index within the collection of the item to remove.
13178  */
13179     removeAt : function(index){
13180         if(index < this.length && index >= 0){
13181             this.length--;
13182             var o = this.items[index];
13183             this.items.splice(index, 1);
13184             var key = this.keys[index];
13185             if(typeof key != "undefined"){
13186                 delete this.map[key];
13187             }
13188             this.keys.splice(index, 1);
13189             this.fireEvent("remove", o, key);
13190         }
13191     },
13192    
13193 /**
13194  * Removed an item associated with the passed key fom the collection.
13195  * @param {String} key The key of the item to remove.
13196  */
13197     removeKey : function(key){
13198         return this.removeAt(this.indexOfKey(key));
13199     },
13200    
13201 /**
13202  * Returns the number of items in the collection.
13203  * @return {Number} the number of items in the collection.
13204  */
13205     getCount : function(){
13206         return this.length; 
13207     },
13208    
13209 /**
13210  * Returns index within the collection of the passed Object.
13211  * @param {Object} o The item to find the index of.
13212  * @return {Number} index of the item.
13213  */
13214     indexOf : function(o){
13215         if(!this.items.indexOf){
13216             for(var i = 0, len = this.items.length; i < len; i++){
13217                 if(this.items[i] == o) {
13218                     return i;
13219                 }
13220             }
13221             return -1;
13222         }else{
13223             return this.items.indexOf(o);
13224         }
13225     },
13226    
13227 /**
13228  * Returns index within the collection of the passed key.
13229  * @param {String} key The key to find the index of.
13230  * @return {Number} index of the key.
13231  */
13232     indexOfKey : function(key){
13233         if(!this.keys.indexOf){
13234             for(var i = 0, len = this.keys.length; i < len; i++){
13235                 if(this.keys[i] == key) {
13236                     return i;
13237                 }
13238             }
13239             return -1;
13240         }else{
13241             return this.keys.indexOf(key);
13242         }
13243     },
13244    
13245 /**
13246  * Returns the item associated with the passed key OR index. Key has priority over index.
13247  * @param {String/Number} key The key or index of the item.
13248  * @return {Object} The item associated with the passed key.
13249  */
13250     item : function(key){
13251         var item = typeof this.map[key] != "undefined" ? this.map[key] : this.items[key];
13252         return typeof item != 'function' || this.allowFunctions ? item : null; // for prototype!
13253     },
13254     
13255 /**
13256  * Returns the item at the specified index.
13257  * @param {Number} index The index of the item.
13258  * @return {Object}
13259  */
13260     itemAt : function(index){
13261         return this.items[index];
13262     },
13263     
13264 /**
13265  * Returns the item associated with the passed key.
13266  * @param {String/Number} key The key of the item.
13267  * @return {Object} The item associated with the passed key.
13268  */
13269     key : function(key){
13270         return this.map[key];
13271     },
13272    
13273 /**
13274  * Returns true if the collection contains the passed Object as an item.
13275  * @param {Object} o  The Object to look for in the collection.
13276  * @return {Boolean} True if the collection contains the Object as an item.
13277  */
13278     contains : function(o){
13279         return this.indexOf(o) != -1;
13280     },
13281    
13282 /**
13283  * Returns true if the collection contains the passed Object as a key.
13284  * @param {String} key The key to look for in the collection.
13285  * @return {Boolean} True if the collection contains the Object as a key.
13286  */
13287     containsKey : function(key){
13288         return typeof this.map[key] != "undefined";
13289     },
13290    
13291 /**
13292  * Removes all items from the collection.
13293  */
13294     clear : function(){
13295         this.length = 0;
13296         this.items = [];
13297         this.keys = [];
13298         this.map = {};
13299         this.fireEvent("clear");
13300     },
13301    
13302 /**
13303  * Returns the first item in the collection.
13304  * @return {Object} the first item in the collection..
13305  */
13306     first : function(){
13307         return this.items[0]; 
13308     },
13309    
13310 /**
13311  * Returns the last item in the collection.
13312  * @return {Object} the last item in the collection..
13313  */
13314     last : function(){
13315         return this.items[this.length-1];   
13316     },
13317     
13318     _sort : function(property, dir, fn){
13319         var dsc = String(dir).toUpperCase() == "DESC" ? -1 : 1;
13320         fn = fn || function(a, b){
13321             return a-b;
13322         };
13323         var c = [], k = this.keys, items = this.items;
13324         for(var i = 0, len = items.length; i < len; i++){
13325             c[c.length] = {key: k[i], value: items[i], index: i};
13326         }
13327         c.sort(function(a, b){
13328             var v = fn(a[property], b[property]) * dsc;
13329             if(v == 0){
13330                 v = (a.index < b.index ? -1 : 1);
13331             }
13332             return v;
13333         });
13334         for(var i = 0, len = c.length; i < len; i++){
13335             items[i] = c[i].value;
13336             k[i] = c[i].key;
13337         }
13338         this.fireEvent("sort", this);
13339     },
13340     
13341     /**
13342      * Sorts this collection with the passed comparison function
13343      * @param {String} direction (optional) "ASC" or "DESC"
13344      * @param {Function} fn (optional) comparison function
13345      */
13346     sort : function(dir, fn){
13347         this._sort("value", dir, fn);
13348     },
13349     
13350     /**
13351      * Sorts this collection by keys
13352      * @param {String} direction (optional) "ASC" or "DESC"
13353      * @param {Function} fn (optional) a comparison function (defaults to case insensitive string)
13354      */
13355     keySort : function(dir, fn){
13356         this._sort("key", dir, fn || function(a, b){
13357             return String(a).toUpperCase()-String(b).toUpperCase();
13358         });
13359     },
13360     
13361     /**
13362      * Returns a range of items in this collection
13363      * @param {Number} startIndex (optional) defaults to 0
13364      * @param {Number} endIndex (optional) default to the last item
13365      * @return {Array} An array of items
13366      */
13367     getRange : function(start, end){
13368         var items = this.items;
13369         if(items.length < 1){
13370             return [];
13371         }
13372         start = start || 0;
13373         end = Math.min(typeof end == "undefined" ? this.length-1 : end, this.length-1);
13374         var r = [];
13375         if(start <= end){
13376             for(var i = start; i <= end; i++) {
13377                     r[r.length] = items[i];
13378             }
13379         }else{
13380             for(var i = start; i >= end; i--) {
13381                     r[r.length] = items[i];
13382             }
13383         }
13384         return r;
13385     },
13386         
13387     /**
13388      * Filter the <i>objects</i> in this collection by a specific property. 
13389      * Returns a new collection that has been filtered.
13390      * @param {String} property A property on your objects
13391      * @param {String/RegExp} value Either string that the property values 
13392      * should start with or a RegExp to test against the property
13393      * @return {MixedCollection} The new filtered collection
13394      */
13395     filter : function(property, value){
13396         if(!value.exec){ // not a regex
13397             value = String(value);
13398             if(value.length == 0){
13399                 return this.clone();
13400             }
13401             value = new RegExp("^" + Roo.escapeRe(value), "i");
13402         }
13403         return this.filterBy(function(o){
13404             return o && value.test(o[property]);
13405         });
13406         },
13407     
13408     /**
13409      * Filter by a function. * Returns a new collection that has been filtered.
13410      * The passed function will be called with each 
13411      * object in the collection. If the function returns true, the value is included 
13412      * otherwise it is filtered.
13413      * @param {Function} fn The function to be called, it will receive the args o (the object), k (the key)
13414      * @param {Object} scope (optional) The scope of the function (defaults to this) 
13415      * @return {MixedCollection} The new filtered collection
13416      */
13417     filterBy : function(fn, scope){
13418         var r = new Roo.util.MixedCollection();
13419         r.getKey = this.getKey;
13420         var k = this.keys, it = this.items;
13421         for(var i = 0, len = it.length; i < len; i++){
13422             if(fn.call(scope||this, it[i], k[i])){
13423                                 r.add(k[i], it[i]);
13424                         }
13425         }
13426         return r;
13427     },
13428     
13429     /**
13430      * Creates a duplicate of this collection
13431      * @return {MixedCollection}
13432      */
13433     clone : function(){
13434         var r = new Roo.util.MixedCollection();
13435         var k = this.keys, it = this.items;
13436         for(var i = 0, len = it.length; i < len; i++){
13437             r.add(k[i], it[i]);
13438         }
13439         r.getKey = this.getKey;
13440         return r;
13441     }
13442 });
13443 /**
13444  * Returns the item associated with the passed key or index.
13445  * @method
13446  * @param {String/Number} key The key or index of the item.
13447  * @return {Object} The item associated with the passed key.
13448  */
13449 Roo.util.MixedCollection.prototype.get = Roo.util.MixedCollection.prototype.item;/*
13450  * Based on:
13451  * Ext JS Library 1.1.1
13452  * Copyright(c) 2006-2007, Ext JS, LLC.
13453  *
13454  * Originally Released Under LGPL - original licence link has changed is not relivant.
13455  *
13456  * Fork - LGPL
13457  * <script type="text/javascript">
13458  */
13459 /**
13460  * @class Roo.util.JSON
13461  * Modified version of Douglas Crockford"s json.js that doesn"t
13462  * mess with the Object prototype 
13463  * http://www.json.org/js.html
13464  * @singleton
13465  */
13466 Roo.util.JSON = new (function(){
13467     var useHasOwn = {}.hasOwnProperty ? true : false;
13468     
13469     // crashes Safari in some instances
13470     //var validRE = /^("(\\.|[^"\\\n\r])*?"|[,:{}\[\]0-9.\-+Eaeflnr-u \n\r\t])+?$/;
13471     
13472     var pad = function(n) {
13473         return n < 10 ? "0" + n : n;
13474     };
13475     
13476     var m = {
13477         "\b": '\\b',
13478         "\t": '\\t',
13479         "\n": '\\n',
13480         "\f": '\\f',
13481         "\r": '\\r',
13482         '"' : '\\"',
13483         "\\": '\\\\'
13484     };
13485
13486     var encodeString = function(s){
13487         if (/["\\\x00-\x1f]/.test(s)) {
13488             return '"' + s.replace(/([\x00-\x1f\\"])/g, function(a, b) {
13489                 var c = m[b];
13490                 if(c){
13491                     return c;
13492                 }
13493                 c = b.charCodeAt();
13494                 return "\\u00" +
13495                     Math.floor(c / 16).toString(16) +
13496                     (c % 16).toString(16);
13497             }) + '"';
13498         }
13499         return '"' + s + '"';
13500     };
13501     
13502     var encodeArray = function(o){
13503         var a = ["["], b, i, l = o.length, v;
13504             for (i = 0; i < l; i += 1) {
13505                 v = o[i];
13506                 switch (typeof v) {
13507                     case "undefined":
13508                     case "function":
13509                     case "unknown":
13510                         break;
13511                     default:
13512                         if (b) {
13513                             a.push(',');
13514                         }
13515                         a.push(v === null ? "null" : Roo.util.JSON.encode(v));
13516                         b = true;
13517                 }
13518             }
13519             a.push("]");
13520             return a.join("");
13521     };
13522     
13523     var encodeDate = function(o){
13524         return '"' + o.getFullYear() + "-" +
13525                 pad(o.getMonth() + 1) + "-" +
13526                 pad(o.getDate()) + "T" +
13527                 pad(o.getHours()) + ":" +
13528                 pad(o.getMinutes()) + ":" +
13529                 pad(o.getSeconds()) + '"';
13530     };
13531     
13532     /**
13533      * Encodes an Object, Array or other value
13534      * @param {Mixed} o The variable to encode
13535      * @return {String} The JSON string
13536      */
13537     this.encode = function(o)
13538     {
13539         // should this be extended to fully wrap stringify..
13540         
13541         if(typeof o == "undefined" || o === null){
13542             return "null";
13543         }else if(o instanceof Array){
13544             return encodeArray(o);
13545         }else if(o instanceof Date){
13546             return encodeDate(o);
13547         }else if(typeof o == "string"){
13548             return encodeString(o);
13549         }else if(typeof o == "number"){
13550             return isFinite(o) ? String(o) : "null";
13551         }else if(typeof o == "boolean"){
13552             return String(o);
13553         }else {
13554             var a = ["{"], b, i, v;
13555             for (i in o) {
13556                 if(!useHasOwn || o.hasOwnProperty(i)) {
13557                     v = o[i];
13558                     switch (typeof v) {
13559                     case "undefined":
13560                     case "function":
13561                     case "unknown":
13562                         break;
13563                     default:
13564                         if(b){
13565                             a.push(',');
13566                         }
13567                         a.push(this.encode(i), ":",
13568                                 v === null ? "null" : this.encode(v));
13569                         b = true;
13570                     }
13571                 }
13572             }
13573             a.push("}");
13574             return a.join("");
13575         }
13576     };
13577     
13578     /**
13579      * Decodes (parses) a JSON string to an object. If the JSON is invalid, this function throws a SyntaxError.
13580      * @param {String} json The JSON string
13581      * @return {Object} The resulting object
13582      */
13583     this.decode = function(json){
13584         
13585         return  /** eval:var:json */ eval("(" + json + ')');
13586     };
13587 })();
13588 /** 
13589  * Shorthand for {@link Roo.util.JSON#encode}
13590  * @member Roo encode 
13591  * @method */
13592 Roo.encode = typeof(JSON) != 'undefined' && JSON.stringify ? JSON.stringify : Roo.util.JSON.encode;
13593 /** 
13594  * Shorthand for {@link Roo.util.JSON#decode}
13595  * @member Roo decode 
13596  * @method */
13597 Roo.decode = typeof(JSON) != 'undefined' && JSON.parse ? JSON.parse : Roo.util.JSON.decode;
13598 /*
13599  * Based on:
13600  * Ext JS Library 1.1.1
13601  * Copyright(c) 2006-2007, Ext JS, LLC.
13602  *
13603  * Originally Released Under LGPL - original licence link has changed is not relivant.
13604  *
13605  * Fork - LGPL
13606  * <script type="text/javascript">
13607  */
13608  
13609 /**
13610  * @class Roo.util.Format
13611  * Reusable data formatting functions
13612  * @singleton
13613  */
13614 Roo.util.Format = function(){
13615     var trimRe = /^\s+|\s+$/g;
13616     return {
13617         /**
13618          * Truncate a string and add an ellipsis ('...') to the end if it exceeds the specified length
13619          * @param {String} value The string to truncate
13620          * @param {Number} length The maximum length to allow before truncating
13621          * @return {String} The converted text
13622          */
13623         ellipsis : function(value, len){
13624             if(value && value.length > len){
13625                 return value.substr(0, len-3)+"...";
13626             }
13627             return value;
13628         },
13629
13630         /**
13631          * Checks a reference and converts it to empty string if it is undefined
13632          * @param {Mixed} value Reference to check
13633          * @return {Mixed} Empty string if converted, otherwise the original value
13634          */
13635         undef : function(value){
13636             return typeof value != "undefined" ? value : "";
13637         },
13638
13639         /**
13640          * Convert certain characters (&, <, >, and ') to their HTML character equivalents for literal display in web pages.
13641          * @param {String} value The string to encode
13642          * @return {String} The encoded text
13643          */
13644         htmlEncode : function(value){
13645             return !value ? value : String(value).replace(/&/g, "&amp;").replace(/>/g, "&gt;").replace(/</g, "&lt;").replace(/"/g, "&quot;");
13646         },
13647
13648         /**
13649          * Convert certain characters (&, <, >, and ') from their HTML character equivalents.
13650          * @param {String} value The string to decode
13651          * @return {String} The decoded text
13652          */
13653         htmlDecode : function(value){
13654             return !value ? value : String(value).replace(/&amp;/g, "&").replace(/&gt;/g, ">").replace(/&lt;/g, "<").replace(/&quot;/g, '"');
13655         },
13656
13657         /**
13658          * Trims any whitespace from either side of a string
13659          * @param {String} value The text to trim
13660          * @return {String} The trimmed text
13661          */
13662         trim : function(value){
13663             return String(value).replace(trimRe, "");
13664         },
13665
13666         /**
13667          * Returns a substring from within an original string
13668          * @param {String} value The original text
13669          * @param {Number} start The start index of the substring
13670          * @param {Number} length The length of the substring
13671          * @return {String} The substring
13672          */
13673         substr : function(value, start, length){
13674             return String(value).substr(start, length);
13675         },
13676
13677         /**
13678          * Converts a string to all lower case letters
13679          * @param {String} value The text to convert
13680          * @return {String} The converted text
13681          */
13682         lowercase : function(value){
13683             return String(value).toLowerCase();
13684         },
13685
13686         /**
13687          * Converts a string to all upper case letters
13688          * @param {String} value The text to convert
13689          * @return {String} The converted text
13690          */
13691         uppercase : function(value){
13692             return String(value).toUpperCase();
13693         },
13694
13695         /**
13696          * Converts the first character only of a string to upper case
13697          * @param {String} value The text to convert
13698          * @return {String} The converted text
13699          */
13700         capitalize : function(value){
13701             return !value ? value : value.charAt(0).toUpperCase() + value.substr(1).toLowerCase();
13702         },
13703
13704         // private
13705         call : function(value, fn){
13706             if(arguments.length > 2){
13707                 var args = Array.prototype.slice.call(arguments, 2);
13708                 args.unshift(value);
13709                  
13710                 return /** eval:var:value */  eval(fn).apply(window, args);
13711             }else{
13712                 /** eval:var:value */
13713                 return /** eval:var:value */ eval(fn).call(window, value);
13714             }
13715         },
13716
13717        
13718         /**
13719          * safer version of Math.toFixed..??/
13720          * @param {Number/String} value The numeric value to format
13721          * @param {Number/String} value Decimal places 
13722          * @return {String} The formatted currency string
13723          */
13724         toFixed : function(v, n)
13725         {
13726             // why not use to fixed - precision is buggered???
13727             if (!n) {
13728                 return Math.round(v-0);
13729             }
13730             var fact = Math.pow(10,n+1);
13731             v = (Math.round((v-0)*fact))/fact;
13732             var z = (''+fact).substring(2);
13733             if (v == Math.floor(v)) {
13734                 return Math.floor(v) + '.' + z;
13735             }
13736             
13737             // now just padd decimals..
13738             var ps = String(v).split('.');
13739             var fd = (ps[1] + z);
13740             var r = fd.substring(0,n); 
13741             var rm = fd.substring(n); 
13742             if (rm < 5) {
13743                 return ps[0] + '.' + r;
13744             }
13745             r*=1; // turn it into a number;
13746             r++;
13747             if (String(r).length != n) {
13748                 ps[0]*=1;
13749                 ps[0]++;
13750                 r = String(r).substring(1); // chop the end off.
13751             }
13752             
13753             return ps[0] + '.' + r;
13754              
13755         },
13756         
13757         /**
13758          * Format a number as US currency
13759          * @param {Number/String} value The numeric value to format
13760          * @return {String} The formatted currency string
13761          */
13762         usMoney : function(v){
13763             return '$' + Roo.util.Format.number(v);
13764         },
13765         
13766         /**
13767          * Format a number
13768          * eventually this should probably emulate php's number_format
13769          * @param {Number/String} value The numeric value to format
13770          * @param {Number} decimals number of decimal places
13771          * @param {String} delimiter for thousands (default comma)
13772          * @return {String} The formatted currency string
13773          */
13774         number : function(v, decimals, thousandsDelimiter)
13775         {
13776             // multiply and round.
13777             decimals = typeof(decimals) == 'undefined' ? 2 : decimals;
13778             thousandsDelimiter = typeof(thousandsDelimiter) == 'undefined' ? ',' : thousandsDelimiter;
13779             
13780             var mul = Math.pow(10, decimals);
13781             var zero = String(mul).substring(1);
13782             v = (Math.round((v-0)*mul))/mul;
13783             
13784             // if it's '0' number.. then
13785             
13786             //v = (v == Math.floor(v)) ? v + "." + zero : ((v*10 == Math.floor(v*10)) ? v + "0" : v);
13787             v = String(v);
13788             var ps = v.split('.');
13789             var whole = ps[0];
13790             
13791             var r = /(\d+)(\d{3})/;
13792             // add comma's
13793             
13794             if(thousandsDelimiter.length != 0) {
13795                 whole = whole.replace(/\B(?=(\d{3})+(?!\d))/g, thousandsDelimiter );
13796             } 
13797             
13798             var sub = ps[1] ?
13799                     // has decimals..
13800                     (decimals ?  ('.'+ ps[1] + zero.substring(ps[1].length)) : '') :
13801                     // does not have decimals
13802                     (decimals ? ('.' + zero) : '');
13803             
13804             
13805             return whole + sub ;
13806         },
13807         
13808         /**
13809          * Parse a value into a formatted date using the specified format pattern.
13810          * @param {Mixed} value The value to format
13811          * @param {String} format (optional) Any valid date format string (defaults to 'm/d/Y')
13812          * @return {String} The formatted date string
13813          */
13814         date : function(v, format){
13815             if(!v){
13816                 return "";
13817             }
13818             if(!(v instanceof Date)){
13819                 v = new Date(Date.parse(v));
13820             }
13821             return v.dateFormat(format || Roo.util.Format.defaults.date);
13822         },
13823
13824         /**
13825          * Returns a date rendering function that can be reused to apply a date format multiple times efficiently
13826          * @param {String} format Any valid date format string
13827          * @return {Function} The date formatting function
13828          */
13829         dateRenderer : function(format){
13830             return function(v){
13831                 return Roo.util.Format.date(v, format);  
13832             };
13833         },
13834
13835         // private
13836         stripTagsRE : /<\/?[^>]+>/gi,
13837         
13838         /**
13839          * Strips all HTML tags
13840          * @param {Mixed} value The text from which to strip tags
13841          * @return {String} The stripped text
13842          */
13843         stripTags : function(v){
13844             return !v ? v : String(v).replace(this.stripTagsRE, "");
13845         }
13846     };
13847 }();
13848 Roo.util.Format.defaults = {
13849     date : 'd/M/Y'
13850 };/*
13851  * Based on:
13852  * Ext JS Library 1.1.1
13853  * Copyright(c) 2006-2007, Ext JS, LLC.
13854  *
13855  * Originally Released Under LGPL - original licence link has changed is not relivant.
13856  *
13857  * Fork - LGPL
13858  * <script type="text/javascript">
13859  */
13860
13861
13862  
13863
13864 /**
13865  * @class Roo.MasterTemplate
13866  * @extends Roo.Template
13867  * Provides a template that can have child templates. The syntax is:
13868 <pre><code>
13869 var t = new Roo.MasterTemplate(
13870         '&lt;select name="{name}"&gt;',
13871                 '&lt;tpl name="options"&gt;&lt;option value="{value:trim}"&gt;{text:ellipsis(10)}&lt;/option&gt;&lt;/tpl&gt;',
13872         '&lt;/select&gt;'
13873 );
13874 t.add('options', {value: 'foo', text: 'bar'});
13875 // or you can add multiple child elements in one shot
13876 t.addAll('options', [
13877     {value: 'foo', text: 'bar'},
13878     {value: 'foo2', text: 'bar2'},
13879     {value: 'foo3', text: 'bar3'}
13880 ]);
13881 // then append, applying the master template values
13882 t.append('my-form', {name: 'my-select'});
13883 </code></pre>
13884 * A name attribute for the child template is not required if you have only one child
13885 * template or you want to refer to them by index.
13886  */
13887 Roo.MasterTemplate = function(){
13888     Roo.MasterTemplate.superclass.constructor.apply(this, arguments);
13889     this.originalHtml = this.html;
13890     var st = {};
13891     var m, re = this.subTemplateRe;
13892     re.lastIndex = 0;
13893     var subIndex = 0;
13894     while(m = re.exec(this.html)){
13895         var name = m[1], content = m[2];
13896         st[subIndex] = {
13897             name: name,
13898             index: subIndex,
13899             buffer: [],
13900             tpl : new Roo.Template(content)
13901         };
13902         if(name){
13903             st[name] = st[subIndex];
13904         }
13905         st[subIndex].tpl.compile();
13906         st[subIndex].tpl.call = this.call.createDelegate(this);
13907         subIndex++;
13908     }
13909     this.subCount = subIndex;
13910     this.subs = st;
13911 };
13912 Roo.extend(Roo.MasterTemplate, Roo.Template, {
13913     /**
13914     * The regular expression used to match sub templates
13915     * @type RegExp
13916     * @property
13917     */
13918     subTemplateRe : /<tpl(?:\sname="([\w-]+)")?>((?:.|\n)*?)<\/tpl>/gi,
13919
13920     /**
13921      * Applies the passed values to a child template.
13922      * @param {String/Number} name (optional) The name or index of the child template
13923      * @param {Array/Object} values The values to be applied to the template
13924      * @return {MasterTemplate} this
13925      */
13926      add : function(name, values){
13927         if(arguments.length == 1){
13928             values = arguments[0];
13929             name = 0;
13930         }
13931         var s = this.subs[name];
13932         s.buffer[s.buffer.length] = s.tpl.apply(values);
13933         return this;
13934     },
13935
13936     /**
13937      * Applies all the passed values to a child template.
13938      * @param {String/Number} name (optional) The name or index of the child template
13939      * @param {Array} values The values to be applied to the template, this should be an array of objects.
13940      * @param {Boolean} reset (optional) True to reset the template first
13941      * @return {MasterTemplate} this
13942      */
13943     fill : function(name, values, reset){
13944         var a = arguments;
13945         if(a.length == 1 || (a.length == 2 && typeof a[1] == "boolean")){
13946             values = a[0];
13947             name = 0;
13948             reset = a[1];
13949         }
13950         if(reset){
13951             this.reset();
13952         }
13953         for(var i = 0, len = values.length; i < len; i++){
13954             this.add(name, values[i]);
13955         }
13956         return this;
13957     },
13958
13959     /**
13960      * Resets the template for reuse
13961      * @return {MasterTemplate} this
13962      */
13963      reset : function(){
13964         var s = this.subs;
13965         for(var i = 0; i < this.subCount; i++){
13966             s[i].buffer = [];
13967         }
13968         return this;
13969     },
13970
13971     applyTemplate : function(values){
13972         var s = this.subs;
13973         var replaceIndex = -1;
13974         this.html = this.originalHtml.replace(this.subTemplateRe, function(m, name){
13975             return s[++replaceIndex].buffer.join("");
13976         });
13977         return Roo.MasterTemplate.superclass.applyTemplate.call(this, values);
13978     },
13979
13980     apply : function(){
13981         return this.applyTemplate.apply(this, arguments);
13982     },
13983
13984     compile : function(){return this;}
13985 });
13986
13987 /**
13988  * Alias for fill().
13989  * @method
13990  */
13991 Roo.MasterTemplate.prototype.addAll = Roo.MasterTemplate.prototype.fill;
13992  /**
13993  * Creates a template from the passed element's value (display:none textarea, preferred) or innerHTML. e.g.
13994  * var tpl = Roo.MasterTemplate.from('element-id');
13995  * @param {String/HTMLElement} el
13996  * @param {Object} config
13997  * @static
13998  */
13999 Roo.MasterTemplate.from = function(el, config){
14000     el = Roo.getDom(el);
14001     return new Roo.MasterTemplate(el.value || el.innerHTML, config || '');
14002 };/*
14003  * Based on:
14004  * Ext JS Library 1.1.1
14005  * Copyright(c) 2006-2007, Ext JS, LLC.
14006  *
14007  * Originally Released Under LGPL - original licence link has changed is not relivant.
14008  *
14009  * Fork - LGPL
14010  * <script type="text/javascript">
14011  */
14012
14013  
14014 /**
14015  * @class Roo.util.CSS
14016  * Utility class for manipulating CSS rules
14017  * @singleton
14018  */
14019 Roo.util.CSS = function(){
14020         var rules = null;
14021         var doc = document;
14022
14023     var camelRe = /(-[a-z])/gi;
14024     var camelFn = function(m, a){ return a.charAt(1).toUpperCase(); };
14025
14026    return {
14027    /**
14028     * Very simple dynamic creation of stylesheets from a text blob of rules.  The text will wrapped in a style
14029     * tag and appended to the HEAD of the document.
14030     * @param {String|Object} cssText The text containing the css rules
14031     * @param {String} id An id to add to the stylesheet for later removal
14032     * @return {StyleSheet}
14033     */
14034     createStyleSheet : function(cssText, id){
14035         var ss;
14036         var head = doc.getElementsByTagName("head")[0];
14037         var nrules = doc.createElement("style");
14038         nrules.setAttribute("type", "text/css");
14039         if(id){
14040             nrules.setAttribute("id", id);
14041         }
14042         if (typeof(cssText) != 'string') {
14043             // support object maps..
14044             // not sure if this a good idea.. 
14045             // perhaps it should be merged with the general css handling
14046             // and handle js style props.
14047             var cssTextNew = [];
14048             for(var n in cssText) {
14049                 var citems = [];
14050                 for(var k in cssText[n]) {
14051                     citems.push( k + ' : ' +cssText[n][k] + ';' );
14052                 }
14053                 cssTextNew.push( n + ' { ' + citems.join(' ') + '} ');
14054                 
14055             }
14056             cssText = cssTextNew.join("\n");
14057             
14058         }
14059        
14060        
14061        if(Roo.isIE){
14062            head.appendChild(nrules);
14063            ss = nrules.styleSheet;
14064            ss.cssText = cssText;
14065        }else{
14066            try{
14067                 nrules.appendChild(doc.createTextNode(cssText));
14068            }catch(e){
14069                nrules.cssText = cssText; 
14070            }
14071            head.appendChild(nrules);
14072            ss = nrules.styleSheet ? nrules.styleSheet : (nrules.sheet || doc.styleSheets[doc.styleSheets.length-1]);
14073        }
14074        this.cacheStyleSheet(ss);
14075        return ss;
14076    },
14077
14078    /**
14079     * Removes a style or link tag by id
14080     * @param {String} id The id of the tag
14081     */
14082    removeStyleSheet : function(id){
14083        var existing = doc.getElementById(id);
14084        if(existing){
14085            existing.parentNode.removeChild(existing);
14086        }
14087    },
14088
14089    /**
14090     * Dynamically swaps an existing stylesheet reference for a new one
14091     * @param {String} id The id of an existing link tag to remove
14092     * @param {String} url The href of the new stylesheet to include
14093     */
14094    swapStyleSheet : function(id, url){
14095        this.removeStyleSheet(id);
14096        var ss = doc.createElement("link");
14097        ss.setAttribute("rel", "stylesheet");
14098        ss.setAttribute("type", "text/css");
14099        ss.setAttribute("id", id);
14100        ss.setAttribute("href", url);
14101        doc.getElementsByTagName("head")[0].appendChild(ss);
14102    },
14103    
14104    /**
14105     * Refresh the rule cache if you have dynamically added stylesheets
14106     * @return {Object} An object (hash) of rules indexed by selector
14107     */
14108    refreshCache : function(){
14109        return this.getRules(true);
14110    },
14111
14112    // private
14113    cacheStyleSheet : function(stylesheet){
14114        if(!rules){
14115            rules = {};
14116        }
14117        try{// try catch for cross domain access issue
14118            var ssRules = stylesheet.cssRules || stylesheet.rules;
14119            for(var j = ssRules.length-1; j >= 0; --j){
14120                rules[ssRules[j].selectorText] = ssRules[j];
14121            }
14122        }catch(e){}
14123    },
14124    
14125    /**
14126     * Gets all css rules for the document
14127     * @param {Boolean} refreshCache true to refresh the internal cache
14128     * @return {Object} An object (hash) of rules indexed by selector
14129     */
14130    getRules : function(refreshCache){
14131                 if(rules == null || refreshCache){
14132                         rules = {};
14133                         var ds = doc.styleSheets;
14134                         for(var i =0, len = ds.length; i < len; i++){
14135                             try{
14136                         this.cacheStyleSheet(ds[i]);
14137                     }catch(e){} 
14138                 }
14139                 }
14140                 return rules;
14141         },
14142         
14143         /**
14144     * Gets an an individual CSS rule by selector(s)
14145     * @param {String/Array} selector The CSS selector or an array of selectors to try. The first selector that is found is returned.
14146     * @param {Boolean} refreshCache true to refresh the internal cache if you have recently updated any rules or added styles dynamically
14147     * @return {CSSRule} The CSS rule or null if one is not found
14148     */
14149    getRule : function(selector, refreshCache){
14150                 var rs = this.getRules(refreshCache);
14151                 if(!(selector instanceof Array)){
14152                     return rs[selector];
14153                 }
14154                 for(var i = 0; i < selector.length; i++){
14155                         if(rs[selector[i]]){
14156                                 return rs[selector[i]];
14157                         }
14158                 }
14159                 return null;
14160         },
14161         
14162         
14163         /**
14164     * Updates a rule property
14165     * @param {String/Array} selector If it's an array it tries each selector until it finds one. Stops immediately once one is found.
14166     * @param {String} property The css property
14167     * @param {String} value The new value for the property
14168     * @return {Boolean} true If a rule was found and updated
14169     */
14170    updateRule : function(selector, property, value){
14171                 if(!(selector instanceof Array)){
14172                         var rule = this.getRule(selector);
14173                         if(rule){
14174                                 rule.style[property.replace(camelRe, camelFn)] = value;
14175                                 return true;
14176                         }
14177                 }else{
14178                         for(var i = 0; i < selector.length; i++){
14179                                 if(this.updateRule(selector[i], property, value)){
14180                                         return true;
14181                                 }
14182                         }
14183                 }
14184                 return false;
14185         }
14186    };   
14187 }();/*
14188  * Based on:
14189  * Ext JS Library 1.1.1
14190  * Copyright(c) 2006-2007, Ext JS, LLC.
14191  *
14192  * Originally Released Under LGPL - original licence link has changed is not relivant.
14193  *
14194  * Fork - LGPL
14195  * <script type="text/javascript">
14196  */
14197
14198  
14199
14200 /**
14201  * @class Roo.util.ClickRepeater
14202  * @extends Roo.util.Observable
14203  * 
14204  * A wrapper class which can be applied to any element. Fires a "click" event while the
14205  * mouse is pressed. The interval between firings may be specified in the config but
14206  * defaults to 10 milliseconds.
14207  * 
14208  * Optionally, a CSS class may be applied to the element during the time it is pressed.
14209  * 
14210  * @cfg {String/HTMLElement/Element} el The element to act as a button.
14211  * @cfg {Number} delay The initial delay before the repeating event begins firing.
14212  * Similar to an autorepeat key delay.
14213  * @cfg {Number} interval The interval between firings of the "click" event. Default 10 ms.
14214  * @cfg {String} pressClass A CSS class name to be applied to the element while pressed.
14215  * @cfg {Boolean} accelerate True if autorepeating should start slowly and accelerate.
14216  *           "interval" and "delay" are ignored. "immediate" is honored.
14217  * @cfg {Boolean} preventDefault True to prevent the default click event
14218  * @cfg {Boolean} stopDefault True to stop the default click event
14219  * 
14220  * @history
14221  *     2007-02-02 jvs Original code contributed by Nige "Animal" White
14222  *     2007-02-02 jvs Renamed to ClickRepeater
14223  *   2007-02-03 jvs Modifications for FF Mac and Safari 
14224  *
14225  *  @constructor
14226  * @param {String/HTMLElement/Element} el The element to listen on
14227  * @param {Object} config
14228  **/
14229 Roo.util.ClickRepeater = function(el, config)
14230 {
14231     this.el = Roo.get(el);
14232     this.el.unselectable();
14233
14234     Roo.apply(this, config);
14235
14236     this.addEvents({
14237     /**
14238      * @event mousedown
14239      * Fires when the mouse button is depressed.
14240      * @param {Roo.util.ClickRepeater} this
14241      */
14242         "mousedown" : true,
14243     /**
14244      * @event click
14245      * Fires on a specified interval during the time the element is pressed.
14246      * @param {Roo.util.ClickRepeater} this
14247      */
14248         "click" : true,
14249     /**
14250      * @event mouseup
14251      * Fires when the mouse key is released.
14252      * @param {Roo.util.ClickRepeater} this
14253      */
14254         "mouseup" : true
14255     });
14256
14257     this.el.on("mousedown", this.handleMouseDown, this);
14258     if(this.preventDefault || this.stopDefault){
14259         this.el.on("click", function(e){
14260             if(this.preventDefault){
14261                 e.preventDefault();
14262             }
14263             if(this.stopDefault){
14264                 e.stopEvent();
14265             }
14266         }, this);
14267     }
14268
14269     // allow inline handler
14270     if(this.handler){
14271         this.on("click", this.handler,  this.scope || this);
14272     }
14273
14274     Roo.util.ClickRepeater.superclass.constructor.call(this);
14275 };
14276
14277 Roo.extend(Roo.util.ClickRepeater, Roo.util.Observable, {
14278     interval : 20,
14279     delay: 250,
14280     preventDefault : true,
14281     stopDefault : false,
14282     timer : 0,
14283
14284     // private
14285     handleMouseDown : function(){
14286         clearTimeout(this.timer);
14287         this.el.blur();
14288         if(this.pressClass){
14289             this.el.addClass(this.pressClass);
14290         }
14291         this.mousedownTime = new Date();
14292
14293         Roo.get(document).on("mouseup", this.handleMouseUp, this);
14294         this.el.on("mouseout", this.handleMouseOut, this);
14295
14296         this.fireEvent("mousedown", this);
14297         this.fireEvent("click", this);
14298         
14299         this.timer = this.click.defer(this.delay || this.interval, this);
14300     },
14301
14302     // private
14303     click : function(){
14304         this.fireEvent("click", this);
14305         this.timer = this.click.defer(this.getInterval(), this);
14306     },
14307
14308     // private
14309     getInterval: function(){
14310         if(!this.accelerate){
14311             return this.interval;
14312         }
14313         var pressTime = this.mousedownTime.getElapsed();
14314         if(pressTime < 500){
14315             return 400;
14316         }else if(pressTime < 1700){
14317             return 320;
14318         }else if(pressTime < 2600){
14319             return 250;
14320         }else if(pressTime < 3500){
14321             return 180;
14322         }else if(pressTime < 4400){
14323             return 140;
14324         }else if(pressTime < 5300){
14325             return 80;
14326         }else if(pressTime < 6200){
14327             return 50;
14328         }else{
14329             return 10;
14330         }
14331     },
14332
14333     // private
14334     handleMouseOut : function(){
14335         clearTimeout(this.timer);
14336         if(this.pressClass){
14337             this.el.removeClass(this.pressClass);
14338         }
14339         this.el.on("mouseover", this.handleMouseReturn, this);
14340     },
14341
14342     // private
14343     handleMouseReturn : function(){
14344         this.el.un("mouseover", this.handleMouseReturn);
14345         if(this.pressClass){
14346             this.el.addClass(this.pressClass);
14347         }
14348         this.click();
14349     },
14350
14351     // private
14352     handleMouseUp : function(){
14353         clearTimeout(this.timer);
14354         this.el.un("mouseover", this.handleMouseReturn);
14355         this.el.un("mouseout", this.handleMouseOut);
14356         Roo.get(document).un("mouseup", this.handleMouseUp);
14357         this.el.removeClass(this.pressClass);
14358         this.fireEvent("mouseup", this);
14359     }
14360 });/*
14361  * Based on:
14362  * Ext JS Library 1.1.1
14363  * Copyright(c) 2006-2007, Ext JS, LLC.
14364  *
14365  * Originally Released Under LGPL - original licence link has changed is not relivant.
14366  *
14367  * Fork - LGPL
14368  * <script type="text/javascript">
14369  */
14370
14371  
14372 /**
14373  * @class Roo.KeyNav
14374  * <p>Provides a convenient wrapper for normalized keyboard navigation.  KeyNav allows you to bind
14375  * navigation keys to function calls that will get called when the keys are pressed, providing an easy
14376  * way to implement custom navigation schemes for any UI component.</p>
14377  * <p>The following are all of the possible keys that can be implemented: enter, left, right, up, down, tab, esc,
14378  * pageUp, pageDown, del, home, end.  Usage:</p>
14379  <pre><code>
14380 var nav = new Roo.KeyNav("my-element", {
14381     "left" : function(e){
14382         this.moveLeft(e.ctrlKey);
14383     },
14384     "right" : function(e){
14385         this.moveRight(e.ctrlKey);
14386     },
14387     "enter" : function(e){
14388         this.save();
14389     },
14390     scope : this
14391 });
14392 </code></pre>
14393  * @constructor
14394  * @param {String/HTMLElement/Roo.Element} el The element to bind to
14395  * @param {Object} config The config
14396  */
14397 Roo.KeyNav = function(el, config){
14398     this.el = Roo.get(el);
14399     Roo.apply(this, config);
14400     if(!this.disabled){
14401         this.disabled = true;
14402         this.enable();
14403     }
14404 };
14405
14406 Roo.KeyNav.prototype = {
14407     /**
14408      * @cfg {Boolean} disabled
14409      * True to disable this KeyNav instance (defaults to false)
14410      */
14411     disabled : false,
14412     /**
14413      * @cfg {String} defaultEventAction
14414      * The method to call on the {@link Roo.EventObject} after this KeyNav intercepts a key.  Valid values are
14415      * {@link Roo.EventObject#stopEvent}, {@link Roo.EventObject#preventDefault} and
14416      * {@link Roo.EventObject#stopPropagation} (defaults to 'stopEvent')
14417      */
14418     defaultEventAction: "stopEvent",
14419     /**
14420      * @cfg {Boolean} forceKeyDown
14421      * Handle the keydown event instead of keypress (defaults to false).  KeyNav automatically does this for IE since
14422      * IE does not propagate special keys on keypress, but setting this to true will force other browsers to also
14423      * handle keydown instead of keypress.
14424      */
14425     forceKeyDown : false,
14426
14427     // private
14428     prepareEvent : function(e){
14429         var k = e.getKey();
14430         var h = this.keyToHandler[k];
14431         //if(h && this[h]){
14432         //    e.stopPropagation();
14433         //}
14434         if(Roo.isSafari && h && k >= 37 && k <= 40){
14435             e.stopEvent();
14436         }
14437     },
14438
14439     // private
14440     relay : function(e){
14441         var k = e.getKey();
14442         var h = this.keyToHandler[k];
14443         if(h && this[h]){
14444             if(this.doRelay(e, this[h], h) !== true){
14445                 e[this.defaultEventAction]();
14446             }
14447         }
14448     },
14449
14450     // private
14451     doRelay : function(e, h, hname){
14452         return h.call(this.scope || this, e);
14453     },
14454
14455     // possible handlers
14456     enter : false,
14457     left : false,
14458     right : false,
14459     up : false,
14460     down : false,
14461     tab : false,
14462     esc : false,
14463     pageUp : false,
14464     pageDown : false,
14465     del : false,
14466     home : false,
14467     end : false,
14468
14469     // quick lookup hash
14470     keyToHandler : {
14471         37 : "left",
14472         39 : "right",
14473         38 : "up",
14474         40 : "down",
14475         33 : "pageUp",
14476         34 : "pageDown",
14477         46 : "del",
14478         36 : "home",
14479         35 : "end",
14480         13 : "enter",
14481         27 : "esc",
14482         9  : "tab"
14483     },
14484
14485         /**
14486          * Enable this KeyNav
14487          */
14488         enable: function(){
14489                 if(this.disabled){
14490             // ie won't do special keys on keypress, no one else will repeat keys with keydown
14491             // the EventObject will normalize Safari automatically
14492             if(this.forceKeyDown || Roo.isIE || Roo.isAir){
14493                 this.el.on("keydown", this.relay,  this);
14494             }else{
14495                 this.el.on("keydown", this.prepareEvent,  this);
14496                 this.el.on("keypress", this.relay,  this);
14497             }
14498                     this.disabled = false;
14499                 }
14500         },
14501
14502         /**
14503          * Disable this KeyNav
14504          */
14505         disable: function(){
14506                 if(!this.disabled){
14507                     if(this.forceKeyDown || Roo.isIE || Roo.isAir){
14508                 this.el.un("keydown", this.relay);
14509             }else{
14510                 this.el.un("keydown", this.prepareEvent);
14511                 this.el.un("keypress", this.relay);
14512             }
14513                     this.disabled = true;
14514                 }
14515         }
14516 };/*
14517  * Based on:
14518  * Ext JS Library 1.1.1
14519  * Copyright(c) 2006-2007, Ext JS, LLC.
14520  *
14521  * Originally Released Under LGPL - original licence link has changed is not relivant.
14522  *
14523  * Fork - LGPL
14524  * <script type="text/javascript">
14525  */
14526
14527  
14528 /**
14529  * @class Roo.KeyMap
14530  * Handles mapping keys to actions for an element. One key map can be used for multiple actions.
14531  * The constructor accepts the same config object as defined by {@link #addBinding}.
14532  * If you bind a callback function to a KeyMap, anytime the KeyMap handles an expected key
14533  * combination it will call the function with this signature (if the match is a multi-key
14534  * combination the callback will still be called only once): (String key, Roo.EventObject e)
14535  * A KeyMap can also handle a string representation of keys.<br />
14536  * Usage:
14537  <pre><code>
14538 // map one key by key code
14539 var map = new Roo.KeyMap("my-element", {
14540     key: 13, // or Roo.EventObject.ENTER
14541     fn: myHandler,
14542     scope: myObject
14543 });
14544
14545 // map multiple keys to one action by string
14546 var map = new Roo.KeyMap("my-element", {
14547     key: "a\r\n\t",
14548     fn: myHandler,
14549     scope: myObject
14550 });
14551
14552 // map multiple keys to multiple actions by strings and array of codes
14553 var map = new Roo.KeyMap("my-element", [
14554     {
14555         key: [10,13],
14556         fn: function(){ alert("Return was pressed"); }
14557     }, {
14558         key: "abc",
14559         fn: function(){ alert('a, b or c was pressed'); }
14560     }, {
14561         key: "\t",
14562         ctrl:true,
14563         shift:true,
14564         fn: function(){ alert('Control + shift + tab was pressed.'); }
14565     }
14566 ]);
14567 </code></pre>
14568  * <b>Note: A KeyMap starts enabled</b>
14569  * @constructor
14570  * @param {String/HTMLElement/Roo.Element} el The element to bind to
14571  * @param {Object} config The config (see {@link #addBinding})
14572  * @param {String} eventName (optional) The event to bind to (defaults to "keydown")
14573  */
14574 Roo.KeyMap = function(el, config, eventName){
14575     this.el  = Roo.get(el);
14576     this.eventName = eventName || "keydown";
14577     this.bindings = [];
14578     if(config){
14579         this.addBinding(config);
14580     }
14581     this.enable();
14582 };
14583
14584 Roo.KeyMap.prototype = {
14585     /**
14586      * True to stop the event from bubbling and prevent the default browser action if the
14587      * key was handled by the KeyMap (defaults to false)
14588      * @type Boolean
14589      */
14590     stopEvent : false,
14591
14592     /**
14593      * Add a new binding to this KeyMap. The following config object properties are supported:
14594      * <pre>
14595 Property    Type             Description
14596 ----------  ---------------  ----------------------------------------------------------------------
14597 key         String/Array     A single keycode or an array of keycodes to handle
14598 shift       Boolean          True to handle key only when shift is pressed (defaults to false)
14599 ctrl        Boolean          True to handle key only when ctrl is pressed (defaults to false)
14600 alt         Boolean          True to handle key only when alt is pressed (defaults to false)
14601 fn          Function         The function to call when KeyMap finds the expected key combination
14602 scope       Object           The scope of the callback function
14603 </pre>
14604      *
14605      * Usage:
14606      * <pre><code>
14607 // Create a KeyMap
14608 var map = new Roo.KeyMap(document, {
14609     key: Roo.EventObject.ENTER,
14610     fn: handleKey,
14611     scope: this
14612 });
14613
14614 //Add a new binding to the existing KeyMap later
14615 map.addBinding({
14616     key: 'abc',
14617     shift: true,
14618     fn: handleKey,
14619     scope: this
14620 });
14621 </code></pre>
14622      * @param {Object/Array} config A single KeyMap config or an array of configs
14623      */
14624         addBinding : function(config){
14625         if(config instanceof Array){
14626             for(var i = 0, len = config.length; i < len; i++){
14627                 this.addBinding(config[i]);
14628             }
14629             return;
14630         }
14631         var keyCode = config.key,
14632             shift = config.shift, 
14633             ctrl = config.ctrl, 
14634             alt = config.alt,
14635             fn = config.fn,
14636             scope = config.scope;
14637         if(typeof keyCode == "string"){
14638             var ks = [];
14639             var keyString = keyCode.toUpperCase();
14640             for(var j = 0, len = keyString.length; j < len; j++){
14641                 ks.push(keyString.charCodeAt(j));
14642             }
14643             keyCode = ks;
14644         }
14645         var keyArray = keyCode instanceof Array;
14646         var handler = function(e){
14647             if((!shift || e.shiftKey) && (!ctrl || e.ctrlKey) &&  (!alt || e.altKey)){
14648                 var k = e.getKey();
14649                 if(keyArray){
14650                     for(var i = 0, len = keyCode.length; i < len; i++){
14651                         if(keyCode[i] == k){
14652                           if(this.stopEvent){
14653                               e.stopEvent();
14654                           }
14655                           fn.call(scope || window, k, e);
14656                           return;
14657                         }
14658                     }
14659                 }else{
14660                     if(k == keyCode){
14661                         if(this.stopEvent){
14662                            e.stopEvent();
14663                         }
14664                         fn.call(scope || window, k, e);
14665                     }
14666                 }
14667             }
14668         };
14669         this.bindings.push(handler);  
14670         },
14671
14672     /**
14673      * Shorthand for adding a single key listener
14674      * @param {Number/Array/Object} key Either the numeric key code, array of key codes or an object with the
14675      * following options:
14676      * {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
14677      * @param {Function} fn The function to call
14678      * @param {Object} scope (optional) The scope of the function
14679      */
14680     on : function(key, fn, scope){
14681         var keyCode, shift, ctrl, alt;
14682         if(typeof key == "object" && !(key instanceof Array)){
14683             keyCode = key.key;
14684             shift = key.shift;
14685             ctrl = key.ctrl;
14686             alt = key.alt;
14687         }else{
14688             keyCode = key;
14689         }
14690         this.addBinding({
14691             key: keyCode,
14692             shift: shift,
14693             ctrl: ctrl,
14694             alt: alt,
14695             fn: fn,
14696             scope: scope
14697         })
14698     },
14699
14700     // private
14701     handleKeyDown : function(e){
14702             if(this.enabled){ //just in case
14703             var b = this.bindings;
14704             for(var i = 0, len = b.length; i < len; i++){
14705                 b[i].call(this, e);
14706             }
14707             }
14708         },
14709         
14710         /**
14711          * Returns true if this KeyMap is enabled
14712          * @return {Boolean} 
14713          */
14714         isEnabled : function(){
14715             return this.enabled;  
14716         },
14717         
14718         /**
14719          * Enables this KeyMap
14720          */
14721         enable: function(){
14722                 if(!this.enabled){
14723                     this.el.on(this.eventName, this.handleKeyDown, this);
14724                     this.enabled = true;
14725                 }
14726         },
14727
14728         /**
14729          * Disable this KeyMap
14730          */
14731         disable: function(){
14732                 if(this.enabled){
14733                     this.el.removeListener(this.eventName, this.handleKeyDown, this);
14734                     this.enabled = false;
14735                 }
14736         }
14737 };/*
14738  * Based on:
14739  * Ext JS Library 1.1.1
14740  * Copyright(c) 2006-2007, Ext JS, LLC.
14741  *
14742  * Originally Released Under LGPL - original licence link has changed is not relivant.
14743  *
14744  * Fork - LGPL
14745  * <script type="text/javascript">
14746  */
14747
14748  
14749 /**
14750  * @class Roo.util.TextMetrics
14751  * Provides precise pixel measurements for blocks of text so that you can determine exactly how high and
14752  * wide, in pixels, a given block of text will be.
14753  * @singleton
14754  */
14755 Roo.util.TextMetrics = function(){
14756     var shared;
14757     return {
14758         /**
14759          * Measures the size of the specified text
14760          * @param {String/HTMLElement} el The element, dom node or id from which to copy existing CSS styles
14761          * that can affect the size of the rendered text
14762          * @param {String} text The text to measure
14763          * @param {Number} fixedWidth (optional) If the text will be multiline, you have to set a fixed width
14764          * in order to accurately measure the text height
14765          * @return {Object} An object containing the text's size {width: (width), height: (height)}
14766          */
14767         measure : function(el, text, fixedWidth){
14768             if(!shared){
14769                 shared = Roo.util.TextMetrics.Instance(el, fixedWidth);
14770             }
14771             shared.bind(el);
14772             shared.setFixedWidth(fixedWidth || 'auto');
14773             return shared.getSize(text);
14774         },
14775
14776         /**
14777          * Return a unique TextMetrics instance that can be bound directly to an element and reused.  This reduces
14778          * the overhead of multiple calls to initialize the style properties on each measurement.
14779          * @param {String/HTMLElement} el The element, dom node or id that the instance will be bound to
14780          * @param {Number} fixedWidth (optional) If the text will be multiline, you have to set a fixed width
14781          * in order to accurately measure the text height
14782          * @return {Roo.util.TextMetrics.Instance} instance The new instance
14783          */
14784         createInstance : function(el, fixedWidth){
14785             return Roo.util.TextMetrics.Instance(el, fixedWidth);
14786         }
14787     };
14788 }();
14789
14790  
14791
14792 Roo.util.TextMetrics.Instance = function(bindTo, fixedWidth){
14793     var ml = new Roo.Element(document.createElement('div'));
14794     document.body.appendChild(ml.dom);
14795     ml.position('absolute');
14796     ml.setLeftTop(-1000, -1000);
14797     ml.hide();
14798
14799     if(fixedWidth){
14800         ml.setWidth(fixedWidth);
14801     }
14802      
14803     var instance = {
14804         /**
14805          * Returns the size of the specified text based on the internal element's style and width properties
14806          * @memberOf Roo.util.TextMetrics.Instance#
14807          * @param {String} text The text to measure
14808          * @return {Object} An object containing the text's size {width: (width), height: (height)}
14809          */
14810         getSize : function(text){
14811             ml.update(text);
14812             var s = ml.getSize();
14813             ml.update('');
14814             return s;
14815         },
14816
14817         /**
14818          * Binds this TextMetrics instance to an element from which to copy existing CSS styles
14819          * that can affect the size of the rendered text
14820          * @memberOf Roo.util.TextMetrics.Instance#
14821          * @param {String/HTMLElement} el The element, dom node or id
14822          */
14823         bind : function(el){
14824             ml.setStyle(
14825                 Roo.fly(el).getStyles('font-size','font-style', 'font-weight', 'font-family','line-height')
14826             );
14827         },
14828
14829         /**
14830          * Sets a fixed width on the internal measurement element.  If the text will be multiline, you have
14831          * to set a fixed width in order to accurately measure the text height.
14832          * @memberOf Roo.util.TextMetrics.Instance#
14833          * @param {Number} width The width to set on the element
14834          */
14835         setFixedWidth : function(width){
14836             ml.setWidth(width);
14837         },
14838
14839         /**
14840          * Returns the measured width of the specified text
14841          * @memberOf Roo.util.TextMetrics.Instance#
14842          * @param {String} text The text to measure
14843          * @return {Number} width The width in pixels
14844          */
14845         getWidth : function(text){
14846             ml.dom.style.width = 'auto';
14847             return this.getSize(text).width;
14848         },
14849
14850         /**
14851          * Returns the measured height of the specified text.  For multiline text, be sure to call
14852          * {@link #setFixedWidth} if necessary.
14853          * @memberOf Roo.util.TextMetrics.Instance#
14854          * @param {String} text The text to measure
14855          * @return {Number} height The height in pixels
14856          */
14857         getHeight : function(text){
14858             return this.getSize(text).height;
14859         }
14860     };
14861
14862     instance.bind(bindTo);
14863
14864     return instance;
14865 };
14866
14867 // backwards compat
14868 Roo.Element.measureText = Roo.util.TextMetrics.measure;/*
14869  * Based on:
14870  * Ext JS Library 1.1.1
14871  * Copyright(c) 2006-2007, Ext JS, LLC.
14872  *
14873  * Originally Released Under LGPL - original licence link has changed is not relivant.
14874  *
14875  * Fork - LGPL
14876  * <script type="text/javascript">
14877  */
14878
14879 /**
14880  * @class Roo.state.Provider
14881  * Abstract base class for state provider implementations. This class provides methods
14882  * for encoding and decoding <b>typed</b> variables including dates and defines the 
14883  * Provider interface.
14884  */
14885 Roo.state.Provider = function(){
14886     /**
14887      * @event statechange
14888      * Fires when a state change occurs.
14889      * @param {Provider} this This state provider
14890      * @param {String} key The state key which was changed
14891      * @param {String} value The encoded value for the state
14892      */
14893     this.addEvents({
14894         "statechange": true
14895     });
14896     this.state = {};
14897     Roo.state.Provider.superclass.constructor.call(this);
14898 };
14899 Roo.extend(Roo.state.Provider, Roo.util.Observable, {
14900     /**
14901      * Returns the current value for a key
14902      * @param {String} name The key name
14903      * @param {Mixed} defaultValue A default value to return if the key's value is not found
14904      * @return {Mixed} The state data
14905      */
14906     get : function(name, defaultValue){
14907         return typeof this.state[name] == "undefined" ?
14908             defaultValue : this.state[name];
14909     },
14910     
14911     /**
14912      * Clears a value from the state
14913      * @param {String} name The key name
14914      */
14915     clear : function(name){
14916         delete this.state[name];
14917         this.fireEvent("statechange", this, name, null);
14918     },
14919     
14920     /**
14921      * Sets the value for a key
14922      * @param {String} name The key name
14923      * @param {Mixed} value The value to set
14924      */
14925     set : function(name, value){
14926         this.state[name] = value;
14927         this.fireEvent("statechange", this, name, value);
14928     },
14929     
14930     /**
14931      * Decodes a string previously encoded with {@link #encodeValue}.
14932      * @param {String} value The value to decode
14933      * @return {Mixed} The decoded value
14934      */
14935     decodeValue : function(cookie){
14936         var re = /^(a|n|d|b|s|o)\:(.*)$/;
14937         var matches = re.exec(unescape(cookie));
14938         if(!matches || !matches[1]) {
14939             return; // non state cookie
14940         }
14941         var type = matches[1];
14942         var v = matches[2];
14943         switch(type){
14944             case "n":
14945                 return parseFloat(v);
14946             case "d":
14947                 return new Date(Date.parse(v));
14948             case "b":
14949                 return (v == "1");
14950             case "a":
14951                 var all = [];
14952                 var values = v.split("^");
14953                 for(var i = 0, len = values.length; i < len; i++){
14954                     all.push(this.decodeValue(values[i]));
14955                 }
14956                 return all;
14957            case "o":
14958                 var all = {};
14959                 var values = v.split("^");
14960                 for(var i = 0, len = values.length; i < len; i++){
14961                     var kv = values[i].split("=");
14962                     all[kv[0]] = this.decodeValue(kv[1]);
14963                 }
14964                 return all;
14965            default:
14966                 return v;
14967         }
14968     },
14969     
14970     /**
14971      * Encodes a value including type information.  Decode with {@link #decodeValue}.
14972      * @param {Mixed} value The value to encode
14973      * @return {String} The encoded value
14974      */
14975     encodeValue : function(v){
14976         var enc;
14977         if(typeof v == "number"){
14978             enc = "n:" + v;
14979         }else if(typeof v == "boolean"){
14980             enc = "b:" + (v ? "1" : "0");
14981         }else if(v instanceof Date){
14982             enc = "d:" + v.toGMTString();
14983         }else if(v instanceof Array){
14984             var flat = "";
14985             for(var i = 0, len = v.length; i < len; i++){
14986                 flat += this.encodeValue(v[i]);
14987                 if(i != len-1) {
14988                     flat += "^";
14989                 }
14990             }
14991             enc = "a:" + flat;
14992         }else if(typeof v == "object"){
14993             var flat = "";
14994             for(var key in v){
14995                 if(typeof v[key] != "function"){
14996                     flat += key + "=" + this.encodeValue(v[key]) + "^";
14997                 }
14998             }
14999             enc = "o:" + flat.substring(0, flat.length-1);
15000         }else{
15001             enc = "s:" + v;
15002         }
15003         return escape(enc);        
15004     }
15005 });
15006
15007 /*
15008  * Based on:
15009  * Ext JS Library 1.1.1
15010  * Copyright(c) 2006-2007, Ext JS, LLC.
15011  *
15012  * Originally Released Under LGPL - original licence link has changed is not relivant.
15013  *
15014  * Fork - LGPL
15015  * <script type="text/javascript">
15016  */
15017 /**
15018  * @class Roo.state.Manager
15019  * This is the global state manager. By default all components that are "state aware" check this class
15020  * for state information if you don't pass them a custom state provider. In order for this class
15021  * to be useful, it must be initialized with a provider when your application initializes.
15022  <pre><code>
15023 // in your initialization function
15024 init : function(){
15025    Roo.state.Manager.setProvider(new Roo.state.CookieProvider());
15026    ...
15027    // supposed you have a {@link Roo.BorderLayout}
15028    var layout = new Roo.BorderLayout(...);
15029    layout.restoreState();
15030    // or a {Roo.BasicDialog}
15031    var dialog = new Roo.BasicDialog(...);
15032    dialog.restoreState();
15033  </code></pre>
15034  * @singleton
15035  */
15036 Roo.state.Manager = function(){
15037     var provider = new Roo.state.Provider();
15038     
15039     return {
15040         /**
15041          * Configures the default state provider for your application
15042          * @param {Provider} stateProvider The state provider to set
15043          */
15044         setProvider : function(stateProvider){
15045             provider = stateProvider;
15046         },
15047         
15048         /**
15049          * Returns the current value for a key
15050          * @param {String} name The key name
15051          * @param {Mixed} defaultValue The default value to return if the key lookup does not match
15052          * @return {Mixed} The state data
15053          */
15054         get : function(key, defaultValue){
15055             return provider.get(key, defaultValue);
15056         },
15057         
15058         /**
15059          * Sets the value for a key
15060          * @param {String} name The key name
15061          * @param {Mixed} value The state data
15062          */
15063          set : function(key, value){
15064             provider.set(key, value);
15065         },
15066         
15067         /**
15068          * Clears a value from the state
15069          * @param {String} name The key name
15070          */
15071         clear : function(key){
15072             provider.clear(key);
15073         },
15074         
15075         /**
15076          * Gets the currently configured state provider
15077          * @return {Provider} The state provider
15078          */
15079         getProvider : function(){
15080             return provider;
15081         }
15082     };
15083 }();
15084 /*
15085  * Based on:
15086  * Ext JS Library 1.1.1
15087  * Copyright(c) 2006-2007, Ext JS, LLC.
15088  *
15089  * Originally Released Under LGPL - original licence link has changed is not relivant.
15090  *
15091  * Fork - LGPL
15092  * <script type="text/javascript">
15093  */
15094 /**
15095  * @class Roo.state.CookieProvider
15096  * @extends Roo.state.Provider
15097  * The default Provider implementation which saves state via cookies.
15098  * <br />Usage:
15099  <pre><code>
15100    var cp = new Roo.state.CookieProvider({
15101        path: "/cgi-bin/",
15102        expires: new Date(new Date().getTime()+(1000*60*60*24*30)); //30 days
15103        domain: "roojs.com"
15104    })
15105    Roo.state.Manager.setProvider(cp);
15106  </code></pre>
15107  * @cfg {String} path The path for which the cookie is active (defaults to root '/' which makes it active for all pages in the site)
15108  * @cfg {Date} expires The cookie expiration date (defaults to 7 days from now)
15109  * @cfg {String} domain The domain to save the cookie for.  Note that you cannot specify a different domain than
15110  * your page is on, but you can specify a sub-domain, or simply the domain itself like 'roojs.com' to include
15111  * all sub-domains if you need to access cookies across different sub-domains (defaults to null which uses the same
15112  * domain the page is running on including the 'www' like 'www.roojs.com')
15113  * @cfg {Boolean} secure True if the site is using SSL (defaults to false)
15114  * @constructor
15115  * Create a new CookieProvider
15116  * @param {Object} config The configuration object
15117  */
15118 Roo.state.CookieProvider = function(config){
15119     Roo.state.CookieProvider.superclass.constructor.call(this);
15120     this.path = "/";
15121     this.expires = new Date(new Date().getTime()+(1000*60*60*24*7)); //7 days
15122     this.domain = null;
15123     this.secure = false;
15124     Roo.apply(this, config);
15125     this.state = this.readCookies();
15126 };
15127
15128 Roo.extend(Roo.state.CookieProvider, Roo.state.Provider, {
15129     // private
15130     set : function(name, value){
15131         if(typeof value == "undefined" || value === null){
15132             this.clear(name);
15133             return;
15134         }
15135         this.setCookie(name, value);
15136         Roo.state.CookieProvider.superclass.set.call(this, name, value);
15137     },
15138
15139     // private
15140     clear : function(name){
15141         this.clearCookie(name);
15142         Roo.state.CookieProvider.superclass.clear.call(this, name);
15143     },
15144
15145     // private
15146     readCookies : function(){
15147         var cookies = {};
15148         var c = document.cookie + ";";
15149         var re = /\s?(.*?)=(.*?);/g;
15150         var matches;
15151         while((matches = re.exec(c)) != null){
15152             var name = matches[1];
15153             var value = matches[2];
15154             if(name && name.substring(0,3) == "ys-"){
15155                 cookies[name.substr(3)] = this.decodeValue(value);
15156             }
15157         }
15158         return cookies;
15159     },
15160
15161     // private
15162     setCookie : function(name, value){
15163         document.cookie = "ys-"+ name + "=" + this.encodeValue(value) +
15164            ((this.expires == null) ? "" : ("; expires=" + this.expires.toGMTString())) +
15165            ((this.path == null) ? "" : ("; path=" + this.path)) +
15166            ((this.domain == null) ? "" : ("; domain=" + this.domain)) +
15167            ((this.secure == true) ? "; secure" : "");
15168     },
15169
15170     // private
15171     clearCookie : function(name){
15172         document.cookie = "ys-" + name + "=null; expires=Thu, 01-Jan-70 00:00:01 GMT" +
15173            ((this.path == null) ? "" : ("; path=" + this.path)) +
15174            ((this.domain == null) ? "" : ("; domain=" + this.domain)) +
15175            ((this.secure == true) ? "; secure" : "");
15176     }
15177 });/*
15178  * Based on:
15179  * Ext JS Library 1.1.1
15180  * Copyright(c) 2006-2007, Ext JS, LLC.
15181  *
15182  * Originally Released Under LGPL - original licence link has changed is not relivant.
15183  *
15184  * Fork - LGPL
15185  * <script type="text/javascript">
15186  */
15187  
15188
15189 /**
15190  * @class Roo.ComponentMgr
15191  * Provides a common registry of all components on a page so that they can be easily accessed by component id (see {@link Roo.getCmp}).
15192  * @singleton
15193  */
15194 Roo.ComponentMgr = function(){
15195     var all = new Roo.util.MixedCollection();
15196
15197     return {
15198         /**
15199          * Registers a component.
15200          * @param {Roo.Component} c The component
15201          */
15202         register : function(c){
15203             all.add(c);
15204         },
15205
15206         /**
15207          * Unregisters a component.
15208          * @param {Roo.Component} c The component
15209          */
15210         unregister : function(c){
15211             all.remove(c);
15212         },
15213
15214         /**
15215          * Returns a component by id
15216          * @param {String} id The component id
15217          */
15218         get : function(id){
15219             return all.get(id);
15220         },
15221
15222         /**
15223          * Registers a function that will be called when a specified component is added to ComponentMgr
15224          * @param {String} id The component id
15225          * @param {Funtction} fn The callback function
15226          * @param {Object} scope The scope of the callback
15227          */
15228         onAvailable : function(id, fn, scope){
15229             all.on("add", function(index, o){
15230                 if(o.id == id){
15231                     fn.call(scope || o, o);
15232                     all.un("add", fn, scope);
15233                 }
15234             });
15235         }
15236     };
15237 }();/*
15238  * Based on:
15239  * Ext JS Library 1.1.1
15240  * Copyright(c) 2006-2007, Ext JS, LLC.
15241  *
15242  * Originally Released Under LGPL - original licence link has changed is not relivant.
15243  *
15244  * Fork - LGPL
15245  * <script type="text/javascript">
15246  */
15247  
15248 /**
15249  * @class Roo.Component
15250  * @extends Roo.util.Observable
15251  * Base class for all major Roo components.  All subclasses of Component can automatically participate in the standard
15252  * Roo component lifecycle of creation, rendering and destruction.  They also have automatic support for basic hide/show
15253  * and enable/disable behavior.  Component allows any subclass to be lazy-rendered into any {@link Roo.Container} and
15254  * to be automatically registered with the {@link Roo.ComponentMgr} so that it can be referenced at any time via {@link Roo.getCmp}.
15255  * All visual components (widgets) that require rendering into a layout should subclass Component.
15256  * @constructor
15257  * @param {Roo.Element/String/Object} config The configuration options.  If an element is passed, it is set as the internal
15258  * 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
15259  * and is used as the component id.  Otherwise, it is assumed to be a standard config object and is applied to the component.
15260  */
15261 Roo.Component = function(config){
15262     config = config || {};
15263     if(config.tagName || config.dom || typeof config == "string"){ // element object
15264         config = {el: config, id: config.id || config};
15265     }
15266     this.initialConfig = config;
15267
15268     Roo.apply(this, config);
15269     this.addEvents({
15270         /**
15271          * @event disable
15272          * Fires after the component is disabled.
15273              * @param {Roo.Component} this
15274              */
15275         disable : true,
15276         /**
15277          * @event enable
15278          * Fires after the component is enabled.
15279              * @param {Roo.Component} this
15280              */
15281         enable : true,
15282         /**
15283          * @event beforeshow
15284          * Fires before the component is shown.  Return false to stop the show.
15285              * @param {Roo.Component} this
15286              */
15287         beforeshow : true,
15288         /**
15289          * @event show
15290          * Fires after the component is shown.
15291              * @param {Roo.Component} this
15292              */
15293         show : true,
15294         /**
15295          * @event beforehide
15296          * Fires before the component is hidden. Return false to stop the hide.
15297              * @param {Roo.Component} this
15298              */
15299         beforehide : true,
15300         /**
15301          * @event hide
15302          * Fires after the component is hidden.
15303              * @param {Roo.Component} this
15304              */
15305         hide : true,
15306         /**
15307          * @event beforerender
15308          * Fires before the component is rendered. Return false to stop the render.
15309              * @param {Roo.Component} this
15310              */
15311         beforerender : true,
15312         /**
15313          * @event render
15314          * Fires after the component is rendered.
15315              * @param {Roo.Component} this
15316              */
15317         render : true,
15318         /**
15319          * @event beforedestroy
15320          * Fires before the component is destroyed. Return false to stop the destroy.
15321              * @param {Roo.Component} this
15322              */
15323         beforedestroy : true,
15324         /**
15325          * @event destroy
15326          * Fires after the component is destroyed.
15327              * @param {Roo.Component} this
15328              */
15329         destroy : true
15330     });
15331     if(!this.id){
15332         this.id = "roo-comp-" + (++Roo.Component.AUTO_ID);
15333     }
15334     Roo.ComponentMgr.register(this);
15335     Roo.Component.superclass.constructor.call(this);
15336     this.initComponent();
15337     if(this.renderTo){ // not supported by all components yet. use at your own risk!
15338         this.render(this.renderTo);
15339         delete this.renderTo;
15340     }
15341 };
15342
15343 /** @private */
15344 Roo.Component.AUTO_ID = 1000;
15345
15346 Roo.extend(Roo.Component, Roo.util.Observable, {
15347     /**
15348      * @scope Roo.Component.prototype
15349      * @type {Boolean}
15350      * true if this component is hidden. Read-only.
15351      */
15352     hidden : false,
15353     /**
15354      * @type {Boolean}
15355      * true if this component is disabled. Read-only.
15356      */
15357     disabled : false,
15358     /**
15359      * @type {Boolean}
15360      * true if this component has been rendered. Read-only.
15361      */
15362     rendered : false,
15363     
15364     /** @cfg {String} disableClass
15365      * CSS class added to the component when it is disabled (defaults to "x-item-disabled").
15366      */
15367     disabledClass : "x-item-disabled",
15368         /** @cfg {Boolean} allowDomMove
15369          * Whether the component can move the Dom node when rendering (defaults to true).
15370          */
15371     allowDomMove : true,
15372     /** @cfg {String} hideMode (display|visibility)
15373      * How this component should hidden. Supported values are
15374      * "visibility" (css visibility), "offsets" (negative offset position) and
15375      * "display" (css display) - defaults to "display".
15376      */
15377     hideMode: 'display',
15378
15379     /** @private */
15380     ctype : "Roo.Component",
15381
15382     /**
15383      * @cfg {String} actionMode 
15384      * which property holds the element that used for  hide() / show() / disable() / enable()
15385      * default is 'el' 
15386      */
15387     actionMode : "el",
15388
15389     /** @private */
15390     getActionEl : function(){
15391         return this[this.actionMode];
15392     },
15393
15394     initComponent : Roo.emptyFn,
15395     /**
15396      * If this is a lazy rendering component, render it to its container element.
15397      * @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.
15398      */
15399     render : function(container, position){
15400         
15401         if(this.rendered){
15402             return this;
15403         }
15404         
15405         if(this.fireEvent("beforerender", this) === false){
15406             return false;
15407         }
15408         
15409         if(!container && this.el){
15410             this.el = Roo.get(this.el);
15411             container = this.el.dom.parentNode;
15412             this.allowDomMove = false;
15413         }
15414         this.container = Roo.get(container);
15415         this.rendered = true;
15416         if(position !== undefined){
15417             if(typeof position == 'number'){
15418                 position = this.container.dom.childNodes[position];
15419             }else{
15420                 position = Roo.getDom(position);
15421             }
15422         }
15423         this.onRender(this.container, position || null);
15424         if(this.cls){
15425             this.el.addClass(this.cls);
15426             delete this.cls;
15427         }
15428         if(this.style){
15429             this.el.applyStyles(this.style);
15430             delete this.style;
15431         }
15432         this.fireEvent("render", this);
15433         this.afterRender(this.container);
15434         if(this.hidden){
15435             this.hide();
15436         }
15437         if(this.disabled){
15438             this.disable();
15439         }
15440
15441         return this;
15442         
15443     },
15444
15445     /** @private */
15446     // default function is not really useful
15447     onRender : function(ct, position){
15448         if(this.el){
15449             this.el = Roo.get(this.el);
15450             if(this.allowDomMove !== false){
15451                 ct.dom.insertBefore(this.el.dom, position);
15452             }
15453         }
15454     },
15455
15456     /** @private */
15457     getAutoCreate : function(){
15458         var cfg = typeof this.autoCreate == "object" ?
15459                       this.autoCreate : Roo.apply({}, this.defaultAutoCreate);
15460         if(this.id && !cfg.id){
15461             cfg.id = this.id;
15462         }
15463         return cfg;
15464     },
15465
15466     /** @private */
15467     afterRender : Roo.emptyFn,
15468
15469     /**
15470      * Destroys this component by purging any event listeners, removing the component's element from the DOM,
15471      * removing the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}.
15472      */
15473     destroy : function(){
15474         if(this.fireEvent("beforedestroy", this) !== false){
15475             this.purgeListeners();
15476             this.beforeDestroy();
15477             if(this.rendered){
15478                 this.el.removeAllListeners();
15479                 this.el.remove();
15480                 if(this.actionMode == "container"){
15481                     this.container.remove();
15482                 }
15483             }
15484             this.onDestroy();
15485             Roo.ComponentMgr.unregister(this);
15486             this.fireEvent("destroy", this);
15487         }
15488     },
15489
15490         /** @private */
15491     beforeDestroy : function(){
15492
15493     },
15494
15495         /** @private */
15496         onDestroy : function(){
15497
15498     },
15499
15500     /**
15501      * Returns the underlying {@link Roo.Element}.
15502      * @return {Roo.Element} The element
15503      */
15504     getEl : function(){
15505         return this.el;
15506     },
15507
15508     /**
15509      * Returns the id of this component.
15510      * @return {String}
15511      */
15512     getId : function(){
15513         return this.id;
15514     },
15515
15516     /**
15517      * Try to focus this component.
15518      * @param {Boolean} selectText True to also select the text in this component (if applicable)
15519      * @return {Roo.Component} this
15520      */
15521     focus : function(selectText){
15522         if(this.rendered){
15523             this.el.focus();
15524             if(selectText === true){
15525                 this.el.dom.select();
15526             }
15527         }
15528         return this;
15529     },
15530
15531     /** @private */
15532     blur : function(){
15533         if(this.rendered){
15534             this.el.blur();
15535         }
15536         return this;
15537     },
15538
15539     /**
15540      * Disable this component.
15541      * @return {Roo.Component} this
15542      */
15543     disable : function(){
15544         if(this.rendered){
15545             this.onDisable();
15546         }
15547         this.disabled = true;
15548         this.fireEvent("disable", this);
15549         return this;
15550     },
15551
15552         // private
15553     onDisable : function(){
15554         this.getActionEl().addClass(this.disabledClass);
15555         this.el.dom.disabled = true;
15556     },
15557
15558     /**
15559      * Enable this component.
15560      * @return {Roo.Component} this
15561      */
15562     enable : function(){
15563         if(this.rendered){
15564             this.onEnable();
15565         }
15566         this.disabled = false;
15567         this.fireEvent("enable", this);
15568         return this;
15569     },
15570
15571         // private
15572     onEnable : function(){
15573         this.getActionEl().removeClass(this.disabledClass);
15574         this.el.dom.disabled = false;
15575     },
15576
15577     /**
15578      * Convenience function for setting disabled/enabled by boolean.
15579      * @param {Boolean} disabled
15580      */
15581     setDisabled : function(disabled){
15582         this[disabled ? "disable" : "enable"]();
15583     },
15584
15585     /**
15586      * Show this component.
15587      * @return {Roo.Component} this
15588      */
15589     show: function(){
15590         if(this.fireEvent("beforeshow", this) !== false){
15591             this.hidden = false;
15592             if(this.rendered){
15593                 this.onShow();
15594             }
15595             this.fireEvent("show", this);
15596         }
15597         return this;
15598     },
15599
15600     // private
15601     onShow : function(){
15602         var ae = this.getActionEl();
15603         if(this.hideMode == 'visibility'){
15604             ae.dom.style.visibility = "visible";
15605         }else if(this.hideMode == 'offsets'){
15606             ae.removeClass('x-hidden');
15607         }else{
15608             ae.dom.style.display = "";
15609         }
15610     },
15611
15612     /**
15613      * Hide this component.
15614      * @return {Roo.Component} this
15615      */
15616     hide: function(){
15617         if(this.fireEvent("beforehide", this) !== false){
15618             this.hidden = true;
15619             if(this.rendered){
15620                 this.onHide();
15621             }
15622             this.fireEvent("hide", this);
15623         }
15624         return this;
15625     },
15626
15627     // private
15628     onHide : function(){
15629         var ae = this.getActionEl();
15630         if(this.hideMode == 'visibility'){
15631             ae.dom.style.visibility = "hidden";
15632         }else if(this.hideMode == 'offsets'){
15633             ae.addClass('x-hidden');
15634         }else{
15635             ae.dom.style.display = "none";
15636         }
15637     },
15638
15639     /**
15640      * Convenience function to hide or show this component by boolean.
15641      * @param {Boolean} visible True to show, false to hide
15642      * @return {Roo.Component} this
15643      */
15644     setVisible: function(visible){
15645         if(visible) {
15646             this.show();
15647         }else{
15648             this.hide();
15649         }
15650         return this;
15651     },
15652
15653     /**
15654      * Returns true if this component is visible.
15655      */
15656     isVisible : function(){
15657         return this.getActionEl().isVisible();
15658     },
15659
15660     cloneConfig : function(overrides){
15661         overrides = overrides || {};
15662         var id = overrides.id || Roo.id();
15663         var cfg = Roo.applyIf(overrides, this.initialConfig);
15664         cfg.id = id; // prevent dup id
15665         return new this.constructor(cfg);
15666     }
15667 });/*
15668  * Based on:
15669  * Ext JS Library 1.1.1
15670  * Copyright(c) 2006-2007, Ext JS, LLC.
15671  *
15672  * Originally Released Under LGPL - original licence link has changed is not relivant.
15673  *
15674  * Fork - LGPL
15675  * <script type="text/javascript">
15676  */
15677
15678 /**
15679  * @class Roo.BoxComponent
15680  * @extends Roo.Component
15681  * Base class for any visual {@link Roo.Component} that uses a box container.  BoxComponent provides automatic box
15682  * model adjustments for sizing and positioning and will work correctly withnin the Component rendering model.  All
15683  * container classes should subclass BoxComponent so that they will work consistently when nested within other Ext
15684  * layout containers.
15685  * @constructor
15686  * @param {Roo.Element/String/Object} config The configuration options.
15687  */
15688 Roo.BoxComponent = function(config){
15689     Roo.Component.call(this, config);
15690     this.addEvents({
15691         /**
15692          * @event resize
15693          * Fires after the component is resized.
15694              * @param {Roo.Component} this
15695              * @param {Number} adjWidth The box-adjusted width that was set
15696              * @param {Number} adjHeight The box-adjusted height that was set
15697              * @param {Number} rawWidth The width that was originally specified
15698              * @param {Number} rawHeight The height that was originally specified
15699              */
15700         resize : true,
15701         /**
15702          * @event move
15703          * Fires after the component is moved.
15704              * @param {Roo.Component} this
15705              * @param {Number} x The new x position
15706              * @param {Number} y The new y position
15707              */
15708         move : true
15709     });
15710 };
15711
15712 Roo.extend(Roo.BoxComponent, Roo.Component, {
15713     // private, set in afterRender to signify that the component has been rendered
15714     boxReady : false,
15715     // private, used to defer height settings to subclasses
15716     deferHeight: false,
15717     /** @cfg {Number} width
15718      * width (optional) size of component
15719      */
15720      /** @cfg {Number} height
15721      * height (optional) size of component
15722      */
15723      
15724     /**
15725      * Sets the width and height of the component.  This method fires the resize event.  This method can accept
15726      * either width and height as separate numeric arguments, or you can pass a size object like {width:10, height:20}.
15727      * @param {Number/Object} width The new width to set, or a size object in the format {width, height}
15728      * @param {Number} height The new height to set (not required if a size object is passed as the first arg)
15729      * @return {Roo.BoxComponent} this
15730      */
15731     setSize : function(w, h){
15732         // support for standard size objects
15733         if(typeof w == 'object'){
15734             h = w.height;
15735             w = w.width;
15736         }
15737         // not rendered
15738         if(!this.boxReady){
15739             this.width = w;
15740             this.height = h;
15741             return this;
15742         }
15743
15744         // prevent recalcs when not needed
15745         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
15746             return this;
15747         }
15748         this.lastSize = {width: w, height: h};
15749
15750         var adj = this.adjustSize(w, h);
15751         var aw = adj.width, ah = adj.height;
15752         if(aw !== undefined || ah !== undefined){ // this code is nasty but performs better with floaters
15753             var rz = this.getResizeEl();
15754             if(!this.deferHeight && aw !== undefined && ah !== undefined){
15755                 rz.setSize(aw, ah);
15756             }else if(!this.deferHeight && ah !== undefined){
15757                 rz.setHeight(ah);
15758             }else if(aw !== undefined){
15759                 rz.setWidth(aw);
15760             }
15761             this.onResize(aw, ah, w, h);
15762             this.fireEvent('resize', this, aw, ah, w, h);
15763         }
15764         return this;
15765     },
15766
15767     /**
15768      * Gets the current size of the component's underlying element.
15769      * @return {Object} An object containing the element's size {width: (element width), height: (element height)}
15770      */
15771     getSize : function(){
15772         return this.el.getSize();
15773     },
15774
15775     /**
15776      * Gets the current XY position of the component's underlying element.
15777      * @param {Boolean} local (optional) If true the element's left and top are returned instead of page XY (defaults to false)
15778      * @return {Array} The XY position of the element (e.g., [100, 200])
15779      */
15780     getPosition : function(local){
15781         if(local === true){
15782             return [this.el.getLeft(true), this.el.getTop(true)];
15783         }
15784         return this.xy || this.el.getXY();
15785     },
15786
15787     /**
15788      * Gets the current box measurements of the component's underlying element.
15789      * @param {Boolean} local (optional) If true the element's left and top are returned instead of page XY (defaults to false)
15790      * @returns {Object} box An object in the format {x, y, width, height}
15791      */
15792     getBox : function(local){
15793         var s = this.el.getSize();
15794         if(local){
15795             s.x = this.el.getLeft(true);
15796             s.y = this.el.getTop(true);
15797         }else{
15798             var xy = this.xy || this.el.getXY();
15799             s.x = xy[0];
15800             s.y = xy[1];
15801         }
15802         return s;
15803     },
15804
15805     /**
15806      * Sets the current box measurements of the component's underlying element.
15807      * @param {Object} box An object in the format {x, y, width, height}
15808      * @returns {Roo.BoxComponent} this
15809      */
15810     updateBox : function(box){
15811         this.setSize(box.width, box.height);
15812         this.setPagePosition(box.x, box.y);
15813         return this;
15814     },
15815
15816     // protected
15817     getResizeEl : function(){
15818         return this.resizeEl || this.el;
15819     },
15820
15821     // protected
15822     getPositionEl : function(){
15823         return this.positionEl || this.el;
15824     },
15825
15826     /**
15827      * Sets the left and top of the component.  To set the page XY position instead, use {@link #setPagePosition}.
15828      * This method fires the move event.
15829      * @param {Number} left The new left
15830      * @param {Number} top The new top
15831      * @returns {Roo.BoxComponent} this
15832      */
15833     setPosition : function(x, y){
15834         this.x = x;
15835         this.y = y;
15836         if(!this.boxReady){
15837             return this;
15838         }
15839         var adj = this.adjustPosition(x, y);
15840         var ax = adj.x, ay = adj.y;
15841
15842         var el = this.getPositionEl();
15843         if(ax !== undefined || ay !== undefined){
15844             if(ax !== undefined && ay !== undefined){
15845                 el.setLeftTop(ax, ay);
15846             }else if(ax !== undefined){
15847                 el.setLeft(ax);
15848             }else if(ay !== undefined){
15849                 el.setTop(ay);
15850             }
15851             this.onPosition(ax, ay);
15852             this.fireEvent('move', this, ax, ay);
15853         }
15854         return this;
15855     },
15856
15857     /**
15858      * Sets the page XY position of the component.  To set the left and top instead, use {@link #setPosition}.
15859      * This method fires the move event.
15860      * @param {Number} x The new x position
15861      * @param {Number} y The new y position
15862      * @returns {Roo.BoxComponent} this
15863      */
15864     setPagePosition : function(x, y){
15865         this.pageX = x;
15866         this.pageY = y;
15867         if(!this.boxReady){
15868             return;
15869         }
15870         if(x === undefined || y === undefined){ // cannot translate undefined points
15871             return;
15872         }
15873         var p = this.el.translatePoints(x, y);
15874         this.setPosition(p.left, p.top);
15875         return this;
15876     },
15877
15878     // private
15879     onRender : function(ct, position){
15880         Roo.BoxComponent.superclass.onRender.call(this, ct, position);
15881         if(this.resizeEl){
15882             this.resizeEl = Roo.get(this.resizeEl);
15883         }
15884         if(this.positionEl){
15885             this.positionEl = Roo.get(this.positionEl);
15886         }
15887     },
15888
15889     // private
15890     afterRender : function(){
15891         Roo.BoxComponent.superclass.afterRender.call(this);
15892         this.boxReady = true;
15893         this.setSize(this.width, this.height);
15894         if(this.x || this.y){
15895             this.setPosition(this.x, this.y);
15896         }
15897         if(this.pageX || this.pageY){
15898             this.setPagePosition(this.pageX, this.pageY);
15899         }
15900     },
15901
15902     /**
15903      * Force the component's size to recalculate based on the underlying element's current height and width.
15904      * @returns {Roo.BoxComponent} this
15905      */
15906     syncSize : function(){
15907         delete this.lastSize;
15908         this.setSize(this.el.getWidth(), this.el.getHeight());
15909         return this;
15910     },
15911
15912     /**
15913      * Called after the component is resized, this method is empty by default but can be implemented by any
15914      * subclass that needs to perform custom logic after a resize occurs.
15915      * @param {Number} adjWidth The box-adjusted width that was set
15916      * @param {Number} adjHeight The box-adjusted height that was set
15917      * @param {Number} rawWidth The width that was originally specified
15918      * @param {Number} rawHeight The height that was originally specified
15919      */
15920     onResize : function(adjWidth, adjHeight, rawWidth, rawHeight){
15921
15922     },
15923
15924     /**
15925      * Called after the component is moved, this method is empty by default but can be implemented by any
15926      * subclass that needs to perform custom logic after a move occurs.
15927      * @param {Number} x The new x position
15928      * @param {Number} y The new y position
15929      */
15930     onPosition : function(x, y){
15931
15932     },
15933
15934     // private
15935     adjustSize : function(w, h){
15936         if(this.autoWidth){
15937             w = 'auto';
15938         }
15939         if(this.autoHeight){
15940             h = 'auto';
15941         }
15942         return {width : w, height: h};
15943     },
15944
15945     // private
15946     adjustPosition : function(x, y){
15947         return {x : x, y: y};
15948     }
15949 });/*
15950  * Original code for Roojs - LGPL
15951  * <script type="text/javascript">
15952  */
15953  
15954 /**
15955  * @class Roo.XComponent
15956  * A delayed Element creator...
15957  * Or a way to group chunks of interface together.
15958  * technically this is a wrapper around a tree of Roo elements (which defines a 'module'),
15959  *  used in conjunction with XComponent.build() it will create an instance of each element,
15960  *  then call addxtype() to build the User interface.
15961  * 
15962  * Mypart.xyx = new Roo.XComponent({
15963
15964     parent : 'Mypart.xyz', // empty == document.element.!!
15965     order : '001',
15966     name : 'xxxx'
15967     region : 'xxxx'
15968     disabled : function() {} 
15969      
15970     tree : function() { // return an tree of xtype declared components
15971         var MODULE = this;
15972         return 
15973         {
15974             xtype : 'NestedLayoutPanel',
15975             // technicall
15976         }
15977      ]
15978  *})
15979  *
15980  *
15981  * It can be used to build a big heiracy, with parent etc.
15982  * or you can just use this to render a single compoent to a dom element
15983  * MYPART.render(Roo.Element | String(id) | dom_element )
15984  *
15985  *
15986  * Usage patterns.
15987  *
15988  * Classic Roo
15989  *
15990  * Roo is designed primarily as a single page application, so the UI build for a standard interface will
15991  * expect a single 'TOP' level module normally indicated by the 'parent' of the XComponent definition being defined as false.
15992  *
15993  * Each sub module is expected to have a parent pointing to the class name of it's parent module.
15994  *
15995  * When the top level is false, a 'Roo.BorderLayout' is created and the element is flagged as 'topModule'
15996  * - if mulitple topModules exist, the last one is defined as the top module.
15997  *
15998  * Embeded Roo
15999  * 
16000  * When the top level or multiple modules are to embedded into a existing HTML page,
16001  * the parent element can container '#id' of the element where the module will be drawn.
16002  *
16003  * Bootstrap Roo
16004  *
16005  * Unlike classic Roo, the bootstrap tends not to be used as a single page.
16006  * it relies more on a include mechanism, where sub modules are included into an outer page.
16007  * This is normally managed by the builder tools using Roo.apply( options, Included.Sub.Module )
16008  * 
16009  * Bootstrap Roo Included elements
16010  *
16011  * Our builder application needs the ability to preview these sub compoennts. They will normally have parent=false set,
16012  * hence confusing the component builder as it thinks there are multiple top level elements. 
16013  *
16014  * String Over-ride & Translations
16015  *
16016  * Our builder application writes all the strings as _strings and _named_strings. This is to enable the translation of elements,
16017  * and also the 'overlaying of string values - needed when different versions of the same application with different text content
16018  * are needed. @see Roo.XComponent.overlayString  
16019  * 
16020  * 
16021  * 
16022  * @extends Roo.util.Observable
16023  * @constructor
16024  * @param cfg {Object} configuration of component
16025  * 
16026  */
16027 Roo.XComponent = function(cfg) {
16028     Roo.apply(this, cfg);
16029     this.addEvents({ 
16030         /**
16031              * @event built
16032              * Fires when this the componnt is built
16033              * @param {Roo.XComponent} c the component
16034              */
16035         'built' : true
16036         
16037     });
16038     this.region = this.region || 'center'; // default..
16039     Roo.XComponent.register(this);
16040     this.modules = false;
16041     this.el = false; // where the layout goes..
16042     
16043     
16044 }
16045 Roo.extend(Roo.XComponent, Roo.util.Observable, {
16046     /**
16047      * @property el
16048      * The created element (with Roo.factory())
16049      * @type {Roo.Layout}
16050      */
16051     el  : false,
16052     
16053     /**
16054      * @property el
16055      * for BC  - use el in new code
16056      * @type {Roo.Layout}
16057      */
16058     panel : false,
16059     
16060     /**
16061      * @property layout
16062      * for BC  - use el in new code
16063      * @type {Roo.Layout}
16064      */
16065     layout : false,
16066     
16067      /**
16068      * @cfg {Function|boolean} disabled
16069      * If this module is disabled by some rule, return true from the funtion
16070      */
16071     disabled : false,
16072     
16073     /**
16074      * @cfg {String} parent 
16075      * Name of parent element which it get xtype added to..
16076      */
16077     parent: false,
16078     
16079     /**
16080      * @cfg {String} order
16081      * Used to set the order in which elements are created (usefull for multiple tabs)
16082      */
16083     
16084     order : false,
16085     /**
16086      * @cfg {String} name
16087      * String to display while loading.
16088      */
16089     name : false,
16090     /**
16091      * @cfg {String} region
16092      * Region to render component to (defaults to center)
16093      */
16094     region : 'center',
16095     
16096     /**
16097      * @cfg {Array} items
16098      * A single item array - the first element is the root of the tree..
16099      * It's done this way to stay compatible with the Xtype system...
16100      */
16101     items : false,
16102     
16103     /**
16104      * @property _tree
16105      * The method that retuns the tree of parts that make up this compoennt 
16106      * @type {function}
16107      */
16108     _tree  : false,
16109     
16110      /**
16111      * render
16112      * render element to dom or tree
16113      * @param {Roo.Element|String|DomElement} optional render to if parent is not set.
16114      */
16115     
16116     render : function(el)
16117     {
16118         
16119         el = el || false;
16120         var hp = this.parent ? 1 : 0;
16121         Roo.debug &&  Roo.log(this);
16122         
16123         var tree = this._tree ? this._tree() : this.tree();
16124
16125         
16126         if (!el && typeof(this.parent) == 'string' && this.parent.substring(0,1) == '#') {
16127             // if parent is a '#.....' string, then let's use that..
16128             var ename = this.parent.substr(1);
16129             this.parent = false;
16130             Roo.debug && Roo.log(ename);
16131             switch (ename) {
16132                 case 'bootstrap-body':
16133                     if (typeof(tree.el) != 'undefined' && tree.el == document.body)  {
16134                         // this is the BorderLayout standard?
16135                        this.parent = { el : true };
16136                        break;
16137                     }
16138                     if (["Nest", "Content", "Grid", "Tree"].indexOf(tree.xtype)  > -1)  {
16139                         // need to insert stuff...
16140                         this.parent =  {
16141                              el : new Roo.bootstrap.layout.Border({
16142                                  el : document.body, 
16143                      
16144                                  center: {
16145                                     titlebar: false,
16146                                     autoScroll:false,
16147                                     closeOnTab: true,
16148                                     tabPosition: 'top',
16149                                       //resizeTabs: true,
16150                                     alwaysShowTabs: true,
16151                                     hideTabs: false
16152                                      //minTabWidth: 140
16153                                  }
16154                              })
16155                         
16156                          };
16157                          break;
16158                     }
16159                          
16160                     if (typeof(Roo.bootstrap.Body) != 'undefined' ) {
16161                         this.parent = { el :  new  Roo.bootstrap.Body() };
16162                         Roo.debug && Roo.log("setting el to doc body");
16163                          
16164                     } else {
16165                         throw "Container is bootstrap body, but Roo.bootstrap.Body is not defined";
16166                     }
16167                     break;
16168                 case 'bootstrap':
16169                     this.parent = { el : true};
16170                     // fall through
16171                 default:
16172                     el = Roo.get(ename);
16173                     if (typeof(Roo.bootstrap) != 'undefined' && tree['|xns'] == 'Roo.bootstrap') {
16174                         this.parent = { el : true};
16175                     }
16176                     
16177                     break;
16178             }
16179                 
16180             
16181             if (!el && !this.parent) {
16182                 Roo.debug && Roo.log("Warning - element can not be found :#" + ename );
16183                 return;
16184             }
16185         }
16186         
16187         Roo.debug && Roo.log("EL:");
16188         Roo.debug && Roo.log(el);
16189         Roo.debug && Roo.log("this.parent.el:");
16190         Roo.debug && Roo.log(this.parent.el);
16191         
16192
16193         // altertive root elements ??? - we need a better way to indicate these.
16194         var is_alt = Roo.XComponent.is_alt ||
16195                     (typeof(tree.el) != 'undefined' && tree.el == document.body) ||
16196                     (typeof(Roo.bootstrap) != 'undefined' && tree.xns == Roo.bootstrap) ||
16197                     (typeof(Roo.mailer) != 'undefined' && tree.xns == Roo.mailer) ;
16198         
16199         
16200         
16201         if (!this.parent && is_alt) {
16202             //el = Roo.get(document.body);
16203             this.parent = { el : true };
16204         }
16205             
16206             
16207         
16208         if (!this.parent) {
16209             
16210             Roo.debug && Roo.log("no parent - creating one");
16211             
16212             el = el ? Roo.get(el) : false;      
16213             
16214             if (typeof(Roo.BorderLayout) == 'undefined' ) {
16215                 
16216                 this.parent =  {
16217                     el : new Roo.bootstrap.layout.Border({
16218                         el: el || document.body,
16219                     
16220                         center: {
16221                             titlebar: false,
16222                             autoScroll:false,
16223                             closeOnTab: true,
16224                             tabPosition: 'top',
16225                              //resizeTabs: true,
16226                             alwaysShowTabs: false,
16227                             hideTabs: true,
16228                             minTabWidth: 140,
16229                             overflow: 'visible'
16230                          }
16231                      })
16232                 };
16233             } else {
16234             
16235                 // it's a top level one..
16236                 this.parent =  {
16237                     el : new Roo.BorderLayout(el || document.body, {
16238                         center: {
16239                             titlebar: false,
16240                             autoScroll:false,
16241                             closeOnTab: true,
16242                             tabPosition: 'top',
16243                              //resizeTabs: true,
16244                             alwaysShowTabs: el && hp? false :  true,
16245                             hideTabs: el || !hp ? true :  false,
16246                             minTabWidth: 140
16247                          }
16248                     })
16249                 };
16250             }
16251         }
16252         
16253         if (!this.parent.el) {
16254                 // probably an old style ctor, which has been disabled.
16255                 return;
16256
16257         }
16258                 // The 'tree' method is  '_tree now' 
16259             
16260         tree.region = tree.region || this.region;
16261         var is_body = false;
16262         if (this.parent.el === true) {
16263             // bootstrap... - body..
16264             if (el) {
16265                 tree.el = el;
16266             }
16267             this.parent.el = Roo.factory(tree);
16268             is_body = true;
16269         }
16270         
16271         this.el = this.parent.el.addxtype(tree, undefined, is_body);
16272         this.fireEvent('built', this);
16273         
16274         this.panel = this.el;
16275         this.layout = this.panel.layout;
16276         this.parentLayout = this.parent.layout  || false;  
16277          
16278     }
16279     
16280 });
16281
16282 Roo.apply(Roo.XComponent, {
16283     /**
16284      * @property  hideProgress
16285      * true to disable the building progress bar.. usefull on single page renders.
16286      * @type Boolean
16287      */
16288     hideProgress : false,
16289     /**
16290      * @property  buildCompleted
16291      * True when the builder has completed building the interface.
16292      * @type Boolean
16293      */
16294     buildCompleted : false,
16295      
16296     /**
16297      * @property  topModule
16298      * the upper most module - uses document.element as it's constructor.
16299      * @type Object
16300      */
16301      
16302     topModule  : false,
16303       
16304     /**
16305      * @property  modules
16306      * array of modules to be created by registration system.
16307      * @type {Array} of Roo.XComponent
16308      */
16309     
16310     modules : [],
16311     /**
16312      * @property  elmodules
16313      * array of modules to be created by which use #ID 
16314      * @type {Array} of Roo.XComponent
16315      */
16316      
16317     elmodules : [],
16318
16319      /**
16320      * @property  is_alt
16321      * Is an alternative Root - normally used by bootstrap or other systems,
16322      *    where the top element in the tree can wrap 'body' 
16323      * @type {boolean}  (default false)
16324      */
16325      
16326     is_alt : false,
16327     /**
16328      * @property  build_from_html
16329      * Build elements from html - used by bootstrap HTML stuff 
16330      *    - this is cleared after build is completed
16331      * @type {boolean}    (default false)
16332      */
16333      
16334     build_from_html : false,
16335     /**
16336      * Register components to be built later.
16337      *
16338      * This solves the following issues
16339      * - Building is not done on page load, but after an authentication process has occured.
16340      * - Interface elements are registered on page load
16341      * - Parent Interface elements may not be loaded before child, so this handles that..
16342      * 
16343      *
16344      * example:
16345      * 
16346      * MyApp.register({
16347           order : '000001',
16348           module : 'Pman.Tab.projectMgr',
16349           region : 'center',
16350           parent : 'Pman.layout',
16351           disabled : false,  // or use a function..
16352         })
16353      
16354      * * @param {Object} details about module
16355      */
16356     register : function(obj) {
16357                 
16358         Roo.XComponent.event.fireEvent('register', obj);
16359         switch(typeof(obj.disabled) ) {
16360                 
16361             case 'undefined':
16362                 break;
16363             
16364             case 'function':
16365                 if ( obj.disabled() ) {
16366                         return;
16367                 }
16368                 break;
16369             
16370             default:
16371                 if (obj.disabled) {
16372                         return;
16373                 }
16374                 break;
16375         }
16376                 
16377         this.modules.push(obj);
16378          
16379     },
16380     /**
16381      * convert a string to an object..
16382      * eg. 'AAA.BBB' -> finds AAA.BBB
16383
16384      */
16385     
16386     toObject : function(str)
16387     {
16388         if (!str || typeof(str) == 'object') {
16389             return str;
16390         }
16391         if (str.substring(0,1) == '#') {
16392             return str;
16393         }
16394
16395         var ar = str.split('.');
16396         var rt, o;
16397         rt = ar.shift();
16398             /** eval:var:o */
16399         try {
16400             eval('if (typeof ' + rt + ' == "undefined"){ o = false;} o = ' + rt + ';');
16401         } catch (e) {
16402             throw "Module not found : " + str;
16403         }
16404         
16405         if (o === false) {
16406             throw "Module not found : " + str;
16407         }
16408         Roo.each(ar, function(e) {
16409             if (typeof(o[e]) == 'undefined') {
16410                 throw "Module not found : " + str;
16411             }
16412             o = o[e];
16413         });
16414         
16415         return o;
16416         
16417     },
16418     
16419     
16420     /**
16421      * move modules into their correct place in the tree..
16422      * 
16423      */
16424     preBuild : function ()
16425     {
16426         var _t = this;
16427         Roo.each(this.modules , function (obj)
16428         {
16429             Roo.XComponent.event.fireEvent('beforebuild', obj);
16430             
16431             var opar = obj.parent;
16432             try { 
16433                 obj.parent = this.toObject(opar);
16434             } catch(e) {
16435                 Roo.debug && Roo.log("parent:toObject failed: " + e.toString());
16436                 return;
16437             }
16438             
16439             if (!obj.parent) {
16440                 Roo.debug && Roo.log("GOT top level module");
16441                 Roo.debug && Roo.log(obj);
16442                 obj.modules = new Roo.util.MixedCollection(false, 
16443                     function(o) { return o.order + '' }
16444                 );
16445                 this.topModule = obj;
16446                 return;
16447             }
16448                         // parent is a string (usually a dom element name..)
16449             if (typeof(obj.parent) == 'string') {
16450                 this.elmodules.push(obj);
16451                 return;
16452             }
16453             if (obj.parent.constructor != Roo.XComponent) {
16454                 Roo.debug && Roo.log("Warning : Object Parent is not instance of XComponent:" + obj.name)
16455             }
16456             if (!obj.parent.modules) {
16457                 obj.parent.modules = new Roo.util.MixedCollection(false, 
16458                     function(o) { return o.order + '' }
16459                 );
16460             }
16461             if (obj.parent.disabled) {
16462                 obj.disabled = true;
16463             }
16464             obj.parent.modules.add(obj);
16465         }, this);
16466     },
16467     
16468      /**
16469      * make a list of modules to build.
16470      * @return {Array} list of modules. 
16471      */ 
16472     
16473     buildOrder : function()
16474     {
16475         var _this = this;
16476         var cmp = function(a,b) {   
16477             return String(a).toUpperCase() > String(b).toUpperCase() ? 1 : -1;
16478         };
16479         if ((!this.topModule || !this.topModule.modules) && !this.elmodules.length) {
16480             throw "No top level modules to build";
16481         }
16482         
16483         // make a flat list in order of modules to build.
16484         var mods = this.topModule ? [ this.topModule ] : [];
16485                 
16486         
16487         // elmodules (is a list of DOM based modules )
16488         Roo.each(this.elmodules, function(e) {
16489             mods.push(e);
16490             if (!this.topModule &&
16491                 typeof(e.parent) == 'string' &&
16492                 e.parent.substring(0,1) == '#' &&
16493                 Roo.get(e.parent.substr(1))
16494                ) {
16495                 
16496                 _this.topModule = e;
16497             }
16498             
16499         });
16500
16501         
16502         // add modules to their parents..
16503         var addMod = function(m) {
16504             Roo.debug && Roo.log("build Order: add: " + m.name);
16505                 
16506             mods.push(m);
16507             if (m.modules && !m.disabled) {
16508                 Roo.debug && Roo.log("build Order: " + m.modules.length + " child modules");
16509                 m.modules.keySort('ASC',  cmp );
16510                 Roo.debug && Roo.log("build Order: " + m.modules.length + " child modules (after sort)");
16511     
16512                 m.modules.each(addMod);
16513             } else {
16514                 Roo.debug && Roo.log("build Order: no child modules");
16515             }
16516             // not sure if this is used any more..
16517             if (m.finalize) {
16518                 m.finalize.name = m.name + " (clean up) ";
16519                 mods.push(m.finalize);
16520             }
16521             
16522         }
16523         if (this.topModule && this.topModule.modules) { 
16524             this.topModule.modules.keySort('ASC',  cmp );
16525             this.topModule.modules.each(addMod);
16526         } 
16527         return mods;
16528     },
16529     
16530      /**
16531      * Build the registered modules.
16532      * @param {Object} parent element.
16533      * @param {Function} optional method to call after module has been added.
16534      * 
16535      */ 
16536    
16537     build : function(opts) 
16538     {
16539         
16540         if (typeof(opts) != 'undefined') {
16541             Roo.apply(this,opts);
16542         }
16543         
16544         this.preBuild();
16545         var mods = this.buildOrder();
16546       
16547         //this.allmods = mods;
16548         //Roo.debug && Roo.log(mods);
16549         //return;
16550         if (!mods.length) { // should not happen
16551             throw "NO modules!!!";
16552         }
16553         
16554         
16555         var msg = "Building Interface...";
16556         // flash it up as modal - so we store the mask!?
16557         if (!this.hideProgress && Roo.MessageBox) {
16558             Roo.MessageBox.show({ title: 'loading' });
16559             Roo.MessageBox.show({
16560                title: "Please wait...",
16561                msg: msg,
16562                width:450,
16563                progress:true,
16564                closable:false,
16565                modal: false
16566               
16567             });
16568         }
16569         var total = mods.length;
16570         
16571         var _this = this;
16572         var progressRun = function() {
16573             if (!mods.length) {
16574                 Roo.debug && Roo.log('hide?');
16575                 if (!this.hideProgress && Roo.MessageBox) {
16576                     Roo.MessageBox.hide();
16577                 }
16578                 Roo.XComponent.build_from_html = false; // reset, so dialogs will be build from javascript
16579                 
16580                 Roo.XComponent.event.fireEvent('buildcomplete', _this.topModule);
16581                 
16582                 // THE END...
16583                 return false;   
16584             }
16585             
16586             var m = mods.shift();
16587             
16588             
16589             Roo.debug && Roo.log(m);
16590             // not sure if this is supported any more.. - modules that are are just function
16591             if (typeof(m) == 'function') { 
16592                 m.call(this);
16593                 return progressRun.defer(10, _this);
16594             } 
16595             
16596             
16597             msg = "Building Interface " + (total  - mods.length) + 
16598                     " of " + total + 
16599                     (m.name ? (' - ' + m.name) : '');
16600                         Roo.debug && Roo.log(msg);
16601             if (!_this.hideProgress &&  Roo.MessageBox) { 
16602                 Roo.MessageBox.updateProgress(  (total  - mods.length)/total, msg  );
16603             }
16604             
16605          
16606             // is the module disabled?
16607             var disabled = (typeof(m.disabled) == 'function') ?
16608                 m.disabled.call(m.module.disabled) : m.disabled;    
16609             
16610             
16611             if (disabled) {
16612                 return progressRun(); // we do not update the display!
16613             }
16614             
16615             // now build 
16616             
16617                         
16618                         
16619             m.render();
16620             // it's 10 on top level, and 1 on others??? why...
16621             return progressRun.defer(10, _this);
16622              
16623         }
16624         progressRun.defer(1, _this);
16625      
16626         
16627         
16628     },
16629     /**
16630      * Overlay a set of modified strings onto a component
16631      * This is dependant on our builder exporting the strings and 'named strings' elements.
16632      * 
16633      * @param {Object} element to overlay on - eg. Pman.Dialog.Login
16634      * @param {Object} associative array of 'named' string and it's new value.
16635      * 
16636      */
16637         overlayStrings : function( component, strings )
16638     {
16639         if (typeof(component['_named_strings']) == 'undefined') {
16640             throw "ERROR: component does not have _named_strings";
16641         }
16642         for ( var k in strings ) {
16643             var md = typeof(component['_named_strings'][k]) == 'undefined' ? false : component['_named_strings'][k];
16644             if (md !== false) {
16645                 component['_strings'][md] = strings[k];
16646             } else {
16647                 Roo.log('could not find named string: ' + k + ' in');
16648                 Roo.log(component);
16649             }
16650             
16651         }
16652         
16653     },
16654     
16655         
16656         /**
16657          * Event Object.
16658          *
16659          *
16660          */
16661         event: false, 
16662     /**
16663          * wrapper for event.on - aliased later..  
16664          * Typically use to register a event handler for register:
16665          *
16666          * eg. Roo.XComponent.on('register', function(comp) { comp.disable = true } );
16667          *
16668          */
16669     on : false
16670    
16671     
16672     
16673 });
16674
16675 Roo.XComponent.event = new Roo.util.Observable({
16676                 events : { 
16677                         /**
16678                          * @event register
16679                          * Fires when an Component is registered,
16680                          * set the disable property on the Component to stop registration.
16681                          * @param {Roo.XComponent} c the component being registerd.
16682                          * 
16683                          */
16684                         'register' : true,
16685             /**
16686                          * @event beforebuild
16687                          * Fires before each Component is built
16688                          * can be used to apply permissions.
16689                          * @param {Roo.XComponent} c the component being registerd.
16690                          * 
16691                          */
16692                         'beforebuild' : true,
16693                         /**
16694                          * @event buildcomplete
16695                          * Fires on the top level element when all elements have been built
16696                          * @param {Roo.XComponent} the top level component.
16697                          */
16698                         'buildcomplete' : true
16699                         
16700                 }
16701 });
16702
16703 Roo.XComponent.on = Roo.XComponent.event.on.createDelegate(Roo.XComponent.event); 
16704  //
16705  /**
16706  * marked - a markdown parser
16707  * Copyright (c) 2011-2014, Christopher Jeffrey. (MIT Licensed)
16708  * https://github.com/chjj/marked
16709  */
16710
16711
16712 /**
16713  *
16714  * Roo.Markdown - is a very crude wrapper around marked..
16715  *
16716  * usage:
16717  * 
16718  * alert( Roo.Markdown.toHtml("Markdown *rocks*.") );
16719  * 
16720  * Note: move the sample code to the bottom of this
16721  * file before uncommenting it.
16722  *
16723  */
16724
16725 Roo.Markdown = {};
16726 Roo.Markdown.toHtml = function(text) {
16727     
16728     var c = new Roo.Markdown.marked.setOptions({
16729             renderer: new Roo.Markdown.marked.Renderer(),
16730             gfm: true,
16731             tables: true,
16732             breaks: false,
16733             pedantic: false,
16734             sanitize: false,
16735             smartLists: true,
16736             smartypants: false
16737           });
16738     // A FEW HACKS!!?
16739     
16740     text = text.replace(/\\\n/g,' ');
16741     return Roo.Markdown.marked(text);
16742 };
16743 //
16744 // converter
16745 //
16746 // Wraps all "globals" so that the only thing
16747 // exposed is makeHtml().
16748 //
16749 (function() {
16750     
16751     /**
16752      * Block-Level Grammar
16753      */
16754     
16755     var block = {
16756       newline: /^\n+/,
16757       code: /^( {4}[^\n]+\n*)+/,
16758       fences: noop,
16759       hr: /^( *[-*_]){3,} *(?:\n+|$)/,
16760       heading: /^ *(#{1,6}) *([^\n]+?) *#* *(?:\n+|$)/,
16761       nptable: noop,
16762       lheading: /^([^\n]+)\n *(=|-){2,} *(?:\n+|$)/,
16763       blockquote: /^( *>[^\n]+(\n(?!def)[^\n]+)*\n*)+/,
16764       list: /^( *)(bull) [\s\S]+?(?:hr|def|\n{2,}(?! )(?!\1bull )\n*|\s*$)/,
16765       html: /^ *(?:comment *(?:\n|\s*$)|closed *(?:\n{2,}|\s*$)|closing *(?:\n{2,}|\s*$))/,
16766       def: /^ *\[([^\]]+)\]: *<?([^\s>]+)>?(?: +["(]([^\n]+)[")])? *(?:\n+|$)/,
16767       table: noop,
16768       paragraph: /^((?:[^\n]+\n?(?!hr|heading|lheading|blockquote|tag|def))+)\n*/,
16769       text: /^[^\n]+/
16770     };
16771     
16772     block.bullet = /(?:[*+-]|\d+\.)/;
16773     block.item = /^( *)(bull) [^\n]*(?:\n(?!\1bull )[^\n]*)*/;
16774     block.item = replace(block.item, 'gm')
16775       (/bull/g, block.bullet)
16776       ();
16777     
16778     block.list = replace(block.list)
16779       (/bull/g, block.bullet)
16780       ('hr', '\\n+(?=\\1?(?:[-*_] *){3,}(?:\\n+|$))')
16781       ('def', '\\n+(?=' + block.def.source + ')')
16782       ();
16783     
16784     block.blockquote = replace(block.blockquote)
16785       ('def', block.def)
16786       ();
16787     
16788     block._tag = '(?!(?:'
16789       + 'a|em|strong|small|s|cite|q|dfn|abbr|data|time|code'
16790       + '|var|samp|kbd|sub|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo'
16791       + '|span|br|wbr|ins|del|img)\\b)\\w+(?!:/|[^\\w\\s@]*@)\\b';
16792     
16793     block.html = replace(block.html)
16794       ('comment', /<!--[\s\S]*?-->/)
16795       ('closed', /<(tag)[\s\S]+?<\/\1>/)
16796       ('closing', /<tag(?:"[^"]*"|'[^']*'|[^'">])*?>/)
16797       (/tag/g, block._tag)
16798       ();
16799     
16800     block.paragraph = replace(block.paragraph)
16801       ('hr', block.hr)
16802       ('heading', block.heading)
16803       ('lheading', block.lheading)
16804       ('blockquote', block.blockquote)
16805       ('tag', '<' + block._tag)
16806       ('def', block.def)
16807       ();
16808     
16809     /**
16810      * Normal Block Grammar
16811      */
16812     
16813     block.normal = merge({}, block);
16814     
16815     /**
16816      * GFM Block Grammar
16817      */
16818     
16819     block.gfm = merge({}, block.normal, {
16820       fences: /^ *(`{3,}|~{3,})[ \.]*(\S+)? *\n([\s\S]*?)\s*\1 *(?:\n+|$)/,
16821       paragraph: /^/,
16822       heading: /^ *(#{1,6}) +([^\n]+?) *#* *(?:\n+|$)/
16823     });
16824     
16825     block.gfm.paragraph = replace(block.paragraph)
16826       ('(?!', '(?!'
16827         + block.gfm.fences.source.replace('\\1', '\\2') + '|'
16828         + block.list.source.replace('\\1', '\\3') + '|')
16829       ();
16830     
16831     /**
16832      * GFM + Tables Block Grammar
16833      */
16834     
16835     block.tables = merge({}, block.gfm, {
16836       nptable: /^ *(\S.*\|.*)\n *([-:]+ *\|[-| :]*)\n((?:.*\|.*(?:\n|$))*)\n*/,
16837       table: /^ *\|(.+)\n *\|( *[-:]+[-| :]*)\n((?: *\|.*(?:\n|$))*)\n*/
16838     });
16839     
16840     /**
16841      * Block Lexer
16842      */
16843     
16844     function Lexer(options) {
16845       this.tokens = [];
16846       this.tokens.links = {};
16847       this.options = options || marked.defaults;
16848       this.rules = block.normal;
16849     
16850       if (this.options.gfm) {
16851         if (this.options.tables) {
16852           this.rules = block.tables;
16853         } else {
16854           this.rules = block.gfm;
16855         }
16856       }
16857     }
16858     
16859     /**
16860      * Expose Block Rules
16861      */
16862     
16863     Lexer.rules = block;
16864     
16865     /**
16866      * Static Lex Method
16867      */
16868     
16869     Lexer.lex = function(src, options) {
16870       var lexer = new Lexer(options);
16871       return lexer.lex(src);
16872     };
16873     
16874     /**
16875      * Preprocessing
16876      */
16877     
16878     Lexer.prototype.lex = function(src) {
16879       src = src
16880         .replace(/\r\n|\r/g, '\n')
16881         .replace(/\t/g, '    ')
16882         .replace(/\u00a0/g, ' ')
16883         .replace(/\u2424/g, '\n');
16884     
16885       return this.token(src, true);
16886     };
16887     
16888     /**
16889      * Lexing
16890      */
16891     
16892     Lexer.prototype.token = function(src, top, bq) {
16893       var src = src.replace(/^ +$/gm, '')
16894         , next
16895         , loose
16896         , cap
16897         , bull
16898         , b
16899         , item
16900         , space
16901         , i
16902         , l;
16903     
16904       while (src) {
16905         // newline
16906         if (cap = this.rules.newline.exec(src)) {
16907           src = src.substring(cap[0].length);
16908           if (cap[0].length > 1) {
16909             this.tokens.push({
16910               type: 'space'
16911             });
16912           }
16913         }
16914     
16915         // code
16916         if (cap = this.rules.code.exec(src)) {
16917           src = src.substring(cap[0].length);
16918           cap = cap[0].replace(/^ {4}/gm, '');
16919           this.tokens.push({
16920             type: 'code',
16921             text: !this.options.pedantic
16922               ? cap.replace(/\n+$/, '')
16923               : cap
16924           });
16925           continue;
16926         }
16927     
16928         // fences (gfm)
16929         if (cap = this.rules.fences.exec(src)) {
16930           src = src.substring(cap[0].length);
16931           this.tokens.push({
16932             type: 'code',
16933             lang: cap[2],
16934             text: cap[3] || ''
16935           });
16936           continue;
16937         }
16938     
16939         // heading
16940         if (cap = this.rules.heading.exec(src)) {
16941           src = src.substring(cap[0].length);
16942           this.tokens.push({
16943             type: 'heading',
16944             depth: cap[1].length,
16945             text: cap[2]
16946           });
16947           continue;
16948         }
16949     
16950         // table no leading pipe (gfm)
16951         if (top && (cap = this.rules.nptable.exec(src))) {
16952           src = src.substring(cap[0].length);
16953     
16954           item = {
16955             type: 'table',
16956             header: cap[1].replace(/^ *| *\| *$/g, '').split(/ *\| */),
16957             align: cap[2].replace(/^ *|\| *$/g, '').split(/ *\| */),
16958             cells: cap[3].replace(/\n$/, '').split('\n')
16959           };
16960     
16961           for (i = 0; i < item.align.length; i++) {
16962             if (/^ *-+: *$/.test(item.align[i])) {
16963               item.align[i] = 'right';
16964             } else if (/^ *:-+: *$/.test(item.align[i])) {
16965               item.align[i] = 'center';
16966             } else if (/^ *:-+ *$/.test(item.align[i])) {
16967               item.align[i] = 'left';
16968             } else {
16969               item.align[i] = null;
16970             }
16971           }
16972     
16973           for (i = 0; i < item.cells.length; i++) {
16974             item.cells[i] = item.cells[i].split(/ *\| */);
16975           }
16976     
16977           this.tokens.push(item);
16978     
16979           continue;
16980         }
16981     
16982         // lheading
16983         if (cap = this.rules.lheading.exec(src)) {
16984           src = src.substring(cap[0].length);
16985           this.tokens.push({
16986             type: 'heading',
16987             depth: cap[2] === '=' ? 1 : 2,
16988             text: cap[1]
16989           });
16990           continue;
16991         }
16992     
16993         // hr
16994         if (cap = this.rules.hr.exec(src)) {
16995           src = src.substring(cap[0].length);
16996           this.tokens.push({
16997             type: 'hr'
16998           });
16999           continue;
17000         }
17001     
17002         // blockquote
17003         if (cap = this.rules.blockquote.exec(src)) {
17004           src = src.substring(cap[0].length);
17005     
17006           this.tokens.push({
17007             type: 'blockquote_start'
17008           });
17009     
17010           cap = cap[0].replace(/^ *> ?/gm, '');
17011     
17012           // Pass `top` to keep the current
17013           // "toplevel" state. This is exactly
17014           // how markdown.pl works.
17015           this.token(cap, top, true);
17016     
17017           this.tokens.push({
17018             type: 'blockquote_end'
17019           });
17020     
17021           continue;
17022         }
17023     
17024         // list
17025         if (cap = this.rules.list.exec(src)) {
17026           src = src.substring(cap[0].length);
17027           bull = cap[2];
17028     
17029           this.tokens.push({
17030             type: 'list_start',
17031             ordered: bull.length > 1
17032           });
17033     
17034           // Get each top-level item.
17035           cap = cap[0].match(this.rules.item);
17036     
17037           next = false;
17038           l = cap.length;
17039           i = 0;
17040     
17041           for (; i < l; i++) {
17042             item = cap[i];
17043     
17044             // Remove the list item's bullet
17045             // so it is seen as the next token.
17046             space = item.length;
17047             item = item.replace(/^ *([*+-]|\d+\.) +/, '');
17048     
17049             // Outdent whatever the
17050             // list item contains. Hacky.
17051             if (~item.indexOf('\n ')) {
17052               space -= item.length;
17053               item = !this.options.pedantic
17054                 ? item.replace(new RegExp('^ {1,' + space + '}', 'gm'), '')
17055                 : item.replace(/^ {1,4}/gm, '');
17056             }
17057     
17058             // Determine whether the next list item belongs here.
17059             // Backpedal if it does not belong in this list.
17060             if (this.options.smartLists && i !== l - 1) {
17061               b = block.bullet.exec(cap[i + 1])[0];
17062               if (bull !== b && !(bull.length > 1 && b.length > 1)) {
17063                 src = cap.slice(i + 1).join('\n') + src;
17064                 i = l - 1;
17065               }
17066             }
17067     
17068             // Determine whether item is loose or not.
17069             // Use: /(^|\n)(?! )[^\n]+\n\n(?!\s*$)/
17070             // for discount behavior.
17071             loose = next || /\n\n(?!\s*$)/.test(item);
17072             if (i !== l - 1) {
17073               next = item.charAt(item.length - 1) === '\n';
17074               if (!loose) { loose = next; }
17075             }
17076     
17077             this.tokens.push({
17078               type: loose
17079                 ? 'loose_item_start'
17080                 : 'list_item_start'
17081             });
17082     
17083             // Recurse.
17084             this.token(item, false, bq);
17085     
17086             this.tokens.push({
17087               type: 'list_item_end'
17088             });
17089           }
17090     
17091           this.tokens.push({
17092             type: 'list_end'
17093           });
17094     
17095           continue;
17096         }
17097     
17098         // html
17099         if (cap = this.rules.html.exec(src)) {
17100           src = src.substring(cap[0].length);
17101           this.tokens.push({
17102             type: this.options.sanitize
17103               ? 'paragraph'
17104               : 'html',
17105             pre: !this.options.sanitizer
17106               && (cap[1] === 'pre' || cap[1] === 'script' || cap[1] === 'style'),
17107             text: cap[0]
17108           });
17109           continue;
17110         }
17111     
17112         // def
17113         if ((!bq && top) && (cap = this.rules.def.exec(src))) {
17114           src = src.substring(cap[0].length);
17115           this.tokens.links[cap[1].toLowerCase()] = {
17116             href: cap[2],
17117             title: cap[3]
17118           };
17119           continue;
17120         }
17121     
17122         // table (gfm)
17123         if (top && (cap = this.rules.table.exec(src))) {
17124           src = src.substring(cap[0].length);
17125     
17126           item = {
17127             type: 'table',
17128             header: cap[1].replace(/^ *| *\| *$/g, '').split(/ *\| */),
17129             align: cap[2].replace(/^ *|\| *$/g, '').split(/ *\| */),
17130             cells: cap[3].replace(/(?: *\| *)?\n$/, '').split('\n')
17131           };
17132     
17133           for (i = 0; i < item.align.length; i++) {
17134             if (/^ *-+: *$/.test(item.align[i])) {
17135               item.align[i] = 'right';
17136             } else if (/^ *:-+: *$/.test(item.align[i])) {
17137               item.align[i] = 'center';
17138             } else if (/^ *:-+ *$/.test(item.align[i])) {
17139               item.align[i] = 'left';
17140             } else {
17141               item.align[i] = null;
17142             }
17143           }
17144     
17145           for (i = 0; i < item.cells.length; i++) {
17146             item.cells[i] = item.cells[i]
17147               .replace(/^ *\| *| *\| *$/g, '')
17148               .split(/ *\| */);
17149           }
17150     
17151           this.tokens.push(item);
17152     
17153           continue;
17154         }
17155     
17156         // top-level paragraph
17157         if (top && (cap = this.rules.paragraph.exec(src))) {
17158           src = src.substring(cap[0].length);
17159           this.tokens.push({
17160             type: 'paragraph',
17161             text: cap[1].charAt(cap[1].length - 1) === '\n'
17162               ? cap[1].slice(0, -1)
17163               : cap[1]
17164           });
17165           continue;
17166         }
17167     
17168         // text
17169         if (cap = this.rules.text.exec(src)) {
17170           // Top-level should never reach here.
17171           src = src.substring(cap[0].length);
17172           this.tokens.push({
17173             type: 'text',
17174             text: cap[0]
17175           });
17176           continue;
17177         }
17178     
17179         if (src) {
17180           throw new
17181             Error('Infinite loop on byte: ' + src.charCodeAt(0));
17182         }
17183       }
17184     
17185       return this.tokens;
17186     };
17187     
17188     /**
17189      * Inline-Level Grammar
17190      */
17191     
17192     var inline = {
17193       escape: /^\\([\\`*{}\[\]()#+\-.!_>])/,
17194       autolink: /^<([^ >]+(@|:\/)[^ >]+)>/,
17195       url: noop,
17196       tag: /^<!--[\s\S]*?-->|^<\/?\w+(?:"[^"]*"|'[^']*'|[^'">])*?>/,
17197       link: /^!?\[(inside)\]\(href\)/,
17198       reflink: /^!?\[(inside)\]\s*\[([^\]]*)\]/,
17199       nolink: /^!?\[((?:\[[^\]]*\]|[^\[\]])*)\]/,
17200       strong: /^__([\s\S]+?)__(?!_)|^\*\*([\s\S]+?)\*\*(?!\*)/,
17201       em: /^\b_((?:[^_]|__)+?)_\b|^\*((?:\*\*|[\s\S])+?)\*(?!\*)/,
17202       code: /^(`+)\s*([\s\S]*?[^`])\s*\1(?!`)/,
17203       br: /^ {2,}\n(?!\s*$)/,
17204       del: noop,
17205       text: /^[\s\S]+?(?=[\\<!\[_*`]| {2,}\n|$)/
17206     };
17207     
17208     inline._inside = /(?:\[[^\]]*\]|[^\[\]]|\](?=[^\[]*\]))*/;
17209     inline._href = /\s*<?([\s\S]*?)>?(?:\s+['"]([\s\S]*?)['"])?\s*/;
17210     
17211     inline.link = replace(inline.link)
17212       ('inside', inline._inside)
17213       ('href', inline._href)
17214       ();
17215     
17216     inline.reflink = replace(inline.reflink)
17217       ('inside', inline._inside)
17218       ();
17219     
17220     /**
17221      * Normal Inline Grammar
17222      */
17223     
17224     inline.normal = merge({}, inline);
17225     
17226     /**
17227      * Pedantic Inline Grammar
17228      */
17229     
17230     inline.pedantic = merge({}, inline.normal, {
17231       strong: /^__(?=\S)([\s\S]*?\S)__(?!_)|^\*\*(?=\S)([\s\S]*?\S)\*\*(?!\*)/,
17232       em: /^_(?=\S)([\s\S]*?\S)_(?!_)|^\*(?=\S)([\s\S]*?\S)\*(?!\*)/
17233     });
17234     
17235     /**
17236      * GFM Inline Grammar
17237      */
17238     
17239     inline.gfm = merge({}, inline.normal, {
17240       escape: replace(inline.escape)('])', '~|])')(),
17241       url: /^(https?:\/\/[^\s<]+[^<.,:;"')\]\s])/,
17242       del: /^~~(?=\S)([\s\S]*?\S)~~/,
17243       text: replace(inline.text)
17244         (']|', '~]|')
17245         ('|', '|https?://|')
17246         ()
17247     });
17248     
17249     /**
17250      * GFM + Line Breaks Inline Grammar
17251      */
17252     
17253     inline.breaks = merge({}, inline.gfm, {
17254       br: replace(inline.br)('{2,}', '*')(),
17255       text: replace(inline.gfm.text)('{2,}', '*')()
17256     });
17257     
17258     /**
17259      * Inline Lexer & Compiler
17260      */
17261     
17262     function InlineLexer(links, options) {
17263       this.options = options || marked.defaults;
17264       this.links = links;
17265       this.rules = inline.normal;
17266       this.renderer = this.options.renderer || new Renderer;
17267       this.renderer.options = this.options;
17268     
17269       if (!this.links) {
17270         throw new
17271           Error('Tokens array requires a `links` property.');
17272       }
17273     
17274       if (this.options.gfm) {
17275         if (this.options.breaks) {
17276           this.rules = inline.breaks;
17277         } else {
17278           this.rules = inline.gfm;
17279         }
17280       } else if (this.options.pedantic) {
17281         this.rules = inline.pedantic;
17282       }
17283     }
17284     
17285     /**
17286      * Expose Inline Rules
17287      */
17288     
17289     InlineLexer.rules = inline;
17290     
17291     /**
17292      * Static Lexing/Compiling Method
17293      */
17294     
17295     InlineLexer.output = function(src, links, options) {
17296       var inline = new InlineLexer(links, options);
17297       return inline.output(src);
17298     };
17299     
17300     /**
17301      * Lexing/Compiling
17302      */
17303     
17304     InlineLexer.prototype.output = function(src) {
17305       var out = ''
17306         , link
17307         , text
17308         , href
17309         , cap;
17310     
17311       while (src) {
17312         // escape
17313         if (cap = this.rules.escape.exec(src)) {
17314           src = src.substring(cap[0].length);
17315           out += cap[1];
17316           continue;
17317         }
17318     
17319         // autolink
17320         if (cap = this.rules.autolink.exec(src)) {
17321           src = src.substring(cap[0].length);
17322           if (cap[2] === '@') {
17323             text = cap[1].charAt(6) === ':'
17324               ? this.mangle(cap[1].substring(7))
17325               : this.mangle(cap[1]);
17326             href = this.mangle('mailto:') + text;
17327           } else {
17328             text = escape(cap[1]);
17329             href = text;
17330           }
17331           out += this.renderer.link(href, null, text);
17332           continue;
17333         }
17334     
17335         // url (gfm)
17336         if (!this.inLink && (cap = this.rules.url.exec(src))) {
17337           src = src.substring(cap[0].length);
17338           text = escape(cap[1]);
17339           href = text;
17340           out += this.renderer.link(href, null, text);
17341           continue;
17342         }
17343     
17344         // tag
17345         if (cap = this.rules.tag.exec(src)) {
17346           if (!this.inLink && /^<a /i.test(cap[0])) {
17347             this.inLink = true;
17348           } else if (this.inLink && /^<\/a>/i.test(cap[0])) {
17349             this.inLink = false;
17350           }
17351           src = src.substring(cap[0].length);
17352           out += this.options.sanitize
17353             ? this.options.sanitizer
17354               ? this.options.sanitizer(cap[0])
17355               : escape(cap[0])
17356             : cap[0];
17357           continue;
17358         }
17359     
17360         // link
17361         if (cap = this.rules.link.exec(src)) {
17362           src = src.substring(cap[0].length);
17363           this.inLink = true;
17364           out += this.outputLink(cap, {
17365             href: cap[2],
17366             title: cap[3]
17367           });
17368           this.inLink = false;
17369           continue;
17370         }
17371     
17372         // reflink, nolink
17373         if ((cap = this.rules.reflink.exec(src))
17374             || (cap = this.rules.nolink.exec(src))) {
17375           src = src.substring(cap[0].length);
17376           link = (cap[2] || cap[1]).replace(/\s+/g, ' ');
17377           link = this.links[link.toLowerCase()];
17378           if (!link || !link.href) {
17379             out += cap[0].charAt(0);
17380             src = cap[0].substring(1) + src;
17381             continue;
17382           }
17383           this.inLink = true;
17384           out += this.outputLink(cap, link);
17385           this.inLink = false;
17386           continue;
17387         }
17388     
17389         // strong
17390         if (cap = this.rules.strong.exec(src)) {
17391           src = src.substring(cap[0].length);
17392           out += this.renderer.strong(this.output(cap[2] || cap[1]));
17393           continue;
17394         }
17395     
17396         // em
17397         if (cap = this.rules.em.exec(src)) {
17398           src = src.substring(cap[0].length);
17399           out += this.renderer.em(this.output(cap[2] || cap[1]));
17400           continue;
17401         }
17402     
17403         // code
17404         if (cap = this.rules.code.exec(src)) {
17405           src = src.substring(cap[0].length);
17406           out += this.renderer.codespan(escape(cap[2], true));
17407           continue;
17408         }
17409     
17410         // br
17411         if (cap = this.rules.br.exec(src)) {
17412           src = src.substring(cap[0].length);
17413           out += this.renderer.br();
17414           continue;
17415         }
17416     
17417         // del (gfm)
17418         if (cap = this.rules.del.exec(src)) {
17419           src = src.substring(cap[0].length);
17420           out += this.renderer.del(this.output(cap[1]));
17421           continue;
17422         }
17423     
17424         // text
17425         if (cap = this.rules.text.exec(src)) {
17426           src = src.substring(cap[0].length);
17427           out += this.renderer.text(escape(this.smartypants(cap[0])));
17428           continue;
17429         }
17430     
17431         if (src) {
17432           throw new
17433             Error('Infinite loop on byte: ' + src.charCodeAt(0));
17434         }
17435       }
17436     
17437       return out;
17438     };
17439     
17440     /**
17441      * Compile Link
17442      */
17443     
17444     InlineLexer.prototype.outputLink = function(cap, link) {
17445       var href = escape(link.href)
17446         , title = link.title ? escape(link.title) : null;
17447     
17448       return cap[0].charAt(0) !== '!'
17449         ? this.renderer.link(href, title, this.output(cap[1]))
17450         : this.renderer.image(href, title, escape(cap[1]));
17451     };
17452     
17453     /**
17454      * Smartypants Transformations
17455      */
17456     
17457     InlineLexer.prototype.smartypants = function(text) {
17458       if (!this.options.smartypants)  { return text; }
17459       return text
17460         // em-dashes
17461         .replace(/---/g, '\u2014')
17462         // en-dashes
17463         .replace(/--/g, '\u2013')
17464         // opening singles
17465         .replace(/(^|[-\u2014/(\[{"\s])'/g, '$1\u2018')
17466         // closing singles & apostrophes
17467         .replace(/'/g, '\u2019')
17468         // opening doubles
17469         .replace(/(^|[-\u2014/(\[{\u2018\s])"/g, '$1\u201c')
17470         // closing doubles
17471         .replace(/"/g, '\u201d')
17472         // ellipses
17473         .replace(/\.{3}/g, '\u2026');
17474     };
17475     
17476     /**
17477      * Mangle Links
17478      */
17479     
17480     InlineLexer.prototype.mangle = function(text) {
17481       if (!this.options.mangle) { return text; }
17482       var out = ''
17483         , l = text.length
17484         , i = 0
17485         , ch;
17486     
17487       for (; i < l; i++) {
17488         ch = text.charCodeAt(i);
17489         if (Math.random() > 0.5) {
17490           ch = 'x' + ch.toString(16);
17491         }
17492         out += '&#' + ch + ';';
17493       }
17494     
17495       return out;
17496     };
17497     
17498     /**
17499      * Renderer
17500      */
17501     
17502     function Renderer(options) {
17503       this.options = options || {};
17504     }
17505     
17506     Renderer.prototype.code = function(code, lang, escaped) {
17507       if (this.options.highlight) {
17508         var out = this.options.highlight(code, lang);
17509         if (out != null && out !== code) {
17510           escaped = true;
17511           code = out;
17512         }
17513       } else {
17514             // hack!!! - it's already escapeD?
17515             escaped = true;
17516       }
17517     
17518       if (!lang) {
17519         return '<pre><code>'
17520           + (escaped ? code : escape(code, true))
17521           + '\n</code></pre>';
17522       }
17523     
17524       return '<pre><code class="'
17525         + this.options.langPrefix
17526         + escape(lang, true)
17527         + '">'
17528         + (escaped ? code : escape(code, true))
17529         + '\n</code></pre>\n';
17530     };
17531     
17532     Renderer.prototype.blockquote = function(quote) {
17533       return '<blockquote>\n' + quote + '</blockquote>\n';
17534     };
17535     
17536     Renderer.prototype.html = function(html) {
17537       return html;
17538     };
17539     
17540     Renderer.prototype.heading = function(text, level, raw) {
17541       return '<h'
17542         + level
17543         + ' id="'
17544         + this.options.headerPrefix
17545         + raw.toLowerCase().replace(/[^\w]+/g, '-')
17546         + '">'
17547         + text
17548         + '</h'
17549         + level
17550         + '>\n';
17551     };
17552     
17553     Renderer.prototype.hr = function() {
17554       return this.options.xhtml ? '<hr/>\n' : '<hr>\n';
17555     };
17556     
17557     Renderer.prototype.list = function(body, ordered) {
17558       var type = ordered ? 'ol' : 'ul';
17559       return '<' + type + '>\n' + body + '</' + type + '>\n';
17560     };
17561     
17562     Renderer.prototype.listitem = function(text) {
17563       return '<li>' + text + '</li>\n';
17564     };
17565     
17566     Renderer.prototype.paragraph = function(text) {
17567       return '<p>' + text + '</p>\n';
17568     };
17569     
17570     Renderer.prototype.table = function(header, body) {
17571       return '<table class="table table-striped">\n'
17572         + '<thead>\n'
17573         + header
17574         + '</thead>\n'
17575         + '<tbody>\n'
17576         + body
17577         + '</tbody>\n'
17578         + '</table>\n';
17579     };
17580     
17581     Renderer.prototype.tablerow = function(content) {
17582       return '<tr>\n' + content + '</tr>\n';
17583     };
17584     
17585     Renderer.prototype.tablecell = function(content, flags) {
17586       var type = flags.header ? 'th' : 'td';
17587       var tag = flags.align
17588         ? '<' + type + ' style="text-align:' + flags.align + '">'
17589         : '<' + type + '>';
17590       return tag + content + '</' + type + '>\n';
17591     };
17592     
17593     // span level renderer
17594     Renderer.prototype.strong = function(text) {
17595       return '<strong>' + text + '</strong>';
17596     };
17597     
17598     Renderer.prototype.em = function(text) {
17599       return '<em>' + text + '</em>';
17600     };
17601     
17602     Renderer.prototype.codespan = function(text) {
17603       return '<code>' + text + '</code>';
17604     };
17605     
17606     Renderer.prototype.br = function() {
17607       return this.options.xhtml ? '<br/>' : '<br>';
17608     };
17609     
17610     Renderer.prototype.del = function(text) {
17611       return '<del>' + text + '</del>';
17612     };
17613     
17614     Renderer.prototype.link = function(href, title, text) {
17615       if (this.options.sanitize) {
17616         try {
17617           var prot = decodeURIComponent(unescape(href))
17618             .replace(/[^\w:]/g, '')
17619             .toLowerCase();
17620         } catch (e) {
17621           return '';
17622         }
17623         if (prot.indexOf('javascript:') === 0 || prot.indexOf('vbscript:') === 0) {
17624           return '';
17625         }
17626       }
17627       var out = '<a href="' + href + '"';
17628       if (title) {
17629         out += ' title="' + title + '"';
17630       }
17631       out += '>' + text + '</a>';
17632       return out;
17633     };
17634     
17635     Renderer.prototype.image = function(href, title, text) {
17636       var out = '<img src="' + href + '" alt="' + text + '"';
17637       if (title) {
17638         out += ' title="' + title + '"';
17639       }
17640       out += this.options.xhtml ? '/>' : '>';
17641       return out;
17642     };
17643     
17644     Renderer.prototype.text = function(text) {
17645       return text;
17646     };
17647     
17648     /**
17649      * Parsing & Compiling
17650      */
17651     
17652     function Parser(options) {
17653       this.tokens = [];
17654       this.token = null;
17655       this.options = options || marked.defaults;
17656       this.options.renderer = this.options.renderer || new Renderer;
17657       this.renderer = this.options.renderer;
17658       this.renderer.options = this.options;
17659     }
17660     
17661     /**
17662      * Static Parse Method
17663      */
17664     
17665     Parser.parse = function(src, options, renderer) {
17666       var parser = new Parser(options, renderer);
17667       return parser.parse(src);
17668     };
17669     
17670     /**
17671      * Parse Loop
17672      */
17673     
17674     Parser.prototype.parse = function(src) {
17675       this.inline = new InlineLexer(src.links, this.options, this.renderer);
17676       this.tokens = src.reverse();
17677     
17678       var out = '';
17679       while (this.next()) {
17680         out += this.tok();
17681       }
17682     
17683       return out;
17684     };
17685     
17686     /**
17687      * Next Token
17688      */
17689     
17690     Parser.prototype.next = function() {
17691       return this.token = this.tokens.pop();
17692     };
17693     
17694     /**
17695      * Preview Next Token
17696      */
17697     
17698     Parser.prototype.peek = function() {
17699       return this.tokens[this.tokens.length - 1] || 0;
17700     };
17701     
17702     /**
17703      * Parse Text Tokens
17704      */
17705     
17706     Parser.prototype.parseText = function() {
17707       var body = this.token.text;
17708     
17709       while (this.peek().type === 'text') {
17710         body += '\n' + this.next().text;
17711       }
17712     
17713       return this.inline.output(body);
17714     };
17715     
17716     /**
17717      * Parse Current Token
17718      */
17719     
17720     Parser.prototype.tok = function() {
17721       switch (this.token.type) {
17722         case 'space': {
17723           return '';
17724         }
17725         case 'hr': {
17726           return this.renderer.hr();
17727         }
17728         case 'heading': {
17729           return this.renderer.heading(
17730             this.inline.output(this.token.text),
17731             this.token.depth,
17732             this.token.text);
17733         }
17734         case 'code': {
17735           return this.renderer.code(this.token.text,
17736             this.token.lang,
17737             this.token.escaped);
17738         }
17739         case 'table': {
17740           var header = ''
17741             , body = ''
17742             , i
17743             , row
17744             , cell
17745             , flags
17746             , j;
17747     
17748           // header
17749           cell = '';
17750           for (i = 0; i < this.token.header.length; i++) {
17751             flags = { header: true, align: this.token.align[i] };
17752             cell += this.renderer.tablecell(
17753               this.inline.output(this.token.header[i]),
17754               { header: true, align: this.token.align[i] }
17755             );
17756           }
17757           header += this.renderer.tablerow(cell);
17758     
17759           for (i = 0; i < this.token.cells.length; i++) {
17760             row = this.token.cells[i];
17761     
17762             cell = '';
17763             for (j = 0; j < row.length; j++) {
17764               cell += this.renderer.tablecell(
17765                 this.inline.output(row[j]),
17766                 { header: false, align: this.token.align[j] }
17767               );
17768             }
17769     
17770             body += this.renderer.tablerow(cell);
17771           }
17772           return this.renderer.table(header, body);
17773         }
17774         case 'blockquote_start': {
17775           var body = '';
17776     
17777           while (this.next().type !== 'blockquote_end') {
17778             body += this.tok();
17779           }
17780     
17781           return this.renderer.blockquote(body);
17782         }
17783         case 'list_start': {
17784           var body = ''
17785             , ordered = this.token.ordered;
17786     
17787           while (this.next().type !== 'list_end') {
17788             body += this.tok();
17789           }
17790     
17791           return this.renderer.list(body, ordered);
17792         }
17793         case 'list_item_start': {
17794           var body = '';
17795     
17796           while (this.next().type !== 'list_item_end') {
17797             body += this.token.type === 'text'
17798               ? this.parseText()
17799               : this.tok();
17800           }
17801     
17802           return this.renderer.listitem(body);
17803         }
17804         case 'loose_item_start': {
17805           var body = '';
17806     
17807           while (this.next().type !== 'list_item_end') {
17808             body += this.tok();
17809           }
17810     
17811           return this.renderer.listitem(body);
17812         }
17813         case 'html': {
17814           var html = !this.token.pre && !this.options.pedantic
17815             ? this.inline.output(this.token.text)
17816             : this.token.text;
17817           return this.renderer.html(html);
17818         }
17819         case 'paragraph': {
17820           return this.renderer.paragraph(this.inline.output(this.token.text));
17821         }
17822         case 'text': {
17823           return this.renderer.paragraph(this.parseText());
17824         }
17825       }
17826     };
17827     
17828     /**
17829      * Helpers
17830      */
17831     
17832     function escape(html, encode) {
17833       return html
17834         .replace(!encode ? /&(?!#?\w+;)/g : /&/g, '&amp;')
17835         .replace(/</g, '&lt;')
17836         .replace(/>/g, '&gt;')
17837         .replace(/"/g, '&quot;')
17838         .replace(/'/g, '&#39;');
17839     }
17840     
17841     function unescape(html) {
17842         // explicitly match decimal, hex, and named HTML entities 
17843       return html.replace(/&(#(?:\d+)|(?:#x[0-9A-Fa-f]+)|(?:\w+));?/g, function(_, n) {
17844         n = n.toLowerCase();
17845         if (n === 'colon') { return ':'; }
17846         if (n.charAt(0) === '#') {
17847           return n.charAt(1) === 'x'
17848             ? String.fromCharCode(parseInt(n.substring(2), 16))
17849             : String.fromCharCode(+n.substring(1));
17850         }
17851         return '';
17852       });
17853     }
17854     
17855     function replace(regex, opt) {
17856       regex = regex.source;
17857       opt = opt || '';
17858       return function self(name, val) {
17859         if (!name) { return new RegExp(regex, opt); }
17860         val = val.source || val;
17861         val = val.replace(/(^|[^\[])\^/g, '$1');
17862         regex = regex.replace(name, val);
17863         return self;
17864       };
17865     }
17866     
17867     function noop() {}
17868     noop.exec = noop;
17869     
17870     function merge(obj) {
17871       var i = 1
17872         , target
17873         , key;
17874     
17875       for (; i < arguments.length; i++) {
17876         target = arguments[i];
17877         for (key in target) {
17878           if (Object.prototype.hasOwnProperty.call(target, key)) {
17879             obj[key] = target[key];
17880           }
17881         }
17882       }
17883     
17884       return obj;
17885     }
17886     
17887     
17888     /**
17889      * Marked
17890      */
17891     
17892     function marked(src, opt, callback) {
17893       if (callback || typeof opt === 'function') {
17894         if (!callback) {
17895           callback = opt;
17896           opt = null;
17897         }
17898     
17899         opt = merge({}, marked.defaults, opt || {});
17900     
17901         var highlight = opt.highlight
17902           , tokens
17903           , pending
17904           , i = 0;
17905     
17906         try {
17907           tokens = Lexer.lex(src, opt)
17908         } catch (e) {
17909           return callback(e);
17910         }
17911     
17912         pending = tokens.length;
17913     
17914         var done = function(err) {
17915           if (err) {
17916             opt.highlight = highlight;
17917             return callback(err);
17918           }
17919     
17920           var out;
17921     
17922           try {
17923             out = Parser.parse(tokens, opt);
17924           } catch (e) {
17925             err = e;
17926           }
17927     
17928           opt.highlight = highlight;
17929     
17930           return err
17931             ? callback(err)
17932             : callback(null, out);
17933         };
17934     
17935         if (!highlight || highlight.length < 3) {
17936           return done();
17937         }
17938     
17939         delete opt.highlight;
17940     
17941         if (!pending) { return done(); }
17942     
17943         for (; i < tokens.length; i++) {
17944           (function(token) {
17945             if (token.type !== 'code') {
17946               return --pending || done();
17947             }
17948             return highlight(token.text, token.lang, function(err, code) {
17949               if (err) { return done(err); }
17950               if (code == null || code === token.text) {
17951                 return --pending || done();
17952               }
17953               token.text = code;
17954               token.escaped = true;
17955               --pending || done();
17956             });
17957           })(tokens[i]);
17958         }
17959     
17960         return;
17961       }
17962       try {
17963         if (opt) { opt = merge({}, marked.defaults, opt); }
17964         return Parser.parse(Lexer.lex(src, opt), opt);
17965       } catch (e) {
17966         e.message += '\nPlease report this to https://github.com/chjj/marked.';
17967         if ((opt || marked.defaults).silent) {
17968           return '<p>An error occured:</p><pre>'
17969             + escape(e.message + '', true)
17970             + '</pre>';
17971         }
17972         throw e;
17973       }
17974     }
17975     
17976     /**
17977      * Options
17978      */
17979     
17980     marked.options =
17981     marked.setOptions = function(opt) {
17982       merge(marked.defaults, opt);
17983       return marked;
17984     };
17985     
17986     marked.defaults = {
17987       gfm: true,
17988       tables: true,
17989       breaks: false,
17990       pedantic: false,
17991       sanitize: false,
17992       sanitizer: null,
17993       mangle: true,
17994       smartLists: false,
17995       silent: false,
17996       highlight: null,
17997       langPrefix: 'lang-',
17998       smartypants: false,
17999       headerPrefix: '',
18000       renderer: new Renderer,
18001       xhtml: false
18002     };
18003     
18004     /**
18005      * Expose
18006      */
18007     
18008     marked.Parser = Parser;
18009     marked.parser = Parser.parse;
18010     
18011     marked.Renderer = Renderer;
18012     
18013     marked.Lexer = Lexer;
18014     marked.lexer = Lexer.lex;
18015     
18016     marked.InlineLexer = InlineLexer;
18017     marked.inlineLexer = InlineLexer.output;
18018     
18019     marked.parse = marked;
18020     
18021     Roo.Markdown.marked = marked;
18022
18023 })();/*
18024  * Based on:
18025  * Ext JS Library 1.1.1
18026  * Copyright(c) 2006-2007, Ext JS, LLC.
18027  *
18028  * Originally Released Under LGPL - original licence link has changed is not relivant.
18029  *
18030  * Fork - LGPL
18031  * <script type="text/javascript">
18032  */
18033
18034
18035
18036 /*
18037  * These classes are derivatives of the similarly named classes in the YUI Library.
18038  * The original license:
18039  * Copyright (c) 2006, Yahoo! Inc. All rights reserved.
18040  * Code licensed under the BSD License:
18041  * http://developer.yahoo.net/yui/license.txt
18042  */
18043
18044 (function() {
18045
18046 var Event=Roo.EventManager;
18047 var Dom=Roo.lib.Dom;
18048
18049 /**
18050  * @class Roo.dd.DragDrop
18051  * @extends Roo.util.Observable
18052  * Defines the interface and base operation of items that that can be
18053  * dragged or can be drop targets.  It was designed to be extended, overriding
18054  * the event handlers for startDrag, onDrag, onDragOver and onDragOut.
18055  * Up to three html elements can be associated with a DragDrop instance:
18056  * <ul>
18057  * <li>linked element: the element that is passed into the constructor.
18058  * This is the element which defines the boundaries for interaction with
18059  * other DragDrop objects.</li>
18060  * <li>handle element(s): The drag operation only occurs if the element that
18061  * was clicked matches a handle element.  By default this is the linked
18062  * element, but there are times that you will want only a portion of the
18063  * linked element to initiate the drag operation, and the setHandleElId()
18064  * method provides a way to define this.</li>
18065  * <li>drag element: this represents the element that would be moved along
18066  * with the cursor during a drag operation.  By default, this is the linked
18067  * element itself as in {@link Roo.dd.DD}.  setDragElId() lets you define
18068  * a separate element that would be moved, as in {@link Roo.dd.DDProxy}.
18069  * </li>
18070  * </ul>
18071  * This class should not be instantiated until the onload event to ensure that
18072  * the associated elements are available.
18073  * The following would define a DragDrop obj that would interact with any
18074  * other DragDrop obj in the "group1" group:
18075  * <pre>
18076  *  dd = new Roo.dd.DragDrop("div1", "group1");
18077  * </pre>
18078  * Since none of the event handlers have been implemented, nothing would
18079  * actually happen if you were to run the code above.  Normally you would
18080  * override this class or one of the default implementations, but you can
18081  * also override the methods you want on an instance of the class...
18082  * <pre>
18083  *  dd.onDragDrop = function(e, id) {
18084  *  &nbsp;&nbsp;alert("dd was dropped on " + id);
18085  *  }
18086  * </pre>
18087  * @constructor
18088  * @param {String} id of the element that is linked to this instance
18089  * @param {String} sGroup the group of related DragDrop objects
18090  * @param {object} config an object containing configurable attributes
18091  *                Valid properties for DragDrop:
18092  *                    padding, isTarget, maintainOffset, primaryButtonOnly
18093  */
18094 Roo.dd.DragDrop = function(id, sGroup, config) {
18095     if (id) {
18096         this.init(id, sGroup, config);
18097     }
18098     
18099 };
18100
18101 Roo.extend(Roo.dd.DragDrop, Roo.util.Observable , {
18102
18103     /**
18104      * The id of the element associated with this object.  This is what we
18105      * refer to as the "linked element" because the size and position of
18106      * this element is used to determine when the drag and drop objects have
18107      * interacted.
18108      * @property id
18109      * @type String
18110      */
18111     id: null,
18112
18113     /**
18114      * Configuration attributes passed into the constructor
18115      * @property config
18116      * @type object
18117      */
18118     config: null,
18119
18120     /**
18121      * The id of the element that will be dragged.  By default this is same
18122      * as the linked element , but could be changed to another element. Ex:
18123      * Roo.dd.DDProxy
18124      * @property dragElId
18125      * @type String
18126      * @private
18127      */
18128     dragElId: null,
18129
18130     /**
18131      * the id of the element that initiates the drag operation.  By default
18132      * this is the linked element, but could be changed to be a child of this
18133      * element.  This lets us do things like only starting the drag when the
18134      * header element within the linked html element is clicked.
18135      * @property handleElId
18136      * @type String
18137      * @private
18138      */
18139     handleElId: null,
18140
18141     /**
18142      * An associative array of HTML tags that will be ignored if clicked.
18143      * @property invalidHandleTypes
18144      * @type {string: string}
18145      */
18146     invalidHandleTypes: null,
18147
18148     /**
18149      * An associative array of ids for elements that will be ignored if clicked
18150      * @property invalidHandleIds
18151      * @type {string: string}
18152      */
18153     invalidHandleIds: null,
18154
18155     /**
18156      * An indexted array of css class names for elements that will be ignored
18157      * if clicked.
18158      * @property invalidHandleClasses
18159      * @type string[]
18160      */
18161     invalidHandleClasses: null,
18162
18163     /**
18164      * The linked element's absolute X position at the time the drag was
18165      * started
18166      * @property startPageX
18167      * @type int
18168      * @private
18169      */
18170     startPageX: 0,
18171
18172     /**
18173      * The linked element's absolute X position at the time the drag was
18174      * started
18175      * @property startPageY
18176      * @type int
18177      * @private
18178      */
18179     startPageY: 0,
18180
18181     /**
18182      * The group defines a logical collection of DragDrop objects that are
18183      * related.  Instances only get events when interacting with other
18184      * DragDrop object in the same group.  This lets us define multiple
18185      * groups using a single DragDrop subclass if we want.
18186      * @property groups
18187      * @type {string: string}
18188      */
18189     groups: null,
18190
18191     /**
18192      * Individual drag/drop instances can be locked.  This will prevent
18193      * onmousedown start drag.
18194      * @property locked
18195      * @type boolean
18196      * @private
18197      */
18198     locked: false,
18199
18200     /**
18201      * Lock this instance
18202      * @method lock
18203      */
18204     lock: function() { this.locked = true; },
18205
18206     /**
18207      * Unlock this instace
18208      * @method unlock
18209      */
18210     unlock: function() { this.locked = false; },
18211
18212     /**
18213      * By default, all insances can be a drop target.  This can be disabled by
18214      * setting isTarget to false.
18215      * @method isTarget
18216      * @type boolean
18217      */
18218     isTarget: true,
18219
18220     /**
18221      * The padding configured for this drag and drop object for calculating
18222      * the drop zone intersection with this object.
18223      * @method padding
18224      * @type int[]
18225      */
18226     padding: null,
18227
18228     /**
18229      * Cached reference to the linked element
18230      * @property _domRef
18231      * @private
18232      */
18233     _domRef: null,
18234
18235     /**
18236      * Internal typeof flag
18237      * @property __ygDragDrop
18238      * @private
18239      */
18240     __ygDragDrop: true,
18241
18242     /**
18243      * Set to true when horizontal contraints are applied
18244      * @property constrainX
18245      * @type boolean
18246      * @private
18247      */
18248     constrainX: false,
18249
18250     /**
18251      * Set to true when vertical contraints are applied
18252      * @property constrainY
18253      * @type boolean
18254      * @private
18255      */
18256     constrainY: false,
18257
18258     /**
18259      * The left constraint
18260      * @property minX
18261      * @type int
18262      * @private
18263      */
18264     minX: 0,
18265
18266     /**
18267      * The right constraint
18268      * @property maxX
18269      * @type int
18270      * @private
18271      */
18272     maxX: 0,
18273
18274     /**
18275      * The up constraint
18276      * @property minY
18277      * @type int
18278      * @type int
18279      * @private
18280      */
18281     minY: 0,
18282
18283     /**
18284      * The down constraint
18285      * @property maxY
18286      * @type int
18287      * @private
18288      */
18289     maxY: 0,
18290
18291     /**
18292      * Maintain offsets when we resetconstraints.  Set to true when you want
18293      * the position of the element relative to its parent to stay the same
18294      * when the page changes
18295      *
18296      * @property maintainOffset
18297      * @type boolean
18298      */
18299     maintainOffset: false,
18300
18301     /**
18302      * Array of pixel locations the element will snap to if we specified a
18303      * horizontal graduation/interval.  This array is generated automatically
18304      * when you define a tick interval.
18305      * @property xTicks
18306      * @type int[]
18307      */
18308     xTicks: null,
18309
18310     /**
18311      * Array of pixel locations the element will snap to if we specified a
18312      * vertical graduation/interval.  This array is generated automatically
18313      * when you define a tick interval.
18314      * @property yTicks
18315      * @type int[]
18316      */
18317     yTicks: null,
18318
18319     /**
18320      * By default the drag and drop instance will only respond to the primary
18321      * button click (left button for a right-handed mouse).  Set to true to
18322      * allow drag and drop to start with any mouse click that is propogated
18323      * by the browser
18324      * @property primaryButtonOnly
18325      * @type boolean
18326      */
18327     primaryButtonOnly: true,
18328
18329     /**
18330      * The availabe property is false until the linked dom element is accessible.
18331      * @property available
18332      * @type boolean
18333      */
18334     available: false,
18335
18336     /**
18337      * By default, drags can only be initiated if the mousedown occurs in the
18338      * region the linked element is.  This is done in part to work around a
18339      * bug in some browsers that mis-report the mousedown if the previous
18340      * mouseup happened outside of the window.  This property is set to true
18341      * if outer handles are defined.
18342      *
18343      * @property hasOuterHandles
18344      * @type boolean
18345      * @default false
18346      */
18347     hasOuterHandles: false,
18348
18349     /**
18350      * Code that executes immediately before the startDrag event
18351      * @method b4StartDrag
18352      * @private
18353      */
18354     b4StartDrag: function(x, y) { },
18355
18356     /**
18357      * Abstract method called after a drag/drop object is clicked
18358      * and the drag or mousedown time thresholds have beeen met.
18359      * @method startDrag
18360      * @param {int} X click location
18361      * @param {int} Y click location
18362      */
18363     startDrag: function(x, y) { /* override this */ },
18364
18365     /**
18366      * Code that executes immediately before the onDrag event
18367      * @method b4Drag
18368      * @private
18369      */
18370     b4Drag: function(e) { },
18371
18372     /**
18373      * Abstract method called during the onMouseMove event while dragging an
18374      * object.
18375      * @method onDrag
18376      * @param {Event} e the mousemove event
18377      */
18378     onDrag: function(e) { /* override this */ },
18379
18380     /**
18381      * Abstract method called when this element fist begins hovering over
18382      * another DragDrop obj
18383      * @method onDragEnter
18384      * @param {Event} e the mousemove event
18385      * @param {String|DragDrop[]} id In POINT mode, the element
18386      * id this is hovering over.  In INTERSECT mode, an array of one or more
18387      * dragdrop items being hovered over.
18388      */
18389     onDragEnter: function(e, id) { /* override this */ },
18390
18391     /**
18392      * Code that executes immediately before the onDragOver event
18393      * @method b4DragOver
18394      * @private
18395      */
18396     b4DragOver: function(e) { },
18397
18398     /**
18399      * Abstract method called when this element is hovering over another
18400      * DragDrop obj
18401      * @method onDragOver
18402      * @param {Event} e the mousemove event
18403      * @param {String|DragDrop[]} id In POINT mode, the element
18404      * id this is hovering over.  In INTERSECT mode, an array of dd items
18405      * being hovered over.
18406      */
18407     onDragOver: function(e, id) { /* override this */ },
18408
18409     /**
18410      * Code that executes immediately before the onDragOut event
18411      * @method b4DragOut
18412      * @private
18413      */
18414     b4DragOut: function(e) { },
18415
18416     /**
18417      * Abstract method called when we are no longer hovering over an element
18418      * @method onDragOut
18419      * @param {Event} e the mousemove event
18420      * @param {String|DragDrop[]} id In POINT mode, the element
18421      * id this was hovering over.  In INTERSECT mode, an array of dd items
18422      * that the mouse is no longer over.
18423      */
18424     onDragOut: function(e, id) { /* override this */ },
18425
18426     /**
18427      * Code that executes immediately before the onDragDrop event
18428      * @method b4DragDrop
18429      * @private
18430      */
18431     b4DragDrop: function(e) { },
18432
18433     /**
18434      * Abstract method called when this item is dropped on another DragDrop
18435      * obj
18436      * @method onDragDrop
18437      * @param {Event} e the mouseup event
18438      * @param {String|DragDrop[]} id In POINT mode, the element
18439      * id this was dropped on.  In INTERSECT mode, an array of dd items this
18440      * was dropped on.
18441      */
18442     onDragDrop: function(e, id) { /* override this */ },
18443
18444     /**
18445      * Abstract method called when this item is dropped on an area with no
18446      * drop target
18447      * @method onInvalidDrop
18448      * @param {Event} e the mouseup event
18449      */
18450     onInvalidDrop: function(e) { /* override this */ },
18451
18452     /**
18453      * Code that executes immediately before the endDrag event
18454      * @method b4EndDrag
18455      * @private
18456      */
18457     b4EndDrag: function(e) { },
18458
18459     /**
18460      * Fired when we are done dragging the object
18461      * @method endDrag
18462      * @param {Event} e the mouseup event
18463      */
18464     endDrag: function(e) { /* override this */ },
18465
18466     /**
18467      * Code executed immediately before the onMouseDown event
18468      * @method b4MouseDown
18469      * @param {Event} e the mousedown event
18470      * @private
18471      */
18472     b4MouseDown: function(e) {  },
18473
18474     /**
18475      * Event handler that fires when a drag/drop obj gets a mousedown
18476      * @method onMouseDown
18477      * @param {Event} e the mousedown event
18478      */
18479     onMouseDown: function(e) { /* override this */ },
18480
18481     /**
18482      * Event handler that fires when a drag/drop obj gets a mouseup
18483      * @method onMouseUp
18484      * @param {Event} e the mouseup event
18485      */
18486     onMouseUp: function(e) { /* override this */ },
18487
18488     /**
18489      * Override the onAvailable method to do what is needed after the initial
18490      * position was determined.
18491      * @method onAvailable
18492      */
18493     onAvailable: function () {
18494     },
18495
18496     /*
18497      * Provides default constraint padding to "constrainTo" elements (defaults to {left: 0, right:0, top:0, bottom:0}).
18498      * @type Object
18499      */
18500     defaultPadding : {left:0, right:0, top:0, bottom:0},
18501
18502     /*
18503      * Initializes the drag drop object's constraints to restrict movement to a certain element.
18504  *
18505  * Usage:
18506  <pre><code>
18507  var dd = new Roo.dd.DDProxy("dragDiv1", "proxytest",
18508                 { dragElId: "existingProxyDiv" });
18509  dd.startDrag = function(){
18510      this.constrainTo("parent-id");
18511  };
18512  </code></pre>
18513  * Or you can initalize it using the {@link Roo.Element} object:
18514  <pre><code>
18515  Roo.get("dragDiv1").initDDProxy("proxytest", {dragElId: "existingProxyDiv"}, {
18516      startDrag : function(){
18517          this.constrainTo("parent-id");
18518      }
18519  });
18520  </code></pre>
18521      * @param {String/HTMLElement/Element} constrainTo The element to constrain to.
18522      * @param {Object/Number} pad (optional) Pad provides a way to specify "padding" of the constraints,
18523      * and can be either a number for symmetrical padding (4 would be equal to {left:4, right:4, top:4, bottom:4}) or
18524      * an object containing the sides to pad. For example: {right:10, bottom:10}
18525      * @param {Boolean} inContent (optional) Constrain the draggable in the content box of the element (inside padding and borders)
18526      */
18527     constrainTo : function(constrainTo, pad, inContent){
18528         if(typeof pad == "number"){
18529             pad = {left: pad, right:pad, top:pad, bottom:pad};
18530         }
18531         pad = pad || this.defaultPadding;
18532         var b = Roo.get(this.getEl()).getBox();
18533         var ce = Roo.get(constrainTo);
18534         var s = ce.getScroll();
18535         var c, cd = ce.dom;
18536         if(cd == document.body){
18537             c = { x: s.left, y: s.top, width: Roo.lib.Dom.getViewWidth(), height: Roo.lib.Dom.getViewHeight()};
18538         }else{
18539             xy = ce.getXY();
18540             c = {x : xy[0]+s.left, y: xy[1]+s.top, width: cd.clientWidth, height: cd.clientHeight};
18541         }
18542
18543
18544         var topSpace = b.y - c.y;
18545         var leftSpace = b.x - c.x;
18546
18547         this.resetConstraints();
18548         this.setXConstraint(leftSpace - (pad.left||0), // left
18549                 c.width - leftSpace - b.width - (pad.right||0) //right
18550         );
18551         this.setYConstraint(topSpace - (pad.top||0), //top
18552                 c.height - topSpace - b.height - (pad.bottom||0) //bottom
18553         );
18554     },
18555
18556     /**
18557      * Returns a reference to the linked element
18558      * @method getEl
18559      * @return {HTMLElement} the html element
18560      */
18561     getEl: function() {
18562         if (!this._domRef) {
18563             this._domRef = Roo.getDom(this.id);
18564         }
18565
18566         return this._domRef;
18567     },
18568
18569     /**
18570      * Returns a reference to the actual element to drag.  By default this is
18571      * the same as the html element, but it can be assigned to another
18572      * element. An example of this can be found in Roo.dd.DDProxy
18573      * @method getDragEl
18574      * @return {HTMLElement} the html element
18575      */
18576     getDragEl: function() {
18577         return Roo.getDom(this.dragElId);
18578     },
18579
18580     /**
18581      * Sets up the DragDrop object.  Must be called in the constructor of any
18582      * Roo.dd.DragDrop subclass
18583      * @method init
18584      * @param id the id of the linked element
18585      * @param {String} sGroup the group of related items
18586      * @param {object} config configuration attributes
18587      */
18588     init: function(id, sGroup, config) {
18589         this.initTarget(id, sGroup, config);
18590         if (!Roo.isTouch) {
18591             Event.on(this.id, "mousedown", this.handleMouseDown, this);
18592         }
18593         Event.on(this.id, "touchstart", this.handleMouseDown, this);
18594         // Event.on(this.id, "selectstart", Event.preventDefault);
18595     },
18596
18597     /**
18598      * Initializes Targeting functionality only... the object does not
18599      * get a mousedown handler.
18600      * @method initTarget
18601      * @param id the id of the linked element
18602      * @param {String} sGroup the group of related items
18603      * @param {object} config configuration attributes
18604      */
18605     initTarget: function(id, sGroup, config) {
18606
18607         // configuration attributes
18608         this.config = config || {};
18609
18610         // create a local reference to the drag and drop manager
18611         this.DDM = Roo.dd.DDM;
18612         // initialize the groups array
18613         this.groups = {};
18614
18615         // assume that we have an element reference instead of an id if the
18616         // parameter is not a string
18617         if (typeof id !== "string") {
18618             id = Roo.id(id);
18619         }
18620
18621         // set the id
18622         this.id = id;
18623
18624         // add to an interaction group
18625         this.addToGroup((sGroup) ? sGroup : "default");
18626
18627         // We don't want to register this as the handle with the manager
18628         // so we just set the id rather than calling the setter.
18629         this.handleElId = id;
18630
18631         // the linked element is the element that gets dragged by default
18632         this.setDragElId(id);
18633
18634         // by default, clicked anchors will not start drag operations.
18635         this.invalidHandleTypes = { A: "A" };
18636         this.invalidHandleIds = {};
18637         this.invalidHandleClasses = [];
18638
18639         this.applyConfig();
18640
18641         this.handleOnAvailable();
18642     },
18643
18644     /**
18645      * Applies the configuration parameters that were passed into the constructor.
18646      * This is supposed to happen at each level through the inheritance chain.  So
18647      * a DDProxy implentation will execute apply config on DDProxy, DD, and
18648      * DragDrop in order to get all of the parameters that are available in
18649      * each object.
18650      * @method applyConfig
18651      */
18652     applyConfig: function() {
18653
18654         // configurable properties:
18655         //    padding, isTarget, maintainOffset, primaryButtonOnly
18656         this.padding           = this.config.padding || [0, 0, 0, 0];
18657         this.isTarget          = (this.config.isTarget !== false);
18658         this.maintainOffset    = (this.config.maintainOffset);
18659         this.primaryButtonOnly = (this.config.primaryButtonOnly !== false);
18660
18661     },
18662
18663     /**
18664      * Executed when the linked element is available
18665      * @method handleOnAvailable
18666      * @private
18667      */
18668     handleOnAvailable: function() {
18669         this.available = true;
18670         this.resetConstraints();
18671         this.onAvailable();
18672     },
18673
18674      /**
18675      * Configures the padding for the target zone in px.  Effectively expands
18676      * (or reduces) the virtual object size for targeting calculations.
18677      * Supports css-style shorthand; if only one parameter is passed, all sides
18678      * will have that padding, and if only two are passed, the top and bottom
18679      * will have the first param, the left and right the second.
18680      * @method setPadding
18681      * @param {int} iTop    Top pad
18682      * @param {int} iRight  Right pad
18683      * @param {int} iBot    Bot pad
18684      * @param {int} iLeft   Left pad
18685      */
18686     setPadding: function(iTop, iRight, iBot, iLeft) {
18687         // this.padding = [iLeft, iRight, iTop, iBot];
18688         if (!iRight && 0 !== iRight) {
18689             this.padding = [iTop, iTop, iTop, iTop];
18690         } else if (!iBot && 0 !== iBot) {
18691             this.padding = [iTop, iRight, iTop, iRight];
18692         } else {
18693             this.padding = [iTop, iRight, iBot, iLeft];
18694         }
18695     },
18696
18697     /**
18698      * Stores the initial placement of the linked element.
18699      * @method setInitialPosition
18700      * @param {int} diffX   the X offset, default 0
18701      * @param {int} diffY   the Y offset, default 0
18702      */
18703     setInitPosition: function(diffX, diffY) {
18704         var el = this.getEl();
18705
18706         if (!this.DDM.verifyEl(el)) {
18707             return;
18708         }
18709
18710         var dx = diffX || 0;
18711         var dy = diffY || 0;
18712
18713         var p = Dom.getXY( el );
18714
18715         this.initPageX = p[0] - dx;
18716         this.initPageY = p[1] - dy;
18717
18718         this.lastPageX = p[0];
18719         this.lastPageY = p[1];
18720
18721
18722         this.setStartPosition(p);
18723     },
18724
18725     /**
18726      * Sets the start position of the element.  This is set when the obj
18727      * is initialized, the reset when a drag is started.
18728      * @method setStartPosition
18729      * @param pos current position (from previous lookup)
18730      * @private
18731      */
18732     setStartPosition: function(pos) {
18733         var p = pos || Dom.getXY( this.getEl() );
18734         this.deltaSetXY = null;
18735
18736         this.startPageX = p[0];
18737         this.startPageY = p[1];
18738     },
18739
18740     /**
18741      * Add this instance to a group of related drag/drop objects.  All
18742      * instances belong to at least one group, and can belong to as many
18743      * groups as needed.
18744      * @method addToGroup
18745      * @param sGroup {string} the name of the group
18746      */
18747     addToGroup: function(sGroup) {
18748         this.groups[sGroup] = true;
18749         this.DDM.regDragDrop(this, sGroup);
18750     },
18751
18752     /**
18753      * Remove's this instance from the supplied interaction group
18754      * @method removeFromGroup
18755      * @param {string}  sGroup  The group to drop
18756      */
18757     removeFromGroup: function(sGroup) {
18758         if (this.groups[sGroup]) {
18759             delete this.groups[sGroup];
18760         }
18761
18762         this.DDM.removeDDFromGroup(this, sGroup);
18763     },
18764
18765     /**
18766      * Allows you to specify that an element other than the linked element
18767      * will be moved with the cursor during a drag
18768      * @method setDragElId
18769      * @param id {string} the id of the element that will be used to initiate the drag
18770      */
18771     setDragElId: function(id) {
18772         this.dragElId = id;
18773     },
18774
18775     /**
18776      * Allows you to specify a child of the linked element that should be
18777      * used to initiate the drag operation.  An example of this would be if
18778      * you have a content div with text and links.  Clicking anywhere in the
18779      * content area would normally start the drag operation.  Use this method
18780      * to specify that an element inside of the content div is the element
18781      * that starts the drag operation.
18782      * @method setHandleElId
18783      * @param id {string} the id of the element that will be used to
18784      * initiate the drag.
18785      */
18786     setHandleElId: function(id) {
18787         if (typeof id !== "string") {
18788             id = Roo.id(id);
18789         }
18790         this.handleElId = id;
18791         this.DDM.regHandle(this.id, id);
18792     },
18793
18794     /**
18795      * Allows you to set an element outside of the linked element as a drag
18796      * handle
18797      * @method setOuterHandleElId
18798      * @param id the id of the element that will be used to initiate the drag
18799      */
18800     setOuterHandleElId: function(id) {
18801         if (typeof id !== "string") {
18802             id = Roo.id(id);
18803         }
18804         Event.on(id, "mousedown",
18805                 this.handleMouseDown, this);
18806         this.setHandleElId(id);
18807
18808         this.hasOuterHandles = true;
18809     },
18810
18811     /**
18812      * Remove all drag and drop hooks for this element
18813      * @method unreg
18814      */
18815     unreg: function() {
18816         Event.un(this.id, "mousedown",
18817                 this.handleMouseDown);
18818         Event.un(this.id, "touchstart",
18819                 this.handleMouseDown);
18820         this._domRef = null;
18821         this.DDM._remove(this);
18822     },
18823
18824     destroy : function(){
18825         this.unreg();
18826     },
18827
18828     /**
18829      * Returns true if this instance is locked, or the drag drop mgr is locked
18830      * (meaning that all drag/drop is disabled on the page.)
18831      * @method isLocked
18832      * @return {boolean} true if this obj or all drag/drop is locked, else
18833      * false
18834      */
18835     isLocked: function() {
18836         return (this.DDM.isLocked() || this.locked);
18837     },
18838
18839     /**
18840      * Fired when this object is clicked
18841      * @method handleMouseDown
18842      * @param {Event} e
18843      * @param {Roo.dd.DragDrop} oDD the clicked dd object (this dd obj)
18844      * @private
18845      */
18846     handleMouseDown: function(e, oDD){
18847      
18848         if (!Roo.isTouch && this.primaryButtonOnly && e.button != 0) {
18849             //Roo.log('not touch/ button !=0');
18850             return;
18851         }
18852         if (e.browserEvent.touches && e.browserEvent.touches.length != 1) {
18853             return; // double touch..
18854         }
18855         
18856
18857         if (this.isLocked()) {
18858             //Roo.log('locked');
18859             return;
18860         }
18861
18862         this.DDM.refreshCache(this.groups);
18863 //        Roo.log([Roo.lib.Event.getPageX(e), Roo.lib.Event.getPageY(e)]);
18864         var pt = new Roo.lib.Point(Roo.lib.Event.getPageX(e), Roo.lib.Event.getPageY(e));
18865         if (!this.hasOuterHandles && !this.DDM.isOverTarget(pt, this) )  {
18866             //Roo.log('no outer handes or not over target');
18867                 // do nothing.
18868         } else {
18869 //            Roo.log('check validator');
18870             if (this.clickValidator(e)) {
18871 //                Roo.log('validate success');
18872                 // set the initial element position
18873                 this.setStartPosition();
18874
18875
18876                 this.b4MouseDown(e);
18877                 this.onMouseDown(e);
18878
18879                 this.DDM.handleMouseDown(e, this);
18880
18881                 this.DDM.stopEvent(e);
18882             } else {
18883
18884
18885             }
18886         }
18887     },
18888
18889     clickValidator: function(e) {
18890         var target = e.getTarget();
18891         return ( this.isValidHandleChild(target) &&
18892                     (this.id == this.handleElId ||
18893                         this.DDM.handleWasClicked(target, this.id)) );
18894     },
18895
18896     /**
18897      * Allows you to specify a tag name that should not start a drag operation
18898      * when clicked.  This is designed to facilitate embedding links within a
18899      * drag handle that do something other than start the drag.
18900      * @method addInvalidHandleType
18901      * @param {string} tagName the type of element to exclude
18902      */
18903     addInvalidHandleType: function(tagName) {
18904         var type = tagName.toUpperCase();
18905         this.invalidHandleTypes[type] = type;
18906     },
18907
18908     /**
18909      * Lets you to specify an element id for a child of a drag handle
18910      * that should not initiate a drag
18911      * @method addInvalidHandleId
18912      * @param {string} id the element id of the element you wish to ignore
18913      */
18914     addInvalidHandleId: function(id) {
18915         if (typeof id !== "string") {
18916             id = Roo.id(id);
18917         }
18918         this.invalidHandleIds[id] = id;
18919     },
18920
18921     /**
18922      * Lets you specify a css class of elements that will not initiate a drag
18923      * @method addInvalidHandleClass
18924      * @param {string} cssClass the class of the elements you wish to ignore
18925      */
18926     addInvalidHandleClass: function(cssClass) {
18927         this.invalidHandleClasses.push(cssClass);
18928     },
18929
18930     /**
18931      * Unsets an excluded tag name set by addInvalidHandleType
18932      * @method removeInvalidHandleType
18933      * @param {string} tagName the type of element to unexclude
18934      */
18935     removeInvalidHandleType: function(tagName) {
18936         var type = tagName.toUpperCase();
18937         // this.invalidHandleTypes[type] = null;
18938         delete this.invalidHandleTypes[type];
18939     },
18940
18941     /**
18942      * Unsets an invalid handle id
18943      * @method removeInvalidHandleId
18944      * @param {string} id the id of the element to re-enable
18945      */
18946     removeInvalidHandleId: function(id) {
18947         if (typeof id !== "string") {
18948             id = Roo.id(id);
18949         }
18950         delete this.invalidHandleIds[id];
18951     },
18952
18953     /**
18954      * Unsets an invalid css class
18955      * @method removeInvalidHandleClass
18956      * @param {string} cssClass the class of the element(s) you wish to
18957      * re-enable
18958      */
18959     removeInvalidHandleClass: function(cssClass) {
18960         for (var i=0, len=this.invalidHandleClasses.length; i<len; ++i) {
18961             if (this.invalidHandleClasses[i] == cssClass) {
18962                 delete this.invalidHandleClasses[i];
18963             }
18964         }
18965     },
18966
18967     /**
18968      * Checks the tag exclusion list to see if this click should be ignored
18969      * @method isValidHandleChild
18970      * @param {HTMLElement} node the HTMLElement to evaluate
18971      * @return {boolean} true if this is a valid tag type, false if not
18972      */
18973     isValidHandleChild: function(node) {
18974
18975         var valid = true;
18976         // var n = (node.nodeName == "#text") ? node.parentNode : node;
18977         var nodeName;
18978         try {
18979             nodeName = node.nodeName.toUpperCase();
18980         } catch(e) {
18981             nodeName = node.nodeName;
18982         }
18983         valid = valid && !this.invalidHandleTypes[nodeName];
18984         valid = valid && !this.invalidHandleIds[node.id];
18985
18986         for (var i=0, len=this.invalidHandleClasses.length; valid && i<len; ++i) {
18987             valid = !Dom.hasClass(node, this.invalidHandleClasses[i]);
18988         }
18989
18990
18991         return valid;
18992
18993     },
18994
18995     /**
18996      * Create the array of horizontal tick marks if an interval was specified
18997      * in setXConstraint().
18998      * @method setXTicks
18999      * @private
19000      */
19001     setXTicks: function(iStartX, iTickSize) {
19002         this.xTicks = [];
19003         this.xTickSize = iTickSize;
19004
19005         var tickMap = {};
19006
19007         for (var i = this.initPageX; i >= this.minX; i = i - iTickSize) {
19008             if (!tickMap[i]) {
19009                 this.xTicks[this.xTicks.length] = i;
19010                 tickMap[i] = true;
19011             }
19012         }
19013
19014         for (i = this.initPageX; i <= this.maxX; i = i + iTickSize) {
19015             if (!tickMap[i]) {
19016                 this.xTicks[this.xTicks.length] = i;
19017                 tickMap[i] = true;
19018             }
19019         }
19020
19021         this.xTicks.sort(this.DDM.numericSort) ;
19022     },
19023
19024     /**
19025      * Create the array of vertical tick marks if an interval was specified in
19026      * setYConstraint().
19027      * @method setYTicks
19028      * @private
19029      */
19030     setYTicks: function(iStartY, iTickSize) {
19031         this.yTicks = [];
19032         this.yTickSize = iTickSize;
19033
19034         var tickMap = {};
19035
19036         for (var i = this.initPageY; i >= this.minY; i = i - iTickSize) {
19037             if (!tickMap[i]) {
19038                 this.yTicks[this.yTicks.length] = i;
19039                 tickMap[i] = true;
19040             }
19041         }
19042
19043         for (i = this.initPageY; i <= this.maxY; i = i + iTickSize) {
19044             if (!tickMap[i]) {
19045                 this.yTicks[this.yTicks.length] = i;
19046                 tickMap[i] = true;
19047             }
19048         }
19049
19050         this.yTicks.sort(this.DDM.numericSort) ;
19051     },
19052
19053     /**
19054      * By default, the element can be dragged any place on the screen.  Use
19055      * this method to limit the horizontal travel of the element.  Pass in
19056      * 0,0 for the parameters if you want to lock the drag to the y axis.
19057      * @method setXConstraint
19058      * @param {int} iLeft the number of pixels the element can move to the left
19059      * @param {int} iRight the number of pixels the element can move to the
19060      * right
19061      * @param {int} iTickSize optional parameter for specifying that the
19062      * element
19063      * should move iTickSize pixels at a time.
19064      */
19065     setXConstraint: function(iLeft, iRight, iTickSize) {
19066         this.leftConstraint = iLeft;
19067         this.rightConstraint = iRight;
19068
19069         this.minX = this.initPageX - iLeft;
19070         this.maxX = this.initPageX + iRight;
19071         if (iTickSize) { this.setXTicks(this.initPageX, iTickSize); }
19072
19073         this.constrainX = true;
19074     },
19075
19076     /**
19077      * Clears any constraints applied to this instance.  Also clears ticks
19078      * since they can't exist independent of a constraint at this time.
19079      * @method clearConstraints
19080      */
19081     clearConstraints: function() {
19082         this.constrainX = false;
19083         this.constrainY = false;
19084         this.clearTicks();
19085     },
19086
19087     /**
19088      * Clears any tick interval defined for this instance
19089      * @method clearTicks
19090      */
19091     clearTicks: function() {
19092         this.xTicks = null;
19093         this.yTicks = null;
19094         this.xTickSize = 0;
19095         this.yTickSize = 0;
19096     },
19097
19098     /**
19099      * By default, the element can be dragged any place on the screen.  Set
19100      * this to limit the vertical travel of the element.  Pass in 0,0 for the
19101      * parameters if you want to lock the drag to the x axis.
19102      * @method setYConstraint
19103      * @param {int} iUp the number of pixels the element can move up
19104      * @param {int} iDown the number of pixels the element can move down
19105      * @param {int} iTickSize optional parameter for specifying that the
19106      * element should move iTickSize pixels at a time.
19107      */
19108     setYConstraint: function(iUp, iDown, iTickSize) {
19109         this.topConstraint = iUp;
19110         this.bottomConstraint = iDown;
19111
19112         this.minY = this.initPageY - iUp;
19113         this.maxY = this.initPageY + iDown;
19114         if (iTickSize) { this.setYTicks(this.initPageY, iTickSize); }
19115
19116         this.constrainY = true;
19117
19118     },
19119
19120     /**
19121      * resetConstraints must be called if you manually reposition a dd element.
19122      * @method resetConstraints
19123      * @param {boolean} maintainOffset
19124      */
19125     resetConstraints: function() {
19126
19127
19128         // Maintain offsets if necessary
19129         if (this.initPageX || this.initPageX === 0) {
19130             // figure out how much this thing has moved
19131             var dx = (this.maintainOffset) ? this.lastPageX - this.initPageX : 0;
19132             var dy = (this.maintainOffset) ? this.lastPageY - this.initPageY : 0;
19133
19134             this.setInitPosition(dx, dy);
19135
19136         // This is the first time we have detected the element's position
19137         } else {
19138             this.setInitPosition();
19139         }
19140
19141         if (this.constrainX) {
19142             this.setXConstraint( this.leftConstraint,
19143                                  this.rightConstraint,
19144                                  this.xTickSize        );
19145         }
19146
19147         if (this.constrainY) {
19148             this.setYConstraint( this.topConstraint,
19149                                  this.bottomConstraint,
19150                                  this.yTickSize         );
19151         }
19152     },
19153
19154     /**
19155      * Normally the drag element is moved pixel by pixel, but we can specify
19156      * that it move a number of pixels at a time.  This method resolves the
19157      * location when we have it set up like this.
19158      * @method getTick
19159      * @param {int} val where we want to place the object
19160      * @param {int[]} tickArray sorted array of valid points
19161      * @return {int} the closest tick
19162      * @private
19163      */
19164     getTick: function(val, tickArray) {
19165
19166         if (!tickArray) {
19167             // If tick interval is not defined, it is effectively 1 pixel,
19168             // so we return the value passed to us.
19169             return val;
19170         } else if (tickArray[0] >= val) {
19171             // The value is lower than the first tick, so we return the first
19172             // tick.
19173             return tickArray[0];
19174         } else {
19175             for (var i=0, len=tickArray.length; i<len; ++i) {
19176                 var next = i + 1;
19177                 if (tickArray[next] && tickArray[next] >= val) {
19178                     var diff1 = val - tickArray[i];
19179                     var diff2 = tickArray[next] - val;
19180                     return (diff2 > diff1) ? tickArray[i] : tickArray[next];
19181                 }
19182             }
19183
19184             // The value is larger than the last tick, so we return the last
19185             // tick.
19186             return tickArray[tickArray.length - 1];
19187         }
19188     },
19189
19190     /**
19191      * toString method
19192      * @method toString
19193      * @return {string} string representation of the dd obj
19194      */
19195     toString: function() {
19196         return ("DragDrop " + this.id);
19197     }
19198
19199 });
19200
19201 })();
19202 /*
19203  * Based on:
19204  * Ext JS Library 1.1.1
19205  * Copyright(c) 2006-2007, Ext JS, LLC.
19206  *
19207  * Originally Released Under LGPL - original licence link has changed is not relivant.
19208  *
19209  * Fork - LGPL
19210  * <script type="text/javascript">
19211  */
19212
19213
19214 /**
19215  * The drag and drop utility provides a framework for building drag and drop
19216  * applications.  In addition to enabling drag and drop for specific elements,
19217  * the drag and drop elements are tracked by the manager class, and the
19218  * interactions between the various elements are tracked during the drag and
19219  * the implementing code is notified about these important moments.
19220  */
19221
19222 // Only load the library once.  Rewriting the manager class would orphan
19223 // existing drag and drop instances.
19224 if (!Roo.dd.DragDropMgr) {
19225
19226 /**
19227  * @class Roo.dd.DragDropMgr
19228  * DragDropMgr is a singleton that tracks the element interaction for
19229  * all DragDrop items in the window.  Generally, you will not call
19230  * this class directly, but it does have helper methods that could
19231  * be useful in your DragDrop implementations.
19232  * @singleton
19233  */
19234 Roo.dd.DragDropMgr = function() {
19235
19236     var Event = Roo.EventManager;
19237
19238     return {
19239
19240         /**
19241          * Two dimensional Array of registered DragDrop objects.  The first
19242          * dimension is the DragDrop item group, the second the DragDrop
19243          * object.
19244          * @property ids
19245          * @type {string: string}
19246          * @private
19247          * @static
19248          */
19249         ids: {},
19250
19251         /**
19252          * Array of element ids defined as drag handles.  Used to determine
19253          * if the element that generated the mousedown event is actually the
19254          * handle and not the html element itself.
19255          * @property handleIds
19256          * @type {string: string}
19257          * @private
19258          * @static
19259          */
19260         handleIds: {},
19261
19262         /**
19263          * the DragDrop object that is currently being dragged
19264          * @property dragCurrent
19265          * @type DragDrop
19266          * @private
19267          * @static
19268          **/
19269         dragCurrent: null,
19270
19271         /**
19272          * the DragDrop object(s) that are being hovered over
19273          * @property dragOvers
19274          * @type Array
19275          * @private
19276          * @static
19277          */
19278         dragOvers: {},
19279
19280         /**
19281          * the X distance between the cursor and the object being dragged
19282          * @property deltaX
19283          * @type int
19284          * @private
19285          * @static
19286          */
19287         deltaX: 0,
19288
19289         /**
19290          * the Y distance between the cursor and the object being dragged
19291          * @property deltaY
19292          * @type int
19293          * @private
19294          * @static
19295          */
19296         deltaY: 0,
19297
19298         /**
19299          * Flag to determine if we should prevent the default behavior of the
19300          * events we define. By default this is true, but this can be set to
19301          * false if you need the default behavior (not recommended)
19302          * @property preventDefault
19303          * @type boolean
19304          * @static
19305          */
19306         preventDefault: true,
19307
19308         /**
19309          * Flag to determine if we should stop the propagation of the events
19310          * we generate. This is true by default but you may want to set it to
19311          * false if the html element contains other features that require the
19312          * mouse click.
19313          * @property stopPropagation
19314          * @type boolean
19315          * @static
19316          */
19317         stopPropagation: true,
19318
19319         /**
19320          * Internal flag that is set to true when drag and drop has been
19321          * intialized
19322          * @property initialized
19323          * @private
19324          * @static
19325          */
19326         initalized: false,
19327
19328         /**
19329          * All drag and drop can be disabled.
19330          * @property locked
19331          * @private
19332          * @static
19333          */
19334         locked: false,
19335
19336         /**
19337          * Called the first time an element is registered.
19338          * @method init
19339          * @private
19340          * @static
19341          */
19342         init: function() {
19343             this.initialized = true;
19344         },
19345
19346         /**
19347          * In point mode, drag and drop interaction is defined by the
19348          * location of the cursor during the drag/drop
19349          * @property POINT
19350          * @type int
19351          * @static
19352          */
19353         POINT: 0,
19354
19355         /**
19356          * In intersect mode, drag and drop interactio nis defined by the
19357          * overlap of two or more drag and drop objects.
19358          * @property INTERSECT
19359          * @type int
19360          * @static
19361          */
19362         INTERSECT: 1,
19363
19364         /**
19365          * The current drag and drop mode.  Default: POINT
19366          * @property mode
19367          * @type int
19368          * @static
19369          */
19370         mode: 0,
19371
19372         /**
19373          * Runs method on all drag and drop objects
19374          * @method _execOnAll
19375          * @private
19376          * @static
19377          */
19378         _execOnAll: function(sMethod, args) {
19379             for (var i in this.ids) {
19380                 for (var j in this.ids[i]) {
19381                     var oDD = this.ids[i][j];
19382                     if (! this.isTypeOfDD(oDD)) {
19383                         continue;
19384                     }
19385                     oDD[sMethod].apply(oDD, args);
19386                 }
19387             }
19388         },
19389
19390         /**
19391          * Drag and drop initialization.  Sets up the global event handlers
19392          * @method _onLoad
19393          * @private
19394          * @static
19395          */
19396         _onLoad: function() {
19397
19398             this.init();
19399
19400             if (!Roo.isTouch) {
19401                 Event.on(document, "mouseup",   this.handleMouseUp, this, true);
19402                 Event.on(document, "mousemove", this.handleMouseMove, this, true);
19403             }
19404             Event.on(document, "touchend",   this.handleMouseUp, this, true);
19405             Event.on(document, "touchmove", this.handleMouseMove, this, true);
19406             
19407             Event.on(window,   "unload",    this._onUnload, this, true);
19408             Event.on(window,   "resize",    this._onResize, this, true);
19409             // Event.on(window,   "mouseout",    this._test);
19410
19411         },
19412
19413         /**
19414          * Reset constraints on all drag and drop objs
19415          * @method _onResize
19416          * @private
19417          * @static
19418          */
19419         _onResize: function(e) {
19420             this._execOnAll("resetConstraints", []);
19421         },
19422
19423         /**
19424          * Lock all drag and drop functionality
19425          * @method lock
19426          * @static
19427          */
19428         lock: function() { this.locked = true; },
19429
19430         /**
19431          * Unlock all drag and drop functionality
19432          * @method unlock
19433          * @static
19434          */
19435         unlock: function() { this.locked = false; },
19436
19437         /**
19438          * Is drag and drop locked?
19439          * @method isLocked
19440          * @return {boolean} True if drag and drop is locked, false otherwise.
19441          * @static
19442          */
19443         isLocked: function() { return this.locked; },
19444
19445         /**
19446          * Location cache that is set for all drag drop objects when a drag is
19447          * initiated, cleared when the drag is finished.
19448          * @property locationCache
19449          * @private
19450          * @static
19451          */
19452         locationCache: {},
19453
19454         /**
19455          * Set useCache to false if you want to force object the lookup of each
19456          * drag and drop linked element constantly during a drag.
19457          * @property useCache
19458          * @type boolean
19459          * @static
19460          */
19461         useCache: true,
19462
19463         /**
19464          * The number of pixels that the mouse needs to move after the
19465          * mousedown before the drag is initiated.  Default=3;
19466          * @property clickPixelThresh
19467          * @type int
19468          * @static
19469          */
19470         clickPixelThresh: 3,
19471
19472         /**
19473          * The number of milliseconds after the mousedown event to initiate the
19474          * drag if we don't get a mouseup event. Default=1000
19475          * @property clickTimeThresh
19476          * @type int
19477          * @static
19478          */
19479         clickTimeThresh: 350,
19480
19481         /**
19482          * Flag that indicates that either the drag pixel threshold or the
19483          * mousdown time threshold has been met
19484          * @property dragThreshMet
19485          * @type boolean
19486          * @private
19487          * @static
19488          */
19489         dragThreshMet: false,
19490
19491         /**
19492          * Timeout used for the click time threshold
19493          * @property clickTimeout
19494          * @type Object
19495          * @private
19496          * @static
19497          */
19498         clickTimeout: null,
19499
19500         /**
19501          * The X position of the mousedown event stored for later use when a
19502          * drag threshold is met.
19503          * @property startX
19504          * @type int
19505          * @private
19506          * @static
19507          */
19508         startX: 0,
19509
19510         /**
19511          * The Y position of the mousedown event stored for later use when a
19512          * drag threshold is met.
19513          * @property startY
19514          * @type int
19515          * @private
19516          * @static
19517          */
19518         startY: 0,
19519
19520         /**
19521          * Each DragDrop instance must be registered with the DragDropMgr.
19522          * This is executed in DragDrop.init()
19523          * @method regDragDrop
19524          * @param {DragDrop} oDD the DragDrop object to register
19525          * @param {String} sGroup the name of the group this element belongs to
19526          * @static
19527          */
19528         regDragDrop: function(oDD, sGroup) {
19529             if (!this.initialized) { this.init(); }
19530
19531             if (!this.ids[sGroup]) {
19532                 this.ids[sGroup] = {};
19533             }
19534             this.ids[sGroup][oDD.id] = oDD;
19535         },
19536
19537         /**
19538          * Removes the supplied dd instance from the supplied group. Executed
19539          * by DragDrop.removeFromGroup, so don't call this function directly.
19540          * @method removeDDFromGroup
19541          * @private
19542          * @static
19543          */
19544         removeDDFromGroup: function(oDD, sGroup) {
19545             if (!this.ids[sGroup]) {
19546                 this.ids[sGroup] = {};
19547             }
19548
19549             var obj = this.ids[sGroup];
19550             if (obj && obj[oDD.id]) {
19551                 delete obj[oDD.id];
19552             }
19553         },
19554
19555         /**
19556          * Unregisters a drag and drop item.  This is executed in
19557          * DragDrop.unreg, use that method instead of calling this directly.
19558          * @method _remove
19559          * @private
19560          * @static
19561          */
19562         _remove: function(oDD) {
19563             for (var g in oDD.groups) {
19564                 if (g && this.ids[g][oDD.id]) {
19565                     delete this.ids[g][oDD.id];
19566                 }
19567             }
19568             delete this.handleIds[oDD.id];
19569         },
19570
19571         /**
19572          * Each DragDrop handle element must be registered.  This is done
19573          * automatically when executing DragDrop.setHandleElId()
19574          * @method regHandle
19575          * @param {String} sDDId the DragDrop id this element is a handle for
19576          * @param {String} sHandleId the id of the element that is the drag
19577          * handle
19578          * @static
19579          */
19580         regHandle: function(sDDId, sHandleId) {
19581             if (!this.handleIds[sDDId]) {
19582                 this.handleIds[sDDId] = {};
19583             }
19584             this.handleIds[sDDId][sHandleId] = sHandleId;
19585         },
19586
19587         /**
19588          * Utility function to determine if a given element has been
19589          * registered as a drag drop item.
19590          * @method isDragDrop
19591          * @param {String} id the element id to check
19592          * @return {boolean} true if this element is a DragDrop item,
19593          * false otherwise
19594          * @static
19595          */
19596         isDragDrop: function(id) {
19597             return ( this.getDDById(id) ) ? true : false;
19598         },
19599
19600         /**
19601          * Returns the drag and drop instances that are in all groups the
19602          * passed in instance belongs to.
19603          * @method getRelated
19604          * @param {DragDrop} p_oDD the obj to get related data for
19605          * @param {boolean} bTargetsOnly if true, only return targetable objs
19606          * @return {DragDrop[]} the related instances
19607          * @static
19608          */
19609         getRelated: function(p_oDD, bTargetsOnly) {
19610             var oDDs = [];
19611             for (var i in p_oDD.groups) {
19612                 for (j in this.ids[i]) {
19613                     var dd = this.ids[i][j];
19614                     if (! this.isTypeOfDD(dd)) {
19615                         continue;
19616                     }
19617                     if (!bTargetsOnly || dd.isTarget) {
19618                         oDDs[oDDs.length] = dd;
19619                     }
19620                 }
19621             }
19622
19623             return oDDs;
19624         },
19625
19626         /**
19627          * Returns true if the specified dd target is a legal target for
19628          * the specifice drag obj
19629          * @method isLegalTarget
19630          * @param {DragDrop} the drag obj
19631          * @param {DragDrop} the target
19632          * @return {boolean} true if the target is a legal target for the
19633          * dd obj
19634          * @static
19635          */
19636         isLegalTarget: function (oDD, oTargetDD) {
19637             var targets = this.getRelated(oDD, true);
19638             for (var i=0, len=targets.length;i<len;++i) {
19639                 if (targets[i].id == oTargetDD.id) {
19640                     return true;
19641                 }
19642             }
19643
19644             return false;
19645         },
19646
19647         /**
19648          * My goal is to be able to transparently determine if an object is
19649          * typeof DragDrop, and the exact subclass of DragDrop.  typeof
19650          * returns "object", oDD.constructor.toString() always returns
19651          * "DragDrop" and not the name of the subclass.  So for now it just
19652          * evaluates a well-known variable in DragDrop.
19653          * @method isTypeOfDD
19654          * @param {Object} the object to evaluate
19655          * @return {boolean} true if typeof oDD = DragDrop
19656          * @static
19657          */
19658         isTypeOfDD: function (oDD) {
19659             return (oDD && oDD.__ygDragDrop);
19660         },
19661
19662         /**
19663          * Utility function to determine if a given element has been
19664          * registered as a drag drop handle for the given Drag Drop object.
19665          * @method isHandle
19666          * @param {String} id the element id to check
19667          * @return {boolean} true if this element is a DragDrop handle, false
19668          * otherwise
19669          * @static
19670          */
19671         isHandle: function(sDDId, sHandleId) {
19672             return ( this.handleIds[sDDId] &&
19673                             this.handleIds[sDDId][sHandleId] );
19674         },
19675
19676         /**
19677          * Returns the DragDrop instance for a given id
19678          * @method getDDById
19679          * @param {String} id the id of the DragDrop object
19680          * @return {DragDrop} the drag drop object, null if it is not found
19681          * @static
19682          */
19683         getDDById: function(id) {
19684             for (var i in this.ids) {
19685                 if (this.ids[i][id]) {
19686                     return this.ids[i][id];
19687                 }
19688             }
19689             return null;
19690         },
19691
19692         /**
19693          * Fired after a registered DragDrop object gets the mousedown event.
19694          * Sets up the events required to track the object being dragged
19695          * @method handleMouseDown
19696          * @param {Event} e the event
19697          * @param oDD the DragDrop object being dragged
19698          * @private
19699          * @static
19700          */
19701         handleMouseDown: function(e, oDD) {
19702             if(Roo.QuickTips){
19703                 Roo.QuickTips.disable();
19704             }
19705             this.currentTarget = e.getTarget();
19706
19707             this.dragCurrent = oDD;
19708
19709             var el = oDD.getEl();
19710
19711             // track start position
19712             this.startX = e.getPageX();
19713             this.startY = e.getPageY();
19714
19715             this.deltaX = this.startX - el.offsetLeft;
19716             this.deltaY = this.startY - el.offsetTop;
19717
19718             this.dragThreshMet = false;
19719
19720             this.clickTimeout = setTimeout(
19721                     function() {
19722                         var DDM = Roo.dd.DDM;
19723                         DDM.startDrag(DDM.startX, DDM.startY);
19724                     },
19725                     this.clickTimeThresh );
19726         },
19727
19728         /**
19729          * Fired when either the drag pixel threshol or the mousedown hold
19730          * time threshold has been met.
19731          * @method startDrag
19732          * @param x {int} the X position of the original mousedown
19733          * @param y {int} the Y position of the original mousedown
19734          * @static
19735          */
19736         startDrag: function(x, y) {
19737             clearTimeout(this.clickTimeout);
19738             if (this.dragCurrent) {
19739                 this.dragCurrent.b4StartDrag(x, y);
19740                 this.dragCurrent.startDrag(x, y);
19741             }
19742             this.dragThreshMet = true;
19743         },
19744
19745         /**
19746          * Internal function to handle the mouseup event.  Will be invoked
19747          * from the context of the document.
19748          * @method handleMouseUp
19749          * @param {Event} e the event
19750          * @private
19751          * @static
19752          */
19753         handleMouseUp: function(e) {
19754
19755             if(Roo.QuickTips){
19756                 Roo.QuickTips.enable();
19757             }
19758             if (! this.dragCurrent) {
19759                 return;
19760             }
19761
19762             clearTimeout(this.clickTimeout);
19763
19764             if (this.dragThreshMet) {
19765                 this.fireEvents(e, true);
19766             } else {
19767             }
19768
19769             this.stopDrag(e);
19770
19771             this.stopEvent(e);
19772         },
19773
19774         /**
19775          * Utility to stop event propagation and event default, if these
19776          * features are turned on.
19777          * @method stopEvent
19778          * @param {Event} e the event as returned by this.getEvent()
19779          * @static
19780          */
19781         stopEvent: function(e){
19782             if(this.stopPropagation) {
19783                 e.stopPropagation();
19784             }
19785
19786             if (this.preventDefault) {
19787                 e.preventDefault();
19788             }
19789         },
19790
19791         /**
19792          * Internal function to clean up event handlers after the drag
19793          * operation is complete
19794          * @method stopDrag
19795          * @param {Event} e the event
19796          * @private
19797          * @static
19798          */
19799         stopDrag: function(e) {
19800             // Fire the drag end event for the item that was dragged
19801             if (this.dragCurrent) {
19802                 if (this.dragThreshMet) {
19803                     this.dragCurrent.b4EndDrag(e);
19804                     this.dragCurrent.endDrag(e);
19805                 }
19806
19807                 this.dragCurrent.onMouseUp(e);
19808             }
19809
19810             this.dragCurrent = null;
19811             this.dragOvers = {};
19812         },
19813
19814         /**
19815          * Internal function to handle the mousemove event.  Will be invoked
19816          * from the context of the html element.
19817          *
19818          * @TODO figure out what we can do about mouse events lost when the
19819          * user drags objects beyond the window boundary.  Currently we can
19820          * detect this in internet explorer by verifying that the mouse is
19821          * down during the mousemove event.  Firefox doesn't give us the
19822          * button state on the mousemove event.
19823          * @method handleMouseMove
19824          * @param {Event} e the event
19825          * @private
19826          * @static
19827          */
19828         handleMouseMove: function(e) {
19829             if (! this.dragCurrent) {
19830                 return true;
19831             }
19832
19833             // var button = e.which || e.button;
19834
19835             // check for IE mouseup outside of page boundary
19836             if (Roo.isIE && (e.button !== 0 && e.button !== 1 && e.button !== 2)) {
19837                 this.stopEvent(e);
19838                 return this.handleMouseUp(e);
19839             }
19840
19841             if (!this.dragThreshMet) {
19842                 var diffX = Math.abs(this.startX - e.getPageX());
19843                 var diffY = Math.abs(this.startY - e.getPageY());
19844                 if (diffX > this.clickPixelThresh ||
19845                             diffY > this.clickPixelThresh) {
19846                     this.startDrag(this.startX, this.startY);
19847                 }
19848             }
19849
19850             if (this.dragThreshMet) {
19851                 this.dragCurrent.b4Drag(e);
19852                 this.dragCurrent.onDrag(e);
19853                 if(!this.dragCurrent.moveOnly){
19854                     this.fireEvents(e, false);
19855                 }
19856             }
19857
19858             this.stopEvent(e);
19859
19860             return true;
19861         },
19862
19863         /**
19864          * Iterates over all of the DragDrop elements to find ones we are
19865          * hovering over or dropping on
19866          * @method fireEvents
19867          * @param {Event} e the event
19868          * @param {boolean} isDrop is this a drop op or a mouseover op?
19869          * @private
19870          * @static
19871          */
19872         fireEvents: function(e, isDrop) {
19873             var dc = this.dragCurrent;
19874
19875             // If the user did the mouse up outside of the window, we could
19876             // get here even though we have ended the drag.
19877             if (!dc || dc.isLocked()) {
19878                 return;
19879             }
19880
19881             var pt = e.getPoint();
19882
19883             // cache the previous dragOver array
19884             var oldOvers = [];
19885
19886             var outEvts   = [];
19887             var overEvts  = [];
19888             var dropEvts  = [];
19889             var enterEvts = [];
19890
19891             // Check to see if the object(s) we were hovering over is no longer
19892             // being hovered over so we can fire the onDragOut event
19893             for (var i in this.dragOvers) {
19894
19895                 var ddo = this.dragOvers[i];
19896
19897                 if (! this.isTypeOfDD(ddo)) {
19898                     continue;
19899                 }
19900
19901                 if (! this.isOverTarget(pt, ddo, this.mode)) {
19902                     outEvts.push( ddo );
19903                 }
19904
19905                 oldOvers[i] = true;
19906                 delete this.dragOvers[i];
19907             }
19908
19909             for (var sGroup in dc.groups) {
19910
19911                 if ("string" != typeof sGroup) {
19912                     continue;
19913                 }
19914
19915                 for (i in this.ids[sGroup]) {
19916                     var oDD = this.ids[sGroup][i];
19917                     if (! this.isTypeOfDD(oDD)) {
19918                         continue;
19919                     }
19920
19921                     if (oDD.isTarget && !oDD.isLocked() && oDD != dc) {
19922                         if (this.isOverTarget(pt, oDD, this.mode)) {
19923                             // look for drop interactions
19924                             if (isDrop) {
19925                                 dropEvts.push( oDD );
19926                             // look for drag enter and drag over interactions
19927                             } else {
19928
19929                                 // initial drag over: dragEnter fires
19930                                 if (!oldOvers[oDD.id]) {
19931                                     enterEvts.push( oDD );
19932                                 // subsequent drag overs: dragOver fires
19933                                 } else {
19934                                     overEvts.push( oDD );
19935                                 }
19936
19937                                 this.dragOvers[oDD.id] = oDD;
19938                             }
19939                         }
19940                     }
19941                 }
19942             }
19943
19944             if (this.mode) {
19945                 if (outEvts.length) {
19946                     dc.b4DragOut(e, outEvts);
19947                     dc.onDragOut(e, outEvts);
19948                 }
19949
19950                 if (enterEvts.length) {
19951                     dc.onDragEnter(e, enterEvts);
19952                 }
19953
19954                 if (overEvts.length) {
19955                     dc.b4DragOver(e, overEvts);
19956                     dc.onDragOver(e, overEvts);
19957                 }
19958
19959                 if (dropEvts.length) {
19960                     dc.b4DragDrop(e, dropEvts);
19961                     dc.onDragDrop(e, dropEvts);
19962                 }
19963
19964             } else {
19965                 // fire dragout events
19966                 var len = 0;
19967                 for (i=0, len=outEvts.length; i<len; ++i) {
19968                     dc.b4DragOut(e, outEvts[i].id);
19969                     dc.onDragOut(e, outEvts[i].id);
19970                 }
19971
19972                 // fire enter events
19973                 for (i=0,len=enterEvts.length; i<len; ++i) {
19974                     // dc.b4DragEnter(e, oDD.id);
19975                     dc.onDragEnter(e, enterEvts[i].id);
19976                 }
19977
19978                 // fire over events
19979                 for (i=0,len=overEvts.length; i<len; ++i) {
19980                     dc.b4DragOver(e, overEvts[i].id);
19981                     dc.onDragOver(e, overEvts[i].id);
19982                 }
19983
19984                 // fire drop events
19985                 for (i=0, len=dropEvts.length; i<len; ++i) {
19986                     dc.b4DragDrop(e, dropEvts[i].id);
19987                     dc.onDragDrop(e, dropEvts[i].id);
19988                 }
19989
19990             }
19991
19992             // notify about a drop that did not find a target
19993             if (isDrop && !dropEvts.length) {
19994                 dc.onInvalidDrop(e);
19995             }
19996
19997         },
19998
19999         /**
20000          * Helper function for getting the best match from the list of drag
20001          * and drop objects returned by the drag and drop events when we are
20002          * in INTERSECT mode.  It returns either the first object that the
20003          * cursor is over, or the object that has the greatest overlap with
20004          * the dragged element.
20005          * @method getBestMatch
20006          * @param  {DragDrop[]} dds The array of drag and drop objects
20007          * targeted
20008          * @return {DragDrop}       The best single match
20009          * @static
20010          */
20011         getBestMatch: function(dds) {
20012             var winner = null;
20013             // Return null if the input is not what we expect
20014             //if (!dds || !dds.length || dds.length == 0) {
20015                // winner = null;
20016             // If there is only one item, it wins
20017             //} else if (dds.length == 1) {
20018
20019             var len = dds.length;
20020
20021             if (len == 1) {
20022                 winner = dds[0];
20023             } else {
20024                 // Loop through the targeted items
20025                 for (var i=0; i<len; ++i) {
20026                     var dd = dds[i];
20027                     // If the cursor is over the object, it wins.  If the
20028                     // cursor is over multiple matches, the first one we come
20029                     // to wins.
20030                     if (dd.cursorIsOver) {
20031                         winner = dd;
20032                         break;
20033                     // Otherwise the object with the most overlap wins
20034                     } else {
20035                         if (!winner ||
20036                             winner.overlap.getArea() < dd.overlap.getArea()) {
20037                             winner = dd;
20038                         }
20039                     }
20040                 }
20041             }
20042
20043             return winner;
20044         },
20045
20046         /**
20047          * Refreshes the cache of the top-left and bottom-right points of the
20048          * drag and drop objects in the specified group(s).  This is in the
20049          * format that is stored in the drag and drop instance, so typical
20050          * usage is:
20051          * <code>
20052          * Roo.dd.DragDropMgr.refreshCache(ddinstance.groups);
20053          * </code>
20054          * Alternatively:
20055          * <code>
20056          * Roo.dd.DragDropMgr.refreshCache({group1:true, group2:true});
20057          * </code>
20058          * @TODO this really should be an indexed array.  Alternatively this
20059          * method could accept both.
20060          * @method refreshCache
20061          * @param {Object} groups an associative array of groups to refresh
20062          * @static
20063          */
20064         refreshCache: function(groups) {
20065             for (var sGroup in groups) {
20066                 if ("string" != typeof sGroup) {
20067                     continue;
20068                 }
20069                 for (var i in this.ids[sGroup]) {
20070                     var oDD = this.ids[sGroup][i];
20071
20072                     if (this.isTypeOfDD(oDD)) {
20073                     // if (this.isTypeOfDD(oDD) && oDD.isTarget) {
20074                         var loc = this.getLocation(oDD);
20075                         if (loc) {
20076                             this.locationCache[oDD.id] = loc;
20077                         } else {
20078                             delete this.locationCache[oDD.id];
20079                             // this will unregister the drag and drop object if
20080                             // the element is not in a usable state
20081                             // oDD.unreg();
20082                         }
20083                     }
20084                 }
20085             }
20086         },
20087
20088         /**
20089          * This checks to make sure an element exists and is in the DOM.  The
20090          * main purpose is to handle cases where innerHTML is used to remove
20091          * drag and drop objects from the DOM.  IE provides an 'unspecified
20092          * error' when trying to access the offsetParent of such an element
20093          * @method verifyEl
20094          * @param {HTMLElement} el the element to check
20095          * @return {boolean} true if the element looks usable
20096          * @static
20097          */
20098         verifyEl: function(el) {
20099             if (el) {
20100                 var parent;
20101                 if(Roo.isIE){
20102                     try{
20103                         parent = el.offsetParent;
20104                     }catch(e){}
20105                 }else{
20106                     parent = el.offsetParent;
20107                 }
20108                 if (parent) {
20109                     return true;
20110                 }
20111             }
20112
20113             return false;
20114         },
20115
20116         /**
20117          * Returns a Region object containing the drag and drop element's position
20118          * and size, including the padding configured for it
20119          * @method getLocation
20120          * @param {DragDrop} oDD the drag and drop object to get the
20121          *                       location for
20122          * @return {Roo.lib.Region} a Region object representing the total area
20123          *                             the element occupies, including any padding
20124          *                             the instance is configured for.
20125          * @static
20126          */
20127         getLocation: function(oDD) {
20128             if (! this.isTypeOfDD(oDD)) {
20129                 return null;
20130             }
20131
20132             var el = oDD.getEl(), pos, x1, x2, y1, y2, t, r, b, l;
20133
20134             try {
20135                 pos= Roo.lib.Dom.getXY(el);
20136             } catch (e) { }
20137
20138             if (!pos) {
20139                 return null;
20140             }
20141
20142             x1 = pos[0];
20143             x2 = x1 + el.offsetWidth;
20144             y1 = pos[1];
20145             y2 = y1 + el.offsetHeight;
20146
20147             t = y1 - oDD.padding[0];
20148             r = x2 + oDD.padding[1];
20149             b = y2 + oDD.padding[2];
20150             l = x1 - oDD.padding[3];
20151
20152             return new Roo.lib.Region( t, r, b, l );
20153         },
20154
20155         /**
20156          * Checks the cursor location to see if it over the target
20157          * @method isOverTarget
20158          * @param {Roo.lib.Point} pt The point to evaluate
20159          * @param {DragDrop} oTarget the DragDrop object we are inspecting
20160          * @return {boolean} true if the mouse is over the target
20161          * @private
20162          * @static
20163          */
20164         isOverTarget: function(pt, oTarget, intersect) {
20165             // use cache if available
20166             var loc = this.locationCache[oTarget.id];
20167             if (!loc || !this.useCache) {
20168                 loc = this.getLocation(oTarget);
20169                 this.locationCache[oTarget.id] = loc;
20170
20171             }
20172
20173             if (!loc) {
20174                 return false;
20175             }
20176
20177             oTarget.cursorIsOver = loc.contains( pt );
20178
20179             // DragDrop is using this as a sanity check for the initial mousedown
20180             // in this case we are done.  In POINT mode, if the drag obj has no
20181             // contraints, we are also done. Otherwise we need to evaluate the
20182             // location of the target as related to the actual location of the
20183             // dragged element.
20184             var dc = this.dragCurrent;
20185             if (!dc || !dc.getTargetCoord ||
20186                     (!intersect && !dc.constrainX && !dc.constrainY)) {
20187                 return oTarget.cursorIsOver;
20188             }
20189
20190             oTarget.overlap = null;
20191
20192             // Get the current location of the drag element, this is the
20193             // location of the mouse event less the delta that represents
20194             // where the original mousedown happened on the element.  We
20195             // need to consider constraints and ticks as well.
20196             var pos = dc.getTargetCoord(pt.x, pt.y);
20197
20198             var el = dc.getDragEl();
20199             var curRegion = new Roo.lib.Region( pos.y,
20200                                                    pos.x + el.offsetWidth,
20201                                                    pos.y + el.offsetHeight,
20202                                                    pos.x );
20203
20204             var overlap = curRegion.intersect(loc);
20205
20206             if (overlap) {
20207                 oTarget.overlap = overlap;
20208                 return (intersect) ? true : oTarget.cursorIsOver;
20209             } else {
20210                 return false;
20211             }
20212         },
20213
20214         /**
20215          * unload event handler
20216          * @method _onUnload
20217          * @private
20218          * @static
20219          */
20220         _onUnload: function(e, me) {
20221             Roo.dd.DragDropMgr.unregAll();
20222         },
20223
20224         /**
20225          * Cleans up the drag and drop events and objects.
20226          * @method unregAll
20227          * @private
20228          * @static
20229          */
20230         unregAll: function() {
20231
20232             if (this.dragCurrent) {
20233                 this.stopDrag();
20234                 this.dragCurrent = null;
20235             }
20236
20237             this._execOnAll("unreg", []);
20238
20239             for (i in this.elementCache) {
20240                 delete this.elementCache[i];
20241             }
20242
20243             this.elementCache = {};
20244             this.ids = {};
20245         },
20246
20247         /**
20248          * A cache of DOM elements
20249          * @property elementCache
20250          * @private
20251          * @static
20252          */
20253         elementCache: {},
20254
20255         /**
20256          * Get the wrapper for the DOM element specified
20257          * @method getElWrapper
20258          * @param {String} id the id of the element to get
20259          * @return {Roo.dd.DDM.ElementWrapper} the wrapped element
20260          * @private
20261          * @deprecated This wrapper isn't that useful
20262          * @static
20263          */
20264         getElWrapper: function(id) {
20265             var oWrapper = this.elementCache[id];
20266             if (!oWrapper || !oWrapper.el) {
20267                 oWrapper = this.elementCache[id] =
20268                     new this.ElementWrapper(Roo.getDom(id));
20269             }
20270             return oWrapper;
20271         },
20272
20273         /**
20274          * Returns the actual DOM element
20275          * @method getElement
20276          * @param {String} id the id of the elment to get
20277          * @return {Object} The element
20278          * @deprecated use Roo.getDom instead
20279          * @static
20280          */
20281         getElement: function(id) {
20282             return Roo.getDom(id);
20283         },
20284
20285         /**
20286          * Returns the style property for the DOM element (i.e.,
20287          * document.getElById(id).style)
20288          * @method getCss
20289          * @param {String} id the id of the elment to get
20290          * @return {Object} The style property of the element
20291          * @deprecated use Roo.getDom instead
20292          * @static
20293          */
20294         getCss: function(id) {
20295             var el = Roo.getDom(id);
20296             return (el) ? el.style : null;
20297         },
20298
20299         /**
20300          * Inner class for cached elements
20301          * @class DragDropMgr.ElementWrapper
20302          * @for DragDropMgr
20303          * @private
20304          * @deprecated
20305          */
20306         ElementWrapper: function(el) {
20307                 /**
20308                  * The element
20309                  * @property el
20310                  */
20311                 this.el = el || null;
20312                 /**
20313                  * The element id
20314                  * @property id
20315                  */
20316                 this.id = this.el && el.id;
20317                 /**
20318                  * A reference to the style property
20319                  * @property css
20320                  */
20321                 this.css = this.el && el.style;
20322             },
20323
20324         /**
20325          * Returns the X position of an html element
20326          * @method getPosX
20327          * @param el the element for which to get the position
20328          * @return {int} the X coordinate
20329          * @for DragDropMgr
20330          * @deprecated use Roo.lib.Dom.getX instead
20331          * @static
20332          */
20333         getPosX: function(el) {
20334             return Roo.lib.Dom.getX(el);
20335         },
20336
20337         /**
20338          * Returns the Y position of an html element
20339          * @method getPosY
20340          * @param el the element for which to get the position
20341          * @return {int} the Y coordinate
20342          * @deprecated use Roo.lib.Dom.getY instead
20343          * @static
20344          */
20345         getPosY: function(el) {
20346             return Roo.lib.Dom.getY(el);
20347         },
20348
20349         /**
20350          * Swap two nodes.  In IE, we use the native method, for others we
20351          * emulate the IE behavior
20352          * @method swapNode
20353          * @param n1 the first node to swap
20354          * @param n2 the other node to swap
20355          * @static
20356          */
20357         swapNode: function(n1, n2) {
20358             if (n1.swapNode) {
20359                 n1.swapNode(n2);
20360             } else {
20361                 var p = n2.parentNode;
20362                 var s = n2.nextSibling;
20363
20364                 if (s == n1) {
20365                     p.insertBefore(n1, n2);
20366                 } else if (n2 == n1.nextSibling) {
20367                     p.insertBefore(n2, n1);
20368                 } else {
20369                     n1.parentNode.replaceChild(n2, n1);
20370                     p.insertBefore(n1, s);
20371                 }
20372             }
20373         },
20374
20375         /**
20376          * Returns the current scroll position
20377          * @method getScroll
20378          * @private
20379          * @static
20380          */
20381         getScroll: function () {
20382             var t, l, dde=document.documentElement, db=document.body;
20383             if (dde && (dde.scrollTop || dde.scrollLeft)) {
20384                 t = dde.scrollTop;
20385                 l = dde.scrollLeft;
20386             } else if (db) {
20387                 t = db.scrollTop;
20388                 l = db.scrollLeft;
20389             } else {
20390
20391             }
20392             return { top: t, left: l };
20393         },
20394
20395         /**
20396          * Returns the specified element style property
20397          * @method getStyle
20398          * @param {HTMLElement} el          the element
20399          * @param {string}      styleProp   the style property
20400          * @return {string} The value of the style property
20401          * @deprecated use Roo.lib.Dom.getStyle
20402          * @static
20403          */
20404         getStyle: function(el, styleProp) {
20405             return Roo.fly(el).getStyle(styleProp);
20406         },
20407
20408         /**
20409          * Gets the scrollTop
20410          * @method getScrollTop
20411          * @return {int} the document's scrollTop
20412          * @static
20413          */
20414         getScrollTop: function () { return this.getScroll().top; },
20415
20416         /**
20417          * Gets the scrollLeft
20418          * @method getScrollLeft
20419          * @return {int} the document's scrollTop
20420          * @static
20421          */
20422         getScrollLeft: function () { return this.getScroll().left; },
20423
20424         /**
20425          * Sets the x/y position of an element to the location of the
20426          * target element.
20427          * @method moveToEl
20428          * @param {HTMLElement} moveEl      The element to move
20429          * @param {HTMLElement} targetEl    The position reference element
20430          * @static
20431          */
20432         moveToEl: function (moveEl, targetEl) {
20433             var aCoord = Roo.lib.Dom.getXY(targetEl);
20434             Roo.lib.Dom.setXY(moveEl, aCoord);
20435         },
20436
20437         /**
20438          * Numeric array sort function
20439          * @method numericSort
20440          * @static
20441          */
20442         numericSort: function(a, b) { return (a - b); },
20443
20444         /**
20445          * Internal counter
20446          * @property _timeoutCount
20447          * @private
20448          * @static
20449          */
20450         _timeoutCount: 0,
20451
20452         /**
20453          * Trying to make the load order less important.  Without this we get
20454          * an error if this file is loaded before the Event Utility.
20455          * @method _addListeners
20456          * @private
20457          * @static
20458          */
20459         _addListeners: function() {
20460             var DDM = Roo.dd.DDM;
20461             if ( Roo.lib.Event && document ) {
20462                 DDM._onLoad();
20463             } else {
20464                 if (DDM._timeoutCount > 2000) {
20465                 } else {
20466                     setTimeout(DDM._addListeners, 10);
20467                     if (document && document.body) {
20468                         DDM._timeoutCount += 1;
20469                     }
20470                 }
20471             }
20472         },
20473
20474         /**
20475          * Recursively searches the immediate parent and all child nodes for
20476          * the handle element in order to determine wheter or not it was
20477          * clicked.
20478          * @method handleWasClicked
20479          * @param node the html element to inspect
20480          * @static
20481          */
20482         handleWasClicked: function(node, id) {
20483             if (this.isHandle(id, node.id)) {
20484                 return true;
20485             } else {
20486                 // check to see if this is a text node child of the one we want
20487                 var p = node.parentNode;
20488
20489                 while (p) {
20490                     if (this.isHandle(id, p.id)) {
20491                         return true;
20492                     } else {
20493                         p = p.parentNode;
20494                     }
20495                 }
20496             }
20497
20498             return false;
20499         }
20500
20501     };
20502
20503 }();
20504
20505 // shorter alias, save a few bytes
20506 Roo.dd.DDM = Roo.dd.DragDropMgr;
20507 Roo.dd.DDM._addListeners();
20508
20509 }/*
20510  * Based on:
20511  * Ext JS Library 1.1.1
20512  * Copyright(c) 2006-2007, Ext JS, LLC.
20513  *
20514  * Originally Released Under LGPL - original licence link has changed is not relivant.
20515  *
20516  * Fork - LGPL
20517  * <script type="text/javascript">
20518  */
20519
20520 /**
20521  * @class Roo.dd.DD
20522  * A DragDrop implementation where the linked element follows the
20523  * mouse cursor during a drag.
20524  * @extends Roo.dd.DragDrop
20525  * @constructor
20526  * @param {String} id the id of the linked element
20527  * @param {String} sGroup the group of related DragDrop items
20528  * @param {object} config an object containing configurable attributes
20529  *                Valid properties for DD:
20530  *                    scroll
20531  */
20532 Roo.dd.DD = function(id, sGroup, config) {
20533     if (id) {
20534         this.init(id, sGroup, config);
20535     }
20536 };
20537
20538 Roo.extend(Roo.dd.DD, Roo.dd.DragDrop, {
20539
20540     /**
20541      * When set to true, the utility automatically tries to scroll the browser
20542      * window wehn a drag and drop element is dragged near the viewport boundary.
20543      * Defaults to true.
20544      * @property scroll
20545      * @type boolean
20546      */
20547     scroll: true,
20548
20549     /**
20550      * Sets the pointer offset to the distance between the linked element's top
20551      * left corner and the location the element was clicked
20552      * @method autoOffset
20553      * @param {int} iPageX the X coordinate of the click
20554      * @param {int} iPageY the Y coordinate of the click
20555      */
20556     autoOffset: function(iPageX, iPageY) {
20557         var x = iPageX - this.startPageX;
20558         var y = iPageY - this.startPageY;
20559         this.setDelta(x, y);
20560     },
20561
20562     /**
20563      * Sets the pointer offset.  You can call this directly to force the
20564      * offset to be in a particular location (e.g., pass in 0,0 to set it
20565      * to the center of the object)
20566      * @method setDelta
20567      * @param {int} iDeltaX the distance from the left
20568      * @param {int} iDeltaY the distance from the top
20569      */
20570     setDelta: function(iDeltaX, iDeltaY) {
20571         this.deltaX = iDeltaX;
20572         this.deltaY = iDeltaY;
20573     },
20574
20575     /**
20576      * Sets the drag element to the location of the mousedown or click event,
20577      * maintaining the cursor location relative to the location on the element
20578      * that was clicked.  Override this if you want to place the element in a
20579      * location other than where the cursor is.
20580      * @method setDragElPos
20581      * @param {int} iPageX the X coordinate of the mousedown or drag event
20582      * @param {int} iPageY the Y coordinate of the mousedown or drag event
20583      */
20584     setDragElPos: function(iPageX, iPageY) {
20585         // the first time we do this, we are going to check to make sure
20586         // the element has css positioning
20587
20588         var el = this.getDragEl();
20589         this.alignElWithMouse(el, iPageX, iPageY);
20590     },
20591
20592     /**
20593      * Sets the element to the location of the mousedown or click event,
20594      * maintaining the cursor location relative to the location on the element
20595      * that was clicked.  Override this if you want to place the element in a
20596      * location other than where the cursor is.
20597      * @method alignElWithMouse
20598      * @param {HTMLElement} el the element to move
20599      * @param {int} iPageX the X coordinate of the mousedown or drag event
20600      * @param {int} iPageY the Y coordinate of the mousedown or drag event
20601      */
20602     alignElWithMouse: function(el, iPageX, iPageY) {
20603         var oCoord = this.getTargetCoord(iPageX, iPageY);
20604         var fly = el.dom ? el : Roo.fly(el);
20605         if (!this.deltaSetXY) {
20606             var aCoord = [oCoord.x, oCoord.y];
20607             fly.setXY(aCoord);
20608             var newLeft = fly.getLeft(true);
20609             var newTop  = fly.getTop(true);
20610             this.deltaSetXY = [ newLeft - oCoord.x, newTop - oCoord.y ];
20611         } else {
20612             fly.setLeftTop(oCoord.x + this.deltaSetXY[0], oCoord.y + this.deltaSetXY[1]);
20613         }
20614
20615         this.cachePosition(oCoord.x, oCoord.y);
20616         this.autoScroll(oCoord.x, oCoord.y, el.offsetHeight, el.offsetWidth);
20617         return oCoord;
20618     },
20619
20620     /**
20621      * Saves the most recent position so that we can reset the constraints and
20622      * tick marks on-demand.  We need to know this so that we can calculate the
20623      * number of pixels the element is offset from its original position.
20624      * @method cachePosition
20625      * @param iPageX the current x position (optional, this just makes it so we
20626      * don't have to look it up again)
20627      * @param iPageY the current y position (optional, this just makes it so we
20628      * don't have to look it up again)
20629      */
20630     cachePosition: function(iPageX, iPageY) {
20631         if (iPageX) {
20632             this.lastPageX = iPageX;
20633             this.lastPageY = iPageY;
20634         } else {
20635             var aCoord = Roo.lib.Dom.getXY(this.getEl());
20636             this.lastPageX = aCoord[0];
20637             this.lastPageY = aCoord[1];
20638         }
20639     },
20640
20641     /**
20642      * Auto-scroll the window if the dragged object has been moved beyond the
20643      * visible window boundary.
20644      * @method autoScroll
20645      * @param {int} x the drag element's x position
20646      * @param {int} y the drag element's y position
20647      * @param {int} h the height of the drag element
20648      * @param {int} w the width of the drag element
20649      * @private
20650      */
20651     autoScroll: function(x, y, h, w) {
20652
20653         if (this.scroll) {
20654             // The client height
20655             var clientH = Roo.lib.Dom.getViewWidth();
20656
20657             // The client width
20658             var clientW = Roo.lib.Dom.getViewHeight();
20659
20660             // The amt scrolled down
20661             var st = this.DDM.getScrollTop();
20662
20663             // The amt scrolled right
20664             var sl = this.DDM.getScrollLeft();
20665
20666             // Location of the bottom of the element
20667             var bot = h + y;
20668
20669             // Location of the right of the element
20670             var right = w + x;
20671
20672             // The distance from the cursor to the bottom of the visible area,
20673             // adjusted so that we don't scroll if the cursor is beyond the
20674             // element drag constraints
20675             var toBot = (clientH + st - y - this.deltaY);
20676
20677             // The distance from the cursor to the right of the visible area
20678             var toRight = (clientW + sl - x - this.deltaX);
20679
20680
20681             // How close to the edge the cursor must be before we scroll
20682             // var thresh = (document.all) ? 100 : 40;
20683             var thresh = 40;
20684
20685             // How many pixels to scroll per autoscroll op.  This helps to reduce
20686             // clunky scrolling. IE is more sensitive about this ... it needs this
20687             // value to be higher.
20688             var scrAmt = (document.all) ? 80 : 30;
20689
20690             // Scroll down if we are near the bottom of the visible page and the
20691             // obj extends below the crease
20692             if ( bot > clientH && toBot < thresh ) {
20693                 window.scrollTo(sl, st + scrAmt);
20694             }
20695
20696             // Scroll up if the window is scrolled down and the top of the object
20697             // goes above the top border
20698             if ( y < st && st > 0 && y - st < thresh ) {
20699                 window.scrollTo(sl, st - scrAmt);
20700             }
20701
20702             // Scroll right if the obj is beyond the right border and the cursor is
20703             // near the border.
20704             if ( right > clientW && toRight < thresh ) {
20705                 window.scrollTo(sl + scrAmt, st);
20706             }
20707
20708             // Scroll left if the window has been scrolled to the right and the obj
20709             // extends past the left border
20710             if ( x < sl && sl > 0 && x - sl < thresh ) {
20711                 window.scrollTo(sl - scrAmt, st);
20712             }
20713         }
20714     },
20715
20716     /**
20717      * Finds the location the element should be placed if we want to move
20718      * it to where the mouse location less the click offset would place us.
20719      * @method getTargetCoord
20720      * @param {int} iPageX the X coordinate of the click
20721      * @param {int} iPageY the Y coordinate of the click
20722      * @return an object that contains the coordinates (Object.x and Object.y)
20723      * @private
20724      */
20725     getTargetCoord: function(iPageX, iPageY) {
20726
20727
20728         var x = iPageX - this.deltaX;
20729         var y = iPageY - this.deltaY;
20730
20731         if (this.constrainX) {
20732             if (x < this.minX) { x = this.minX; }
20733             if (x > this.maxX) { x = this.maxX; }
20734         }
20735
20736         if (this.constrainY) {
20737             if (y < this.minY) { y = this.minY; }
20738             if (y > this.maxY) { y = this.maxY; }
20739         }
20740
20741         x = this.getTick(x, this.xTicks);
20742         y = this.getTick(y, this.yTicks);
20743
20744
20745         return {x:x, y:y};
20746     },
20747
20748     /*
20749      * Sets up config options specific to this class. Overrides
20750      * Roo.dd.DragDrop, but all versions of this method through the
20751      * inheritance chain are called
20752      */
20753     applyConfig: function() {
20754         Roo.dd.DD.superclass.applyConfig.call(this);
20755         this.scroll = (this.config.scroll !== false);
20756     },
20757
20758     /*
20759      * Event that fires prior to the onMouseDown event.  Overrides
20760      * Roo.dd.DragDrop.
20761      */
20762     b4MouseDown: function(e) {
20763         // this.resetConstraints();
20764         this.autoOffset(e.getPageX(),
20765                             e.getPageY());
20766     },
20767
20768     /*
20769      * Event that fires prior to the onDrag event.  Overrides
20770      * Roo.dd.DragDrop.
20771      */
20772     b4Drag: function(e) {
20773         this.setDragElPos(e.getPageX(),
20774                             e.getPageY());
20775     },
20776
20777     toString: function() {
20778         return ("DD " + this.id);
20779     }
20780
20781     //////////////////////////////////////////////////////////////////////////
20782     // Debugging ygDragDrop events that can be overridden
20783     //////////////////////////////////////////////////////////////////////////
20784     /*
20785     startDrag: function(x, y) {
20786     },
20787
20788     onDrag: function(e) {
20789     },
20790
20791     onDragEnter: function(e, id) {
20792     },
20793
20794     onDragOver: function(e, id) {
20795     },
20796
20797     onDragOut: function(e, id) {
20798     },
20799
20800     onDragDrop: function(e, id) {
20801     },
20802
20803     endDrag: function(e) {
20804     }
20805
20806     */
20807
20808 });/*
20809  * Based on:
20810  * Ext JS Library 1.1.1
20811  * Copyright(c) 2006-2007, Ext JS, LLC.
20812  *
20813  * Originally Released Under LGPL - original licence link has changed is not relivant.
20814  *
20815  * Fork - LGPL
20816  * <script type="text/javascript">
20817  */
20818
20819 /**
20820  * @class Roo.dd.DDProxy
20821  * A DragDrop implementation that inserts an empty, bordered div into
20822  * the document that follows the cursor during drag operations.  At the time of
20823  * the click, the frame div is resized to the dimensions of the linked html
20824  * element, and moved to the exact location of the linked element.
20825  *
20826  * References to the "frame" element refer to the single proxy element that
20827  * was created to be dragged in place of all DDProxy elements on the
20828  * page.
20829  *
20830  * @extends Roo.dd.DD
20831  * @constructor
20832  * @param {String} id the id of the linked html element
20833  * @param {String} sGroup the group of related DragDrop objects
20834  * @param {object} config an object containing configurable attributes
20835  *                Valid properties for DDProxy in addition to those in DragDrop:
20836  *                   resizeFrame, centerFrame, dragElId
20837  */
20838 Roo.dd.DDProxy = function(id, sGroup, config) {
20839     if (id) {
20840         this.init(id, sGroup, config);
20841         this.initFrame();
20842     }
20843 };
20844
20845 /**
20846  * The default drag frame div id
20847  * @property Roo.dd.DDProxy.dragElId
20848  * @type String
20849  * @static
20850  */
20851 Roo.dd.DDProxy.dragElId = "ygddfdiv";
20852
20853 Roo.extend(Roo.dd.DDProxy, Roo.dd.DD, {
20854
20855     /**
20856      * By default we resize the drag frame to be the same size as the element
20857      * we want to drag (this is to get the frame effect).  We can turn it off
20858      * if we want a different behavior.
20859      * @property resizeFrame
20860      * @type boolean
20861      */
20862     resizeFrame: true,
20863
20864     /**
20865      * By default the frame is positioned exactly where the drag element is, so
20866      * we use the cursor offset provided by Roo.dd.DD.  Another option that works only if
20867      * you do not have constraints on the obj is to have the drag frame centered
20868      * around the cursor.  Set centerFrame to true for this effect.
20869      * @property centerFrame
20870      * @type boolean
20871      */
20872     centerFrame: false,
20873
20874     /**
20875      * Creates the proxy element if it does not yet exist
20876      * @method createFrame
20877      */
20878     createFrame: function() {
20879         var self = this;
20880         var body = document.body;
20881
20882         if (!body || !body.firstChild) {
20883             setTimeout( function() { self.createFrame(); }, 50 );
20884             return;
20885         }
20886
20887         var div = this.getDragEl();
20888
20889         if (!div) {
20890             div    = document.createElement("div");
20891             div.id = this.dragElId;
20892             var s  = div.style;
20893
20894             s.position   = "absolute";
20895             s.visibility = "hidden";
20896             s.cursor     = "move";
20897             s.border     = "2px solid #aaa";
20898             s.zIndex     = 999;
20899
20900             // appendChild can blow up IE if invoked prior to the window load event
20901             // while rendering a table.  It is possible there are other scenarios
20902             // that would cause this to happen as well.
20903             body.insertBefore(div, body.firstChild);
20904         }
20905     },
20906
20907     /**
20908      * Initialization for the drag frame element.  Must be called in the
20909      * constructor of all subclasses
20910      * @method initFrame
20911      */
20912     initFrame: function() {
20913         this.createFrame();
20914     },
20915
20916     applyConfig: function() {
20917         Roo.dd.DDProxy.superclass.applyConfig.call(this);
20918
20919         this.resizeFrame = (this.config.resizeFrame !== false);
20920         this.centerFrame = (this.config.centerFrame);
20921         this.setDragElId(this.config.dragElId || Roo.dd.DDProxy.dragElId);
20922     },
20923
20924     /**
20925      * Resizes the drag frame to the dimensions of the clicked object, positions
20926      * it over the object, and finally displays it
20927      * @method showFrame
20928      * @param {int} iPageX X click position
20929      * @param {int} iPageY Y click position
20930      * @private
20931      */
20932     showFrame: function(iPageX, iPageY) {
20933         var el = this.getEl();
20934         var dragEl = this.getDragEl();
20935         var s = dragEl.style;
20936
20937         this._resizeProxy();
20938
20939         if (this.centerFrame) {
20940             this.setDelta( Math.round(parseInt(s.width,  10)/2),
20941                            Math.round(parseInt(s.height, 10)/2) );
20942         }
20943
20944         this.setDragElPos(iPageX, iPageY);
20945
20946         Roo.fly(dragEl).show();
20947     },
20948
20949     /**
20950      * The proxy is automatically resized to the dimensions of the linked
20951      * element when a drag is initiated, unless resizeFrame is set to false
20952      * @method _resizeProxy
20953      * @private
20954      */
20955     _resizeProxy: function() {
20956         if (this.resizeFrame) {
20957             var el = this.getEl();
20958             Roo.fly(this.getDragEl()).setSize(el.offsetWidth, el.offsetHeight);
20959         }
20960     },
20961
20962     // overrides Roo.dd.DragDrop
20963     b4MouseDown: function(e) {
20964         var x = e.getPageX();
20965         var y = e.getPageY();
20966         this.autoOffset(x, y);
20967         this.setDragElPos(x, y);
20968     },
20969
20970     // overrides Roo.dd.DragDrop
20971     b4StartDrag: function(x, y) {
20972         // show the drag frame
20973         this.showFrame(x, y);
20974     },
20975
20976     // overrides Roo.dd.DragDrop
20977     b4EndDrag: function(e) {
20978         Roo.fly(this.getDragEl()).hide();
20979     },
20980
20981     // overrides Roo.dd.DragDrop
20982     // By default we try to move the element to the last location of the frame.
20983     // This is so that the default behavior mirrors that of Roo.dd.DD.
20984     endDrag: function(e) {
20985
20986         var lel = this.getEl();
20987         var del = this.getDragEl();
20988
20989         // Show the drag frame briefly so we can get its position
20990         del.style.visibility = "";
20991
20992         this.beforeMove();
20993         // Hide the linked element before the move to get around a Safari
20994         // rendering bug.
20995         lel.style.visibility = "hidden";
20996         Roo.dd.DDM.moveToEl(lel, del);
20997         del.style.visibility = "hidden";
20998         lel.style.visibility = "";
20999
21000         this.afterDrag();
21001     },
21002
21003     beforeMove : function(){
21004
21005     },
21006
21007     afterDrag : function(){
21008
21009     },
21010
21011     toString: function() {
21012         return ("DDProxy " + this.id);
21013     }
21014
21015 });
21016 /*
21017  * Based on:
21018  * Ext JS Library 1.1.1
21019  * Copyright(c) 2006-2007, Ext JS, LLC.
21020  *
21021  * Originally Released Under LGPL - original licence link has changed is not relivant.
21022  *
21023  * Fork - LGPL
21024  * <script type="text/javascript">
21025  */
21026
21027  /**
21028  * @class Roo.dd.DDTarget
21029  * A DragDrop implementation that does not move, but can be a drop
21030  * target.  You would get the same result by simply omitting implementation
21031  * for the event callbacks, but this way we reduce the processing cost of the
21032  * event listener and the callbacks.
21033  * @extends Roo.dd.DragDrop
21034  * @constructor
21035  * @param {String} id the id of the element that is a drop target
21036  * @param {String} sGroup the group of related DragDrop objects
21037  * @param {object} config an object containing configurable attributes
21038  *                 Valid properties for DDTarget in addition to those in
21039  *                 DragDrop:
21040  *                    none
21041  */
21042 Roo.dd.DDTarget = function(id, sGroup, config) {
21043     if (id) {
21044         this.initTarget(id, sGroup, config);
21045     }
21046     if (config.listeners || config.events) { 
21047        Roo.dd.DragDrop.superclass.constructor.call(this,  { 
21048             listeners : config.listeners || {}, 
21049             events : config.events || {} 
21050         });    
21051     }
21052 };
21053
21054 // Roo.dd.DDTarget.prototype = new Roo.dd.DragDrop();
21055 Roo.extend(Roo.dd.DDTarget, Roo.dd.DragDrop, {
21056     toString: function() {
21057         return ("DDTarget " + this.id);
21058     }
21059 });
21060 /*
21061  * Based on:
21062  * Ext JS Library 1.1.1
21063  * Copyright(c) 2006-2007, Ext JS, LLC.
21064  *
21065  * Originally Released Under LGPL - original licence link has changed is not relivant.
21066  *
21067  * Fork - LGPL
21068  * <script type="text/javascript">
21069  */
21070  
21071
21072 /**
21073  * @class Roo.dd.ScrollManager
21074  * Provides automatic scrolling of overflow regions in the page during drag operations.<br><br>
21075  * <b>Note: This class uses "Point Mode" and is untested in "Intersect Mode".</b>
21076  * @singleton
21077  */
21078 Roo.dd.ScrollManager = function(){
21079     var ddm = Roo.dd.DragDropMgr;
21080     var els = {};
21081     var dragEl = null;
21082     var proc = {};
21083     
21084     
21085     
21086     var onStop = function(e){
21087         dragEl = null;
21088         clearProc();
21089     };
21090     
21091     var triggerRefresh = function(){
21092         if(ddm.dragCurrent){
21093              ddm.refreshCache(ddm.dragCurrent.groups);
21094         }
21095     };
21096     
21097     var doScroll = function(){
21098         if(ddm.dragCurrent){
21099             var dds = Roo.dd.ScrollManager;
21100             if(!dds.animate){
21101                 if(proc.el.scroll(proc.dir, dds.increment)){
21102                     triggerRefresh();
21103                 }
21104             }else{
21105                 proc.el.scroll(proc.dir, dds.increment, true, dds.animDuration, triggerRefresh);
21106             }
21107         }
21108     };
21109     
21110     var clearProc = function(){
21111         if(proc.id){
21112             clearInterval(proc.id);
21113         }
21114         proc.id = 0;
21115         proc.el = null;
21116         proc.dir = "";
21117     };
21118     
21119     var startProc = function(el, dir){
21120          Roo.log('scroll startproc');
21121         clearProc();
21122         proc.el = el;
21123         proc.dir = dir;
21124         proc.id = setInterval(doScroll, Roo.dd.ScrollManager.frequency);
21125     };
21126     
21127     var onFire = function(e, isDrop){
21128        
21129         if(isDrop || !ddm.dragCurrent){ return; }
21130         var dds = Roo.dd.ScrollManager;
21131         if(!dragEl || dragEl != ddm.dragCurrent){
21132             dragEl = ddm.dragCurrent;
21133             // refresh regions on drag start
21134             dds.refreshCache();
21135         }
21136         
21137         var xy = Roo.lib.Event.getXY(e);
21138         var pt = new Roo.lib.Point(xy[0], xy[1]);
21139         for(var id in els){
21140             var el = els[id], r = el._region;
21141             if(r && r.contains(pt) && el.isScrollable()){
21142                 if(r.bottom - pt.y <= dds.thresh){
21143                     if(proc.el != el){
21144                         startProc(el, "down");
21145                     }
21146                     return;
21147                 }else if(r.right - pt.x <= dds.thresh){
21148                     if(proc.el != el){
21149                         startProc(el, "left");
21150                     }
21151                     return;
21152                 }else if(pt.y - r.top <= dds.thresh){
21153                     if(proc.el != el){
21154                         startProc(el, "up");
21155                     }
21156                     return;
21157                 }else if(pt.x - r.left <= dds.thresh){
21158                     if(proc.el != el){
21159                         startProc(el, "right");
21160                     }
21161                     return;
21162                 }
21163             }
21164         }
21165         clearProc();
21166     };
21167     
21168     ddm.fireEvents = ddm.fireEvents.createSequence(onFire, ddm);
21169     ddm.stopDrag = ddm.stopDrag.createSequence(onStop, ddm);
21170     
21171     return {
21172         /**
21173          * Registers new overflow element(s) to auto scroll
21174          * @param {String/HTMLElement/Element/Array} el The id of or the element to be scrolled or an array of either
21175          */
21176         register : function(el){
21177             if(el instanceof Array){
21178                 for(var i = 0, len = el.length; i < len; i++) {
21179                         this.register(el[i]);
21180                 }
21181             }else{
21182                 el = Roo.get(el);
21183                 els[el.id] = el;
21184             }
21185             Roo.dd.ScrollManager.els = els;
21186         },
21187         
21188         /**
21189          * Unregisters overflow element(s) so they are no longer scrolled
21190          * @param {String/HTMLElement/Element/Array} el The id of or the element to be removed or an array of either
21191          */
21192         unregister : function(el){
21193             if(el instanceof Array){
21194                 for(var i = 0, len = el.length; i < len; i++) {
21195                         this.unregister(el[i]);
21196                 }
21197             }else{
21198                 el = Roo.get(el);
21199                 delete els[el.id];
21200             }
21201         },
21202         
21203         /**
21204          * The number of pixels from the edge of a container the pointer needs to be to 
21205          * trigger scrolling (defaults to 25)
21206          * @type Number
21207          */
21208         thresh : 25,
21209         
21210         /**
21211          * The number of pixels to scroll in each scroll increment (defaults to 50)
21212          * @type Number
21213          */
21214         increment : 100,
21215         
21216         /**
21217          * The frequency of scrolls in milliseconds (defaults to 500)
21218          * @type Number
21219          */
21220         frequency : 500,
21221         
21222         /**
21223          * True to animate the scroll (defaults to true)
21224          * @type Boolean
21225          */
21226         animate: true,
21227         
21228         /**
21229          * The animation duration in seconds - 
21230          * MUST BE less than Roo.dd.ScrollManager.frequency! (defaults to .4)
21231          * @type Number
21232          */
21233         animDuration: .4,
21234         
21235         /**
21236          * Manually trigger a cache refresh.
21237          */
21238         refreshCache : function(){
21239             for(var id in els){
21240                 if(typeof els[id] == 'object'){ // for people extending the object prototype
21241                     els[id]._region = els[id].getRegion();
21242                 }
21243             }
21244         }
21245     };
21246 }();/*
21247  * Based on:
21248  * Ext JS Library 1.1.1
21249  * Copyright(c) 2006-2007, Ext JS, LLC.
21250  *
21251  * Originally Released Under LGPL - original licence link has changed is not relivant.
21252  *
21253  * Fork - LGPL
21254  * <script type="text/javascript">
21255  */
21256  
21257
21258 /**
21259  * @class Roo.dd.Registry
21260  * Provides easy access to all drag drop components that are registered on a page.  Items can be retrieved either
21261  * directly by DOM node id, or by passing in the drag drop event that occurred and looking up the event target.
21262  * @singleton
21263  */
21264 Roo.dd.Registry = function(){
21265     var elements = {}; 
21266     var handles = {}; 
21267     var autoIdSeed = 0;
21268
21269     var getId = function(el, autogen){
21270         if(typeof el == "string"){
21271             return el;
21272         }
21273         var id = el.id;
21274         if(!id && autogen !== false){
21275             id = "roodd-" + (++autoIdSeed);
21276             el.id = id;
21277         }
21278         return id;
21279     };
21280     
21281     return {
21282     /**
21283      * Register a drag drop element
21284      * @param {String|HTMLElement} element The id or DOM node to register
21285      * @param {Object} data (optional) A custom data object that will be passed between the elements that are involved
21286      * in drag drop operations.  You can populate this object with any arbitrary properties that your own code
21287      * knows how to interpret, plus there are some specific properties known to the Registry that should be
21288      * populated in the data object (if applicable):
21289      * <pre>
21290 Value      Description<br />
21291 ---------  ------------------------------------------<br />
21292 handles    Array of DOM nodes that trigger dragging<br />
21293            for the element being registered<br />
21294 isHandle   True if the element passed in triggers<br />
21295            dragging itself, else false
21296 </pre>
21297      */
21298         register : function(el, data){
21299             data = data || {};
21300             if(typeof el == "string"){
21301                 el = document.getElementById(el);
21302             }
21303             data.ddel = el;
21304             elements[getId(el)] = data;
21305             if(data.isHandle !== false){
21306                 handles[data.ddel.id] = data;
21307             }
21308             if(data.handles){
21309                 var hs = data.handles;
21310                 for(var i = 0, len = hs.length; i < len; i++){
21311                         handles[getId(hs[i])] = data;
21312                 }
21313             }
21314         },
21315
21316     /**
21317      * Unregister a drag drop element
21318      * @param {String|HTMLElement}  element The id or DOM node to unregister
21319      */
21320         unregister : function(el){
21321             var id = getId(el, false);
21322             var data = elements[id];
21323             if(data){
21324                 delete elements[id];
21325                 if(data.handles){
21326                     var hs = data.handles;
21327                     for(var i = 0, len = hs.length; i < len; i++){
21328                         delete handles[getId(hs[i], false)];
21329                     }
21330                 }
21331             }
21332         },
21333
21334     /**
21335      * Returns the handle registered for a DOM Node by id
21336      * @param {String|HTMLElement} id The DOM node or id to look up
21337      * @return {Object} handle The custom handle data
21338      */
21339         getHandle : function(id){
21340             if(typeof id != "string"){ // must be element?
21341                 id = id.id;
21342             }
21343             return handles[id];
21344         },
21345
21346     /**
21347      * Returns the handle that is registered for the DOM node that is the target of the event
21348      * @param {Event} e The event
21349      * @return {Object} handle The custom handle data
21350      */
21351         getHandleFromEvent : function(e){
21352             var t = Roo.lib.Event.getTarget(e);
21353             return t ? handles[t.id] : null;
21354         },
21355
21356     /**
21357      * Returns a custom data object that is registered for a DOM node by id
21358      * @param {String|HTMLElement} id The DOM node or id to look up
21359      * @return {Object} data The custom data
21360      */
21361         getTarget : function(id){
21362             if(typeof id != "string"){ // must be element?
21363                 id = id.id;
21364             }
21365             return elements[id];
21366         },
21367
21368     /**
21369      * Returns a custom data object that is registered for the DOM node that is the target of the event
21370      * @param {Event} e The event
21371      * @return {Object} data The custom data
21372      */
21373         getTargetFromEvent : function(e){
21374             var t = Roo.lib.Event.getTarget(e);
21375             return t ? elements[t.id] || handles[t.id] : null;
21376         }
21377     };
21378 }();/*
21379  * Based on:
21380  * Ext JS Library 1.1.1
21381  * Copyright(c) 2006-2007, Ext JS, LLC.
21382  *
21383  * Originally Released Under LGPL - original licence link has changed is not relivant.
21384  *
21385  * Fork - LGPL
21386  * <script type="text/javascript">
21387  */
21388  
21389
21390 /**
21391  * @class Roo.dd.StatusProxy
21392  * A specialized drag proxy that supports a drop status icon, {@link Roo.Layer} styles and auto-repair.  This is the
21393  * default drag proxy used by all Roo.dd components.
21394  * @constructor
21395  * @param {Object} config
21396  */
21397 Roo.dd.StatusProxy = function(config){
21398     Roo.apply(this, config);
21399     this.id = this.id || Roo.id();
21400     this.el = new Roo.Layer({
21401         dh: {
21402             id: this.id, tag: "div", cls: "x-dd-drag-proxy "+this.dropNotAllowed, children: [
21403                 {tag: "div", cls: "x-dd-drop-icon"},
21404                 {tag: "div", cls: "x-dd-drag-ghost"}
21405             ]
21406         }, 
21407         shadow: !config || config.shadow !== false
21408     });
21409     this.ghost = Roo.get(this.el.dom.childNodes[1]);
21410     this.dropStatus = this.dropNotAllowed;
21411 };
21412
21413 Roo.dd.StatusProxy.prototype = {
21414     /**
21415      * @cfg {String} dropAllowed
21416      * The CSS class to apply to the status element when drop is allowed (defaults to "x-dd-drop-ok").
21417      */
21418     dropAllowed : "x-dd-drop-ok",
21419     /**
21420      * @cfg {String} dropNotAllowed
21421      * The CSS class to apply to the status element when drop is not allowed (defaults to "x-dd-drop-nodrop").
21422      */
21423     dropNotAllowed : "x-dd-drop-nodrop",
21424
21425     /**
21426      * Updates the proxy's visual element to indicate the status of whether or not drop is allowed
21427      * over the current target element.
21428      * @param {String} cssClass The css class for the new drop status indicator image
21429      */
21430     setStatus : function(cssClass){
21431         cssClass = cssClass || this.dropNotAllowed;
21432         if(this.dropStatus != cssClass){
21433             this.el.replaceClass(this.dropStatus, cssClass);
21434             this.dropStatus = cssClass;
21435         }
21436     },
21437
21438     /**
21439      * Resets the status indicator to the default dropNotAllowed value
21440      * @param {Boolean} clearGhost True to also remove all content from the ghost, false to preserve it
21441      */
21442     reset : function(clearGhost){
21443         this.el.dom.className = "x-dd-drag-proxy " + this.dropNotAllowed;
21444         this.dropStatus = this.dropNotAllowed;
21445         if(clearGhost){
21446             this.ghost.update("");
21447         }
21448     },
21449
21450     /**
21451      * Updates the contents of the ghost element
21452      * @param {String} html The html that will replace the current innerHTML of the ghost element
21453      */
21454     update : function(html){
21455         if(typeof html == "string"){
21456             this.ghost.update(html);
21457         }else{
21458             this.ghost.update("");
21459             html.style.margin = "0";
21460             this.ghost.dom.appendChild(html);
21461         }
21462         // ensure float = none set?? cant remember why though.
21463         var el = this.ghost.dom.firstChild;
21464                 if(el){
21465                         Roo.fly(el).setStyle('float', 'none');
21466                 }
21467     },
21468     
21469     /**
21470      * Returns the underlying proxy {@link Roo.Layer}
21471      * @return {Roo.Layer} el
21472     */
21473     getEl : function(){
21474         return this.el;
21475     },
21476
21477     /**
21478      * Returns the ghost element
21479      * @return {Roo.Element} el
21480      */
21481     getGhost : function(){
21482         return this.ghost;
21483     },
21484
21485     /**
21486      * Hides the proxy
21487      * @param {Boolean} clear True to reset the status and clear the ghost contents, false to preserve them
21488      */
21489     hide : function(clear){
21490         this.el.hide();
21491         if(clear){
21492             this.reset(true);
21493         }
21494     },
21495
21496     /**
21497      * Stops the repair animation if it's currently running
21498      */
21499     stop : function(){
21500         if(this.anim && this.anim.isAnimated && this.anim.isAnimated()){
21501             this.anim.stop();
21502         }
21503     },
21504
21505     /**
21506      * Displays this proxy
21507      */
21508     show : function(){
21509         this.el.show();
21510     },
21511
21512     /**
21513      * Force the Layer to sync its shadow and shim positions to the element
21514      */
21515     sync : function(){
21516         this.el.sync();
21517     },
21518
21519     /**
21520      * Causes the proxy to return to its position of origin via an animation.  Should be called after an
21521      * invalid drop operation by the item being dragged.
21522      * @param {Array} xy The XY position of the element ([x, y])
21523      * @param {Function} callback The function to call after the repair is complete
21524      * @param {Object} scope The scope in which to execute the callback
21525      */
21526     repair : function(xy, callback, scope){
21527         this.callback = callback;
21528         this.scope = scope;
21529         if(xy && this.animRepair !== false){
21530             this.el.addClass("x-dd-drag-repair");
21531             this.el.hideUnders(true);
21532             this.anim = this.el.shift({
21533                 duration: this.repairDuration || .5,
21534                 easing: 'easeOut',
21535                 xy: xy,
21536                 stopFx: true,
21537                 callback: this.afterRepair,
21538                 scope: this
21539             });
21540         }else{
21541             this.afterRepair();
21542         }
21543     },
21544
21545     // private
21546     afterRepair : function(){
21547         this.hide(true);
21548         if(typeof this.callback == "function"){
21549             this.callback.call(this.scope || this);
21550         }
21551         this.callback = null;
21552         this.scope = null;
21553     }
21554 };/*
21555  * Based on:
21556  * Ext JS Library 1.1.1
21557  * Copyright(c) 2006-2007, Ext JS, LLC.
21558  *
21559  * Originally Released Under LGPL - original licence link has changed is not relivant.
21560  *
21561  * Fork - LGPL
21562  * <script type="text/javascript">
21563  */
21564
21565 /**
21566  * @class Roo.dd.DragSource
21567  * @extends Roo.dd.DDProxy
21568  * A simple class that provides the basic implementation needed to make any element draggable.
21569  * @constructor
21570  * @param {String/HTMLElement/Element} el The container element
21571  * @param {Object} config
21572  */
21573 Roo.dd.DragSource = function(el, config){
21574     this.el = Roo.get(el);
21575     this.dragData = {};
21576     
21577     Roo.apply(this, config);
21578     
21579     if(!this.proxy){
21580         this.proxy = new Roo.dd.StatusProxy();
21581     }
21582
21583     Roo.dd.DragSource.superclass.constructor.call(this, this.el.dom, this.ddGroup || this.group,
21584           {dragElId : this.proxy.id, resizeFrame: false, isTarget: false, scroll: this.scroll === true});
21585     
21586     this.dragging = false;
21587 };
21588
21589 Roo.extend(Roo.dd.DragSource, Roo.dd.DDProxy, {
21590     /**
21591      * @cfg {String} dropAllowed
21592      * The CSS class returned to the drag source when drop is allowed (defaults to "x-dd-drop-ok").
21593      */
21594     dropAllowed : "x-dd-drop-ok",
21595     /**
21596      * @cfg {String} dropNotAllowed
21597      * The CSS class returned to the drag source when drop is not allowed (defaults to "x-dd-drop-nodrop").
21598      */
21599     dropNotAllowed : "x-dd-drop-nodrop",
21600
21601     /**
21602      * Returns the data object associated with this drag source
21603      * @return {Object} data An object containing arbitrary data
21604      */
21605     getDragData : function(e){
21606         return this.dragData;
21607     },
21608
21609     // private
21610     onDragEnter : function(e, id){
21611         var target = Roo.dd.DragDropMgr.getDDById(id);
21612         this.cachedTarget = target;
21613         if(this.beforeDragEnter(target, e, id) !== false){
21614             if(target.isNotifyTarget){
21615                 var status = target.notifyEnter(this, e, this.dragData);
21616                 this.proxy.setStatus(status);
21617             }else{
21618                 this.proxy.setStatus(this.dropAllowed);
21619             }
21620             
21621             if(this.afterDragEnter){
21622                 /**
21623                  * An empty function by default, but provided so that you can perform a custom action
21624                  * when the dragged item enters the drop target by providing an implementation.
21625                  * @param {Roo.dd.DragDrop} target The drop target
21626                  * @param {Event} e The event object
21627                  * @param {String} id The id of the dragged element
21628                  * @method afterDragEnter
21629                  */
21630                 this.afterDragEnter(target, e, id);
21631             }
21632         }
21633     },
21634
21635     /**
21636      * An empty function by default, but provided so that you can perform a custom action
21637      * before the dragged item enters the drop target and optionally cancel the onDragEnter.
21638      * @param {Roo.dd.DragDrop} target The drop target
21639      * @param {Event} e The event object
21640      * @param {String} id The id of the dragged element
21641      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
21642      */
21643     beforeDragEnter : function(target, e, id){
21644         return true;
21645     },
21646
21647     // private
21648     alignElWithMouse: function() {
21649         Roo.dd.DragSource.superclass.alignElWithMouse.apply(this, arguments);
21650         this.proxy.sync();
21651     },
21652
21653     // private
21654     onDragOver : function(e, id){
21655         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
21656         if(this.beforeDragOver(target, e, id) !== false){
21657             if(target.isNotifyTarget){
21658                 var status = target.notifyOver(this, e, this.dragData);
21659                 this.proxy.setStatus(status);
21660             }
21661
21662             if(this.afterDragOver){
21663                 /**
21664                  * An empty function by default, but provided so that you can perform a custom action
21665                  * while the dragged item is over the drop target by providing an implementation.
21666                  * @param {Roo.dd.DragDrop} target The drop target
21667                  * @param {Event} e The event object
21668                  * @param {String} id The id of the dragged element
21669                  * @method afterDragOver
21670                  */
21671                 this.afterDragOver(target, e, id);
21672             }
21673         }
21674     },
21675
21676     /**
21677      * An empty function by default, but provided so that you can perform a custom action
21678      * while the dragged item is over the drop target and optionally cancel the onDragOver.
21679      * @param {Roo.dd.DragDrop} target The drop target
21680      * @param {Event} e The event object
21681      * @param {String} id The id of the dragged element
21682      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
21683      */
21684     beforeDragOver : function(target, e, id){
21685         return true;
21686     },
21687
21688     // private
21689     onDragOut : function(e, id){
21690         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
21691         if(this.beforeDragOut(target, e, id) !== false){
21692             if(target.isNotifyTarget){
21693                 target.notifyOut(this, e, this.dragData);
21694             }
21695             this.proxy.reset();
21696             if(this.afterDragOut){
21697                 /**
21698                  * An empty function by default, but provided so that you can perform a custom action
21699                  * after the dragged item is dragged out of the target without dropping.
21700                  * @param {Roo.dd.DragDrop} target The drop target
21701                  * @param {Event} e The event object
21702                  * @param {String} id The id of the dragged element
21703                  * @method afterDragOut
21704                  */
21705                 this.afterDragOut(target, e, id);
21706             }
21707         }
21708         this.cachedTarget = null;
21709     },
21710
21711     /**
21712      * An empty function by default, but provided so that you can perform a custom action before the dragged
21713      * item is dragged out of the target without dropping, and optionally cancel the onDragOut.
21714      * @param {Roo.dd.DragDrop} target The drop target
21715      * @param {Event} e The event object
21716      * @param {String} id The id of the dragged element
21717      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
21718      */
21719     beforeDragOut : function(target, e, id){
21720         return true;
21721     },
21722     
21723     // private
21724     onDragDrop : function(e, id){
21725         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
21726         if(this.beforeDragDrop(target, e, id) !== false){
21727             if(target.isNotifyTarget){
21728                 if(target.notifyDrop(this, e, this.dragData)){ // valid drop?
21729                     this.onValidDrop(target, e, id);
21730                 }else{
21731                     this.onInvalidDrop(target, e, id);
21732                 }
21733             }else{
21734                 this.onValidDrop(target, e, id);
21735             }
21736             
21737             if(this.afterDragDrop){
21738                 /**
21739                  * An empty function by default, but provided so that you can perform a custom action
21740                  * after a valid drag drop has occurred by providing an implementation.
21741                  * @param {Roo.dd.DragDrop} target The drop target
21742                  * @param {Event} e The event object
21743                  * @param {String} id The id of the dropped element
21744                  * @method afterDragDrop
21745                  */
21746                 this.afterDragDrop(target, e, id);
21747             }
21748         }
21749         delete this.cachedTarget;
21750     },
21751
21752     /**
21753      * An empty function by default, but provided so that you can perform a custom action before the dragged
21754      * item is dropped onto the target and optionally cancel the onDragDrop.
21755      * @param {Roo.dd.DragDrop} target The drop target
21756      * @param {Event} e The event object
21757      * @param {String} id The id of the dragged element
21758      * @return {Boolean} isValid True if the drag drop event is valid, else false to cancel
21759      */
21760     beforeDragDrop : function(target, e, id){
21761         return true;
21762     },
21763
21764     // private
21765     onValidDrop : function(target, e, id){
21766         this.hideProxy();
21767         if(this.afterValidDrop){
21768             /**
21769              * An empty function by default, but provided so that you can perform a custom action
21770              * after a valid drop has occurred by providing an implementation.
21771              * @param {Object} target The target DD 
21772              * @param {Event} e The event object
21773              * @param {String} id The id of the dropped element
21774              * @method afterInvalidDrop
21775              */
21776             this.afterValidDrop(target, e, id);
21777         }
21778     },
21779
21780     // private
21781     getRepairXY : function(e, data){
21782         return this.el.getXY();  
21783     },
21784
21785     // private
21786     onInvalidDrop : function(target, e, id){
21787         this.beforeInvalidDrop(target, e, id);
21788         if(this.cachedTarget){
21789             if(this.cachedTarget.isNotifyTarget){
21790                 this.cachedTarget.notifyOut(this, e, this.dragData);
21791             }
21792             this.cacheTarget = null;
21793         }
21794         this.proxy.repair(this.getRepairXY(e, this.dragData), this.afterRepair, this);
21795
21796         if(this.afterInvalidDrop){
21797             /**
21798              * An empty function by default, but provided so that you can perform a custom action
21799              * after an invalid drop has occurred by providing an implementation.
21800              * @param {Event} e The event object
21801              * @param {String} id The id of the dropped element
21802              * @method afterInvalidDrop
21803              */
21804             this.afterInvalidDrop(e, id);
21805         }
21806     },
21807
21808     // private
21809     afterRepair : function(){
21810         if(Roo.enableFx){
21811             this.el.highlight(this.hlColor || "c3daf9");
21812         }
21813         this.dragging = false;
21814     },
21815
21816     /**
21817      * An empty function by default, but provided so that you can perform a custom action after an invalid
21818      * drop has occurred.
21819      * @param {Roo.dd.DragDrop} target The drop target
21820      * @param {Event} e The event object
21821      * @param {String} id The id of the dragged element
21822      * @return {Boolean} isValid True if the invalid drop should proceed, else false to cancel
21823      */
21824     beforeInvalidDrop : function(target, e, id){
21825         return true;
21826     },
21827
21828     // private
21829     handleMouseDown : function(e){
21830         if(this.dragging) {
21831             return;
21832         }
21833         var data = this.getDragData(e);
21834         if(data && this.onBeforeDrag(data, e) !== false){
21835             this.dragData = data;
21836             this.proxy.stop();
21837             Roo.dd.DragSource.superclass.handleMouseDown.apply(this, arguments);
21838         } 
21839     },
21840
21841     /**
21842      * An empty function by default, but provided so that you can perform a custom action before the initial
21843      * drag event begins and optionally cancel it.
21844      * @param {Object} data An object containing arbitrary data to be shared with drop targets
21845      * @param {Event} e The event object
21846      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
21847      */
21848     onBeforeDrag : function(data, e){
21849         return true;
21850     },
21851
21852     /**
21853      * An empty function by default, but provided so that you can perform a custom action once the initial
21854      * drag event has begun.  The drag cannot be canceled from this function.
21855      * @param {Number} x The x position of the click on the dragged object
21856      * @param {Number} y The y position of the click on the dragged object
21857      */
21858     onStartDrag : Roo.emptyFn,
21859
21860     // private - YUI override
21861     startDrag : function(x, y){
21862         this.proxy.reset();
21863         this.dragging = true;
21864         this.proxy.update("");
21865         this.onInitDrag(x, y);
21866         this.proxy.show();
21867     },
21868
21869     // private
21870     onInitDrag : function(x, y){
21871         var clone = this.el.dom.cloneNode(true);
21872         clone.id = Roo.id(); // prevent duplicate ids
21873         this.proxy.update(clone);
21874         this.onStartDrag(x, y);
21875         return true;
21876     },
21877
21878     /**
21879      * Returns the drag source's underlying {@link Roo.dd.StatusProxy}
21880      * @return {Roo.dd.StatusProxy} proxy The StatusProxy
21881      */
21882     getProxy : function(){
21883         return this.proxy;  
21884     },
21885
21886     /**
21887      * Hides the drag source's {@link Roo.dd.StatusProxy}
21888      */
21889     hideProxy : function(){
21890         this.proxy.hide();  
21891         this.proxy.reset(true);
21892         this.dragging = false;
21893     },
21894
21895     // private
21896     triggerCacheRefresh : function(){
21897         Roo.dd.DDM.refreshCache(this.groups);
21898     },
21899
21900     // private - override to prevent hiding
21901     b4EndDrag: function(e) {
21902     },
21903
21904     // private - override to prevent moving
21905     endDrag : function(e){
21906         this.onEndDrag(this.dragData, e);
21907     },
21908
21909     // private
21910     onEndDrag : function(data, e){
21911     },
21912     
21913     // private - pin to cursor
21914     autoOffset : function(x, y) {
21915         this.setDelta(-12, -20);
21916     }    
21917 });/*
21918  * Based on:
21919  * Ext JS Library 1.1.1
21920  * Copyright(c) 2006-2007, Ext JS, LLC.
21921  *
21922  * Originally Released Under LGPL - original licence link has changed is not relivant.
21923  *
21924  * Fork - LGPL
21925  * <script type="text/javascript">
21926  */
21927
21928
21929 /**
21930  * @class Roo.dd.DropTarget
21931  * @extends Roo.dd.DDTarget
21932  * A simple class that provides the basic implementation needed to make any element a drop target that can have
21933  * draggable items dropped onto it.  The drop has no effect until an implementation of notifyDrop is provided.
21934  * @constructor
21935  * @param {String/HTMLElement/Element} el The container element
21936  * @param {Object} config
21937  */
21938 Roo.dd.DropTarget = function(el, config){
21939     this.el = Roo.get(el);
21940     
21941     var listeners = false; ;
21942     if (config && config.listeners) {
21943         listeners= config.listeners;
21944         delete config.listeners;
21945     }
21946     Roo.apply(this, config);
21947     
21948     if(this.containerScroll){
21949         Roo.dd.ScrollManager.register(this.el);
21950     }
21951     this.addEvents( {
21952          /**
21953          * @scope Roo.dd.DropTarget
21954          */
21955          
21956          /**
21957          * @event enter
21958          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the source is now over the
21959          * target.  This default implementation adds the CSS class specified by overClass (if any) to the drop element
21960          * and returns the dropAllowed config value.  This method should be overridden if drop validation is required.
21961          * 
21962          * IMPORTANT : it should set this.overClass and this.dropAllowed
21963          * 
21964          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
21965          * @param {Event} e The event
21966          * @param {Object} data An object containing arbitrary data supplied by the drag source
21967          */
21968         "enter" : true,
21969         
21970          /**
21971          * @event over
21972          * The function a {@link Roo.dd.DragSource} calls continuously while it is being dragged over the target.
21973          * This method will be called on every mouse movement while the drag source is over the drop target.
21974          * This default implementation simply returns the dropAllowed config value.
21975          * 
21976          * IMPORTANT : it should set this.dropAllowed
21977          * 
21978          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
21979          * @param {Event} e The event
21980          * @param {Object} data An object containing arbitrary data supplied by the drag source
21981          
21982          */
21983         "over" : true,
21984         /**
21985          * @event out
21986          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the source has been dragged
21987          * out of the target without dropping.  This default implementation simply removes the CSS class specified by
21988          * overClass (if any) from the drop element.
21989          * 
21990          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
21991          * @param {Event} e The event
21992          * @param {Object} data An object containing arbitrary data supplied by the drag source
21993          */
21994          "out" : true,
21995          
21996         /**
21997          * @event drop
21998          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the dragged item has
21999          * been dropped on it.  This method has no default implementation and returns false, so you must provide an
22000          * implementation that does something to process the drop event and returns true so that the drag source's
22001          * repair action does not run.
22002          * 
22003          * IMPORTANT : it should set this.success
22004          * 
22005          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
22006          * @param {Event} e The event
22007          * @param {Object} data An object containing arbitrary data supplied by the drag source
22008         */
22009          "drop" : true
22010     });
22011             
22012      
22013     Roo.dd.DropTarget.superclass.constructor.call(  this, 
22014         this.el.dom, 
22015         this.ddGroup || this.group,
22016         {
22017             isTarget: true,
22018             listeners : listeners || {} 
22019            
22020         
22021         }
22022     );
22023
22024 };
22025
22026 Roo.extend(Roo.dd.DropTarget, Roo.dd.DDTarget, {
22027     /**
22028      * @cfg {String} overClass
22029      * The CSS class applied to the drop target element while the drag source is over it (defaults to "").
22030      */
22031      /**
22032      * @cfg {String} ddGroup
22033      * The drag drop group to handle drop events for
22034      */
22035      
22036     /**
22037      * @cfg {String} dropAllowed
22038      * The CSS class returned to the drag source when drop is allowed (defaults to "x-dd-drop-ok").
22039      */
22040     dropAllowed : "x-dd-drop-ok",
22041     /**
22042      * @cfg {String} dropNotAllowed
22043      * The CSS class returned to the drag source when drop is not allowed (defaults to "x-dd-drop-nodrop").
22044      */
22045     dropNotAllowed : "x-dd-drop-nodrop",
22046     /**
22047      * @cfg {boolean} success
22048      * set this after drop listener.. 
22049      */
22050     success : false,
22051     /**
22052      * @cfg {boolean|String} valid true/false or string (ok-add/ok-sub/ok/nodrop)
22053      * if the drop point is valid for over/enter..
22054      */
22055     valid : false,
22056     // private
22057     isTarget : true,
22058
22059     // private
22060     isNotifyTarget : true,
22061     
22062     /**
22063      * @hide
22064      */
22065     notifyEnter : function(dd, e, data)
22066     {
22067         this.valid = true;
22068         this.fireEvent('enter', dd, e, data);
22069         if(this.overClass){
22070             this.el.addClass(this.overClass);
22071         }
22072         return typeof(this.valid) == 'string' ? 'x-dd-drop-' + this.valid : (
22073             this.valid ? this.dropAllowed : this.dropNotAllowed
22074         );
22075     },
22076
22077     /**
22078      * @hide
22079      */
22080     notifyOver : function(dd, e, data)
22081     {
22082         this.valid = true;
22083         this.fireEvent('over', dd, e, data);
22084         return typeof(this.valid) == 'string' ? 'x-dd-drop-' + this.valid : (
22085             this.valid ? this.dropAllowed : this.dropNotAllowed
22086         );
22087     },
22088
22089     /**
22090      * @hide
22091      */
22092     notifyOut : function(dd, e, data)
22093     {
22094         this.fireEvent('out', dd, e, data);
22095         if(this.overClass){
22096             this.el.removeClass(this.overClass);
22097         }
22098     },
22099
22100     /**
22101      * @hide
22102      */
22103     notifyDrop : function(dd, e, data)
22104     {
22105         this.success = false;
22106         this.fireEvent('drop', dd, e, data);
22107         return this.success;
22108     }
22109 });/*
22110  * Based on:
22111  * Ext JS Library 1.1.1
22112  * Copyright(c) 2006-2007, Ext JS, LLC.
22113  *
22114  * Originally Released Under LGPL - original licence link has changed is not relivant.
22115  *
22116  * Fork - LGPL
22117  * <script type="text/javascript">
22118  */
22119
22120
22121 /**
22122  * @class Roo.dd.DragZone
22123  * @extends Roo.dd.DragSource
22124  * This class provides a container DD instance that proxies for multiple child node sources.<br />
22125  * By default, this class requires that draggable child nodes are registered with {@link Roo.dd.Registry}.
22126  * @constructor
22127  * @param {String/HTMLElement/Element} el The container element
22128  * @param {Object} config
22129  */
22130 Roo.dd.DragZone = function(el, config){
22131     Roo.dd.DragZone.superclass.constructor.call(this, el, config);
22132     if(this.containerScroll){
22133         Roo.dd.ScrollManager.register(this.el);
22134     }
22135 };
22136
22137 Roo.extend(Roo.dd.DragZone, Roo.dd.DragSource, {
22138     /**
22139      * @cfg {Boolean} containerScroll True to register this container with the Scrollmanager
22140      * for auto scrolling during drag operations.
22141      */
22142     /**
22143      * @cfg {String} hlColor The color to use when visually highlighting the drag source in the afterRepair
22144      * method after a failed drop (defaults to "c3daf9" - light blue)
22145      */
22146
22147     /**
22148      * Called when a mousedown occurs in this container. Looks in {@link Roo.dd.Registry}
22149      * for a valid target to drag based on the mouse down. Override this method
22150      * to provide your own lookup logic (e.g. finding a child by class name). Make sure your returned
22151      * object has a "ddel" attribute (with an HTML Element) for other functions to work.
22152      * @param {EventObject} e The mouse down event
22153      * @return {Object} The dragData
22154      */
22155     getDragData : function(e){
22156         return Roo.dd.Registry.getHandleFromEvent(e);
22157     },
22158     
22159     /**
22160      * Called once drag threshold has been reached to initialize the proxy element. By default, it clones the
22161      * this.dragData.ddel
22162      * @param {Number} x The x position of the click on the dragged object
22163      * @param {Number} y The y position of the click on the dragged object
22164      * @return {Boolean} true to continue the drag, false to cancel
22165      */
22166     onInitDrag : function(x, y){
22167         this.proxy.update(this.dragData.ddel.cloneNode(true));
22168         this.onStartDrag(x, y);
22169         return true;
22170     },
22171     
22172     /**
22173      * Called after a repair of an invalid drop. By default, highlights this.dragData.ddel 
22174      */
22175     afterRepair : function(){
22176         if(Roo.enableFx){
22177             Roo.Element.fly(this.dragData.ddel).highlight(this.hlColor || "c3daf9");
22178         }
22179         this.dragging = false;
22180     },
22181
22182     /**
22183      * Called before a repair of an invalid drop to get the XY to animate to. By default returns
22184      * the XY of this.dragData.ddel
22185      * @param {EventObject} e The mouse up event
22186      * @return {Array} The xy location (e.g. [100, 200])
22187      */
22188     getRepairXY : function(e){
22189         return Roo.Element.fly(this.dragData.ddel).getXY();  
22190     }
22191 });/*
22192  * Based on:
22193  * Ext JS Library 1.1.1
22194  * Copyright(c) 2006-2007, Ext JS, LLC.
22195  *
22196  * Originally Released Under LGPL - original licence link has changed is not relivant.
22197  *
22198  * Fork - LGPL
22199  * <script type="text/javascript">
22200  */
22201 /**
22202  * @class Roo.dd.DropZone
22203  * @extends Roo.dd.DropTarget
22204  * This class provides a container DD instance that proxies for multiple child node targets.<br />
22205  * By default, this class requires that child nodes accepting drop are registered with {@link Roo.dd.Registry}.
22206  * @constructor
22207  * @param {String/HTMLElement/Element} el The container element
22208  * @param {Object} config
22209  */
22210 Roo.dd.DropZone = function(el, config){
22211     Roo.dd.DropZone.superclass.constructor.call(this, el, config);
22212 };
22213
22214 Roo.extend(Roo.dd.DropZone, Roo.dd.DropTarget, {
22215     /**
22216      * Returns a custom data object associated with the DOM node that is the target of the event.  By default
22217      * this looks up the event target in the {@link Roo.dd.Registry}, although you can override this method to
22218      * provide your own custom lookup.
22219      * @param {Event} e The event
22220      * @return {Object} data The custom data
22221      */
22222     getTargetFromEvent : function(e){
22223         return Roo.dd.Registry.getTargetFromEvent(e);
22224     },
22225
22226     /**
22227      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has entered a drop node
22228      * that it has registered.  This method has no default implementation and should be overridden to provide
22229      * node-specific processing if necessary.
22230      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from 
22231      * {@link #getTargetFromEvent} for this node)
22232      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22233      * @param {Event} e The event
22234      * @param {Object} data An object containing arbitrary data supplied by the drag source
22235      */
22236     onNodeEnter : function(n, dd, e, data){
22237         
22238     },
22239
22240     /**
22241      * Called internally while the DropZone determines that a {@link Roo.dd.DragSource} is over a drop node
22242      * that it has registered.  The default implementation returns this.dropNotAllowed, so it should be
22243      * overridden to provide the proper feedback.
22244      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
22245      * {@link #getTargetFromEvent} for this node)
22246      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22247      * @param {Event} e The event
22248      * @param {Object} data An object containing arbitrary data supplied by the drag source
22249      * @return {String} status The CSS class that communicates the drop status back to the source so that the
22250      * underlying {@link Roo.dd.StatusProxy} can be updated
22251      */
22252     onNodeOver : function(n, dd, e, data){
22253         return this.dropAllowed;
22254     },
22255
22256     /**
22257      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dragged out of
22258      * the drop node without dropping.  This method has no default implementation and should be overridden to provide
22259      * node-specific processing if necessary.
22260      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
22261      * {@link #getTargetFromEvent} for this node)
22262      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22263      * @param {Event} e The event
22264      * @param {Object} data An object containing arbitrary data supplied by the drag source
22265      */
22266     onNodeOut : function(n, dd, e, data){
22267         
22268     },
22269
22270     /**
22271      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dropped onto
22272      * the drop node.  The default implementation returns false, so it should be overridden to provide the
22273      * appropriate processing of the drop event and return true so that the drag source's repair action does not run.
22274      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
22275      * {@link #getTargetFromEvent} for this node)
22276      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22277      * @param {Event} e The event
22278      * @param {Object} data An object containing arbitrary data supplied by the drag source
22279      * @return {Boolean} True if the drop was valid, else false
22280      */
22281     onNodeDrop : function(n, dd, e, data){
22282         return false;
22283     },
22284
22285     /**
22286      * Called internally while the DropZone determines that a {@link Roo.dd.DragSource} is being dragged over it,
22287      * but not over any of its registered drop nodes.  The default implementation returns this.dropNotAllowed, so
22288      * it should be overridden to provide the proper feedback if necessary.
22289      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22290      * @param {Event} e The event
22291      * @param {Object} data An object containing arbitrary data supplied by the drag source
22292      * @return {String} status The CSS class that communicates the drop status back to the source so that the
22293      * underlying {@link Roo.dd.StatusProxy} can be updated
22294      */
22295     onContainerOver : function(dd, e, data){
22296         return this.dropNotAllowed;
22297     },
22298
22299     /**
22300      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dropped on it,
22301      * but not on any of its registered drop nodes.  The default implementation returns false, so it should be
22302      * overridden to provide the appropriate processing of the drop event if you need the drop zone itself to
22303      * be able to accept drops.  It should return true when valid so that the drag source's repair action does not run.
22304      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22305      * @param {Event} e The event
22306      * @param {Object} data An object containing arbitrary data supplied by the drag source
22307      * @return {Boolean} True if the drop was valid, else false
22308      */
22309     onContainerDrop : function(dd, e, data){
22310         return false;
22311     },
22312
22313     /**
22314      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the source is now over
22315      * the zone.  The default implementation returns this.dropNotAllowed and expects that only registered drop
22316      * nodes can process drag drop operations, so if you need the drop zone itself to be able to process drops
22317      * you should override this method and provide a custom implementation.
22318      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22319      * @param {Event} e The event
22320      * @param {Object} data An object containing arbitrary data supplied by the drag source
22321      * @return {String} status The CSS class that communicates the drop status back to the source so that the
22322      * underlying {@link Roo.dd.StatusProxy} can be updated
22323      */
22324     notifyEnter : function(dd, e, data){
22325         return this.dropNotAllowed;
22326     },
22327
22328     /**
22329      * The function a {@link Roo.dd.DragSource} calls continuously while it is being dragged over the drop zone.
22330      * This method will be called on every mouse movement while the drag source is over the drop zone.
22331      * It will call {@link #onNodeOver} while the drag source is over a registered node, and will also automatically
22332      * delegate to the appropriate node-specific methods as necessary when the drag source enters and exits
22333      * registered nodes ({@link #onNodeEnter}, {@link #onNodeOut}). If the drag source is not currently over a
22334      * registered node, it will call {@link #onContainerOver}.
22335      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22336      * @param {Event} e The event
22337      * @param {Object} data An object containing arbitrary data supplied by the drag source
22338      * @return {String} status The CSS class that communicates the drop status back to the source so that the
22339      * underlying {@link Roo.dd.StatusProxy} can be updated
22340      */
22341     notifyOver : function(dd, e, data){
22342         var n = this.getTargetFromEvent(e);
22343         if(!n){ // not over valid drop target
22344             if(this.lastOverNode){
22345                 this.onNodeOut(this.lastOverNode, dd, e, data);
22346                 this.lastOverNode = null;
22347             }
22348             return this.onContainerOver(dd, e, data);
22349         }
22350         if(this.lastOverNode != n){
22351             if(this.lastOverNode){
22352                 this.onNodeOut(this.lastOverNode, dd, e, data);
22353             }
22354             this.onNodeEnter(n, dd, e, data);
22355             this.lastOverNode = n;
22356         }
22357         return this.onNodeOver(n, dd, e, data);
22358     },
22359
22360     /**
22361      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the source has been dragged
22362      * out of the zone without dropping.  If the drag source is currently over a registered node, the notification
22363      * will be delegated to {@link #onNodeOut} for node-specific handling, otherwise it will be ignored.
22364      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
22365      * @param {Event} e The event
22366      * @param {Object} data An object containing arbitrary data supplied by the drag zone
22367      */
22368     notifyOut : function(dd, e, data){
22369         if(this.lastOverNode){
22370             this.onNodeOut(this.lastOverNode, dd, e, data);
22371             this.lastOverNode = null;
22372         }
22373     },
22374
22375     /**
22376      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the dragged item has
22377      * been dropped on it.  The drag zone will look up the target node based on the event passed in, and if there
22378      * is a node registered for that event, it will delegate to {@link #onNodeDrop} for node-specific handling,
22379      * otherwise it will call {@link #onContainerDrop}.
22380      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22381      * @param {Event} e The event
22382      * @param {Object} data An object containing arbitrary data supplied by the drag source
22383      * @return {Boolean} True if the drop was valid, else false
22384      */
22385     notifyDrop : function(dd, e, data){
22386         if(this.lastOverNode){
22387             this.onNodeOut(this.lastOverNode, dd, e, data);
22388             this.lastOverNode = null;
22389         }
22390         var n = this.getTargetFromEvent(e);
22391         return n ?
22392             this.onNodeDrop(n, dd, e, data) :
22393             this.onContainerDrop(dd, e, data);
22394     },
22395
22396     // private
22397     triggerCacheRefresh : function(){
22398         Roo.dd.DDM.refreshCache(this.groups);
22399     }  
22400 });/*
22401  * Based on:
22402  * Ext JS Library 1.1.1
22403  * Copyright(c) 2006-2007, Ext JS, LLC.
22404  *
22405  * Originally Released Under LGPL - original licence link has changed is not relivant.
22406  *
22407  * Fork - LGPL
22408  * <script type="text/javascript">
22409  */
22410
22411
22412 /**
22413  * @class Roo.data.SortTypes
22414  * @singleton
22415  * Defines the default sorting (casting?) comparison functions used when sorting data.
22416  */
22417 Roo.data.SortTypes = {
22418     /**
22419      * Default sort that does nothing
22420      * @param {Mixed} s The value being converted
22421      * @return {Mixed} The comparison value
22422      */
22423     none : function(s){
22424         return s;
22425     },
22426     
22427     /**
22428      * The regular expression used to strip tags
22429      * @type {RegExp}
22430      * @property
22431      */
22432     stripTagsRE : /<\/?[^>]+>/gi,
22433     
22434     /**
22435      * Strips all HTML tags to sort on text only
22436      * @param {Mixed} s The value being converted
22437      * @return {String} The comparison value
22438      */
22439     asText : function(s){
22440         return String(s).replace(this.stripTagsRE, "");
22441     },
22442     
22443     /**
22444      * Strips all HTML tags to sort on text only - Case insensitive
22445      * @param {Mixed} s The value being converted
22446      * @return {String} The comparison value
22447      */
22448     asUCText : function(s){
22449         return String(s).toUpperCase().replace(this.stripTagsRE, "");
22450     },
22451     
22452     /**
22453      * Case insensitive string
22454      * @param {Mixed} s The value being converted
22455      * @return {String} The comparison value
22456      */
22457     asUCString : function(s) {
22458         return String(s).toUpperCase();
22459     },
22460     
22461     /**
22462      * Date sorting
22463      * @param {Mixed} s The value being converted
22464      * @return {Number} The comparison value
22465      */
22466     asDate : function(s) {
22467         if(!s){
22468             return 0;
22469         }
22470         if(s instanceof Date){
22471             return s.getTime();
22472         }
22473         return Date.parse(String(s));
22474     },
22475     
22476     /**
22477      * Float sorting
22478      * @param {Mixed} s The value being converted
22479      * @return {Float} The comparison value
22480      */
22481     asFloat : function(s) {
22482         var val = parseFloat(String(s).replace(/,/g, ""));
22483         if(isNaN(val)) {
22484             val = 0;
22485         }
22486         return val;
22487     },
22488     
22489     /**
22490      * Integer sorting
22491      * @param {Mixed} s The value being converted
22492      * @return {Number} The comparison value
22493      */
22494     asInt : function(s) {
22495         var val = parseInt(String(s).replace(/,/g, ""));
22496         if(isNaN(val)) {
22497             val = 0;
22498         }
22499         return val;
22500     }
22501 };/*
22502  * Based on:
22503  * Ext JS Library 1.1.1
22504  * Copyright(c) 2006-2007, Ext JS, LLC.
22505  *
22506  * Originally Released Under LGPL - original licence link has changed is not relivant.
22507  *
22508  * Fork - LGPL
22509  * <script type="text/javascript">
22510  */
22511
22512 /**
22513 * @class Roo.data.Record
22514  * Instances of this class encapsulate both record <em>definition</em> information, and record
22515  * <em>value</em> information for use in {@link Roo.data.Store} objects, or any code which needs
22516  * to access Records cached in an {@link Roo.data.Store} object.<br>
22517  * <p>
22518  * Constructors for this class are generated by passing an Array of field definition objects to {@link #create}.
22519  * Instances are usually only created by {@link Roo.data.Reader} implementations when processing unformatted data
22520  * objects.<br>
22521  * <p>
22522  * Record objects generated by this constructor inherit all the methods of Roo.data.Record listed below.
22523  * @constructor
22524  * This constructor should not be used to create Record objects. Instead, use the constructor generated by
22525  * {@link #create}. The parameters are the same.
22526  * @param {Array} data An associative Array of data values keyed by the field name.
22527  * @param {Object} id (Optional) The id of the record. This id should be unique, and is used by the
22528  * {@link Roo.data.Store} object which owns the Record to index its collection of Records. If
22529  * not specified an integer id is generated.
22530  */
22531 Roo.data.Record = function(data, id){
22532     this.id = (id || id === 0) ? id : ++Roo.data.Record.AUTO_ID;
22533     this.data = data;
22534 };
22535
22536 /**
22537  * Generate a constructor for a specific record layout.
22538  * @param {Array} o An Array of field definition objects which specify field names, and optionally,
22539  * data types, and a mapping for an {@link Roo.data.Reader} to extract the field's value from a data object.
22540  * Each field definition object may contain the following properties: <ul>
22541  * <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,
22542  * for example the <em>dataIndex</em> property in column definition objects passed to {@link Roo.grid.ColumnModel}</p></li>
22543  * <li><b>mapping</b> : String<p style="margin-left:1em">(Optional) A path specification for use by the {@link Roo.data.Reader} implementation
22544  * that is creating the Record to access the data value from the data object. If an {@link Roo.data.JsonReader}
22545  * is being used, then this is a string containing the javascript expression to reference the data relative to 
22546  * the record item's root. If an {@link Roo.data.XmlReader} is being used, this is an {@link Roo.DomQuery} path
22547  * to the data item relative to the record element. If the mapping expression is the same as the field name,
22548  * this may be omitted.</p></li>
22549  * <li><b>type</b> : String<p style="margin-left:1em">(Optional) The data type for conversion to displayable value. Possible values are
22550  * <ul><li>auto (Default, implies no conversion)</li>
22551  * <li>string</li>
22552  * <li>int</li>
22553  * <li>float</li>
22554  * <li>boolean</li>
22555  * <li>date</li></ul></p></li>
22556  * <li><b>sortType</b> : Mixed<p style="margin-left:1em">(Optional) A member of {@link Roo.data.SortTypes}.</p></li>
22557  * <li><b>sortDir</b> : String<p style="margin-left:1em">(Optional) Initial direction to sort. "ASC" or "DESC"</p></li>
22558  * <li><b>convert</b> : Function<p style="margin-left:1em">(Optional) A function which converts the value provided
22559  * by the Reader into an object that will be stored in the Record. It is passed the
22560  * following parameters:<ul>
22561  * <li><b>v</b> : Mixed<p style="margin-left:1em">The data value as read by the Reader.</p></li>
22562  * </ul></p></li>
22563  * <li><b>dateFormat</b> : String<p style="margin-left:1em">(Optional) A format String for the Date.parseDate function.</p></li>
22564  * </ul>
22565  * <br>usage:<br><pre><code>
22566 var TopicRecord = Roo.data.Record.create(
22567     {name: 'title', mapping: 'topic_title'},
22568     {name: 'author', mapping: 'username'},
22569     {name: 'totalPosts', mapping: 'topic_replies', type: 'int'},
22570     {name: 'lastPost', mapping: 'post_time', type: 'date'},
22571     {name: 'lastPoster', mapping: 'user2'},
22572     {name: 'excerpt', mapping: 'post_text'}
22573 );
22574
22575 var myNewRecord = new TopicRecord({
22576     title: 'Do my job please',
22577     author: 'noobie',
22578     totalPosts: 1,
22579     lastPost: new Date(),
22580     lastPoster: 'Animal',
22581     excerpt: 'No way dude!'
22582 });
22583 myStore.add(myNewRecord);
22584 </code></pre>
22585  * @method create
22586  * @static
22587  */
22588 Roo.data.Record.create = function(o){
22589     var f = function(){
22590         f.superclass.constructor.apply(this, arguments);
22591     };
22592     Roo.extend(f, Roo.data.Record);
22593     var p = f.prototype;
22594     p.fields = new Roo.util.MixedCollection(false, function(field){
22595         return field.name;
22596     });
22597     for(var i = 0, len = o.length; i < len; i++){
22598         p.fields.add(new Roo.data.Field(o[i]));
22599     }
22600     f.getField = function(name){
22601         return p.fields.get(name);  
22602     };
22603     return f;
22604 };
22605
22606 Roo.data.Record.AUTO_ID = 1000;
22607 Roo.data.Record.EDIT = 'edit';
22608 Roo.data.Record.REJECT = 'reject';
22609 Roo.data.Record.COMMIT = 'commit';
22610
22611 Roo.data.Record.prototype = {
22612     /**
22613      * Readonly flag - true if this record has been modified.
22614      * @type Boolean
22615      */
22616     dirty : false,
22617     editing : false,
22618     error: null,
22619     modified: null,
22620
22621     // private
22622     join : function(store){
22623         this.store = store;
22624     },
22625
22626     /**
22627      * Set the named field to the specified value.
22628      * @param {String} name The name of the field to set.
22629      * @param {Object} value The value to set the field to.
22630      */
22631     set : function(name, value){
22632         if(this.data[name] == value){
22633             return;
22634         }
22635         this.dirty = true;
22636         if(!this.modified){
22637             this.modified = {};
22638         }
22639         if(typeof this.modified[name] == 'undefined'){
22640             this.modified[name] = this.data[name];
22641         }
22642         this.data[name] = value;
22643         if(!this.editing && this.store){
22644             this.store.afterEdit(this);
22645         }       
22646     },
22647
22648     /**
22649      * Get the value of the named field.
22650      * @param {String} name The name of the field to get the value of.
22651      * @return {Object} The value of the field.
22652      */
22653     get : function(name){
22654         return this.data[name]; 
22655     },
22656
22657     // private
22658     beginEdit : function(){
22659         this.editing = true;
22660         this.modified = {}; 
22661     },
22662
22663     // private
22664     cancelEdit : function(){
22665         this.editing = false;
22666         delete this.modified;
22667     },
22668
22669     // private
22670     endEdit : function(){
22671         this.editing = false;
22672         if(this.dirty && this.store){
22673             this.store.afterEdit(this);
22674         }
22675     },
22676
22677     /**
22678      * Usually called by the {@link Roo.data.Store} which owns the Record.
22679      * Rejects all changes made to the Record since either creation, or the last commit operation.
22680      * Modified fields are reverted to their original values.
22681      * <p>
22682      * Developers should subscribe to the {@link Roo.data.Store#update} event to have their code notified
22683      * of reject operations.
22684      */
22685     reject : function(){
22686         var m = this.modified;
22687         for(var n in m){
22688             if(typeof m[n] != "function"){
22689                 this.data[n] = m[n];
22690             }
22691         }
22692         this.dirty = false;
22693         delete this.modified;
22694         this.editing = false;
22695         if(this.store){
22696             this.store.afterReject(this);
22697         }
22698     },
22699
22700     /**
22701      * Usually called by the {@link Roo.data.Store} which owns the Record.
22702      * Commits all changes made to the Record since either creation, or the last commit operation.
22703      * <p>
22704      * Developers should subscribe to the {@link Roo.data.Store#update} event to have their code notified
22705      * of commit operations.
22706      */
22707     commit : function(){
22708         this.dirty = false;
22709         delete this.modified;
22710         this.editing = false;
22711         if(this.store){
22712             this.store.afterCommit(this);
22713         }
22714     },
22715
22716     // private
22717     hasError : function(){
22718         return this.error != null;
22719     },
22720
22721     // private
22722     clearError : function(){
22723         this.error = null;
22724     },
22725
22726     /**
22727      * Creates a copy of this record.
22728      * @param {String} id (optional) A new record id if you don't want to use this record's id
22729      * @return {Record}
22730      */
22731     copy : function(newId) {
22732         return new this.constructor(Roo.apply({}, this.data), newId || this.id);
22733     }
22734 };/*
22735  * Based on:
22736  * Ext JS Library 1.1.1
22737  * Copyright(c) 2006-2007, Ext JS, LLC.
22738  *
22739  * Originally Released Under LGPL - original licence link has changed is not relivant.
22740  *
22741  * Fork - LGPL
22742  * <script type="text/javascript">
22743  */
22744
22745
22746
22747 /**
22748  * @class Roo.data.Store
22749  * @extends Roo.util.Observable
22750  * The Store class encapsulates a client side cache of {@link Roo.data.Record} objects which provide input data
22751  * for widgets such as the Roo.grid.Grid, or the Roo.form.ComboBox.<br>
22752  * <p>
22753  * 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
22754  * has no knowledge of the format of the data returned by the Proxy.<br>
22755  * <p>
22756  * A Store object uses its configured implementation of {@link Roo.data.DataReader} to create {@link Roo.data.Record}
22757  * instances from the data object. These records are cached and made available through accessor functions.
22758  * @constructor
22759  * Creates a new Store.
22760  * @param {Object} config A config object containing the objects needed for the Store to access data,
22761  * and read the data into Records.
22762  */
22763 Roo.data.Store = function(config){
22764     this.data = new Roo.util.MixedCollection(false);
22765     this.data.getKey = function(o){
22766         return o.id;
22767     };
22768     this.baseParams = {};
22769     // private
22770     this.paramNames = {
22771         "start" : "start",
22772         "limit" : "limit",
22773         "sort" : "sort",
22774         "dir" : "dir",
22775         "multisort" : "_multisort"
22776     };
22777
22778     if(config && config.data){
22779         this.inlineData = config.data;
22780         delete config.data;
22781     }
22782
22783     Roo.apply(this, config);
22784     
22785     if(this.reader){ // reader passed
22786         this.reader = Roo.factory(this.reader, Roo.data);
22787         this.reader.xmodule = this.xmodule || false;
22788         if(!this.recordType){
22789             this.recordType = this.reader.recordType;
22790         }
22791         if(this.reader.onMetaChange){
22792             this.reader.onMetaChange = this.onMetaChange.createDelegate(this);
22793         }
22794     }
22795
22796     if(this.recordType){
22797         this.fields = this.recordType.prototype.fields;
22798     }
22799     this.modified = [];
22800
22801     this.addEvents({
22802         /**
22803          * @event datachanged
22804          * Fires when the data cache has changed, and a widget which is using this Store
22805          * as a Record cache should refresh its view.
22806          * @param {Store} this
22807          */
22808         datachanged : true,
22809         /**
22810          * @event metachange
22811          * Fires when this store's reader provides new metadata (fields). This is currently only support for JsonReaders.
22812          * @param {Store} this
22813          * @param {Object} meta The JSON metadata
22814          */
22815         metachange : true,
22816         /**
22817          * @event add
22818          * Fires when Records have been added to the Store
22819          * @param {Store} this
22820          * @param {Roo.data.Record[]} records The array of Records added
22821          * @param {Number} index The index at which the record(s) were added
22822          */
22823         add : true,
22824         /**
22825          * @event remove
22826          * Fires when a Record has been removed from the Store
22827          * @param {Store} this
22828          * @param {Roo.data.Record} record The Record that was removed
22829          * @param {Number} index The index at which the record was removed
22830          */
22831         remove : true,
22832         /**
22833          * @event update
22834          * Fires when a Record has been updated
22835          * @param {Store} this
22836          * @param {Roo.data.Record} record The Record that was updated
22837          * @param {String} operation The update operation being performed.  Value may be one of:
22838          * <pre><code>
22839  Roo.data.Record.EDIT
22840  Roo.data.Record.REJECT
22841  Roo.data.Record.COMMIT
22842          * </code></pre>
22843          */
22844         update : true,
22845         /**
22846          * @event clear
22847          * Fires when the data cache has been cleared.
22848          * @param {Store} this
22849          */
22850         clear : true,
22851         /**
22852          * @event beforeload
22853          * Fires before a request is made for a new data object.  If the beforeload handler returns false
22854          * the load action will be canceled.
22855          * @param {Store} this
22856          * @param {Object} options The loading options that were specified (see {@link #load} for details)
22857          */
22858         beforeload : true,
22859         /**
22860          * @event beforeloadadd
22861          * Fires after a new set of Records has been loaded.
22862          * @param {Store} this
22863          * @param {Roo.data.Record[]} records The Records that were loaded
22864          * @param {Object} options The loading options that were specified (see {@link #load} for details)
22865          */
22866         beforeloadadd : true,
22867         /**
22868          * @event load
22869          * Fires after a new set of Records has been loaded, before they are added to the store.
22870          * @param {Store} this
22871          * @param {Roo.data.Record[]} records The Records that were loaded
22872          * @param {Object} options The loading options that were specified (see {@link #load} for details)
22873          * @params {Object} return from reader
22874          */
22875         load : true,
22876         /**
22877          * @event loadexception
22878          * Fires if an exception occurs in the Proxy during loading.
22879          * Called with the signature of the Proxy's "loadexception" event.
22880          * If you return Json { data: [] , success: false, .... } then this will be thrown with the following args
22881          * 
22882          * @param {Proxy} 
22883          * @param {Object} return from JsonData.reader() - success, totalRecords, records
22884          * @param {Object} load options 
22885          * @param {Object} jsonData from your request (normally this contains the Exception)
22886          */
22887         loadexception : true
22888     });
22889     
22890     if(this.proxy){
22891         this.proxy = Roo.factory(this.proxy, Roo.data);
22892         this.proxy.xmodule = this.xmodule || false;
22893         this.relayEvents(this.proxy,  ["loadexception"]);
22894     }
22895     this.sortToggle = {};
22896     this.sortOrder = []; // array of order of sorting - updated by grid if multisort is enabled.
22897
22898     Roo.data.Store.superclass.constructor.call(this);
22899
22900     if(this.inlineData){
22901         this.loadData(this.inlineData);
22902         delete this.inlineData;
22903     }
22904 };
22905
22906 Roo.extend(Roo.data.Store, Roo.util.Observable, {
22907      /**
22908     * @cfg {boolean} isLocal   flag if data is locally available (and can be always looked up
22909     * without a remote query - used by combo/forms at present.
22910     */
22911     
22912     /**
22913     * @cfg {Roo.data.DataProxy} proxy The Proxy object which provides access to a data object.
22914     */
22915     /**
22916     * @cfg {Array} data Inline data to be loaded when the store is initialized.
22917     */
22918     /**
22919     * @cfg {Roo.data.Reader} reader The Reader object which processes the data object and returns
22920     * an Array of Roo.data.record objects which are cached keyed by their <em>id</em> property.
22921     */
22922     /**
22923     * @cfg {Object} baseParams An object containing properties which are to be sent as parameters
22924     * on any HTTP request
22925     */
22926     /**
22927     * @cfg {Object} sortInfo A config object in the format: {field: "fieldName", direction: "ASC|DESC"}
22928     */
22929     /**
22930     * @cfg {Boolean} multiSort enable multi column sorting (sort is based on the order of columns, remote only at present)
22931     */
22932     multiSort: false,
22933     /**
22934     * @cfg {boolean} remoteSort True if sorting is to be handled by requesting the Proxy to provide a refreshed
22935     * version of the data object in sorted order, as opposed to sorting the Record cache in place (defaults to false).
22936     */
22937     remoteSort : false,
22938
22939     /**
22940     * @cfg {boolean} pruneModifiedRecords True to clear all modified record information each time the store is
22941      * loaded or when a record is removed. (defaults to false).
22942     */
22943     pruneModifiedRecords : false,
22944
22945     // private
22946     lastOptions : null,
22947
22948     /**
22949      * Add Records to the Store and fires the add event.
22950      * @param {Roo.data.Record[]} records An Array of Roo.data.Record objects to add to the cache.
22951      */
22952     add : function(records){
22953         records = [].concat(records);
22954         for(var i = 0, len = records.length; i < len; i++){
22955             records[i].join(this);
22956         }
22957         var index = this.data.length;
22958         this.data.addAll(records);
22959         this.fireEvent("add", this, records, index);
22960     },
22961
22962     /**
22963      * Remove a Record from the Store and fires the remove event.
22964      * @param {Ext.data.Record} record The Roo.data.Record object to remove from the cache.
22965      */
22966     remove : function(record){
22967         var index = this.data.indexOf(record);
22968         this.data.removeAt(index);
22969  
22970         if(this.pruneModifiedRecords){
22971             this.modified.remove(record);
22972         }
22973         this.fireEvent("remove", this, record, index);
22974     },
22975
22976     /**
22977      * Remove all Records from the Store and fires the clear event.
22978      */
22979     removeAll : function(){
22980         this.data.clear();
22981         if(this.pruneModifiedRecords){
22982             this.modified = [];
22983         }
22984         this.fireEvent("clear", this);
22985     },
22986
22987     /**
22988      * Inserts Records to the Store at the given index and fires the add event.
22989      * @param {Number} index The start index at which to insert the passed Records.
22990      * @param {Roo.data.Record[]} records An Array of Roo.data.Record objects to add to the cache.
22991      */
22992     insert : function(index, records){
22993         records = [].concat(records);
22994         for(var i = 0, len = records.length; i < len; i++){
22995             this.data.insert(index, records[i]);
22996             records[i].join(this);
22997         }
22998         this.fireEvent("add", this, records, index);
22999     },
23000
23001     /**
23002      * Get the index within the cache of the passed Record.
23003      * @param {Roo.data.Record} record The Roo.data.Record object to to find.
23004      * @return {Number} The index of the passed Record. Returns -1 if not found.
23005      */
23006     indexOf : function(record){
23007         return this.data.indexOf(record);
23008     },
23009
23010     /**
23011      * Get the index within the cache of the Record with the passed id.
23012      * @param {String} id The id of the Record to find.
23013      * @return {Number} The index of the Record. Returns -1 if not found.
23014      */
23015     indexOfId : function(id){
23016         return this.data.indexOfKey(id);
23017     },
23018
23019     /**
23020      * Get the Record with the specified id.
23021      * @param {String} id The id of the Record to find.
23022      * @return {Roo.data.Record} The Record with the passed id. Returns undefined if not found.
23023      */
23024     getById : function(id){
23025         return this.data.key(id);
23026     },
23027
23028     /**
23029      * Get the Record at the specified index.
23030      * @param {Number} index The index of the Record to find.
23031      * @return {Roo.data.Record} The Record at the passed index. Returns undefined if not found.
23032      */
23033     getAt : function(index){
23034         return this.data.itemAt(index);
23035     },
23036
23037     /**
23038      * Returns a range of Records between specified indices.
23039      * @param {Number} startIndex (optional) The starting index (defaults to 0)
23040      * @param {Number} endIndex (optional) The ending index (defaults to the last Record in the Store)
23041      * @return {Roo.data.Record[]} An array of Records
23042      */
23043     getRange : function(start, end){
23044         return this.data.getRange(start, end);
23045     },
23046
23047     // private
23048     storeOptions : function(o){
23049         o = Roo.apply({}, o);
23050         delete o.callback;
23051         delete o.scope;
23052         this.lastOptions = o;
23053     },
23054
23055     /**
23056      * Loads the Record cache from the configured Proxy using the configured Reader.
23057      * <p>
23058      * If using remote paging, then the first load call must specify the <em>start</em>
23059      * and <em>limit</em> properties in the options.params property to establish the initial
23060      * position within the dataset, and the number of Records to cache on each read from the Proxy.
23061      * <p>
23062      * <strong>It is important to note that for remote data sources, loading is asynchronous,
23063      * and this call will return before the new data has been loaded. Perform any post-processing
23064      * in a callback function, or in a "load" event handler.</strong>
23065      * <p>
23066      * @param {Object} options An object containing properties which control loading options:<ul>
23067      * <li>params {Object} An object containing properties to pass as HTTP parameters to a remote data source.</li>
23068      * <li>callback {Function} A function to be called after the Records have been loaded. The callback is
23069      * passed the following arguments:<ul>
23070      * <li>r : Roo.data.Record[]</li>
23071      * <li>options: Options object from the load call</li>
23072      * <li>success: Boolean success indicator</li></ul></li>
23073      * <li>scope {Object} Scope with which to call the callback (defaults to the Store object)</li>
23074      * <li>add {Boolean} indicator to append loaded records rather than replace the current cache.</li>
23075      * </ul>
23076      */
23077     load : function(options){
23078         options = options || {};
23079         if(this.fireEvent("beforeload", this, options) !== false){
23080             this.storeOptions(options);
23081             var p = Roo.apply(options.params || {}, this.baseParams);
23082             // if meta was not loaded from remote source.. try requesting it.
23083             if (!this.reader.metaFromRemote) {
23084                 p._requestMeta = 1;
23085             }
23086             if(this.sortInfo && this.remoteSort){
23087                 var pn = this.paramNames;
23088                 p[pn["sort"]] = this.sortInfo.field;
23089                 p[pn["dir"]] = this.sortInfo.direction;
23090             }
23091             if (this.multiSort) {
23092                 var pn = this.paramNames;
23093                 p[pn["multisort"]] = Roo.encode( { sort : this.sortToggle, order: this.sortOrder });
23094             }
23095             
23096             this.proxy.load(p, this.reader, this.loadRecords, this, options);
23097         }
23098     },
23099
23100     /**
23101      * Reloads the Record cache from the configured Proxy using the configured Reader and
23102      * the options from the last load operation performed.
23103      * @param {Object} options (optional) An object containing properties which may override the options
23104      * used in the last load operation. See {@link #load} for details (defaults to null, in which case
23105      * the most recently used options are reused).
23106      */
23107     reload : function(options){
23108         this.load(Roo.applyIf(options||{}, this.lastOptions));
23109     },
23110
23111     // private
23112     // Called as a callback by the Reader during a load operation.
23113     loadRecords : function(o, options, success){
23114         if(!o || success === false){
23115             if(success !== false){
23116                 this.fireEvent("load", this, [], options, o);
23117             }
23118             if(options.callback){
23119                 options.callback.call(options.scope || this, [], options, false);
23120             }
23121             return;
23122         }
23123         // if data returned failure - throw an exception.
23124         if (o.success === false) {
23125             // show a message if no listener is registered.
23126             if (!this.hasListener('loadexception') && typeof(o.raw.errorMsg) != 'undefined') {
23127                     Roo.MessageBox.alert("Error loading",o.raw.errorMsg);
23128             }
23129             // loadmask wil be hooked into this..
23130             this.fireEvent("loadexception", this, o, options, o.raw.errorMsg);
23131             return;
23132         }
23133         var r = o.records, t = o.totalRecords || r.length;
23134         
23135         this.fireEvent("beforeloadadd", this, r, options, o);
23136         
23137         if(!options || options.add !== true){
23138             if(this.pruneModifiedRecords){
23139                 this.modified = [];
23140             }
23141             for(var i = 0, len = r.length; i < len; i++){
23142                 r[i].join(this);
23143             }
23144             if(this.snapshot){
23145                 this.data = this.snapshot;
23146                 delete this.snapshot;
23147             }
23148             this.data.clear();
23149             this.data.addAll(r);
23150             this.totalLength = t;
23151             this.applySort();
23152             this.fireEvent("datachanged", this);
23153         }else{
23154             this.totalLength = Math.max(t, this.data.length+r.length);
23155             this.add(r);
23156         }
23157         
23158         if(this.parent && !Roo.isIOS && !this.useNativeIOS && this.parent.emptyTitle.length) {
23159                 
23160             var e = new Roo.data.Record({});
23161
23162             e.set(this.parent.displayField, this.parent.emptyTitle);
23163             e.set(this.parent.valueField, '');
23164
23165             this.insert(0, e);
23166         }
23167             
23168         this.fireEvent("load", this, r, options, o);
23169         if(options.callback){
23170             options.callback.call(options.scope || this, r, options, true);
23171         }
23172     },
23173
23174
23175     /**
23176      * Loads data from a passed data block. A Reader which understands the format of the data
23177      * must have been configured in the constructor.
23178      * @param {Object} data The data block from which to read the Records.  The format of the data expected
23179      * is dependent on the type of Reader that is configured and should correspond to that Reader's readRecords parameter.
23180      * @param {Boolean} append (Optional) True to append the new Records rather than replace the existing cache.
23181      */
23182     loadData : function(o, append){
23183         var r = this.reader.readRecords(o);
23184         this.loadRecords(r, {add: append}, true);
23185     },
23186
23187     /**
23188      * Gets the number of cached records.
23189      * <p>
23190      * <em>If using paging, this may not be the total size of the dataset. If the data object
23191      * used by the Reader contains the dataset size, then the getTotalCount() function returns
23192      * the data set size</em>
23193      */
23194     getCount : function(){
23195         return this.data.length || 0;
23196     },
23197
23198     /**
23199      * Gets the total number of records in the dataset as returned by the server.
23200      * <p>
23201      * <em>If using paging, for this to be accurate, the data object used by the Reader must contain
23202      * the dataset size</em>
23203      */
23204     getTotalCount : function(){
23205         return this.totalLength || 0;
23206     },
23207
23208     /**
23209      * Returns the sort state of the Store as an object with two properties:
23210      * <pre><code>
23211  field {String} The name of the field by which the Records are sorted
23212  direction {String} The sort order, "ASC" or "DESC"
23213      * </code></pre>
23214      */
23215     getSortState : function(){
23216         return this.sortInfo;
23217     },
23218
23219     // private
23220     applySort : function(){
23221         if(this.sortInfo && !this.remoteSort){
23222             var s = this.sortInfo, f = s.field;
23223             var st = this.fields.get(f).sortType;
23224             var fn = function(r1, r2){
23225                 var v1 = st(r1.data[f]), v2 = st(r2.data[f]);
23226                 return v1 > v2 ? 1 : (v1 < v2 ? -1 : 0);
23227             };
23228             this.data.sort(s.direction, fn);
23229             if(this.snapshot && this.snapshot != this.data){
23230                 this.snapshot.sort(s.direction, fn);
23231             }
23232         }
23233     },
23234
23235     /**
23236      * Sets the default sort column and order to be used by the next load operation.
23237      * @param {String} fieldName The name of the field to sort by.
23238      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
23239      */
23240     setDefaultSort : function(field, dir){
23241         this.sortInfo = {field: field, direction: dir ? dir.toUpperCase() : "ASC"};
23242     },
23243
23244     /**
23245      * Sort the Records.
23246      * If remote sorting is used, the sort is performed on the server, and the cache is
23247      * reloaded. If local sorting is used, the cache is sorted internally.
23248      * @param {String} fieldName The name of the field to sort by.
23249      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
23250      */
23251     sort : function(fieldName, dir){
23252         var f = this.fields.get(fieldName);
23253         if(!dir){
23254             this.sortToggle[f.name] = this.sortToggle[f.name] || f.sortDir;
23255             
23256             if(this.multiSort || (this.sortInfo && this.sortInfo.field == f.name) ){ // toggle sort dir
23257                 dir = (this.sortToggle[f.name] || "ASC").toggle("ASC", "DESC");
23258             }else{
23259                 dir = f.sortDir;
23260             }
23261         }
23262         this.sortToggle[f.name] = dir;
23263         this.sortInfo = {field: f.name, direction: dir};
23264         if(!this.remoteSort){
23265             this.applySort();
23266             this.fireEvent("datachanged", this);
23267         }else{
23268             this.load(this.lastOptions);
23269         }
23270     },
23271
23272     /**
23273      * Calls the specified function for each of the Records in the cache.
23274      * @param {Function} fn The function to call. The Record is passed as the first parameter.
23275      * Returning <em>false</em> aborts and exits the iteration.
23276      * @param {Object} scope (optional) The scope in which to call the function (defaults to the Record).
23277      */
23278     each : function(fn, scope){
23279         this.data.each(fn, scope);
23280     },
23281
23282     /**
23283      * Gets all records modified since the last commit.  Modified records are persisted across load operations
23284      * (e.g., during paging).
23285      * @return {Roo.data.Record[]} An array of Records containing outstanding modifications.
23286      */
23287     getModifiedRecords : function(){
23288         return this.modified;
23289     },
23290
23291     // private
23292     createFilterFn : function(property, value, anyMatch){
23293         if(!value.exec){ // not a regex
23294             value = String(value);
23295             if(value.length == 0){
23296                 return false;
23297             }
23298             value = new RegExp((anyMatch === true ? '' : '^') + Roo.escapeRe(value), "i");
23299         }
23300         return function(r){
23301             return value.test(r.data[property]);
23302         };
23303     },
23304
23305     /**
23306      * Sums the value of <i>property</i> for each record between start and end and returns the result.
23307      * @param {String} property A field on your records
23308      * @param {Number} start The record index to start at (defaults to 0)
23309      * @param {Number} end The last record index to include (defaults to length - 1)
23310      * @return {Number} The sum
23311      */
23312     sum : function(property, start, end){
23313         var rs = this.data.items, v = 0;
23314         start = start || 0;
23315         end = (end || end === 0) ? end : rs.length-1;
23316
23317         for(var i = start; i <= end; i++){
23318             v += (rs[i].data[property] || 0);
23319         }
23320         return v;
23321     },
23322
23323     /**
23324      * Filter the records by a specified property.
23325      * @param {String} field A field on your records
23326      * @param {String/RegExp} value Either a string that the field
23327      * should start with or a RegExp to test against the field
23328      * @param {Boolean} anyMatch True to match any part not just the beginning
23329      */
23330     filter : function(property, value, anyMatch){
23331         var fn = this.createFilterFn(property, value, anyMatch);
23332         return fn ? this.filterBy(fn) : this.clearFilter();
23333     },
23334
23335     /**
23336      * Filter by a function. The specified function will be called with each
23337      * record in this data source. If the function returns true the record is included,
23338      * otherwise it is filtered.
23339      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
23340      * @param {Object} scope (optional) The scope of the function (defaults to this)
23341      */
23342     filterBy : function(fn, scope){
23343         this.snapshot = this.snapshot || this.data;
23344         this.data = this.queryBy(fn, scope||this);
23345         this.fireEvent("datachanged", this);
23346     },
23347
23348     /**
23349      * Query the records by a specified property.
23350      * @param {String} field A field on your records
23351      * @param {String/RegExp} value Either a string that the field
23352      * should start with or a RegExp to test against the field
23353      * @param {Boolean} anyMatch True to match any part not just the beginning
23354      * @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
23355      */
23356     query : function(property, value, anyMatch){
23357         var fn = this.createFilterFn(property, value, anyMatch);
23358         return fn ? this.queryBy(fn) : this.data.clone();
23359     },
23360
23361     /**
23362      * Query by a function. The specified function will be called with each
23363      * record in this data source. If the function returns true the record is included
23364      * in the results.
23365      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
23366      * @param {Object} scope (optional) The scope of the function (defaults to this)
23367       @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
23368      **/
23369     queryBy : function(fn, scope){
23370         var data = this.snapshot || this.data;
23371         return data.filterBy(fn, scope||this);
23372     },
23373
23374     /**
23375      * Collects unique values for a particular dataIndex from this store.
23376      * @param {String} dataIndex The property to collect
23377      * @param {Boolean} allowNull (optional) Pass true to allow null, undefined or empty string values
23378      * @param {Boolean} bypassFilter (optional) Pass true to collect from all records, even ones which are filtered
23379      * @return {Array} An array of the unique values
23380      **/
23381     collect : function(dataIndex, allowNull, bypassFilter){
23382         var d = (bypassFilter === true && this.snapshot) ?
23383                 this.snapshot.items : this.data.items;
23384         var v, sv, r = [], l = {};
23385         for(var i = 0, len = d.length; i < len; i++){
23386             v = d[i].data[dataIndex];
23387             sv = String(v);
23388             if((allowNull || !Roo.isEmpty(v)) && !l[sv]){
23389                 l[sv] = true;
23390                 r[r.length] = v;
23391             }
23392         }
23393         return r;
23394     },
23395
23396     /**
23397      * Revert to a view of the Record cache with no filtering applied.
23398      * @param {Boolean} suppressEvent If true the filter is cleared silently without notifying listeners
23399      */
23400     clearFilter : function(suppressEvent){
23401         if(this.snapshot && this.snapshot != this.data){
23402             this.data = this.snapshot;
23403             delete this.snapshot;
23404             if(suppressEvent !== true){
23405                 this.fireEvent("datachanged", this);
23406             }
23407         }
23408     },
23409
23410     // private
23411     afterEdit : function(record){
23412         if(this.modified.indexOf(record) == -1){
23413             this.modified.push(record);
23414         }
23415         this.fireEvent("update", this, record, Roo.data.Record.EDIT);
23416     },
23417     
23418     // private
23419     afterReject : function(record){
23420         this.modified.remove(record);
23421         this.fireEvent("update", this, record, Roo.data.Record.REJECT);
23422     },
23423
23424     // private
23425     afterCommit : function(record){
23426         this.modified.remove(record);
23427         this.fireEvent("update", this, record, Roo.data.Record.COMMIT);
23428     },
23429
23430     /**
23431      * Commit all Records with outstanding changes. To handle updates for changes, subscribe to the
23432      * Store's "update" event, and perform updating when the third parameter is Roo.data.Record.COMMIT.
23433      */
23434     commitChanges : function(){
23435         var m = this.modified.slice(0);
23436         this.modified = [];
23437         for(var i = 0, len = m.length; i < len; i++){
23438             m[i].commit();
23439         }
23440     },
23441
23442     /**
23443      * Cancel outstanding changes on all changed records.
23444      */
23445     rejectChanges : function(){
23446         var m = this.modified.slice(0);
23447         this.modified = [];
23448         for(var i = 0, len = m.length; i < len; i++){
23449             m[i].reject();
23450         }
23451     },
23452
23453     onMetaChange : function(meta, rtype, o){
23454         this.recordType = rtype;
23455         this.fields = rtype.prototype.fields;
23456         delete this.snapshot;
23457         this.sortInfo = meta.sortInfo || this.sortInfo;
23458         this.modified = [];
23459         this.fireEvent('metachange', this, this.reader.meta);
23460     },
23461     
23462     moveIndex : function(data, type)
23463     {
23464         var index = this.indexOf(data);
23465         
23466         var newIndex = index + type;
23467         
23468         this.remove(data);
23469         
23470         this.insert(newIndex, data);
23471         
23472     }
23473 });/*
23474  * Based on:
23475  * Ext JS Library 1.1.1
23476  * Copyright(c) 2006-2007, Ext JS, LLC.
23477  *
23478  * Originally Released Under LGPL - original licence link has changed is not relivant.
23479  *
23480  * Fork - LGPL
23481  * <script type="text/javascript">
23482  */
23483
23484 /**
23485  * @class Roo.data.SimpleStore
23486  * @extends Roo.data.Store
23487  * Small helper class to make creating Stores from Array data easier.
23488  * @cfg {Number} id The array index of the record id. Leave blank to auto generate ids.
23489  * @cfg {Array} fields An array of field definition objects, or field name strings.
23490  * @cfg {Array} data The multi-dimensional array of data
23491  * @constructor
23492  * @param {Object} config
23493  */
23494 Roo.data.SimpleStore = function(config){
23495     Roo.data.SimpleStore.superclass.constructor.call(this, {
23496         isLocal : true,
23497         reader: new Roo.data.ArrayReader({
23498                 id: config.id
23499             },
23500             Roo.data.Record.create(config.fields)
23501         ),
23502         proxy : new Roo.data.MemoryProxy(config.data)
23503     });
23504     this.load();
23505 };
23506 Roo.extend(Roo.data.SimpleStore, Roo.data.Store);/*
23507  * Based on:
23508  * Ext JS Library 1.1.1
23509  * Copyright(c) 2006-2007, Ext JS, LLC.
23510  *
23511  * Originally Released Under LGPL - original licence link has changed is not relivant.
23512  *
23513  * Fork - LGPL
23514  * <script type="text/javascript">
23515  */
23516
23517 /**
23518 /**
23519  * @extends Roo.data.Store
23520  * @class Roo.data.JsonStore
23521  * Small helper class to make creating Stores for JSON data easier. <br/>
23522 <pre><code>
23523 var store = new Roo.data.JsonStore({
23524     url: 'get-images.php',
23525     root: 'images',
23526     fields: ['name', 'url', {name:'size', type: 'float'}, {name:'lastmod', type:'date'}]
23527 });
23528 </code></pre>
23529  * <b>Note: Although they are not listed, this class inherits all of the config options of Store,
23530  * JsonReader and HttpProxy (unless inline data is provided).</b>
23531  * @cfg {Array} fields An array of field definition objects, or field name strings.
23532  * @constructor
23533  * @param {Object} config
23534  */
23535 Roo.data.JsonStore = function(c){
23536     Roo.data.JsonStore.superclass.constructor.call(this, Roo.apply(c, {
23537         proxy: !c.data ? new Roo.data.HttpProxy({url: c.url}) : undefined,
23538         reader: new Roo.data.JsonReader(c, c.fields)
23539     }));
23540 };
23541 Roo.extend(Roo.data.JsonStore, Roo.data.Store);/*
23542  * Based on:
23543  * Ext JS Library 1.1.1
23544  * Copyright(c) 2006-2007, Ext JS, LLC.
23545  *
23546  * Originally Released Under LGPL - original licence link has changed is not relivant.
23547  *
23548  * Fork - LGPL
23549  * <script type="text/javascript">
23550  */
23551
23552  
23553 Roo.data.Field = function(config){
23554     if(typeof config == "string"){
23555         config = {name: config};
23556     }
23557     Roo.apply(this, config);
23558     
23559     if(!this.type){
23560         this.type = "auto";
23561     }
23562     
23563     var st = Roo.data.SortTypes;
23564     // named sortTypes are supported, here we look them up
23565     if(typeof this.sortType == "string"){
23566         this.sortType = st[this.sortType];
23567     }
23568     
23569     // set default sortType for strings and dates
23570     if(!this.sortType){
23571         switch(this.type){
23572             case "string":
23573                 this.sortType = st.asUCString;
23574                 break;
23575             case "date":
23576                 this.sortType = st.asDate;
23577                 break;
23578             default:
23579                 this.sortType = st.none;
23580         }
23581     }
23582
23583     // define once
23584     var stripRe = /[\$,%]/g;
23585
23586     // prebuilt conversion function for this field, instead of
23587     // switching every time we're reading a value
23588     if(!this.convert){
23589         var cv, dateFormat = this.dateFormat;
23590         switch(this.type){
23591             case "":
23592             case "auto":
23593             case undefined:
23594                 cv = function(v){ return v; };
23595                 break;
23596             case "string":
23597                 cv = function(v){ return (v === undefined || v === null) ? '' : String(v); };
23598                 break;
23599             case "int":
23600                 cv = function(v){
23601                     return v !== undefined && v !== null && v !== '' ?
23602                            parseInt(String(v).replace(stripRe, ""), 10) : '';
23603                     };
23604                 break;
23605             case "float":
23606                 cv = function(v){
23607                     return v !== undefined && v !== null && v !== '' ?
23608                            parseFloat(String(v).replace(stripRe, ""), 10) : ''; 
23609                     };
23610                 break;
23611             case "bool":
23612             case "boolean":
23613                 cv = function(v){ return v === true || v === "true" || v == 1; };
23614                 break;
23615             case "date":
23616                 cv = function(v){
23617                     if(!v){
23618                         return '';
23619                     }
23620                     if(v instanceof Date){
23621                         return v;
23622                     }
23623                     if(dateFormat){
23624                         if(dateFormat == "timestamp"){
23625                             return new Date(v*1000);
23626                         }
23627                         return Date.parseDate(v, dateFormat);
23628                     }
23629                     var parsed = Date.parse(v);
23630                     return parsed ? new Date(parsed) : null;
23631                 };
23632              break;
23633             
23634         }
23635         this.convert = cv;
23636     }
23637 };
23638
23639 Roo.data.Field.prototype = {
23640     dateFormat: null,
23641     defaultValue: "",
23642     mapping: null,
23643     sortType : null,
23644     sortDir : "ASC"
23645 };/*
23646  * Based on:
23647  * Ext JS Library 1.1.1
23648  * Copyright(c) 2006-2007, Ext JS, LLC.
23649  *
23650  * Originally Released Under LGPL - original licence link has changed is not relivant.
23651  *
23652  * Fork - LGPL
23653  * <script type="text/javascript">
23654  */
23655  
23656 // Base class for reading structured data from a data source.  This class is intended to be
23657 // extended (see ArrayReader, JsonReader and XmlReader) and should not be created directly.
23658
23659 /**
23660  * @class Roo.data.DataReader
23661  * Base class for reading structured data from a data source.  This class is intended to be
23662  * extended (see {Roo.data.ArrayReader}, {Roo.data.JsonReader} and {Roo.data.XmlReader}) and should not be created directly.
23663  */
23664
23665 Roo.data.DataReader = function(meta, recordType){
23666     
23667     this.meta = meta;
23668     
23669     this.recordType = recordType instanceof Array ? 
23670         Roo.data.Record.create(recordType) : recordType;
23671 };
23672
23673 Roo.data.DataReader.prototype = {
23674      /**
23675      * Create an empty record
23676      * @param {Object} data (optional) - overlay some values
23677      * @return {Roo.data.Record} record created.
23678      */
23679     newRow :  function(d) {
23680         var da =  {};
23681         this.recordType.prototype.fields.each(function(c) {
23682             switch( c.type) {
23683                 case 'int' : da[c.name] = 0; break;
23684                 case 'date' : da[c.name] = new Date(); break;
23685                 case 'float' : da[c.name] = 0.0; break;
23686                 case 'boolean' : da[c.name] = false; break;
23687                 default : da[c.name] = ""; break;
23688             }
23689             
23690         });
23691         return new this.recordType(Roo.apply(da, d));
23692     }
23693     
23694 };/*
23695  * Based on:
23696  * Ext JS Library 1.1.1
23697  * Copyright(c) 2006-2007, Ext JS, LLC.
23698  *
23699  * Originally Released Under LGPL - original licence link has changed is not relivant.
23700  *
23701  * Fork - LGPL
23702  * <script type="text/javascript">
23703  */
23704
23705 /**
23706  * @class Roo.data.DataProxy
23707  * @extends Roo.data.Observable
23708  * This class is an abstract base class for implementations which provide retrieval of
23709  * unformatted data objects.<br>
23710  * <p>
23711  * DataProxy implementations are usually used in conjunction with an implementation of Roo.data.DataReader
23712  * (of the appropriate type which knows how to parse the data object) to provide a block of
23713  * {@link Roo.data.Records} to an {@link Roo.data.Store}.<br>
23714  * <p>
23715  * Custom implementations must implement the load method as described in
23716  * {@link Roo.data.HttpProxy#load}.
23717  */
23718 Roo.data.DataProxy = function(){
23719     this.addEvents({
23720         /**
23721          * @event beforeload
23722          * Fires before a network request is made to retrieve a data object.
23723          * @param {Object} This DataProxy object.
23724          * @param {Object} params The params parameter to the load function.
23725          */
23726         beforeload : true,
23727         /**
23728          * @event load
23729          * Fires before the load method's callback is called.
23730          * @param {Object} This DataProxy object.
23731          * @param {Object} o The data object.
23732          * @param {Object} arg The callback argument object passed to the load function.
23733          */
23734         load : true,
23735         /**
23736          * @event loadexception
23737          * Fires if an Exception occurs during data retrieval.
23738          * @param {Object} This DataProxy object.
23739          * @param {Object} o The data object.
23740          * @param {Object} arg The callback argument object passed to the load function.
23741          * @param {Object} e The Exception.
23742          */
23743         loadexception : true
23744     });
23745     Roo.data.DataProxy.superclass.constructor.call(this);
23746 };
23747
23748 Roo.extend(Roo.data.DataProxy, Roo.util.Observable);
23749
23750     /**
23751      * @cfg {void} listeners (Not available) Constructor blocks listeners from being set
23752      */
23753 /*
23754  * Based on:
23755  * Ext JS Library 1.1.1
23756  * Copyright(c) 2006-2007, Ext JS, LLC.
23757  *
23758  * Originally Released Under LGPL - original licence link has changed is not relivant.
23759  *
23760  * Fork - LGPL
23761  * <script type="text/javascript">
23762  */
23763 /**
23764  * @class Roo.data.MemoryProxy
23765  * An implementation of Roo.data.DataProxy that simply passes the data specified in its constructor
23766  * to the Reader when its load method is called.
23767  * @constructor
23768  * @param {Object} data The data object which the Reader uses to construct a block of Roo.data.Records.
23769  */
23770 Roo.data.MemoryProxy = function(data){
23771     if (data.data) {
23772         data = data.data;
23773     }
23774     Roo.data.MemoryProxy.superclass.constructor.call(this);
23775     this.data = data;
23776 };
23777
23778 Roo.extend(Roo.data.MemoryProxy, Roo.data.DataProxy, {
23779     
23780     /**
23781      * Load data from the requested source (in this case an in-memory
23782      * data object passed to the constructor), read the data object into
23783      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
23784      * process that block using the passed callback.
23785      * @param {Object} params This parameter is not used by the MemoryProxy class.
23786      * @param {Roo.data.DataReader} reader The Reader object which converts the data
23787      * object into a block of Roo.data.Records.
23788      * @param {Function} callback The function into which to pass the block of Roo.data.records.
23789      * The function must be passed <ul>
23790      * <li>The Record block object</li>
23791      * <li>The "arg" argument from the load function</li>
23792      * <li>A boolean success indicator</li>
23793      * </ul>
23794      * @param {Object} scope The scope in which to call the callback
23795      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
23796      */
23797     load : function(params, reader, callback, scope, arg){
23798         params = params || {};
23799         var result;
23800         try {
23801             result = reader.readRecords(this.data);
23802         }catch(e){
23803             this.fireEvent("loadexception", this, arg, null, e);
23804             callback.call(scope, null, arg, false);
23805             return;
23806         }
23807         callback.call(scope, result, arg, true);
23808     },
23809     
23810     // private
23811     update : function(params, records){
23812         
23813     }
23814 });/*
23815  * Based on:
23816  * Ext JS Library 1.1.1
23817  * Copyright(c) 2006-2007, Ext JS, LLC.
23818  *
23819  * Originally Released Under LGPL - original licence link has changed is not relivant.
23820  *
23821  * Fork - LGPL
23822  * <script type="text/javascript">
23823  */
23824 /**
23825  * @class Roo.data.HttpProxy
23826  * @extends Roo.data.DataProxy
23827  * An implementation of {@link Roo.data.DataProxy} that reads a data object from an {@link Roo.data.Connection} object
23828  * configured to reference a certain URL.<br><br>
23829  * <p>
23830  * <em>Note that this class cannot be used to retrieve data from a domain other than the domain
23831  * from which the running page was served.<br><br>
23832  * <p>
23833  * For cross-domain access to remote data, use an {@link Roo.data.ScriptTagProxy}.</em><br><br>
23834  * <p>
23835  * Be aware that to enable the browser to parse an XML document, the server must set
23836  * the Content-Type header in the HTTP response to "text/xml".
23837  * @constructor
23838  * @param {Object} conn Connection config options to add to each request (e.g. {url: 'foo.php'} or
23839  * an {@link Roo.data.Connection} object.  If a Connection config is passed, the singleton {@link Roo.Ajax} object
23840  * will be used to make the request.
23841  */
23842 Roo.data.HttpProxy = function(conn){
23843     Roo.data.HttpProxy.superclass.constructor.call(this);
23844     // is conn a conn config or a real conn?
23845     this.conn = conn;
23846     this.useAjax = !conn || !conn.events;
23847   
23848 };
23849
23850 Roo.extend(Roo.data.HttpProxy, Roo.data.DataProxy, {
23851     // thse are take from connection...
23852     
23853     /**
23854      * @cfg {String} url (Optional) The default URL to be used for requests to the server. (defaults to undefined)
23855      */
23856     /**
23857      * @cfg {Object} extraParams (Optional) An object containing properties which are used as
23858      * extra parameters to each request made by this object. (defaults to undefined)
23859      */
23860     /**
23861      * @cfg {Object} defaultHeaders (Optional) An object containing request headers which are added
23862      *  to each request made by this object. (defaults to undefined)
23863      */
23864     /**
23865      * @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)
23866      */
23867     /**
23868      * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
23869      */
23870      /**
23871      * @cfg {Boolean} autoAbort (Optional) Whether this request should abort any pending requests. (defaults to false)
23872      * @type Boolean
23873      */
23874   
23875
23876     /**
23877      * @cfg {Boolean} disableCaching (Optional) True to add a unique cache-buster param to GET requests. (defaults to true)
23878      * @type Boolean
23879      */
23880     /**
23881      * Return the {@link Roo.data.Connection} object being used by this Proxy.
23882      * @return {Connection} The Connection object. This object may be used to subscribe to events on
23883      * a finer-grained basis than the DataProxy events.
23884      */
23885     getConnection : function(){
23886         return this.useAjax ? Roo.Ajax : this.conn;
23887     },
23888
23889     /**
23890      * Load data from the configured {@link Roo.data.Connection}, read the data object into
23891      * a block of Roo.data.Records using the passed {@link Roo.data.DataReader} implementation, and
23892      * process that block using the passed callback.
23893      * @param {Object} params An object containing properties which are to be used as HTTP parameters
23894      * for the request to the remote server.
23895      * @param {Roo.data.DataReader} reader The Reader object which converts the data
23896      * object into a block of Roo.data.Records.
23897      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
23898      * The function must be passed <ul>
23899      * <li>The Record block object</li>
23900      * <li>The "arg" argument from the load function</li>
23901      * <li>A boolean success indicator</li>
23902      * </ul>
23903      * @param {Object} scope The scope in which to call the callback
23904      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
23905      */
23906     load : function(params, reader, callback, scope, arg){
23907         if(this.fireEvent("beforeload", this, params) !== false){
23908             var  o = {
23909                 params : params || {},
23910                 request: {
23911                     callback : callback,
23912                     scope : scope,
23913                     arg : arg
23914                 },
23915                 reader: reader,
23916                 callback : this.loadResponse,
23917                 scope: this
23918             };
23919             if(this.useAjax){
23920                 Roo.applyIf(o, this.conn);
23921                 if(this.activeRequest){
23922                     Roo.Ajax.abort(this.activeRequest);
23923                 }
23924                 this.activeRequest = Roo.Ajax.request(o);
23925             }else{
23926                 this.conn.request(o);
23927             }
23928         }else{
23929             callback.call(scope||this, null, arg, false);
23930         }
23931     },
23932
23933     // private
23934     loadResponse : function(o, success, response){
23935         delete this.activeRequest;
23936         if(!success){
23937             this.fireEvent("loadexception", this, o, response);
23938             o.request.callback.call(o.request.scope, null, o.request.arg, false);
23939             return;
23940         }
23941         var result;
23942         try {
23943             result = o.reader.read(response);
23944         }catch(e){
23945             this.fireEvent("loadexception", this, o, response, e);
23946             o.request.callback.call(o.request.scope, null, o.request.arg, false);
23947             return;
23948         }
23949         
23950         this.fireEvent("load", this, o, o.request.arg);
23951         o.request.callback.call(o.request.scope, result, o.request.arg, true);
23952     },
23953
23954     // private
23955     update : function(dataSet){
23956
23957     },
23958
23959     // private
23960     updateResponse : function(dataSet){
23961
23962     }
23963 });/*
23964  * Based on:
23965  * Ext JS Library 1.1.1
23966  * Copyright(c) 2006-2007, Ext JS, LLC.
23967  *
23968  * Originally Released Under LGPL - original licence link has changed is not relivant.
23969  *
23970  * Fork - LGPL
23971  * <script type="text/javascript">
23972  */
23973
23974 /**
23975  * @class Roo.data.ScriptTagProxy
23976  * An implementation of Roo.data.DataProxy that reads a data object from a URL which may be in a domain
23977  * other than the originating domain of the running page.<br><br>
23978  * <p>
23979  * <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
23980  * of the running page, you must use this class, rather than DataProxy.</em><br><br>
23981  * <p>
23982  * The content passed back from a server resource requested by a ScriptTagProxy is executable JavaScript
23983  * source code that is used as the source inside a &lt;script> tag.<br><br>
23984  * <p>
23985  * In order for the browser to process the returned data, the server must wrap the data object
23986  * with a call to a callback function, the name of which is passed as a parameter by the ScriptTagProxy.
23987  * Below is a Java example for a servlet which returns data for either a ScriptTagProxy, or an HttpProxy
23988  * depending on whether the callback name was passed:
23989  * <p>
23990  * <pre><code>
23991 boolean scriptTag = false;
23992 String cb = request.getParameter("callback");
23993 if (cb != null) {
23994     scriptTag = true;
23995     response.setContentType("text/javascript");
23996 } else {
23997     response.setContentType("application/x-json");
23998 }
23999 Writer out = response.getWriter();
24000 if (scriptTag) {
24001     out.write(cb + "(");
24002 }
24003 out.print(dataBlock.toJsonString());
24004 if (scriptTag) {
24005     out.write(");");
24006 }
24007 </pre></code>
24008  *
24009  * @constructor
24010  * @param {Object} config A configuration object.
24011  */
24012 Roo.data.ScriptTagProxy = function(config){
24013     Roo.data.ScriptTagProxy.superclass.constructor.call(this);
24014     Roo.apply(this, config);
24015     this.head = document.getElementsByTagName("head")[0];
24016 };
24017
24018 Roo.data.ScriptTagProxy.TRANS_ID = 1000;
24019
24020 Roo.extend(Roo.data.ScriptTagProxy, Roo.data.DataProxy, {
24021     /**
24022      * @cfg {String} url The URL from which to request the data object.
24023      */
24024     /**
24025      * @cfg {Number} timeout (Optional) The number of milliseconds to wait for a response. Defaults to 30 seconds.
24026      */
24027     timeout : 30000,
24028     /**
24029      * @cfg {String} callbackParam (Optional) The name of the parameter to pass to the server which tells
24030      * the server the name of the callback function set up by the load call to process the returned data object.
24031      * Defaults to "callback".<p>The server-side processing must read this parameter value, and generate
24032      * javascript output which calls this named function passing the data object as its only parameter.
24033      */
24034     callbackParam : "callback",
24035     /**
24036      *  @cfg {Boolean} nocache (Optional) Defaults to true. Disable cacheing by adding a unique parameter
24037      * name to the request.
24038      */
24039     nocache : true,
24040
24041     /**
24042      * Load data from the configured URL, read the data object into
24043      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
24044      * process that block using the passed callback.
24045      * @param {Object} params An object containing properties which are to be used as HTTP parameters
24046      * for the request to the remote server.
24047      * @param {Roo.data.DataReader} reader The Reader object which converts the data
24048      * object into a block of Roo.data.Records.
24049      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
24050      * The function must be passed <ul>
24051      * <li>The Record block object</li>
24052      * <li>The "arg" argument from the load function</li>
24053      * <li>A boolean success indicator</li>
24054      * </ul>
24055      * @param {Object} scope The scope in which to call the callback
24056      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
24057      */
24058     load : function(params, reader, callback, scope, arg){
24059         if(this.fireEvent("beforeload", this, params) !== false){
24060
24061             var p = Roo.urlEncode(Roo.apply(params, this.extraParams));
24062
24063             var url = this.url;
24064             url += (url.indexOf("?") != -1 ? "&" : "?") + p;
24065             if(this.nocache){
24066                 url += "&_dc=" + (new Date().getTime());
24067             }
24068             var transId = ++Roo.data.ScriptTagProxy.TRANS_ID;
24069             var trans = {
24070                 id : transId,
24071                 cb : "stcCallback"+transId,
24072                 scriptId : "stcScript"+transId,
24073                 params : params,
24074                 arg : arg,
24075                 url : url,
24076                 callback : callback,
24077                 scope : scope,
24078                 reader : reader
24079             };
24080             var conn = this;
24081
24082             window[trans.cb] = function(o){
24083                 conn.handleResponse(o, trans);
24084             };
24085
24086             url += String.format("&{0}={1}", this.callbackParam, trans.cb);
24087
24088             if(this.autoAbort !== false){
24089                 this.abort();
24090             }
24091
24092             trans.timeoutId = this.handleFailure.defer(this.timeout, this, [trans]);
24093
24094             var script = document.createElement("script");
24095             script.setAttribute("src", url);
24096             script.setAttribute("type", "text/javascript");
24097             script.setAttribute("id", trans.scriptId);
24098             this.head.appendChild(script);
24099
24100             this.trans = trans;
24101         }else{
24102             callback.call(scope||this, null, arg, false);
24103         }
24104     },
24105
24106     // private
24107     isLoading : function(){
24108         return this.trans ? true : false;
24109     },
24110
24111     /**
24112      * Abort the current server request.
24113      */
24114     abort : function(){
24115         if(this.isLoading()){
24116             this.destroyTrans(this.trans);
24117         }
24118     },
24119
24120     // private
24121     destroyTrans : function(trans, isLoaded){
24122         this.head.removeChild(document.getElementById(trans.scriptId));
24123         clearTimeout(trans.timeoutId);
24124         if(isLoaded){
24125             window[trans.cb] = undefined;
24126             try{
24127                 delete window[trans.cb];
24128             }catch(e){}
24129         }else{
24130             // if hasn't been loaded, wait for load to remove it to prevent script error
24131             window[trans.cb] = function(){
24132                 window[trans.cb] = undefined;
24133                 try{
24134                     delete window[trans.cb];
24135                 }catch(e){}
24136             };
24137         }
24138     },
24139
24140     // private
24141     handleResponse : function(o, trans){
24142         this.trans = false;
24143         this.destroyTrans(trans, true);
24144         var result;
24145         try {
24146             result = trans.reader.readRecords(o);
24147         }catch(e){
24148             this.fireEvent("loadexception", this, o, trans.arg, e);
24149             trans.callback.call(trans.scope||window, null, trans.arg, false);
24150             return;
24151         }
24152         this.fireEvent("load", this, o, trans.arg);
24153         trans.callback.call(trans.scope||window, result, trans.arg, true);
24154     },
24155
24156     // private
24157     handleFailure : function(trans){
24158         this.trans = false;
24159         this.destroyTrans(trans, false);
24160         this.fireEvent("loadexception", this, null, trans.arg);
24161         trans.callback.call(trans.scope||window, null, trans.arg, false);
24162     }
24163 });/*
24164  * Based on:
24165  * Ext JS Library 1.1.1
24166  * Copyright(c) 2006-2007, Ext JS, LLC.
24167  *
24168  * Originally Released Under LGPL - original licence link has changed is not relivant.
24169  *
24170  * Fork - LGPL
24171  * <script type="text/javascript">
24172  */
24173
24174 /**
24175  * @class Roo.data.JsonReader
24176  * @extends Roo.data.DataReader
24177  * Data reader class to create an Array of Roo.data.Record objects from a JSON response
24178  * based on mappings in a provided Roo.data.Record constructor.
24179  * 
24180  * The default behaviour of a store is to send ?_requestMeta=1, unless the class has recieved 'metaData' property
24181  * in the reply previously. 
24182  * 
24183  * <p>
24184  * Example code:
24185  * <pre><code>
24186 var RecordDef = Roo.data.Record.create([
24187     {name: 'name', mapping: 'name'},     // "mapping" property not needed if it's the same as "name"
24188     {name: 'occupation'}                 // This field will use "occupation" as the mapping.
24189 ]);
24190 var myReader = new Roo.data.JsonReader({
24191     totalProperty: "results",    // The property which contains the total dataset size (optional)
24192     root: "rows",                // The property which contains an Array of row objects
24193     id: "id"                     // The property within each row object that provides an ID for the record (optional)
24194 }, RecordDef);
24195 </code></pre>
24196  * <p>
24197  * This would consume a JSON file like this:
24198  * <pre><code>
24199 { 'results': 2, 'rows': [
24200     { 'id': 1, 'name': 'Bill', occupation: 'Gardener' },
24201     { 'id': 2, 'name': 'Ben', occupation: 'Horticulturalist' } ]
24202 }
24203 </code></pre>
24204  * @cfg {String} totalProperty Name of the property from which to retrieve the total number of records
24205  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
24206  * paged from the remote server.
24207  * @cfg {String} successProperty Name of the property from which to retrieve the success attribute used by forms.
24208  * @cfg {String} root name of the property which contains the Array of row objects.
24209  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
24210  * @cfg {Array} fields Array of field definition objects
24211  * @constructor
24212  * Create a new JsonReader
24213  * @param {Object} meta Metadata configuration options
24214  * @param {Object} recordType Either an Array of field definition objects,
24215  * or an {@link Roo.data.Record} object created using {@link Roo.data.Record#create}.
24216  */
24217 Roo.data.JsonReader = function(meta, recordType){
24218     
24219     meta = meta || {};
24220     // set some defaults:
24221     Roo.applyIf(meta, {
24222         totalProperty: 'total',
24223         successProperty : 'success',
24224         root : 'data',
24225         id : 'id'
24226     });
24227     
24228     Roo.data.JsonReader.superclass.constructor.call(this, meta, recordType||meta.fields);
24229 };
24230 Roo.extend(Roo.data.JsonReader, Roo.data.DataReader, {
24231     
24232     /**
24233      * @prop {Boolean} metaFromRemote  - if the meta data was loaded from the remote source.
24234      * Used by Store query builder to append _requestMeta to params.
24235      * 
24236      */
24237     metaFromRemote : false,
24238     /**
24239      * This method is only used by a DataProxy which has retrieved data from a remote server.
24240      * @param {Object} response The XHR object which contains the JSON data in its responseText.
24241      * @return {Object} data A data block which is used by an Roo.data.Store object as
24242      * a cache of Roo.data.Records.
24243      */
24244     read : function(response){
24245         var json = response.responseText;
24246        
24247         var o = /* eval:var:o */ eval("("+json+")");
24248         if(!o) {
24249             throw {message: "JsonReader.read: Json object not found"};
24250         }
24251         
24252         if(o.metaData){
24253             
24254             delete this.ef;
24255             this.metaFromRemote = true;
24256             this.meta = o.metaData;
24257             this.recordType = Roo.data.Record.create(o.metaData.fields);
24258             this.onMetaChange(this.meta, this.recordType, o);
24259         }
24260         return this.readRecords(o);
24261     },
24262
24263     // private function a store will implement
24264     onMetaChange : function(meta, recordType, o){
24265
24266     },
24267
24268     /**
24269          * @ignore
24270          */
24271     simpleAccess: function(obj, subsc) {
24272         return obj[subsc];
24273     },
24274
24275         /**
24276          * @ignore
24277          */
24278     getJsonAccessor: function(){
24279         var re = /[\[\.]/;
24280         return function(expr) {
24281             try {
24282                 return(re.test(expr))
24283                     ? new Function("obj", "return obj." + expr)
24284                     : function(obj){
24285                         return obj[expr];
24286                     };
24287             } catch(e){}
24288             return Roo.emptyFn;
24289         };
24290     }(),
24291
24292     /**
24293      * Create a data block containing Roo.data.Records from an XML document.
24294      * @param {Object} o An object which contains an Array of row objects in the property specified
24295      * in the config as 'root, and optionally a property, specified in the config as 'totalProperty'
24296      * which contains the total size of the dataset.
24297      * @return {Object} data A data block which is used by an Roo.data.Store object as
24298      * a cache of Roo.data.Records.
24299      */
24300     readRecords : function(o){
24301         /**
24302          * After any data loads, the raw JSON data is available for further custom processing.
24303          * @type Object
24304          */
24305         this.o = o;
24306         var s = this.meta, Record = this.recordType,
24307             f = Record ? Record.prototype.fields : null, fi = f ? f.items : [], fl = f ? f.length : 0;
24308
24309 //      Generate extraction functions for the totalProperty, the root, the id, and for each field
24310         if (!this.ef) {
24311             if(s.totalProperty) {
24312                     this.getTotal = this.getJsonAccessor(s.totalProperty);
24313                 }
24314                 if(s.successProperty) {
24315                     this.getSuccess = this.getJsonAccessor(s.successProperty);
24316                 }
24317                 this.getRoot = s.root ? this.getJsonAccessor(s.root) : function(p){return p;};
24318                 if (s.id) {
24319                         var g = this.getJsonAccessor(s.id);
24320                         this.getId = function(rec) {
24321                                 var r = g(rec);  
24322                                 return (r === undefined || r === "") ? null : r;
24323                         };
24324                 } else {
24325                         this.getId = function(){return null;};
24326                 }
24327             this.ef = [];
24328             for(var jj = 0; jj < fl; jj++){
24329                 f = fi[jj];
24330                 var map = (f.mapping !== undefined && f.mapping !== null) ? f.mapping : f.name;
24331                 this.ef[jj] = this.getJsonAccessor(map);
24332             }
24333         }
24334
24335         var root = this.getRoot(o), c = root.length, totalRecords = c, success = true;
24336         if(s.totalProperty){
24337             var vt = parseInt(this.getTotal(o), 10);
24338             if(!isNaN(vt)){
24339                 totalRecords = vt;
24340             }
24341         }
24342         if(s.successProperty){
24343             var vs = this.getSuccess(o);
24344             if(vs === false || vs === 'false'){
24345                 success = false;
24346             }
24347         }
24348         var records = [];
24349         for(var i = 0; i < c; i++){
24350                 var n = root[i];
24351             var values = {};
24352             var id = this.getId(n);
24353             for(var j = 0; j < fl; j++){
24354                 f = fi[j];
24355             var v = this.ef[j](n);
24356             if (!f.convert) {
24357                 Roo.log('missing convert for ' + f.name);
24358                 Roo.log(f);
24359                 continue;
24360             }
24361             values[f.name] = f.convert((v !== undefined) ? v : f.defaultValue);
24362             }
24363             var record = new Record(values, id);
24364             record.json = n;
24365             records[i] = record;
24366         }
24367         return {
24368             raw : o,
24369             success : success,
24370             records : records,
24371             totalRecords : totalRecords
24372         };
24373     }
24374 });/*
24375  * Based on:
24376  * Ext JS Library 1.1.1
24377  * Copyright(c) 2006-2007, Ext JS, LLC.
24378  *
24379  * Originally Released Under LGPL - original licence link has changed is not relivant.
24380  *
24381  * Fork - LGPL
24382  * <script type="text/javascript">
24383  */
24384
24385 /**
24386  * @class Roo.data.XmlReader
24387  * @extends Roo.data.DataReader
24388  * Data reader class to create an Array of {@link Roo.data.Record} objects from an XML document
24389  * based on mappings in a provided Roo.data.Record constructor.<br><br>
24390  * <p>
24391  * <em>Note that in order for the browser to parse a returned XML document, the Content-Type
24392  * header in the HTTP response must be set to "text/xml".</em>
24393  * <p>
24394  * Example code:
24395  * <pre><code>
24396 var RecordDef = Roo.data.Record.create([
24397    {name: 'name', mapping: 'name'},     // "mapping" property not needed if it's the same as "name"
24398    {name: 'occupation'}                 // This field will use "occupation" as the mapping.
24399 ]);
24400 var myReader = new Roo.data.XmlReader({
24401    totalRecords: "results", // The element which contains the total dataset size (optional)
24402    record: "row",           // The repeated element which contains row information
24403    id: "id"                 // The element within the row that provides an ID for the record (optional)
24404 }, RecordDef);
24405 </code></pre>
24406  * <p>
24407  * This would consume an XML file like this:
24408  * <pre><code>
24409 &lt;?xml?>
24410 &lt;dataset>
24411  &lt;results>2&lt;/results>
24412  &lt;row>
24413    &lt;id>1&lt;/id>
24414    &lt;name>Bill&lt;/name>
24415    &lt;occupation>Gardener&lt;/occupation>
24416  &lt;/row>
24417  &lt;row>
24418    &lt;id>2&lt;/id>
24419    &lt;name>Ben&lt;/name>
24420    &lt;occupation>Horticulturalist&lt;/occupation>
24421  &lt;/row>
24422 &lt;/dataset>
24423 </code></pre>
24424  * @cfg {String} totalRecords The DomQuery path from which to retrieve the total number of records
24425  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
24426  * paged from the remote server.
24427  * @cfg {String} record The DomQuery path to the repeated element which contains record information.
24428  * @cfg {String} success The DomQuery path to the success attribute used by forms.
24429  * @cfg {String} id The DomQuery path relative from the record element to the element that contains
24430  * a record identifier value.
24431  * @constructor
24432  * Create a new XmlReader
24433  * @param {Object} meta Metadata configuration options
24434  * @param {Mixed} recordType The definition of the data record type to produce.  This can be either a valid
24435  * Record subclass created with {@link Roo.data.Record#create}, or an array of objects with which to call
24436  * Roo.data.Record.create.  See the {@link Roo.data.Record} class for more details.
24437  */
24438 Roo.data.XmlReader = function(meta, recordType){
24439     meta = meta || {};
24440     Roo.data.XmlReader.superclass.constructor.call(this, meta, recordType||meta.fields);
24441 };
24442 Roo.extend(Roo.data.XmlReader, Roo.data.DataReader, {
24443     /**
24444      * This method is only used by a DataProxy which has retrieved data from a remote server.
24445          * @param {Object} response The XHR object which contains the parsed XML document.  The response is expected
24446          * to contain a method called 'responseXML' that returns an XML document object.
24447      * @return {Object} records A data block which is used by an {@link Roo.data.Store} as
24448      * a cache of Roo.data.Records.
24449      */
24450     read : function(response){
24451         var doc = response.responseXML;
24452         if(!doc) {
24453             throw {message: "XmlReader.read: XML Document not available"};
24454         }
24455         return this.readRecords(doc);
24456     },
24457
24458     /**
24459      * Create a data block containing Roo.data.Records from an XML document.
24460          * @param {Object} doc A parsed XML document.
24461      * @return {Object} records A data block which is used by an {@link Roo.data.Store} as
24462      * a cache of Roo.data.Records.
24463      */
24464     readRecords : function(doc){
24465         /**
24466          * After any data loads/reads, the raw XML Document is available for further custom processing.
24467          * @type XMLDocument
24468          */
24469         this.xmlData = doc;
24470         var root = doc.documentElement || doc;
24471         var q = Roo.DomQuery;
24472         var recordType = this.recordType, fields = recordType.prototype.fields;
24473         var sid = this.meta.id;
24474         var totalRecords = 0, success = true;
24475         if(this.meta.totalRecords){
24476             totalRecords = q.selectNumber(this.meta.totalRecords, root, 0);
24477         }
24478         
24479         if(this.meta.success){
24480             var sv = q.selectValue(this.meta.success, root, true);
24481             success = sv !== false && sv !== 'false';
24482         }
24483         var records = [];
24484         var ns = q.select(this.meta.record, root);
24485         for(var i = 0, len = ns.length; i < len; i++) {
24486                 var n = ns[i];
24487                 var values = {};
24488                 var id = sid ? q.selectValue(sid, n) : undefined;
24489                 for(var j = 0, jlen = fields.length; j < jlen; j++){
24490                     var f = fields.items[j];
24491                 var v = q.selectValue(f.mapping || f.name, n, f.defaultValue);
24492                     v = f.convert(v);
24493                     values[f.name] = v;
24494                 }
24495                 var record = new recordType(values, id);
24496                 record.node = n;
24497                 records[records.length] = record;
24498             }
24499
24500             return {
24501                 success : success,
24502                 records : records,
24503                 totalRecords : totalRecords || records.length
24504             };
24505     }
24506 });/*
24507  * Based on:
24508  * Ext JS Library 1.1.1
24509  * Copyright(c) 2006-2007, Ext JS, LLC.
24510  *
24511  * Originally Released Under LGPL - original licence link has changed is not relivant.
24512  *
24513  * Fork - LGPL
24514  * <script type="text/javascript">
24515  */
24516
24517 /**
24518  * @class Roo.data.ArrayReader
24519  * @extends Roo.data.DataReader
24520  * Data reader class to create an Array of Roo.data.Record objects from an Array.
24521  * Each element of that Array represents a row of data fields. The
24522  * fields are pulled into a Record object using as a subscript, the <em>mapping</em> property
24523  * of the field definition if it exists, or the field's ordinal position in the definition.<br>
24524  * <p>
24525  * Example code:.
24526  * <pre><code>
24527 var RecordDef = Roo.data.Record.create([
24528     {name: 'name', mapping: 1},         // "mapping" only needed if an "id" field is present which
24529     {name: 'occupation', mapping: 2}    // precludes using the ordinal position as the index.
24530 ]);
24531 var myReader = new Roo.data.ArrayReader({
24532     id: 0                     // The subscript within row Array that provides an ID for the Record (optional)
24533 }, RecordDef);
24534 </code></pre>
24535  * <p>
24536  * This would consume an Array like this:
24537  * <pre><code>
24538 [ [1, 'Bill', 'Gardener'], [2, 'Ben', 'Horticulturalist'] ]
24539   </code></pre>
24540  * @cfg {String} id (optional) The subscript within row Array that provides an ID for the Record
24541  * @constructor
24542  * Create a new JsonReader
24543  * @param {Object} meta Metadata configuration options.
24544  * @param {Object} recordType Either an Array of field definition objects
24545  * as specified to {@link Roo.data.Record#create},
24546  * or an {@link Roo.data.Record} object
24547  * created using {@link Roo.data.Record#create}.
24548  */
24549 Roo.data.ArrayReader = function(meta, recordType){
24550     Roo.data.ArrayReader.superclass.constructor.call(this, meta, recordType);
24551 };
24552
24553 Roo.extend(Roo.data.ArrayReader, Roo.data.JsonReader, {
24554     /**
24555      * Create a data block containing Roo.data.Records from an XML document.
24556      * @param {Object} o An Array of row objects which represents the dataset.
24557      * @return {Object} data A data block which is used by an Roo.data.Store object as
24558      * a cache of Roo.data.Records.
24559      */
24560     readRecords : function(o){
24561         var sid = this.meta ? this.meta.id : null;
24562         var recordType = this.recordType, fields = recordType.prototype.fields;
24563         var records = [];
24564         var root = o;
24565             for(var i = 0; i < root.length; i++){
24566                     var n = root[i];
24567                 var values = {};
24568                 var id = ((sid || sid === 0) && n[sid] !== undefined && n[sid] !== "" ? n[sid] : null);
24569                 for(var j = 0, jlen = fields.length; j < jlen; j++){
24570                 var f = fields.items[j];
24571                 var k = f.mapping !== undefined && f.mapping !== null ? f.mapping : j;
24572                 var v = n[k] !== undefined ? n[k] : f.defaultValue;
24573                 v = f.convert(v);
24574                 values[f.name] = v;
24575             }
24576                 var record = new recordType(values, id);
24577                 record.json = n;
24578                 records[records.length] = record;
24579             }
24580             return {
24581                 records : records,
24582                 totalRecords : records.length
24583             };
24584     }
24585 });/*
24586  * Based on:
24587  * Ext JS Library 1.1.1
24588  * Copyright(c) 2006-2007, Ext JS, LLC.
24589  *
24590  * Originally Released Under LGPL - original licence link has changed is not relivant.
24591  *
24592  * Fork - LGPL
24593  * <script type="text/javascript">
24594  */
24595
24596
24597 /**
24598  * @class Roo.data.Tree
24599  * @extends Roo.util.Observable
24600  * Represents a tree data structure and bubbles all the events for its nodes. The nodes
24601  * in the tree have most standard DOM functionality.
24602  * @constructor
24603  * @param {Node} root (optional) The root node
24604  */
24605 Roo.data.Tree = function(root){
24606    this.nodeHash = {};
24607    /**
24608     * The root node for this tree
24609     * @type Node
24610     */
24611    this.root = null;
24612    if(root){
24613        this.setRootNode(root);
24614    }
24615    this.addEvents({
24616        /**
24617         * @event append
24618         * Fires when a new child node is appended to a node in this tree.
24619         * @param {Tree} tree The owner tree
24620         * @param {Node} parent The parent node
24621         * @param {Node} node The newly appended node
24622         * @param {Number} index The index of the newly appended node
24623         */
24624        "append" : true,
24625        /**
24626         * @event remove
24627         * Fires when a child node is removed from a node in this tree.
24628         * @param {Tree} tree The owner tree
24629         * @param {Node} parent The parent node
24630         * @param {Node} node The child node removed
24631         */
24632        "remove" : true,
24633        /**
24634         * @event move
24635         * Fires when a node is moved to a new location in the tree
24636         * @param {Tree} tree The owner tree
24637         * @param {Node} node The node moved
24638         * @param {Node} oldParent The old parent of this node
24639         * @param {Node} newParent The new parent of this node
24640         * @param {Number} index The index it was moved to
24641         */
24642        "move" : true,
24643        /**
24644         * @event insert
24645         * Fires when a new child node is inserted in a node in this tree.
24646         * @param {Tree} tree The owner tree
24647         * @param {Node} parent The parent node
24648         * @param {Node} node The child node inserted
24649         * @param {Node} refNode The child node the node was inserted before
24650         */
24651        "insert" : true,
24652        /**
24653         * @event beforeappend
24654         * Fires before a new child is appended to a node in this tree, return false to cancel the append.
24655         * @param {Tree} tree The owner tree
24656         * @param {Node} parent The parent node
24657         * @param {Node} node The child node to be appended
24658         */
24659        "beforeappend" : true,
24660        /**
24661         * @event beforeremove
24662         * Fires before a child is removed from a node in this tree, return false to cancel the remove.
24663         * @param {Tree} tree The owner tree
24664         * @param {Node} parent The parent node
24665         * @param {Node} node The child node to be removed
24666         */
24667        "beforeremove" : true,
24668        /**
24669         * @event beforemove
24670         * Fires before a node is moved to a new location in the tree. Return false to cancel the move.
24671         * @param {Tree} tree The owner tree
24672         * @param {Node} node The node being moved
24673         * @param {Node} oldParent The parent of the node
24674         * @param {Node} newParent The new parent the node is moving to
24675         * @param {Number} index The index it is being moved to
24676         */
24677        "beforemove" : true,
24678        /**
24679         * @event beforeinsert
24680         * Fires before a new child is inserted in a node in this tree, return false to cancel the insert.
24681         * @param {Tree} tree The owner tree
24682         * @param {Node} parent The parent node
24683         * @param {Node} node The child node to be inserted
24684         * @param {Node} refNode The child node the node is being inserted before
24685         */
24686        "beforeinsert" : true
24687    });
24688
24689     Roo.data.Tree.superclass.constructor.call(this);
24690 };
24691
24692 Roo.extend(Roo.data.Tree, Roo.util.Observable, {
24693     pathSeparator: "/",
24694
24695     proxyNodeEvent : function(){
24696         return this.fireEvent.apply(this, arguments);
24697     },
24698
24699     /**
24700      * Returns the root node for this tree.
24701      * @return {Node}
24702      */
24703     getRootNode : function(){
24704         return this.root;
24705     },
24706
24707     /**
24708      * Sets the root node for this tree.
24709      * @param {Node} node
24710      * @return {Node}
24711      */
24712     setRootNode : function(node){
24713         this.root = node;
24714         node.ownerTree = this;
24715         node.isRoot = true;
24716         this.registerNode(node);
24717         return node;
24718     },
24719
24720     /**
24721      * Gets a node in this tree by its id.
24722      * @param {String} id
24723      * @return {Node}
24724      */
24725     getNodeById : function(id){
24726         return this.nodeHash[id];
24727     },
24728
24729     registerNode : function(node){
24730         this.nodeHash[node.id] = node;
24731     },
24732
24733     unregisterNode : function(node){
24734         delete this.nodeHash[node.id];
24735     },
24736
24737     toString : function(){
24738         return "[Tree"+(this.id?" "+this.id:"")+"]";
24739     }
24740 });
24741
24742 /**
24743  * @class Roo.data.Node
24744  * @extends Roo.util.Observable
24745  * @cfg {Boolean} leaf true if this node is a leaf and does not have children
24746  * @cfg {String} id The id for this node. If one is not specified, one is generated.
24747  * @constructor
24748  * @param {Object} attributes The attributes/config for the node
24749  */
24750 Roo.data.Node = function(attributes){
24751     /**
24752      * The attributes supplied for the node. You can use this property to access any custom attributes you supplied.
24753      * @type {Object}
24754      */
24755     this.attributes = attributes || {};
24756     this.leaf = this.attributes.leaf;
24757     /**
24758      * The node id. @type String
24759      */
24760     this.id = this.attributes.id;
24761     if(!this.id){
24762         this.id = Roo.id(null, "ynode-");
24763         this.attributes.id = this.id;
24764     }
24765      
24766     
24767     /**
24768      * All child nodes of this node. @type Array
24769      */
24770     this.childNodes = [];
24771     if(!this.childNodes.indexOf){ // indexOf is a must
24772         this.childNodes.indexOf = function(o){
24773             for(var i = 0, len = this.length; i < len; i++){
24774                 if(this[i] == o) {
24775                     return i;
24776                 }
24777             }
24778             return -1;
24779         };
24780     }
24781     /**
24782      * The parent node for this node. @type Node
24783      */
24784     this.parentNode = null;
24785     /**
24786      * The first direct child node of this node, or null if this node has no child nodes. @type Node
24787      */
24788     this.firstChild = null;
24789     /**
24790      * The last direct child node of this node, or null if this node has no child nodes. @type Node
24791      */
24792     this.lastChild = null;
24793     /**
24794      * The node immediately preceding this node in the tree, or null if there is no sibling node. @type Node
24795      */
24796     this.previousSibling = null;
24797     /**
24798      * The node immediately following this node in the tree, or null if there is no sibling node. @type Node
24799      */
24800     this.nextSibling = null;
24801
24802     this.addEvents({
24803        /**
24804         * @event append
24805         * Fires when a new child node is appended
24806         * @param {Tree} tree The owner tree
24807         * @param {Node} this This node
24808         * @param {Node} node The newly appended node
24809         * @param {Number} index The index of the newly appended node
24810         */
24811        "append" : true,
24812        /**
24813         * @event remove
24814         * Fires when a child node is removed
24815         * @param {Tree} tree The owner tree
24816         * @param {Node} this This node
24817         * @param {Node} node The removed node
24818         */
24819        "remove" : true,
24820        /**
24821         * @event move
24822         * Fires when this node is moved to a new location in the tree
24823         * @param {Tree} tree The owner tree
24824         * @param {Node} this This node
24825         * @param {Node} oldParent The old parent of this node
24826         * @param {Node} newParent The new parent of this node
24827         * @param {Number} index The index it was moved to
24828         */
24829        "move" : true,
24830        /**
24831         * @event insert
24832         * Fires when a new child node is inserted.
24833         * @param {Tree} tree The owner tree
24834         * @param {Node} this This node
24835         * @param {Node} node The child node inserted
24836         * @param {Node} refNode The child node the node was inserted before
24837         */
24838        "insert" : true,
24839        /**
24840         * @event beforeappend
24841         * Fires before a new child is appended, return false to cancel the append.
24842         * @param {Tree} tree The owner tree
24843         * @param {Node} this This node
24844         * @param {Node} node The child node to be appended
24845         */
24846        "beforeappend" : true,
24847        /**
24848         * @event beforeremove
24849         * Fires before a child is removed, return false to cancel the remove.
24850         * @param {Tree} tree The owner tree
24851         * @param {Node} this This node
24852         * @param {Node} node The child node to be removed
24853         */
24854        "beforeremove" : true,
24855        /**
24856         * @event beforemove
24857         * Fires before this node is moved to a new location in the tree. Return false to cancel the move.
24858         * @param {Tree} tree The owner tree
24859         * @param {Node} this This node
24860         * @param {Node} oldParent The parent of this node
24861         * @param {Node} newParent The new parent this node is moving to
24862         * @param {Number} index The index it is being moved to
24863         */
24864        "beforemove" : true,
24865        /**
24866         * @event beforeinsert
24867         * Fires before a new child is inserted, return false to cancel the insert.
24868         * @param {Tree} tree The owner tree
24869         * @param {Node} this This node
24870         * @param {Node} node The child node to be inserted
24871         * @param {Node} refNode The child node the node is being inserted before
24872         */
24873        "beforeinsert" : true
24874    });
24875     this.listeners = this.attributes.listeners;
24876     Roo.data.Node.superclass.constructor.call(this);
24877 };
24878
24879 Roo.extend(Roo.data.Node, Roo.util.Observable, {
24880     fireEvent : function(evtName){
24881         // first do standard event for this node
24882         if(Roo.data.Node.superclass.fireEvent.apply(this, arguments) === false){
24883             return false;
24884         }
24885         // then bubble it up to the tree if the event wasn't cancelled
24886         var ot = this.getOwnerTree();
24887         if(ot){
24888             if(ot.proxyNodeEvent.apply(ot, arguments) === false){
24889                 return false;
24890             }
24891         }
24892         return true;
24893     },
24894
24895     /**
24896      * Returns true if this node is a leaf
24897      * @return {Boolean}
24898      */
24899     isLeaf : function(){
24900         return this.leaf === true;
24901     },
24902
24903     // private
24904     setFirstChild : function(node){
24905         this.firstChild = node;
24906     },
24907
24908     //private
24909     setLastChild : function(node){
24910         this.lastChild = node;
24911     },
24912
24913
24914     /**
24915      * Returns true if this node is the last child of its parent
24916      * @return {Boolean}
24917      */
24918     isLast : function(){
24919        return (!this.parentNode ? true : this.parentNode.lastChild == this);
24920     },
24921
24922     /**
24923      * Returns true if this node is the first child of its parent
24924      * @return {Boolean}
24925      */
24926     isFirst : function(){
24927        return (!this.parentNode ? true : this.parentNode.firstChild == this);
24928     },
24929
24930     hasChildNodes : function(){
24931         return !this.isLeaf() && this.childNodes.length > 0;
24932     },
24933
24934     /**
24935      * Insert node(s) as the last child node of this node.
24936      * @param {Node/Array} node The node or Array of nodes to append
24937      * @return {Node} The appended node if single append, or null if an array was passed
24938      */
24939     appendChild : function(node){
24940         var multi = false;
24941         if(node instanceof Array){
24942             multi = node;
24943         }else if(arguments.length > 1){
24944             multi = arguments;
24945         }
24946         // if passed an array or multiple args do them one by one
24947         if(multi){
24948             for(var i = 0, len = multi.length; i < len; i++) {
24949                 this.appendChild(multi[i]);
24950             }
24951         }else{
24952             if(this.fireEvent("beforeappend", this.ownerTree, this, node) === false){
24953                 return false;
24954             }
24955             var index = this.childNodes.length;
24956             var oldParent = node.parentNode;
24957             // it's a move, make sure we move it cleanly
24958             if(oldParent){
24959                 if(node.fireEvent("beforemove", node.getOwnerTree(), node, oldParent, this, index) === false){
24960                     return false;
24961                 }
24962                 oldParent.removeChild(node);
24963             }
24964             index = this.childNodes.length;
24965             if(index == 0){
24966                 this.setFirstChild(node);
24967             }
24968             this.childNodes.push(node);
24969             node.parentNode = this;
24970             var ps = this.childNodes[index-1];
24971             if(ps){
24972                 node.previousSibling = ps;
24973                 ps.nextSibling = node;
24974             }else{
24975                 node.previousSibling = null;
24976             }
24977             node.nextSibling = null;
24978             this.setLastChild(node);
24979             node.setOwnerTree(this.getOwnerTree());
24980             this.fireEvent("append", this.ownerTree, this, node, index);
24981             if(oldParent){
24982                 node.fireEvent("move", this.ownerTree, node, oldParent, this, index);
24983             }
24984             return node;
24985         }
24986     },
24987
24988     /**
24989      * Removes a child node from this node.
24990      * @param {Node} node The node to remove
24991      * @return {Node} The removed node
24992      */
24993     removeChild : function(node){
24994         var index = this.childNodes.indexOf(node);
24995         if(index == -1){
24996             return false;
24997         }
24998         if(this.fireEvent("beforeremove", this.ownerTree, this, node) === false){
24999             return false;
25000         }
25001
25002         // remove it from childNodes collection
25003         this.childNodes.splice(index, 1);
25004
25005         // update siblings
25006         if(node.previousSibling){
25007             node.previousSibling.nextSibling = node.nextSibling;
25008         }
25009         if(node.nextSibling){
25010             node.nextSibling.previousSibling = node.previousSibling;
25011         }
25012
25013         // update child refs
25014         if(this.firstChild == node){
25015             this.setFirstChild(node.nextSibling);
25016         }
25017         if(this.lastChild == node){
25018             this.setLastChild(node.previousSibling);
25019         }
25020
25021         node.setOwnerTree(null);
25022         // clear any references from the node
25023         node.parentNode = null;
25024         node.previousSibling = null;
25025         node.nextSibling = null;
25026         this.fireEvent("remove", this.ownerTree, this, node);
25027         return node;
25028     },
25029
25030     /**
25031      * Inserts the first node before the second node in this nodes childNodes collection.
25032      * @param {Node} node The node to insert
25033      * @param {Node} refNode The node to insert before (if null the node is appended)
25034      * @return {Node} The inserted node
25035      */
25036     insertBefore : function(node, refNode){
25037         if(!refNode){ // like standard Dom, refNode can be null for append
25038             return this.appendChild(node);
25039         }
25040         // nothing to do
25041         if(node == refNode){
25042             return false;
25043         }
25044
25045         if(this.fireEvent("beforeinsert", this.ownerTree, this, node, refNode) === false){
25046             return false;
25047         }
25048         var index = this.childNodes.indexOf(refNode);
25049         var oldParent = node.parentNode;
25050         var refIndex = index;
25051
25052         // when moving internally, indexes will change after remove
25053         if(oldParent == this && this.childNodes.indexOf(node) < index){
25054             refIndex--;
25055         }
25056
25057         // it's a move, make sure we move it cleanly
25058         if(oldParent){
25059             if(node.fireEvent("beforemove", node.getOwnerTree(), node, oldParent, this, index, refNode) === false){
25060                 return false;
25061             }
25062             oldParent.removeChild(node);
25063         }
25064         if(refIndex == 0){
25065             this.setFirstChild(node);
25066         }
25067         this.childNodes.splice(refIndex, 0, node);
25068         node.parentNode = this;
25069         var ps = this.childNodes[refIndex-1];
25070         if(ps){
25071             node.previousSibling = ps;
25072             ps.nextSibling = node;
25073         }else{
25074             node.previousSibling = null;
25075         }
25076         node.nextSibling = refNode;
25077         refNode.previousSibling = node;
25078         node.setOwnerTree(this.getOwnerTree());
25079         this.fireEvent("insert", this.ownerTree, this, node, refNode);
25080         if(oldParent){
25081             node.fireEvent("move", this.ownerTree, node, oldParent, this, refIndex, refNode);
25082         }
25083         return node;
25084     },
25085
25086     /**
25087      * Returns the child node at the specified index.
25088      * @param {Number} index
25089      * @return {Node}
25090      */
25091     item : function(index){
25092         return this.childNodes[index];
25093     },
25094
25095     /**
25096      * Replaces one child node in this node with another.
25097      * @param {Node} newChild The replacement node
25098      * @param {Node} oldChild The node to replace
25099      * @return {Node} The replaced node
25100      */
25101     replaceChild : function(newChild, oldChild){
25102         this.insertBefore(newChild, oldChild);
25103         this.removeChild(oldChild);
25104         return oldChild;
25105     },
25106
25107     /**
25108      * Returns the index of a child node
25109      * @param {Node} node
25110      * @return {Number} The index of the node or -1 if it was not found
25111      */
25112     indexOf : function(child){
25113         return this.childNodes.indexOf(child);
25114     },
25115
25116     /**
25117      * Returns the tree this node is in.
25118      * @return {Tree}
25119      */
25120     getOwnerTree : function(){
25121         // if it doesn't have one, look for one
25122         if(!this.ownerTree){
25123             var p = this;
25124             while(p){
25125                 if(p.ownerTree){
25126                     this.ownerTree = p.ownerTree;
25127                     break;
25128                 }
25129                 p = p.parentNode;
25130             }
25131         }
25132         return this.ownerTree;
25133     },
25134
25135     /**
25136      * Returns depth of this node (the root node has a depth of 0)
25137      * @return {Number}
25138      */
25139     getDepth : function(){
25140         var depth = 0;
25141         var p = this;
25142         while(p.parentNode){
25143             ++depth;
25144             p = p.parentNode;
25145         }
25146         return depth;
25147     },
25148
25149     // private
25150     setOwnerTree : function(tree){
25151         // if it's move, we need to update everyone
25152         if(tree != this.ownerTree){
25153             if(this.ownerTree){
25154                 this.ownerTree.unregisterNode(this);
25155             }
25156             this.ownerTree = tree;
25157             var cs = this.childNodes;
25158             for(var i = 0, len = cs.length; i < len; i++) {
25159                 cs[i].setOwnerTree(tree);
25160             }
25161             if(tree){
25162                 tree.registerNode(this);
25163             }
25164         }
25165     },
25166
25167     /**
25168      * Returns the path for this node. The path can be used to expand or select this node programmatically.
25169      * @param {String} attr (optional) The attr to use for the path (defaults to the node's id)
25170      * @return {String} The path
25171      */
25172     getPath : function(attr){
25173         attr = attr || "id";
25174         var p = this.parentNode;
25175         var b = [this.attributes[attr]];
25176         while(p){
25177             b.unshift(p.attributes[attr]);
25178             p = p.parentNode;
25179         }
25180         var sep = this.getOwnerTree().pathSeparator;
25181         return sep + b.join(sep);
25182     },
25183
25184     /**
25185      * Bubbles up the tree from this node, calling the specified function with each node. The scope (<i>this</i>) of
25186      * function call will be the scope provided or the current node. The arguments to the function
25187      * will be the args provided or the current node. If the function returns false at any point,
25188      * the bubble is stopped.
25189      * @param {Function} fn The function to call
25190      * @param {Object} scope (optional) The scope of the function (defaults to current node)
25191      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
25192      */
25193     bubble : function(fn, scope, args){
25194         var p = this;
25195         while(p){
25196             if(fn.call(scope || p, args || p) === false){
25197                 break;
25198             }
25199             p = p.parentNode;
25200         }
25201     },
25202
25203     /**
25204      * Cascades down the tree from this node, calling the specified function with each node. The scope (<i>this</i>) of
25205      * function call will be the scope provided or the current node. The arguments to the function
25206      * will be the args provided or the current node. If the function returns false at any point,
25207      * the cascade is stopped on that branch.
25208      * @param {Function} fn The function to call
25209      * @param {Object} scope (optional) The scope of the function (defaults to current node)
25210      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
25211      */
25212     cascade : function(fn, scope, args){
25213         if(fn.call(scope || this, args || this) !== false){
25214             var cs = this.childNodes;
25215             for(var i = 0, len = cs.length; i < len; i++) {
25216                 cs[i].cascade(fn, scope, args);
25217             }
25218         }
25219     },
25220
25221     /**
25222      * Interates the child nodes of this node, calling the specified function with each node. The scope (<i>this</i>) of
25223      * function call will be the scope provided or the current node. The arguments to the function
25224      * will be the args provided or the current node. If the function returns false at any point,
25225      * the iteration stops.
25226      * @param {Function} fn The function to call
25227      * @param {Object} scope (optional) The scope of the function (defaults to current node)
25228      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
25229      */
25230     eachChild : function(fn, scope, args){
25231         var cs = this.childNodes;
25232         for(var i = 0, len = cs.length; i < len; i++) {
25233                 if(fn.call(scope || this, args || cs[i]) === false){
25234                     break;
25235                 }
25236         }
25237     },
25238
25239     /**
25240      * Finds the first child that has the attribute with the specified value.
25241      * @param {String} attribute The attribute name
25242      * @param {Mixed} value The value to search for
25243      * @return {Node} The found child or null if none was found
25244      */
25245     findChild : function(attribute, value){
25246         var cs = this.childNodes;
25247         for(var i = 0, len = cs.length; i < len; i++) {
25248                 if(cs[i].attributes[attribute] == value){
25249                     return cs[i];
25250                 }
25251         }
25252         return null;
25253     },
25254
25255     /**
25256      * Finds the first child by a custom function. The child matches if the function passed
25257      * returns true.
25258      * @param {Function} fn
25259      * @param {Object} scope (optional)
25260      * @return {Node} The found child or null if none was found
25261      */
25262     findChildBy : function(fn, scope){
25263         var cs = this.childNodes;
25264         for(var i = 0, len = cs.length; i < len; i++) {
25265                 if(fn.call(scope||cs[i], cs[i]) === true){
25266                     return cs[i];
25267                 }
25268         }
25269         return null;
25270     },
25271
25272     /**
25273      * Sorts this nodes children using the supplied sort function
25274      * @param {Function} fn
25275      * @param {Object} scope (optional)
25276      */
25277     sort : function(fn, scope){
25278         var cs = this.childNodes;
25279         var len = cs.length;
25280         if(len > 0){
25281             var sortFn = scope ? function(){fn.apply(scope, arguments);} : fn;
25282             cs.sort(sortFn);
25283             for(var i = 0; i < len; i++){
25284                 var n = cs[i];
25285                 n.previousSibling = cs[i-1];
25286                 n.nextSibling = cs[i+1];
25287                 if(i == 0){
25288                     this.setFirstChild(n);
25289                 }
25290                 if(i == len-1){
25291                     this.setLastChild(n);
25292                 }
25293             }
25294         }
25295     },
25296
25297     /**
25298      * Returns true if this node is an ancestor (at any point) of the passed node.
25299      * @param {Node} node
25300      * @return {Boolean}
25301      */
25302     contains : function(node){
25303         return node.isAncestor(this);
25304     },
25305
25306     /**
25307      * Returns true if the passed node is an ancestor (at any point) of this node.
25308      * @param {Node} node
25309      * @return {Boolean}
25310      */
25311     isAncestor : function(node){
25312         var p = this.parentNode;
25313         while(p){
25314             if(p == node){
25315                 return true;
25316             }
25317             p = p.parentNode;
25318         }
25319         return false;
25320     },
25321
25322     toString : function(){
25323         return "[Node"+(this.id?" "+this.id:"")+"]";
25324     }
25325 });/*
25326  * Based on:
25327  * Ext JS Library 1.1.1
25328  * Copyright(c) 2006-2007, Ext JS, LLC.
25329  *
25330  * Originally Released Under LGPL - original licence link has changed is not relivant.
25331  *
25332  * Fork - LGPL
25333  * <script type="text/javascript">
25334  */
25335  (function(){ 
25336 /**
25337  * @class Roo.Layer
25338  * @extends Roo.Element
25339  * An extended {@link Roo.Element} object that supports a shadow and shim, constrain to viewport and
25340  * automatic maintaining of shadow/shim positions.
25341  * @cfg {Boolean} shim False to disable the iframe shim in browsers which need one (defaults to true)
25342  * @cfg {String/Boolean} shadow True to create a shadow element with default class "x-layer-shadow", or
25343  * you can pass a string with a CSS class name. False turns off the shadow.
25344  * @cfg {Object} dh DomHelper object config to create element with (defaults to {tag: "div", cls: "x-layer"}).
25345  * @cfg {Boolean} constrain False to disable constrain to viewport (defaults to true)
25346  * @cfg {String} cls CSS class to add to the element
25347  * @cfg {Number} zindex Starting z-index (defaults to 11000)
25348  * @cfg {Number} shadowOffset Number of pixels to offset the shadow (defaults to 3)
25349  * @constructor
25350  * @param {Object} config An object with config options.
25351  * @param {String/HTMLElement} existingEl (optional) Uses an existing DOM element. If the element is not found it creates it.
25352  */
25353
25354 Roo.Layer = function(config, existingEl){
25355     config = config || {};
25356     var dh = Roo.DomHelper;
25357     var cp = config.parentEl, pel = cp ? Roo.getDom(cp) : document.body;
25358     if(existingEl){
25359         this.dom = Roo.getDom(existingEl);
25360     }
25361     if(!this.dom){
25362         var o = config.dh || {tag: "div", cls: "x-layer"};
25363         this.dom = dh.append(pel, o);
25364     }
25365     if(config.cls){
25366         this.addClass(config.cls);
25367     }
25368     this.constrain = config.constrain !== false;
25369     this.visibilityMode = Roo.Element.VISIBILITY;
25370     if(config.id){
25371         this.id = this.dom.id = config.id;
25372     }else{
25373         this.id = Roo.id(this.dom);
25374     }
25375     this.zindex = config.zindex || this.getZIndex();
25376     this.position("absolute", this.zindex);
25377     if(config.shadow){
25378         this.shadowOffset = config.shadowOffset || 4;
25379         this.shadow = new Roo.Shadow({
25380             offset : this.shadowOffset,
25381             mode : config.shadow
25382         });
25383     }else{
25384         this.shadowOffset = 0;
25385     }
25386     this.useShim = config.shim !== false && Roo.useShims;
25387     this.useDisplay = config.useDisplay;
25388     this.hide();
25389 };
25390
25391 var supr = Roo.Element.prototype;
25392
25393 // shims are shared among layer to keep from having 100 iframes
25394 var shims = [];
25395
25396 Roo.extend(Roo.Layer, Roo.Element, {
25397
25398     getZIndex : function(){
25399         return this.zindex || parseInt(this.getStyle("z-index"), 10) || 11000;
25400     },
25401
25402     getShim : function(){
25403         if(!this.useShim){
25404             return null;
25405         }
25406         if(this.shim){
25407             return this.shim;
25408         }
25409         var shim = shims.shift();
25410         if(!shim){
25411             shim = this.createShim();
25412             shim.enableDisplayMode('block');
25413             shim.dom.style.display = 'none';
25414             shim.dom.style.visibility = 'visible';
25415         }
25416         var pn = this.dom.parentNode;
25417         if(shim.dom.parentNode != pn){
25418             pn.insertBefore(shim.dom, this.dom);
25419         }
25420         shim.setStyle('z-index', this.getZIndex()-2);
25421         this.shim = shim;
25422         return shim;
25423     },
25424
25425     hideShim : function(){
25426         if(this.shim){
25427             this.shim.setDisplayed(false);
25428             shims.push(this.shim);
25429             delete this.shim;
25430         }
25431     },
25432
25433     disableShadow : function(){
25434         if(this.shadow){
25435             this.shadowDisabled = true;
25436             this.shadow.hide();
25437             this.lastShadowOffset = this.shadowOffset;
25438             this.shadowOffset = 0;
25439         }
25440     },
25441
25442     enableShadow : function(show){
25443         if(this.shadow){
25444             this.shadowDisabled = false;
25445             this.shadowOffset = this.lastShadowOffset;
25446             delete this.lastShadowOffset;
25447             if(show){
25448                 this.sync(true);
25449             }
25450         }
25451     },
25452
25453     // private
25454     // this code can execute repeatedly in milliseconds (i.e. during a drag) so
25455     // code size was sacrificed for effeciency (e.g. no getBox/setBox, no XY calls)
25456     sync : function(doShow){
25457         var sw = this.shadow;
25458         if(!this.updating && this.isVisible() && (sw || this.useShim)){
25459             var sh = this.getShim();
25460
25461             var w = this.getWidth(),
25462                 h = this.getHeight();
25463
25464             var l = this.getLeft(true),
25465                 t = this.getTop(true);
25466
25467             if(sw && !this.shadowDisabled){
25468                 if(doShow && !sw.isVisible()){
25469                     sw.show(this);
25470                 }else{
25471                     sw.realign(l, t, w, h);
25472                 }
25473                 if(sh){
25474                     if(doShow){
25475                        sh.show();
25476                     }
25477                     // fit the shim behind the shadow, so it is shimmed too
25478                     var a = sw.adjusts, s = sh.dom.style;
25479                     s.left = (Math.min(l, l+a.l))+"px";
25480                     s.top = (Math.min(t, t+a.t))+"px";
25481                     s.width = (w+a.w)+"px";
25482                     s.height = (h+a.h)+"px";
25483                 }
25484             }else if(sh){
25485                 if(doShow){
25486                    sh.show();
25487                 }
25488                 sh.setSize(w, h);
25489                 sh.setLeftTop(l, t);
25490             }
25491             
25492         }
25493     },
25494
25495     // private
25496     destroy : function(){
25497         this.hideShim();
25498         if(this.shadow){
25499             this.shadow.hide();
25500         }
25501         this.removeAllListeners();
25502         var pn = this.dom.parentNode;
25503         if(pn){
25504             pn.removeChild(this.dom);
25505         }
25506         Roo.Element.uncache(this.id);
25507     },
25508
25509     remove : function(){
25510         this.destroy();
25511     },
25512
25513     // private
25514     beginUpdate : function(){
25515         this.updating = true;
25516     },
25517
25518     // private
25519     endUpdate : function(){
25520         this.updating = false;
25521         this.sync(true);
25522     },
25523
25524     // private
25525     hideUnders : function(negOffset){
25526         if(this.shadow){
25527             this.shadow.hide();
25528         }
25529         this.hideShim();
25530     },
25531
25532     // private
25533     constrainXY : function(){
25534         if(this.constrain){
25535             var vw = Roo.lib.Dom.getViewWidth(),
25536                 vh = Roo.lib.Dom.getViewHeight();
25537             var s = Roo.get(document).getScroll();
25538
25539             var xy = this.getXY();
25540             var x = xy[0], y = xy[1];   
25541             var w = this.dom.offsetWidth+this.shadowOffset, h = this.dom.offsetHeight+this.shadowOffset;
25542             // only move it if it needs it
25543             var moved = false;
25544             // first validate right/bottom
25545             if((x + w) > vw+s.left){
25546                 x = vw - w - this.shadowOffset;
25547                 moved = true;
25548             }
25549             if((y + h) > vh+s.top){
25550                 y = vh - h - this.shadowOffset;
25551                 moved = true;
25552             }
25553             // then make sure top/left isn't negative
25554             if(x < s.left){
25555                 x = s.left;
25556                 moved = true;
25557             }
25558             if(y < s.top){
25559                 y = s.top;
25560                 moved = true;
25561             }
25562             if(moved){
25563                 if(this.avoidY){
25564                     var ay = this.avoidY;
25565                     if(y <= ay && (y+h) >= ay){
25566                         y = ay-h-5;   
25567                     }
25568                 }
25569                 xy = [x, y];
25570                 this.storeXY(xy);
25571                 supr.setXY.call(this, xy);
25572                 this.sync();
25573             }
25574         }
25575     },
25576
25577     isVisible : function(){
25578         return this.visible;    
25579     },
25580
25581     // private
25582     showAction : function(){
25583         this.visible = true; // track visibility to prevent getStyle calls
25584         if(this.useDisplay === true){
25585             this.setDisplayed("");
25586         }else if(this.lastXY){
25587             supr.setXY.call(this, this.lastXY);
25588         }else if(this.lastLT){
25589             supr.setLeftTop.call(this, this.lastLT[0], this.lastLT[1]);
25590         }
25591     },
25592
25593     // private
25594     hideAction : function(){
25595         this.visible = false;
25596         if(this.useDisplay === true){
25597             this.setDisplayed(false);
25598         }else{
25599             this.setLeftTop(-10000,-10000);
25600         }
25601     },
25602
25603     // overridden Element method
25604     setVisible : function(v, a, d, c, e){
25605         if(v){
25606             this.showAction();
25607         }
25608         if(a && v){
25609             var cb = function(){
25610                 this.sync(true);
25611                 if(c){
25612                     c();
25613                 }
25614             }.createDelegate(this);
25615             supr.setVisible.call(this, true, true, d, cb, e);
25616         }else{
25617             if(!v){
25618                 this.hideUnders(true);
25619             }
25620             var cb = c;
25621             if(a){
25622                 cb = function(){
25623                     this.hideAction();
25624                     if(c){
25625                         c();
25626                     }
25627                 }.createDelegate(this);
25628             }
25629             supr.setVisible.call(this, v, a, d, cb, e);
25630             if(v){
25631                 this.sync(true);
25632             }else if(!a){
25633                 this.hideAction();
25634             }
25635         }
25636     },
25637
25638     storeXY : function(xy){
25639         delete this.lastLT;
25640         this.lastXY = xy;
25641     },
25642
25643     storeLeftTop : function(left, top){
25644         delete this.lastXY;
25645         this.lastLT = [left, top];
25646     },
25647
25648     // private
25649     beforeFx : function(){
25650         this.beforeAction();
25651         return Roo.Layer.superclass.beforeFx.apply(this, arguments);
25652     },
25653
25654     // private
25655     afterFx : function(){
25656         Roo.Layer.superclass.afterFx.apply(this, arguments);
25657         this.sync(this.isVisible());
25658     },
25659
25660     // private
25661     beforeAction : function(){
25662         if(!this.updating && this.shadow){
25663             this.shadow.hide();
25664         }
25665     },
25666
25667     // overridden Element method
25668     setLeft : function(left){
25669         this.storeLeftTop(left, this.getTop(true));
25670         supr.setLeft.apply(this, arguments);
25671         this.sync();
25672     },
25673
25674     setTop : function(top){
25675         this.storeLeftTop(this.getLeft(true), top);
25676         supr.setTop.apply(this, arguments);
25677         this.sync();
25678     },
25679
25680     setLeftTop : function(left, top){
25681         this.storeLeftTop(left, top);
25682         supr.setLeftTop.apply(this, arguments);
25683         this.sync();
25684     },
25685
25686     setXY : function(xy, a, d, c, e){
25687         this.fixDisplay();
25688         this.beforeAction();
25689         this.storeXY(xy);
25690         var cb = this.createCB(c);
25691         supr.setXY.call(this, xy, a, d, cb, e);
25692         if(!a){
25693             cb();
25694         }
25695     },
25696
25697     // private
25698     createCB : function(c){
25699         var el = this;
25700         return function(){
25701             el.constrainXY();
25702             el.sync(true);
25703             if(c){
25704                 c();
25705             }
25706         };
25707     },
25708
25709     // overridden Element method
25710     setX : function(x, a, d, c, e){
25711         this.setXY([x, this.getY()], a, d, c, e);
25712     },
25713
25714     // overridden Element method
25715     setY : function(y, a, d, c, e){
25716         this.setXY([this.getX(), y], a, d, c, e);
25717     },
25718
25719     // overridden Element method
25720     setSize : function(w, h, a, d, c, e){
25721         this.beforeAction();
25722         var cb = this.createCB(c);
25723         supr.setSize.call(this, w, h, a, d, cb, e);
25724         if(!a){
25725             cb();
25726         }
25727     },
25728
25729     // overridden Element method
25730     setWidth : function(w, a, d, c, e){
25731         this.beforeAction();
25732         var cb = this.createCB(c);
25733         supr.setWidth.call(this, w, a, d, cb, e);
25734         if(!a){
25735             cb();
25736         }
25737     },
25738
25739     // overridden Element method
25740     setHeight : function(h, a, d, c, e){
25741         this.beforeAction();
25742         var cb = this.createCB(c);
25743         supr.setHeight.call(this, h, a, d, cb, e);
25744         if(!a){
25745             cb();
25746         }
25747     },
25748
25749     // overridden Element method
25750     setBounds : function(x, y, w, h, a, d, c, e){
25751         this.beforeAction();
25752         var cb = this.createCB(c);
25753         if(!a){
25754             this.storeXY([x, y]);
25755             supr.setXY.call(this, [x, y]);
25756             supr.setSize.call(this, w, h, a, d, cb, e);
25757             cb();
25758         }else{
25759             supr.setBounds.call(this, x, y, w, h, a, d, cb, e);
25760         }
25761         return this;
25762     },
25763     
25764     /**
25765      * Sets the z-index of this layer and adjusts any shadow and shim z-indexes. The layer z-index is automatically
25766      * incremented by two more than the value passed in so that it always shows above any shadow or shim (the shadow
25767      * element, if any, will be assigned z-index + 1, and the shim element, if any, will be assigned the unmodified z-index).
25768      * @param {Number} zindex The new z-index to set
25769      * @return {this} The Layer
25770      */
25771     setZIndex : function(zindex){
25772         this.zindex = zindex;
25773         this.setStyle("z-index", zindex + 2);
25774         if(this.shadow){
25775             this.shadow.setZIndex(zindex + 1);
25776         }
25777         if(this.shim){
25778             this.shim.setStyle("z-index", zindex);
25779         }
25780     }
25781 });
25782 })();/*
25783  * Based on:
25784  * Ext JS Library 1.1.1
25785  * Copyright(c) 2006-2007, Ext JS, LLC.
25786  *
25787  * Originally Released Under LGPL - original licence link has changed is not relivant.
25788  *
25789  * Fork - LGPL
25790  * <script type="text/javascript">
25791  */
25792
25793
25794 /**
25795  * @class Roo.Shadow
25796  * Simple class that can provide a shadow effect for any element.  Note that the element MUST be absolutely positioned,
25797  * and the shadow does not provide any shimming.  This should be used only in simple cases -- for more advanced
25798  * functionality that can also provide the same shadow effect, see the {@link Roo.Layer} class.
25799  * @constructor
25800  * Create a new Shadow
25801  * @param {Object} config The config object
25802  */
25803 Roo.Shadow = function(config){
25804     Roo.apply(this, config);
25805     if(typeof this.mode != "string"){
25806         this.mode = this.defaultMode;
25807     }
25808     var o = this.offset, a = {h: 0};
25809     var rad = Math.floor(this.offset/2);
25810     switch(this.mode.toLowerCase()){ // all this hideous nonsense calculates the various offsets for shadows
25811         case "drop":
25812             a.w = 0;
25813             a.l = a.t = o;
25814             a.t -= 1;
25815             if(Roo.isIE){
25816                 a.l -= this.offset + rad;
25817                 a.t -= this.offset + rad;
25818                 a.w -= rad;
25819                 a.h -= rad;
25820                 a.t += 1;
25821             }
25822         break;
25823         case "sides":
25824             a.w = (o*2);
25825             a.l = -o;
25826             a.t = o-1;
25827             if(Roo.isIE){
25828                 a.l -= (this.offset - rad);
25829                 a.t -= this.offset + rad;
25830                 a.l += 1;
25831                 a.w -= (this.offset - rad)*2;
25832                 a.w -= rad + 1;
25833                 a.h -= 1;
25834             }
25835         break;
25836         case "frame":
25837             a.w = a.h = (o*2);
25838             a.l = a.t = -o;
25839             a.t += 1;
25840             a.h -= 2;
25841             if(Roo.isIE){
25842                 a.l -= (this.offset - rad);
25843                 a.t -= (this.offset - rad);
25844                 a.l += 1;
25845                 a.w -= (this.offset + rad + 1);
25846                 a.h -= (this.offset + rad);
25847                 a.h += 1;
25848             }
25849         break;
25850     };
25851
25852     this.adjusts = a;
25853 };
25854
25855 Roo.Shadow.prototype = {
25856     /**
25857      * @cfg {String} mode
25858      * The shadow display mode.  Supports the following options:<br />
25859      * sides: Shadow displays on both sides and bottom only<br />
25860      * frame: Shadow displays equally on all four sides<br />
25861      * drop: Traditional bottom-right drop shadow (default)
25862      */
25863     /**
25864      * @cfg {String} offset
25865      * The number of pixels to offset the shadow from the element (defaults to 4)
25866      */
25867     offset: 4,
25868
25869     // private
25870     defaultMode: "drop",
25871
25872     /**
25873      * Displays the shadow under the target element
25874      * @param {String/HTMLElement/Element} targetEl The id or element under which the shadow should display
25875      */
25876     show : function(target){
25877         target = Roo.get(target);
25878         if(!this.el){
25879             this.el = Roo.Shadow.Pool.pull();
25880             if(this.el.dom.nextSibling != target.dom){
25881                 this.el.insertBefore(target);
25882             }
25883         }
25884         this.el.setStyle("z-index", this.zIndex || parseInt(target.getStyle("z-index"), 10)-1);
25885         if(Roo.isIE){
25886             this.el.dom.style.filter="progid:DXImageTransform.Microsoft.alpha(opacity=50) progid:DXImageTransform.Microsoft.Blur(pixelradius="+(this.offset)+")";
25887         }
25888         this.realign(
25889             target.getLeft(true),
25890             target.getTop(true),
25891             target.getWidth(),
25892             target.getHeight()
25893         );
25894         this.el.dom.style.display = "block";
25895     },
25896
25897     /**
25898      * Returns true if the shadow is visible, else false
25899      */
25900     isVisible : function(){
25901         return this.el ? true : false;  
25902     },
25903
25904     /**
25905      * Direct alignment when values are already available. Show must be called at least once before
25906      * calling this method to ensure it is initialized.
25907      * @param {Number} left The target element left position
25908      * @param {Number} top The target element top position
25909      * @param {Number} width The target element width
25910      * @param {Number} height The target element height
25911      */
25912     realign : function(l, t, w, h){
25913         if(!this.el){
25914             return;
25915         }
25916         var a = this.adjusts, d = this.el.dom, s = d.style;
25917         var iea = 0;
25918         s.left = (l+a.l)+"px";
25919         s.top = (t+a.t)+"px";
25920         var sw = (w+a.w), sh = (h+a.h), sws = sw +"px", shs = sh + "px";
25921  
25922         if(s.width != sws || s.height != shs){
25923             s.width = sws;
25924             s.height = shs;
25925             if(!Roo.isIE){
25926                 var cn = d.childNodes;
25927                 var sww = Math.max(0, (sw-12))+"px";
25928                 cn[0].childNodes[1].style.width = sww;
25929                 cn[1].childNodes[1].style.width = sww;
25930                 cn[2].childNodes[1].style.width = sww;
25931                 cn[1].style.height = Math.max(0, (sh-12))+"px";
25932             }
25933         }
25934     },
25935
25936     /**
25937      * Hides this shadow
25938      */
25939     hide : function(){
25940         if(this.el){
25941             this.el.dom.style.display = "none";
25942             Roo.Shadow.Pool.push(this.el);
25943             delete this.el;
25944         }
25945     },
25946
25947     /**
25948      * Adjust the z-index of this shadow
25949      * @param {Number} zindex The new z-index
25950      */
25951     setZIndex : function(z){
25952         this.zIndex = z;
25953         if(this.el){
25954             this.el.setStyle("z-index", z);
25955         }
25956     }
25957 };
25958
25959 // Private utility class that manages the internal Shadow cache
25960 Roo.Shadow.Pool = function(){
25961     var p = [];
25962     var markup = Roo.isIE ?
25963                  '<div class="x-ie-shadow"></div>' :
25964                  '<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>';
25965     return {
25966         pull : function(){
25967             var sh = p.shift();
25968             if(!sh){
25969                 sh = Roo.get(Roo.DomHelper.insertHtml("beforeBegin", document.body.firstChild, markup));
25970                 sh.autoBoxAdjust = false;
25971             }
25972             return sh;
25973         },
25974
25975         push : function(sh){
25976             p.push(sh);
25977         }
25978     };
25979 }();/*
25980  * Based on:
25981  * Ext JS Library 1.1.1
25982  * Copyright(c) 2006-2007, Ext JS, LLC.
25983  *
25984  * Originally Released Under LGPL - original licence link has changed is not relivant.
25985  *
25986  * Fork - LGPL
25987  * <script type="text/javascript">
25988  */
25989
25990
25991 /**
25992  * @class Roo.SplitBar
25993  * @extends Roo.util.Observable
25994  * Creates draggable splitter bar functionality from two elements (element to be dragged and element to be resized).
25995  * <br><br>
25996  * Usage:
25997  * <pre><code>
25998 var split = new Roo.SplitBar("elementToDrag", "elementToSize",
25999                    Roo.SplitBar.HORIZONTAL, Roo.SplitBar.LEFT);
26000 split.setAdapter(new Roo.SplitBar.AbsoluteLayoutAdapter("container"));
26001 split.minSize = 100;
26002 split.maxSize = 600;
26003 split.animate = true;
26004 split.on('moved', splitterMoved);
26005 </code></pre>
26006  * @constructor
26007  * Create a new SplitBar
26008  * @param {String/HTMLElement/Roo.Element} dragElement The element to be dragged and act as the SplitBar. 
26009  * @param {String/HTMLElement/Roo.Element} resizingElement The element to be resized based on where the SplitBar element is dragged 
26010  * @param {Number} orientation (optional) Either Roo.SplitBar.HORIZONTAL or Roo.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
26011  * @param {Number} placement (optional) Either Roo.SplitBar.LEFT or Roo.SplitBar.RIGHT for horizontal or  
26012                         Roo.SplitBar.TOP or Roo.SplitBar.BOTTOM for vertical. (By default, this is determined automatically by the initial
26013                         position of the SplitBar).
26014  */
26015 Roo.SplitBar = function(dragElement, resizingElement, orientation, placement, existingProxy){
26016     
26017     /** @private */
26018     this.el = Roo.get(dragElement, true);
26019     this.el.dom.unselectable = "on";
26020     /** @private */
26021     this.resizingEl = Roo.get(resizingElement, true);
26022
26023     /**
26024      * @private
26025      * The orientation of the split. Either Roo.SplitBar.HORIZONTAL or Roo.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
26026      * Note: If this is changed after creating the SplitBar, the placement property must be manually updated
26027      * @type Number
26028      */
26029     this.orientation = orientation || Roo.SplitBar.HORIZONTAL;
26030     
26031     /**
26032      * The minimum size of the resizing element. (Defaults to 0)
26033      * @type Number
26034      */
26035     this.minSize = 0;
26036     
26037     /**
26038      * The maximum size of the resizing element. (Defaults to 2000)
26039      * @type Number
26040      */
26041     this.maxSize = 2000;
26042     
26043     /**
26044      * Whether to animate the transition to the new size
26045      * @type Boolean
26046      */
26047     this.animate = false;
26048     
26049     /**
26050      * Whether to create a transparent shim that overlays the page when dragging, enables dragging across iframes.
26051      * @type Boolean
26052      */
26053     this.useShim = false;
26054     
26055     /** @private */
26056     this.shim = null;
26057     
26058     if(!existingProxy){
26059         /** @private */
26060         this.proxy = Roo.SplitBar.createProxy(this.orientation);
26061     }else{
26062         this.proxy = Roo.get(existingProxy).dom;
26063     }
26064     /** @private */
26065     this.dd = new Roo.dd.DDProxy(this.el.dom.id, "XSplitBars", {dragElId : this.proxy.id});
26066     
26067     /** @private */
26068     this.dd.b4StartDrag = this.onStartProxyDrag.createDelegate(this);
26069     
26070     /** @private */
26071     this.dd.endDrag = this.onEndProxyDrag.createDelegate(this);
26072     
26073     /** @private */
26074     this.dragSpecs = {};
26075     
26076     /**
26077      * @private The adapter to use to positon and resize elements
26078      */
26079     this.adapter = new Roo.SplitBar.BasicLayoutAdapter();
26080     this.adapter.init(this);
26081     
26082     if(this.orientation == Roo.SplitBar.HORIZONTAL){
26083         /** @private */
26084         this.placement = placement || (this.el.getX() > this.resizingEl.getX() ? Roo.SplitBar.LEFT : Roo.SplitBar.RIGHT);
26085         this.el.addClass("x-splitbar-h");
26086     }else{
26087         /** @private */
26088         this.placement = placement || (this.el.getY() > this.resizingEl.getY() ? Roo.SplitBar.TOP : Roo.SplitBar.BOTTOM);
26089         this.el.addClass("x-splitbar-v");
26090     }
26091     
26092     this.addEvents({
26093         /**
26094          * @event resize
26095          * Fires when the splitter is moved (alias for {@link #event-moved})
26096          * @param {Roo.SplitBar} this
26097          * @param {Number} newSize the new width or height
26098          */
26099         "resize" : true,
26100         /**
26101          * @event moved
26102          * Fires when the splitter is moved
26103          * @param {Roo.SplitBar} this
26104          * @param {Number} newSize the new width or height
26105          */
26106         "moved" : true,
26107         /**
26108          * @event beforeresize
26109          * Fires before the splitter is dragged
26110          * @param {Roo.SplitBar} this
26111          */
26112         "beforeresize" : true,
26113
26114         "beforeapply" : true
26115     });
26116
26117     Roo.util.Observable.call(this);
26118 };
26119
26120 Roo.extend(Roo.SplitBar, Roo.util.Observable, {
26121     onStartProxyDrag : function(x, y){
26122         this.fireEvent("beforeresize", this);
26123         if(!this.overlay){
26124             var o = Roo.DomHelper.insertFirst(document.body,  {cls: "x-drag-overlay", html: "&#160;"}, true);
26125             o.unselectable();
26126             o.enableDisplayMode("block");
26127             // all splitbars share the same overlay
26128             Roo.SplitBar.prototype.overlay = o;
26129         }
26130         this.overlay.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
26131         this.overlay.show();
26132         Roo.get(this.proxy).setDisplayed("block");
26133         var size = this.adapter.getElementSize(this);
26134         this.activeMinSize = this.getMinimumSize();;
26135         this.activeMaxSize = this.getMaximumSize();;
26136         var c1 = size - this.activeMinSize;
26137         var c2 = Math.max(this.activeMaxSize - size, 0);
26138         if(this.orientation == Roo.SplitBar.HORIZONTAL){
26139             this.dd.resetConstraints();
26140             this.dd.setXConstraint(
26141                 this.placement == Roo.SplitBar.LEFT ? c1 : c2, 
26142                 this.placement == Roo.SplitBar.LEFT ? c2 : c1
26143             );
26144             this.dd.setYConstraint(0, 0);
26145         }else{
26146             this.dd.resetConstraints();
26147             this.dd.setXConstraint(0, 0);
26148             this.dd.setYConstraint(
26149                 this.placement == Roo.SplitBar.TOP ? c1 : c2, 
26150                 this.placement == Roo.SplitBar.TOP ? c2 : c1
26151             );
26152          }
26153         this.dragSpecs.startSize = size;
26154         this.dragSpecs.startPoint = [x, y];
26155         Roo.dd.DDProxy.prototype.b4StartDrag.call(this.dd, x, y);
26156     },
26157     
26158     /** 
26159      * @private Called after the drag operation by the DDProxy
26160      */
26161     onEndProxyDrag : function(e){
26162         Roo.get(this.proxy).setDisplayed(false);
26163         var endPoint = Roo.lib.Event.getXY(e);
26164         if(this.overlay){
26165             this.overlay.hide();
26166         }
26167         var newSize;
26168         if(this.orientation == Roo.SplitBar.HORIZONTAL){
26169             newSize = this.dragSpecs.startSize + 
26170                 (this.placement == Roo.SplitBar.LEFT ?
26171                     endPoint[0] - this.dragSpecs.startPoint[0] :
26172                     this.dragSpecs.startPoint[0] - endPoint[0]
26173                 );
26174         }else{
26175             newSize = this.dragSpecs.startSize + 
26176                 (this.placement == Roo.SplitBar.TOP ?
26177                     endPoint[1] - this.dragSpecs.startPoint[1] :
26178                     this.dragSpecs.startPoint[1] - endPoint[1]
26179                 );
26180         }
26181         newSize = Math.min(Math.max(newSize, this.activeMinSize), this.activeMaxSize);
26182         if(newSize != this.dragSpecs.startSize){
26183             if(this.fireEvent('beforeapply', this, newSize) !== false){
26184                 this.adapter.setElementSize(this, newSize);
26185                 this.fireEvent("moved", this, newSize);
26186                 this.fireEvent("resize", this, newSize);
26187             }
26188         }
26189     },
26190     
26191     /**
26192      * Get the adapter this SplitBar uses
26193      * @return The adapter object
26194      */
26195     getAdapter : function(){
26196         return this.adapter;
26197     },
26198     
26199     /**
26200      * Set the adapter this SplitBar uses
26201      * @param {Object} adapter A SplitBar adapter object
26202      */
26203     setAdapter : function(adapter){
26204         this.adapter = adapter;
26205         this.adapter.init(this);
26206     },
26207     
26208     /**
26209      * Gets the minimum size for the resizing element
26210      * @return {Number} The minimum size
26211      */
26212     getMinimumSize : function(){
26213         return this.minSize;
26214     },
26215     
26216     /**
26217      * Sets the minimum size for the resizing element
26218      * @param {Number} minSize The minimum size
26219      */
26220     setMinimumSize : function(minSize){
26221         this.minSize = minSize;
26222     },
26223     
26224     /**
26225      * Gets the maximum size for the resizing element
26226      * @return {Number} The maximum size
26227      */
26228     getMaximumSize : function(){
26229         return this.maxSize;
26230     },
26231     
26232     /**
26233      * Sets the maximum size for the resizing element
26234      * @param {Number} maxSize The maximum size
26235      */
26236     setMaximumSize : function(maxSize){
26237         this.maxSize = maxSize;
26238     },
26239     
26240     /**
26241      * Sets the initialize size for the resizing element
26242      * @param {Number} size The initial size
26243      */
26244     setCurrentSize : function(size){
26245         var oldAnimate = this.animate;
26246         this.animate = false;
26247         this.adapter.setElementSize(this, size);
26248         this.animate = oldAnimate;
26249     },
26250     
26251     /**
26252      * Destroy this splitbar. 
26253      * @param {Boolean} removeEl True to remove the element
26254      */
26255     destroy : function(removeEl){
26256         if(this.shim){
26257             this.shim.remove();
26258         }
26259         this.dd.unreg();
26260         this.proxy.parentNode.removeChild(this.proxy);
26261         if(removeEl){
26262             this.el.remove();
26263         }
26264     }
26265 });
26266
26267 /**
26268  * @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.
26269  */
26270 Roo.SplitBar.createProxy = function(dir){
26271     var proxy = new Roo.Element(document.createElement("div"));
26272     proxy.unselectable();
26273     var cls = 'x-splitbar-proxy';
26274     proxy.addClass(cls + ' ' + (dir == Roo.SplitBar.HORIZONTAL ? cls +'-h' : cls + '-v'));
26275     document.body.appendChild(proxy.dom);
26276     return proxy.dom;
26277 };
26278
26279 /** 
26280  * @class Roo.SplitBar.BasicLayoutAdapter
26281  * Default Adapter. It assumes the splitter and resizing element are not positioned
26282  * elements and only gets/sets the width of the element. Generally used for table based layouts.
26283  */
26284 Roo.SplitBar.BasicLayoutAdapter = function(){
26285 };
26286
26287 Roo.SplitBar.BasicLayoutAdapter.prototype = {
26288     // do nothing for now
26289     init : function(s){
26290     
26291     },
26292     /**
26293      * Called before drag operations to get the current size of the resizing element. 
26294      * @param {Roo.SplitBar} s The SplitBar using this adapter
26295      */
26296      getElementSize : function(s){
26297         if(s.orientation == Roo.SplitBar.HORIZONTAL){
26298             return s.resizingEl.getWidth();
26299         }else{
26300             return s.resizingEl.getHeight();
26301         }
26302     },
26303     
26304     /**
26305      * Called after drag operations to set the size of the resizing element.
26306      * @param {Roo.SplitBar} s The SplitBar using this adapter
26307      * @param {Number} newSize The new size to set
26308      * @param {Function} onComplete A function to be invoked when resizing is complete
26309      */
26310     setElementSize : function(s, newSize, onComplete){
26311         if(s.orientation == Roo.SplitBar.HORIZONTAL){
26312             if(!s.animate){
26313                 s.resizingEl.setWidth(newSize);
26314                 if(onComplete){
26315                     onComplete(s, newSize);
26316                 }
26317             }else{
26318                 s.resizingEl.setWidth(newSize, true, .1, onComplete, 'easeOut');
26319             }
26320         }else{
26321             
26322             if(!s.animate){
26323                 s.resizingEl.setHeight(newSize);
26324                 if(onComplete){
26325                     onComplete(s, newSize);
26326                 }
26327             }else{
26328                 s.resizingEl.setHeight(newSize, true, .1, onComplete, 'easeOut');
26329             }
26330         }
26331     }
26332 };
26333
26334 /** 
26335  *@class Roo.SplitBar.AbsoluteLayoutAdapter
26336  * @extends Roo.SplitBar.BasicLayoutAdapter
26337  * Adapter that  moves the splitter element to align with the resized sizing element. 
26338  * Used with an absolute positioned SplitBar.
26339  * @param {String/HTMLElement/Roo.Element} container The container that wraps around the absolute positioned content. If it's
26340  * document.body, make sure you assign an id to the body element.
26341  */
26342 Roo.SplitBar.AbsoluteLayoutAdapter = function(container){
26343     this.basic = new Roo.SplitBar.BasicLayoutAdapter();
26344     this.container = Roo.get(container);
26345 };
26346
26347 Roo.SplitBar.AbsoluteLayoutAdapter.prototype = {
26348     init : function(s){
26349         this.basic.init(s);
26350     },
26351     
26352     getElementSize : function(s){
26353         return this.basic.getElementSize(s);
26354     },
26355     
26356     setElementSize : function(s, newSize, onComplete){
26357         this.basic.setElementSize(s, newSize, this.moveSplitter.createDelegate(this, [s]));
26358     },
26359     
26360     moveSplitter : function(s){
26361         var yes = Roo.SplitBar;
26362         switch(s.placement){
26363             case yes.LEFT:
26364                 s.el.setX(s.resizingEl.getRight());
26365                 break;
26366             case yes.RIGHT:
26367                 s.el.setStyle("right", (this.container.getWidth() - s.resizingEl.getLeft()) + "px");
26368                 break;
26369             case yes.TOP:
26370                 s.el.setY(s.resizingEl.getBottom());
26371                 break;
26372             case yes.BOTTOM:
26373                 s.el.setY(s.resizingEl.getTop() - s.el.getHeight());
26374                 break;
26375         }
26376     }
26377 };
26378
26379 /**
26380  * Orientation constant - Create a vertical SplitBar
26381  * @static
26382  * @type Number
26383  */
26384 Roo.SplitBar.VERTICAL = 1;
26385
26386 /**
26387  * Orientation constant - Create a horizontal SplitBar
26388  * @static
26389  * @type Number
26390  */
26391 Roo.SplitBar.HORIZONTAL = 2;
26392
26393 /**
26394  * Placement constant - The resizing element is to the left of the splitter element
26395  * @static
26396  * @type Number
26397  */
26398 Roo.SplitBar.LEFT = 1;
26399
26400 /**
26401  * Placement constant - The resizing element is to the right of the splitter element
26402  * @static
26403  * @type Number
26404  */
26405 Roo.SplitBar.RIGHT = 2;
26406
26407 /**
26408  * Placement constant - The resizing element is positioned above the splitter element
26409  * @static
26410  * @type Number
26411  */
26412 Roo.SplitBar.TOP = 3;
26413
26414 /**
26415  * Placement constant - The resizing element is positioned under splitter element
26416  * @static
26417  * @type Number
26418  */
26419 Roo.SplitBar.BOTTOM = 4;
26420 /*
26421  * Based on:
26422  * Ext JS Library 1.1.1
26423  * Copyright(c) 2006-2007, Ext JS, LLC.
26424  *
26425  * Originally Released Under LGPL - original licence link has changed is not relivant.
26426  *
26427  * Fork - LGPL
26428  * <script type="text/javascript">
26429  */
26430
26431 /**
26432  * @class Roo.View
26433  * @extends Roo.util.Observable
26434  * Create a "View" for an element based on a data model or UpdateManager and the supplied DomHelper template. 
26435  * This class also supports single and multi selection modes. <br>
26436  * Create a data model bound view:
26437  <pre><code>
26438  var store = new Roo.data.Store(...);
26439
26440  var view = new Roo.View({
26441     el : "my-element",
26442     tpl : '&lt;div id="{0}"&gt;{2} - {1}&lt;/div&gt;', // auto create template
26443  
26444     singleSelect: true,
26445     selectedClass: "ydataview-selected",
26446     store: store
26447  });
26448
26449  // listen for node click?
26450  view.on("click", function(vw, index, node, e){
26451  alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
26452  });
26453
26454  // load XML data
26455  dataModel.load("foobar.xml");
26456  </code></pre>
26457  For an example of creating a JSON/UpdateManager view, see {@link Roo.JsonView}.
26458  * <br><br>
26459  * <b>Note: The root of your template must be a single node. Table/row implementations may work but are not supported due to
26460  * IE"s limited insertion support with tables and Opera"s faulty event bubbling.</b>
26461  * 
26462  * Note: old style constructor is still suported (container, template, config)
26463  * 
26464  * @constructor
26465  * Create a new View
26466  * @param {Object} config The config object
26467  * 
26468  */
26469 Roo.View = function(config, depreciated_tpl, depreciated_config){
26470     
26471     this.parent = false;
26472     
26473     if (typeof(depreciated_tpl) == 'undefined') {
26474         // new way.. - universal constructor.
26475         Roo.apply(this, config);
26476         this.el  = Roo.get(this.el);
26477     } else {
26478         // old format..
26479         this.el  = Roo.get(config);
26480         this.tpl = depreciated_tpl;
26481         Roo.apply(this, depreciated_config);
26482     }
26483     this.wrapEl  = this.el.wrap().wrap();
26484     ///this.el = this.wrapEla.appendChild(document.createElement("div"));
26485     
26486     
26487     if(typeof(this.tpl) == "string"){
26488         this.tpl = new Roo.Template(this.tpl);
26489     } else {
26490         // support xtype ctors..
26491         this.tpl = new Roo.factory(this.tpl, Roo);
26492     }
26493     
26494     
26495     this.tpl.compile();
26496     
26497     /** @private */
26498     this.addEvents({
26499         /**
26500          * @event beforeclick
26501          * Fires before a click is processed. Returns false to cancel the default action.
26502          * @param {Roo.View} this
26503          * @param {Number} index The index of the target node
26504          * @param {HTMLElement} node The target node
26505          * @param {Roo.EventObject} e The raw event object
26506          */
26507             "beforeclick" : true,
26508         /**
26509          * @event click
26510          * Fires when a template node is clicked.
26511          * @param {Roo.View} this
26512          * @param {Number} index The index of the target node
26513          * @param {HTMLElement} node The target node
26514          * @param {Roo.EventObject} e The raw event object
26515          */
26516             "click" : true,
26517         /**
26518          * @event dblclick
26519          * Fires when a template node is double clicked.
26520          * @param {Roo.View} this
26521          * @param {Number} index The index of the target node
26522          * @param {HTMLElement} node The target node
26523          * @param {Roo.EventObject} e The raw event object
26524          */
26525             "dblclick" : true,
26526         /**
26527          * @event contextmenu
26528          * Fires when a template node is right clicked.
26529          * @param {Roo.View} this
26530          * @param {Number} index The index of the target node
26531          * @param {HTMLElement} node The target node
26532          * @param {Roo.EventObject} e The raw event object
26533          */
26534             "contextmenu" : true,
26535         /**
26536          * @event selectionchange
26537          * Fires when the selected nodes change.
26538          * @param {Roo.View} this
26539          * @param {Array} selections Array of the selected nodes
26540          */
26541             "selectionchange" : true,
26542     
26543         /**
26544          * @event beforeselect
26545          * Fires before a selection is made. If any handlers return false, the selection is cancelled.
26546          * @param {Roo.View} this
26547          * @param {HTMLElement} node The node to be selected
26548          * @param {Array} selections Array of currently selected nodes
26549          */
26550             "beforeselect" : true,
26551         /**
26552          * @event preparedata
26553          * Fires on every row to render, to allow you to change the data.
26554          * @param {Roo.View} this
26555          * @param {Object} data to be rendered (change this)
26556          */
26557           "preparedata" : true
26558           
26559           
26560         });
26561
26562
26563
26564     this.el.on({
26565         "click": this.onClick,
26566         "dblclick": this.onDblClick,
26567         "contextmenu": this.onContextMenu,
26568         scope:this
26569     });
26570
26571     this.selections = [];
26572     this.nodes = [];
26573     this.cmp = new Roo.CompositeElementLite([]);
26574     if(this.store){
26575         this.store = Roo.factory(this.store, Roo.data);
26576         this.setStore(this.store, true);
26577     }
26578     
26579     if ( this.footer && this.footer.xtype) {
26580            
26581          var fctr = this.wrapEl.appendChild(document.createElement("div"));
26582         
26583         this.footer.dataSource = this.store;
26584         this.footer.container = fctr;
26585         this.footer = Roo.factory(this.footer, Roo);
26586         fctr.insertFirst(this.el);
26587         
26588         // this is a bit insane - as the paging toolbar seems to detach the el..
26589 //        dom.parentNode.parentNode.parentNode
26590          // they get detached?
26591     }
26592     
26593     
26594     Roo.View.superclass.constructor.call(this);
26595     
26596     
26597 };
26598
26599 Roo.extend(Roo.View, Roo.util.Observable, {
26600     
26601      /**
26602      * @cfg {Roo.data.Store} store Data store to load data from.
26603      */
26604     store : false,
26605     
26606     /**
26607      * @cfg {String|Roo.Element} el The container element.
26608      */
26609     el : '',
26610     
26611     /**
26612      * @cfg {String|Roo.Template} tpl The template used by this View 
26613      */
26614     tpl : false,
26615     /**
26616      * @cfg {String} dataName the named area of the template to use as the data area
26617      *                          Works with domtemplates roo-name="name"
26618      */
26619     dataName: false,
26620     /**
26621      * @cfg {String} selectedClass The css class to add to selected nodes
26622      */
26623     selectedClass : "x-view-selected",
26624      /**
26625      * @cfg {String} emptyText The empty text to show when nothing is loaded.
26626      */
26627     emptyText : "",
26628     
26629     /**
26630      * @cfg {String} text to display on mask (default Loading)
26631      */
26632     mask : false,
26633     /**
26634      * @cfg {Boolean} multiSelect Allow multiple selection
26635      */
26636     multiSelect : false,
26637     /**
26638      * @cfg {Boolean} singleSelect Allow single selection
26639      */
26640     singleSelect:  false,
26641     
26642     /**
26643      * @cfg {Boolean} toggleSelect - selecting 
26644      */
26645     toggleSelect : false,
26646     
26647     /**
26648      * @cfg {Boolean} tickable - selecting 
26649      */
26650     tickable : false,
26651     
26652     /**
26653      * Returns the element this view is bound to.
26654      * @return {Roo.Element}
26655      */
26656     getEl : function(){
26657         return this.wrapEl;
26658     },
26659     
26660     
26661
26662     /**
26663      * Refreshes the view. - called by datachanged on the store. - do not call directly.
26664      */
26665     refresh : function(){
26666         //Roo.log('refresh');
26667         var t = this.tpl;
26668         
26669         // if we are using something like 'domtemplate', then
26670         // the what gets used is:
26671         // t.applySubtemplate(NAME, data, wrapping data..)
26672         // the outer template then get' applied with
26673         //     the store 'extra data'
26674         // and the body get's added to the
26675         //      roo-name="data" node?
26676         //      <span class='roo-tpl-{name}'></span> ?????
26677         
26678         
26679         
26680         this.clearSelections();
26681         this.el.update("");
26682         var html = [];
26683         var records = this.store.getRange();
26684         if(records.length < 1) {
26685             
26686             // is this valid??  = should it render a template??
26687             
26688             this.el.update(this.emptyText);
26689             return;
26690         }
26691         var el = this.el;
26692         if (this.dataName) {
26693             this.el.update(t.apply(this.store.meta)); //????
26694             el = this.el.child('.roo-tpl-' + this.dataName);
26695         }
26696         
26697         for(var i = 0, len = records.length; i < len; i++){
26698             var data = this.prepareData(records[i].data, i, records[i]);
26699             this.fireEvent("preparedata", this, data, i, records[i]);
26700             
26701             var d = Roo.apply({}, data);
26702             
26703             if(this.tickable){
26704                 Roo.apply(d, {'roo-id' : Roo.id()});
26705                 
26706                 var _this = this;
26707             
26708                 Roo.each(this.parent.item, function(item){
26709                     if(item[_this.parent.valueField] != data[_this.parent.valueField]){
26710                         return;
26711                     }
26712                     Roo.apply(d, {'roo-data-checked' : 'checked'});
26713                 });
26714             }
26715             
26716             html[html.length] = Roo.util.Format.trim(
26717                 this.dataName ?
26718                     t.applySubtemplate(this.dataName, d, this.store.meta) :
26719                     t.apply(d)
26720             );
26721         }
26722         
26723         
26724         
26725         el.update(html.join(""));
26726         this.nodes = el.dom.childNodes;
26727         this.updateIndexes(0);
26728     },
26729     
26730
26731     /**
26732      * Function to override to reformat the data that is sent to
26733      * the template for each node.
26734      * DEPRICATED - use the preparedata event handler.
26735      * @param {Array/Object} data The raw data (array of colData for a data model bound view or
26736      * a JSON object for an UpdateManager bound view).
26737      */
26738     prepareData : function(data, index, record)
26739     {
26740         this.fireEvent("preparedata", this, data, index, record);
26741         return data;
26742     },
26743
26744     onUpdate : function(ds, record){
26745         // Roo.log('on update');   
26746         this.clearSelections();
26747         var index = this.store.indexOf(record);
26748         var n = this.nodes[index];
26749         this.tpl.insertBefore(n, this.prepareData(record.data, index, record));
26750         n.parentNode.removeChild(n);
26751         this.updateIndexes(index, index);
26752     },
26753
26754     
26755     
26756 // --------- FIXME     
26757     onAdd : function(ds, records, index)
26758     {
26759         //Roo.log(['on Add', ds, records, index] );        
26760         this.clearSelections();
26761         if(this.nodes.length == 0){
26762             this.refresh();
26763             return;
26764         }
26765         var n = this.nodes[index];
26766         for(var i = 0, len = records.length; i < len; i++){
26767             var d = this.prepareData(records[i].data, i, records[i]);
26768             if(n){
26769                 this.tpl.insertBefore(n, d);
26770             }else{
26771                 
26772                 this.tpl.append(this.el, d);
26773             }
26774         }
26775         this.updateIndexes(index);
26776     },
26777
26778     onRemove : function(ds, record, index){
26779        // Roo.log('onRemove');
26780         this.clearSelections();
26781         var el = this.dataName  ?
26782             this.el.child('.roo-tpl-' + this.dataName) :
26783             this.el; 
26784         
26785         el.dom.removeChild(this.nodes[index]);
26786         this.updateIndexes(index);
26787     },
26788
26789     /**
26790      * Refresh an individual node.
26791      * @param {Number} index
26792      */
26793     refreshNode : function(index){
26794         this.onUpdate(this.store, this.store.getAt(index));
26795     },
26796
26797     updateIndexes : function(startIndex, endIndex){
26798         var ns = this.nodes;
26799         startIndex = startIndex || 0;
26800         endIndex = endIndex || ns.length - 1;
26801         for(var i = startIndex; i <= endIndex; i++){
26802             ns[i].nodeIndex = i;
26803         }
26804     },
26805
26806     /**
26807      * Changes the data store this view uses and refresh the view.
26808      * @param {Store} store
26809      */
26810     setStore : function(store, initial){
26811         if(!initial && this.store){
26812             this.store.un("datachanged", this.refresh);
26813             this.store.un("add", this.onAdd);
26814             this.store.un("remove", this.onRemove);
26815             this.store.un("update", this.onUpdate);
26816             this.store.un("clear", this.refresh);
26817             this.store.un("beforeload", this.onBeforeLoad);
26818             this.store.un("load", this.onLoad);
26819             this.store.un("loadexception", this.onLoad);
26820         }
26821         if(store){
26822           
26823             store.on("datachanged", this.refresh, this);
26824             store.on("add", this.onAdd, this);
26825             store.on("remove", this.onRemove, this);
26826             store.on("update", this.onUpdate, this);
26827             store.on("clear", this.refresh, this);
26828             store.on("beforeload", this.onBeforeLoad, this);
26829             store.on("load", this.onLoad, this);
26830             store.on("loadexception", this.onLoad, this);
26831         }
26832         
26833         if(store){
26834             this.refresh();
26835         }
26836     },
26837     /**
26838      * onbeforeLoad - masks the loading area.
26839      *
26840      */
26841     onBeforeLoad : function(store,opts)
26842     {
26843          //Roo.log('onBeforeLoad');   
26844         if (!opts.add) {
26845             this.el.update("");
26846         }
26847         this.el.mask(this.mask ? this.mask : "Loading" ); 
26848     },
26849     onLoad : function ()
26850     {
26851         this.el.unmask();
26852     },
26853     
26854
26855     /**
26856      * Returns the template node the passed child belongs to or null if it doesn't belong to one.
26857      * @param {HTMLElement} node
26858      * @return {HTMLElement} The template node
26859      */
26860     findItemFromChild : function(node){
26861         var el = this.dataName  ?
26862             this.el.child('.roo-tpl-' + this.dataName,true) :
26863             this.el.dom; 
26864         
26865         if(!node || node.parentNode == el){
26866                     return node;
26867             }
26868             var p = node.parentNode;
26869             while(p && p != el){
26870             if(p.parentNode == el){
26871                 return p;
26872             }
26873             p = p.parentNode;
26874         }
26875             return null;
26876     },
26877
26878     /** @ignore */
26879     onClick : function(e){
26880         var item = this.findItemFromChild(e.getTarget());
26881         if(item){
26882             var index = this.indexOf(item);
26883             if(this.onItemClick(item, index, e) !== false){
26884                 this.fireEvent("click", this, index, item, e);
26885             }
26886         }else{
26887             this.clearSelections();
26888         }
26889     },
26890
26891     /** @ignore */
26892     onContextMenu : function(e){
26893         var item = this.findItemFromChild(e.getTarget());
26894         if(item){
26895             this.fireEvent("contextmenu", this, this.indexOf(item), item, e);
26896         }
26897     },
26898
26899     /** @ignore */
26900     onDblClick : function(e){
26901         var item = this.findItemFromChild(e.getTarget());
26902         if(item){
26903             this.fireEvent("dblclick", this, this.indexOf(item), item, e);
26904         }
26905     },
26906
26907     onItemClick : function(item, index, e)
26908     {
26909         if(this.fireEvent("beforeclick", this, index, item, e) === false){
26910             return false;
26911         }
26912         if (this.toggleSelect) {
26913             var m = this.isSelected(item) ? 'unselect' : 'select';
26914             //Roo.log(m);
26915             var _t = this;
26916             _t[m](item, true, false);
26917             return true;
26918         }
26919         if(this.multiSelect || this.singleSelect){
26920             if(this.multiSelect && e.shiftKey && this.lastSelection){
26921                 this.select(this.getNodes(this.indexOf(this.lastSelection), index), false);
26922             }else{
26923                 this.select(item, this.multiSelect && e.ctrlKey);
26924                 this.lastSelection = item;
26925             }
26926             
26927             if(!this.tickable){
26928                 e.preventDefault();
26929             }
26930             
26931         }
26932         return true;
26933     },
26934
26935     /**
26936      * Get the number of selected nodes.
26937      * @return {Number}
26938      */
26939     getSelectionCount : function(){
26940         return this.selections.length;
26941     },
26942
26943     /**
26944      * Get the currently selected nodes.
26945      * @return {Array} An array of HTMLElements
26946      */
26947     getSelectedNodes : function(){
26948         return this.selections;
26949     },
26950
26951     /**
26952      * Get the indexes of the selected nodes.
26953      * @return {Array}
26954      */
26955     getSelectedIndexes : function(){
26956         var indexes = [], s = this.selections;
26957         for(var i = 0, len = s.length; i < len; i++){
26958             indexes.push(s[i].nodeIndex);
26959         }
26960         return indexes;
26961     },
26962
26963     /**
26964      * Clear all selections
26965      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange event
26966      */
26967     clearSelections : function(suppressEvent){
26968         if(this.nodes && (this.multiSelect || this.singleSelect) && this.selections.length > 0){
26969             this.cmp.elements = this.selections;
26970             this.cmp.removeClass(this.selectedClass);
26971             this.selections = [];
26972             if(!suppressEvent){
26973                 this.fireEvent("selectionchange", this, this.selections);
26974             }
26975         }
26976     },
26977
26978     /**
26979      * Returns true if the passed node is selected
26980      * @param {HTMLElement/Number} node The node or node index
26981      * @return {Boolean}
26982      */
26983     isSelected : function(node){
26984         var s = this.selections;
26985         if(s.length < 1){
26986             return false;
26987         }
26988         node = this.getNode(node);
26989         return s.indexOf(node) !== -1;
26990     },
26991
26992     /**
26993      * Selects nodes.
26994      * @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
26995      * @param {Boolean} keepExisting (optional) true to keep existing selections
26996      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
26997      */
26998     select : function(nodeInfo, keepExisting, suppressEvent){
26999         if(nodeInfo instanceof Array){
27000             if(!keepExisting){
27001                 this.clearSelections(true);
27002             }
27003             for(var i = 0, len = nodeInfo.length; i < len; i++){
27004                 this.select(nodeInfo[i], true, true);
27005             }
27006             return;
27007         } 
27008         var node = this.getNode(nodeInfo);
27009         if(!node || this.isSelected(node)){
27010             return; // already selected.
27011         }
27012         if(!keepExisting){
27013             this.clearSelections(true);
27014         }
27015         
27016         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
27017             Roo.fly(node).addClass(this.selectedClass);
27018             this.selections.push(node);
27019             if(!suppressEvent){
27020                 this.fireEvent("selectionchange", this, this.selections);
27021             }
27022         }
27023         
27024         
27025     },
27026       /**
27027      * Unselects nodes.
27028      * @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
27029      * @param {Boolean} keepExisting (optional) true IGNORED (for campatibility with select)
27030      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
27031      */
27032     unselect : function(nodeInfo, keepExisting, suppressEvent)
27033     {
27034         if(nodeInfo instanceof Array){
27035             Roo.each(this.selections, function(s) {
27036                 this.unselect(s, nodeInfo);
27037             }, this);
27038             return;
27039         }
27040         var node = this.getNode(nodeInfo);
27041         if(!node || !this.isSelected(node)){
27042             //Roo.log("not selected");
27043             return; // not selected.
27044         }
27045         // fireevent???
27046         var ns = [];
27047         Roo.each(this.selections, function(s) {
27048             if (s == node ) {
27049                 Roo.fly(node).removeClass(this.selectedClass);
27050
27051                 return;
27052             }
27053             ns.push(s);
27054         },this);
27055         
27056         this.selections= ns;
27057         this.fireEvent("selectionchange", this, this.selections);
27058     },
27059
27060     /**
27061      * Gets a template node.
27062      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
27063      * @return {HTMLElement} The node or null if it wasn't found
27064      */
27065     getNode : function(nodeInfo){
27066         if(typeof nodeInfo == "string"){
27067             return document.getElementById(nodeInfo);
27068         }else if(typeof nodeInfo == "number"){
27069             return this.nodes[nodeInfo];
27070         }
27071         return nodeInfo;
27072     },
27073
27074     /**
27075      * Gets a range template nodes.
27076      * @param {Number} startIndex
27077      * @param {Number} endIndex
27078      * @return {Array} An array of nodes
27079      */
27080     getNodes : function(start, end){
27081         var ns = this.nodes;
27082         start = start || 0;
27083         end = typeof end == "undefined" ? ns.length - 1 : end;
27084         var nodes = [];
27085         if(start <= end){
27086             for(var i = start; i <= end; i++){
27087                 nodes.push(ns[i]);
27088             }
27089         } else{
27090             for(var i = start; i >= end; i--){
27091                 nodes.push(ns[i]);
27092             }
27093         }
27094         return nodes;
27095     },
27096
27097     /**
27098      * Finds the index of the passed node
27099      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
27100      * @return {Number} The index of the node or -1
27101      */
27102     indexOf : function(node){
27103         node = this.getNode(node);
27104         if(typeof node.nodeIndex == "number"){
27105             return node.nodeIndex;
27106         }
27107         var ns = this.nodes;
27108         for(var i = 0, len = ns.length; i < len; i++){
27109             if(ns[i] == node){
27110                 return i;
27111             }
27112         }
27113         return -1;
27114     }
27115 });
27116 /*
27117  * Based on:
27118  * Ext JS Library 1.1.1
27119  * Copyright(c) 2006-2007, Ext JS, LLC.
27120  *
27121  * Originally Released Under LGPL - original licence link has changed is not relivant.
27122  *
27123  * Fork - LGPL
27124  * <script type="text/javascript">
27125  */
27126
27127 /**
27128  * @class Roo.JsonView
27129  * @extends Roo.View
27130  * Shortcut class to create a JSON + {@link Roo.UpdateManager} template view. Usage:
27131 <pre><code>
27132 var view = new Roo.JsonView({
27133     container: "my-element",
27134     tpl: '&lt;div id="{id}"&gt;{foo} - {bar}&lt;/div&gt;', // auto create template
27135     multiSelect: true, 
27136     jsonRoot: "data" 
27137 });
27138
27139 // listen for node click?
27140 view.on("click", function(vw, index, node, e){
27141     alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
27142 });
27143
27144 // direct load of JSON data
27145 view.load("foobar.php");
27146
27147 // Example from my blog list
27148 var tpl = new Roo.Template(
27149     '&lt;div class="entry"&gt;' +
27150     '&lt;a class="entry-title" href="{link}"&gt;{title}&lt;/a&gt;' +
27151     "&lt;h4&gt;{date} by {author} | {comments} Comments&lt;/h4&gt;{description}" +
27152     "&lt;/div&gt;&lt;hr /&gt;"
27153 );
27154
27155 var moreView = new Roo.JsonView({
27156     container :  "entry-list", 
27157     template : tpl,
27158     jsonRoot: "posts"
27159 });
27160 moreView.on("beforerender", this.sortEntries, this);
27161 moreView.load({
27162     url: "/blog/get-posts.php",
27163     params: "allposts=true",
27164     text: "Loading Blog Entries..."
27165 });
27166 </code></pre>
27167
27168 * Note: old code is supported with arguments : (container, template, config)
27169
27170
27171  * @constructor
27172  * Create a new JsonView
27173  * 
27174  * @param {Object} config The config object
27175  * 
27176  */
27177 Roo.JsonView = function(config, depreciated_tpl, depreciated_config){
27178     
27179     
27180     Roo.JsonView.superclass.constructor.call(this, config, depreciated_tpl, depreciated_config);
27181
27182     var um = this.el.getUpdateManager();
27183     um.setRenderer(this);
27184     um.on("update", this.onLoad, this);
27185     um.on("failure", this.onLoadException, this);
27186
27187     /**
27188      * @event beforerender
27189      * Fires before rendering of the downloaded JSON data.
27190      * @param {Roo.JsonView} this
27191      * @param {Object} data The JSON data loaded
27192      */
27193     /**
27194      * @event load
27195      * Fires when data is loaded.
27196      * @param {Roo.JsonView} this
27197      * @param {Object} data The JSON data loaded
27198      * @param {Object} response The raw Connect response object
27199      */
27200     /**
27201      * @event loadexception
27202      * Fires when loading fails.
27203      * @param {Roo.JsonView} this
27204      * @param {Object} response The raw Connect response object
27205      */
27206     this.addEvents({
27207         'beforerender' : true,
27208         'load' : true,
27209         'loadexception' : true
27210     });
27211 };
27212 Roo.extend(Roo.JsonView, Roo.View, {
27213     /**
27214      * @type {String} The root property in the loaded JSON object that contains the data
27215      */
27216     jsonRoot : "",
27217
27218     /**
27219      * Refreshes the view.
27220      */
27221     refresh : function(){
27222         this.clearSelections();
27223         this.el.update("");
27224         var html = [];
27225         var o = this.jsonData;
27226         if(o && o.length > 0){
27227             for(var i = 0, len = o.length; i < len; i++){
27228                 var data = this.prepareData(o[i], i, o);
27229                 html[html.length] = this.tpl.apply(data);
27230             }
27231         }else{
27232             html.push(this.emptyText);
27233         }
27234         this.el.update(html.join(""));
27235         this.nodes = this.el.dom.childNodes;
27236         this.updateIndexes(0);
27237     },
27238
27239     /**
27240      * 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.
27241      * @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:
27242      <pre><code>
27243      view.load({
27244          url: "your-url.php",
27245          params: {param1: "foo", param2: "bar"}, // or a URL encoded string
27246          callback: yourFunction,
27247          scope: yourObject, //(optional scope)
27248          discardUrl: false,
27249          nocache: false,
27250          text: "Loading...",
27251          timeout: 30,
27252          scripts: false
27253      });
27254      </code></pre>
27255      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
27256      * 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.
27257      * @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}
27258      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
27259      * @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.
27260      */
27261     load : function(){
27262         var um = this.el.getUpdateManager();
27263         um.update.apply(um, arguments);
27264     },
27265
27266     // note - render is a standard framework call...
27267     // using it for the response is really flaky... - it's called by UpdateManager normally, except when called by the XComponent/addXtype.
27268     render : function(el, response){
27269         
27270         this.clearSelections();
27271         this.el.update("");
27272         var o;
27273         try{
27274             if (response != '') {
27275                 o = Roo.util.JSON.decode(response.responseText);
27276                 if(this.jsonRoot){
27277                     
27278                     o = o[this.jsonRoot];
27279                 }
27280             }
27281         } catch(e){
27282         }
27283         /**
27284          * The current JSON data or null
27285          */
27286         this.jsonData = o;
27287         this.beforeRender();
27288         this.refresh();
27289     },
27290
27291 /**
27292  * Get the number of records in the current JSON dataset
27293  * @return {Number}
27294  */
27295     getCount : function(){
27296         return this.jsonData ? this.jsonData.length : 0;
27297     },
27298
27299 /**
27300  * Returns the JSON object for the specified node(s)
27301  * @param {HTMLElement/Array} node The node or an array of nodes
27302  * @return {Object/Array} If you pass in an array, you get an array back, otherwise
27303  * you get the JSON object for the node
27304  */
27305     getNodeData : function(node){
27306         if(node instanceof Array){
27307             var data = [];
27308             for(var i = 0, len = node.length; i < len; i++){
27309                 data.push(this.getNodeData(node[i]));
27310             }
27311             return data;
27312         }
27313         return this.jsonData[this.indexOf(node)] || null;
27314     },
27315
27316     beforeRender : function(){
27317         this.snapshot = this.jsonData;
27318         if(this.sortInfo){
27319             this.sort.apply(this, this.sortInfo);
27320         }
27321         this.fireEvent("beforerender", this, this.jsonData);
27322     },
27323
27324     onLoad : function(el, o){
27325         this.fireEvent("load", this, this.jsonData, o);
27326     },
27327
27328     onLoadException : function(el, o){
27329         this.fireEvent("loadexception", this, o);
27330     },
27331
27332 /**
27333  * Filter the data by a specific property.
27334  * @param {String} property A property on your JSON objects
27335  * @param {String/RegExp} value Either string that the property values
27336  * should start with, or a RegExp to test against the property
27337  */
27338     filter : function(property, value){
27339         if(this.jsonData){
27340             var data = [];
27341             var ss = this.snapshot;
27342             if(typeof value == "string"){
27343                 var vlen = value.length;
27344                 if(vlen == 0){
27345                     this.clearFilter();
27346                     return;
27347                 }
27348                 value = value.toLowerCase();
27349                 for(var i = 0, len = ss.length; i < len; i++){
27350                     var o = ss[i];
27351                     if(o[property].substr(0, vlen).toLowerCase() == value){
27352                         data.push(o);
27353                     }
27354                 }
27355             } else if(value.exec){ // regex?
27356                 for(var i = 0, len = ss.length; i < len; i++){
27357                     var o = ss[i];
27358                     if(value.test(o[property])){
27359                         data.push(o);
27360                     }
27361                 }
27362             } else{
27363                 return;
27364             }
27365             this.jsonData = data;
27366             this.refresh();
27367         }
27368     },
27369
27370 /**
27371  * Filter by a function. The passed function will be called with each
27372  * object in the current dataset. If the function returns true the value is kept,
27373  * otherwise it is filtered.
27374  * @param {Function} fn
27375  * @param {Object} scope (optional) The scope of the function (defaults to this JsonView)
27376  */
27377     filterBy : function(fn, scope){
27378         if(this.jsonData){
27379             var data = [];
27380             var ss = this.snapshot;
27381             for(var i = 0, len = ss.length; i < len; i++){
27382                 var o = ss[i];
27383                 if(fn.call(scope || this, o)){
27384                     data.push(o);
27385                 }
27386             }
27387             this.jsonData = data;
27388             this.refresh();
27389         }
27390     },
27391
27392 /**
27393  * Clears the current filter.
27394  */
27395     clearFilter : function(){
27396         if(this.snapshot && this.jsonData != this.snapshot){
27397             this.jsonData = this.snapshot;
27398             this.refresh();
27399         }
27400     },
27401
27402
27403 /**
27404  * Sorts the data for this view and refreshes it.
27405  * @param {String} property A property on your JSON objects to sort on
27406  * @param {String} direction (optional) "desc" or "asc" (defaults to "asc")
27407  * @param {Function} sortType (optional) A function to call to convert the data to a sortable value.
27408  */
27409     sort : function(property, dir, sortType){
27410         this.sortInfo = Array.prototype.slice.call(arguments, 0);
27411         if(this.jsonData){
27412             var p = property;
27413             var dsc = dir && dir.toLowerCase() == "desc";
27414             var f = function(o1, o2){
27415                 var v1 = sortType ? sortType(o1[p]) : o1[p];
27416                 var v2 = sortType ? sortType(o2[p]) : o2[p];
27417                 ;
27418                 if(v1 < v2){
27419                     return dsc ? +1 : -1;
27420                 } else if(v1 > v2){
27421                     return dsc ? -1 : +1;
27422                 } else{
27423                     return 0;
27424                 }
27425             };
27426             this.jsonData.sort(f);
27427             this.refresh();
27428             if(this.jsonData != this.snapshot){
27429                 this.snapshot.sort(f);
27430             }
27431         }
27432     }
27433 });/*
27434  * Based on:
27435  * Ext JS Library 1.1.1
27436  * Copyright(c) 2006-2007, Ext JS, LLC.
27437  *
27438  * Originally Released Under LGPL - original licence link has changed is not relivant.
27439  *
27440  * Fork - LGPL
27441  * <script type="text/javascript">
27442  */
27443  
27444
27445 /**
27446  * @class Roo.ColorPalette
27447  * @extends Roo.Component
27448  * Simple color palette class for choosing colors.  The palette can be rendered to any container.<br />
27449  * Here's an example of typical usage:
27450  * <pre><code>
27451 var cp = new Roo.ColorPalette({value:'993300'});  // initial selected color
27452 cp.render('my-div');
27453
27454 cp.on('select', function(palette, selColor){
27455     // do something with selColor
27456 });
27457 </code></pre>
27458  * @constructor
27459  * Create a new ColorPalette
27460  * @param {Object} config The config object
27461  */
27462 Roo.ColorPalette = function(config){
27463     Roo.ColorPalette.superclass.constructor.call(this, config);
27464     this.addEvents({
27465         /**
27466              * @event select
27467              * Fires when a color is selected
27468              * @param {ColorPalette} this
27469              * @param {String} color The 6-digit color hex code (without the # symbol)
27470              */
27471         select: true
27472     });
27473
27474     if(this.handler){
27475         this.on("select", this.handler, this.scope, true);
27476     }
27477 };
27478 Roo.extend(Roo.ColorPalette, Roo.Component, {
27479     /**
27480      * @cfg {String} itemCls
27481      * The CSS class to apply to the containing element (defaults to "x-color-palette")
27482      */
27483     itemCls : "x-color-palette",
27484     /**
27485      * @cfg {String} value
27486      * The initial color to highlight (should be a valid 6-digit color hex code without the # symbol).  Note that
27487      * the hex codes are case-sensitive.
27488      */
27489     value : null,
27490     clickEvent:'click',
27491     // private
27492     ctype: "Roo.ColorPalette",
27493
27494     /**
27495      * @cfg {Boolean} allowReselect If set to true then reselecting a color that is already selected fires the selection event
27496      */
27497     allowReselect : false,
27498
27499     /**
27500      * <p>An array of 6-digit color hex code strings (without the # symbol).  This array can contain any number
27501      * of colors, and each hex code should be unique.  The width of the palette is controlled via CSS by adjusting
27502      * the width property of the 'x-color-palette' class (or assigning a custom class), so you can balance the number
27503      * of colors with the width setting until the box is symmetrical.</p>
27504      * <p>You can override individual colors if needed:</p>
27505      * <pre><code>
27506 var cp = new Roo.ColorPalette();
27507 cp.colors[0] = "FF0000";  // change the first box to red
27508 </code></pre>
27509
27510 Or you can provide a custom array of your own for complete control:
27511 <pre><code>
27512 var cp = new Roo.ColorPalette();
27513 cp.colors = ["000000", "993300", "333300"];
27514 </code></pre>
27515      * @type Array
27516      */
27517     colors : [
27518         "000000", "993300", "333300", "003300", "003366", "000080", "333399", "333333",
27519         "800000", "FF6600", "808000", "008000", "008080", "0000FF", "666699", "808080",
27520         "FF0000", "FF9900", "99CC00", "339966", "33CCCC", "3366FF", "800080", "969696",
27521         "FF00FF", "FFCC00", "FFFF00", "00FF00", "00FFFF", "00CCFF", "993366", "C0C0C0",
27522         "FF99CC", "FFCC99", "FFFF99", "CCFFCC", "CCFFFF", "99CCFF", "CC99FF", "FFFFFF"
27523     ],
27524
27525     // private
27526     onRender : function(container, position){
27527         var t = new Roo.MasterTemplate(
27528             '<tpl><a href="#" class="color-{0}" hidefocus="on"><em><span style="background:#{0}" unselectable="on">&#160;</span></em></a></tpl>'
27529         );
27530         var c = this.colors;
27531         for(var i = 0, len = c.length; i < len; i++){
27532             t.add([c[i]]);
27533         }
27534         var el = document.createElement("div");
27535         el.className = this.itemCls;
27536         t.overwrite(el);
27537         container.dom.insertBefore(el, position);
27538         this.el = Roo.get(el);
27539         this.el.on(this.clickEvent, this.handleClick,  this, {delegate: "a"});
27540         if(this.clickEvent != 'click'){
27541             this.el.on('click', Roo.emptyFn,  this, {delegate: "a", preventDefault:true});
27542         }
27543     },
27544
27545     // private
27546     afterRender : function(){
27547         Roo.ColorPalette.superclass.afterRender.call(this);
27548         if(this.value){
27549             var s = this.value;
27550             this.value = null;
27551             this.select(s);
27552         }
27553     },
27554
27555     // private
27556     handleClick : function(e, t){
27557         e.preventDefault();
27558         if(!this.disabled){
27559             var c = t.className.match(/(?:^|\s)color-(.{6})(?:\s|$)/)[1];
27560             this.select(c.toUpperCase());
27561         }
27562     },
27563
27564     /**
27565      * Selects the specified color in the palette (fires the select event)
27566      * @param {String} color A valid 6-digit color hex code (# will be stripped if included)
27567      */
27568     select : function(color){
27569         color = color.replace("#", "");
27570         if(color != this.value || this.allowReselect){
27571             var el = this.el;
27572             if(this.value){
27573                 el.child("a.color-"+this.value).removeClass("x-color-palette-sel");
27574             }
27575             el.child("a.color-"+color).addClass("x-color-palette-sel");
27576             this.value = color;
27577             this.fireEvent("select", this, color);
27578         }
27579     }
27580 });/*
27581  * Based on:
27582  * Ext JS Library 1.1.1
27583  * Copyright(c) 2006-2007, Ext JS, LLC.
27584  *
27585  * Originally Released Under LGPL - original licence link has changed is not relivant.
27586  *
27587  * Fork - LGPL
27588  * <script type="text/javascript">
27589  */
27590  
27591 /**
27592  * @class Roo.DatePicker
27593  * @extends Roo.Component
27594  * Simple date picker class.
27595  * @constructor
27596  * Create a new DatePicker
27597  * @param {Object} config The config object
27598  */
27599 Roo.DatePicker = function(config){
27600     Roo.DatePicker.superclass.constructor.call(this, config);
27601
27602     this.value = config && config.value ?
27603                  config.value.clearTime() : new Date().clearTime();
27604
27605     this.addEvents({
27606         /**
27607              * @event select
27608              * Fires when a date is selected
27609              * @param {DatePicker} this
27610              * @param {Date} date The selected date
27611              */
27612         'select': true,
27613         /**
27614              * @event monthchange
27615              * Fires when the displayed month changes 
27616              * @param {DatePicker} this
27617              * @param {Date} date The selected month
27618              */
27619         'monthchange': true
27620     });
27621
27622     if(this.handler){
27623         this.on("select", this.handler,  this.scope || this);
27624     }
27625     // build the disabledDatesRE
27626     if(!this.disabledDatesRE && this.disabledDates){
27627         var dd = this.disabledDates;
27628         var re = "(?:";
27629         for(var i = 0; i < dd.length; i++){
27630             re += dd[i];
27631             if(i != dd.length-1) {
27632                 re += "|";
27633             }
27634         }
27635         this.disabledDatesRE = new RegExp(re + ")");
27636     }
27637 };
27638
27639 Roo.extend(Roo.DatePicker, Roo.Component, {
27640     /**
27641      * @cfg {String} todayText
27642      * The text to display on the button that selects the current date (defaults to "Today")
27643      */
27644     todayText : "Today",
27645     /**
27646      * @cfg {String} okText
27647      * The text to display on the ok button
27648      */
27649     okText : "&#160;OK&#160;", // &#160; to give the user extra clicking room
27650     /**
27651      * @cfg {String} cancelText
27652      * The text to display on the cancel button
27653      */
27654     cancelText : "Cancel",
27655     /**
27656      * @cfg {String} todayTip
27657      * The tooltip to display for the button that selects the current date (defaults to "{current date} (Spacebar)")
27658      */
27659     todayTip : "{0} (Spacebar)",
27660     /**
27661      * @cfg {Date} minDate
27662      * Minimum allowable date (JavaScript date object, defaults to null)
27663      */
27664     minDate : null,
27665     /**
27666      * @cfg {Date} maxDate
27667      * Maximum allowable date (JavaScript date object, defaults to null)
27668      */
27669     maxDate : null,
27670     /**
27671      * @cfg {String} minText
27672      * The error text to display if the minDate validation fails (defaults to "This date is before the minimum date")
27673      */
27674     minText : "This date is before the minimum date",
27675     /**
27676      * @cfg {String} maxText
27677      * The error text to display if the maxDate validation fails (defaults to "This date is after the maximum date")
27678      */
27679     maxText : "This date is after the maximum date",
27680     /**
27681      * @cfg {String} format
27682      * The default date format string which can be overriden for localization support.  The format must be
27683      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
27684      */
27685     format : "m/d/y",
27686     /**
27687      * @cfg {Array} disabledDays
27688      * An array of days to disable, 0-based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
27689      */
27690     disabledDays : null,
27691     /**
27692      * @cfg {String} disabledDaysText
27693      * The tooltip to display when the date falls on a disabled day (defaults to "")
27694      */
27695     disabledDaysText : "",
27696     /**
27697      * @cfg {RegExp} disabledDatesRE
27698      * JavaScript regular expression used to disable a pattern of dates (defaults to null)
27699      */
27700     disabledDatesRE : null,
27701     /**
27702      * @cfg {String} disabledDatesText
27703      * The tooltip text to display when the date falls on a disabled date (defaults to "")
27704      */
27705     disabledDatesText : "",
27706     /**
27707      * @cfg {Boolean} constrainToViewport
27708      * True to constrain the date picker to the viewport (defaults to true)
27709      */
27710     constrainToViewport : true,
27711     /**
27712      * @cfg {Array} monthNames
27713      * An array of textual month names which can be overriden for localization support (defaults to Date.monthNames)
27714      */
27715     monthNames : Date.monthNames,
27716     /**
27717      * @cfg {Array} dayNames
27718      * An array of textual day names which can be overriden for localization support (defaults to Date.dayNames)
27719      */
27720     dayNames : Date.dayNames,
27721     /**
27722      * @cfg {String} nextText
27723      * The next month navigation button tooltip (defaults to 'Next Month (Control+Right)')
27724      */
27725     nextText: 'Next Month (Control+Right)',
27726     /**
27727      * @cfg {String} prevText
27728      * The previous month navigation button tooltip (defaults to 'Previous Month (Control+Left)')
27729      */
27730     prevText: 'Previous Month (Control+Left)',
27731     /**
27732      * @cfg {String} monthYearText
27733      * The header month selector tooltip (defaults to 'Choose a month (Control+Up/Down to move years)')
27734      */
27735     monthYearText: 'Choose a month (Control+Up/Down to move years)',
27736     /**
27737      * @cfg {Number} startDay
27738      * Day index at which the week should begin, 0-based (defaults to 0, which is Sunday)
27739      */
27740     startDay : 0,
27741     /**
27742      * @cfg {Bool} showClear
27743      * Show a clear button (usefull for date form elements that can be blank.)
27744      */
27745     
27746     showClear: false,
27747     
27748     /**
27749      * Sets the value of the date field
27750      * @param {Date} value The date to set
27751      */
27752     setValue : function(value){
27753         var old = this.value;
27754         
27755         if (typeof(value) == 'string') {
27756          
27757             value = Date.parseDate(value, this.format);
27758         }
27759         if (!value) {
27760             value = new Date();
27761         }
27762         
27763         this.value = value.clearTime(true);
27764         if(this.el){
27765             this.update(this.value);
27766         }
27767     },
27768
27769     /**
27770      * Gets the current selected value of the date field
27771      * @return {Date} The selected date
27772      */
27773     getValue : function(){
27774         return this.value;
27775     },
27776
27777     // private
27778     focus : function(){
27779         if(this.el){
27780             this.update(this.activeDate);
27781         }
27782     },
27783
27784     // privateval
27785     onRender : function(container, position){
27786         
27787         var m = [
27788              '<table cellspacing="0">',
27789                 '<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>',
27790                 '<tr><td colspan="3"><table class="x-date-inner" cellspacing="0"><thead><tr>'];
27791         var dn = this.dayNames;
27792         for(var i = 0; i < 7; i++){
27793             var d = this.startDay+i;
27794             if(d > 6){
27795                 d = d-7;
27796             }
27797             m.push("<th><span>", dn[d].substr(0,1), "</span></th>");
27798         }
27799         m[m.length] = "</tr></thead><tbody><tr>";
27800         for(var i = 0; i < 42; i++) {
27801             if(i % 7 == 0 && i != 0){
27802                 m[m.length] = "</tr><tr>";
27803             }
27804             m[m.length] = '<td><a href="#" hidefocus="on" class="x-date-date" tabIndex="1"><em><span></span></em></a></td>';
27805         }
27806         m[m.length] = '</tr></tbody></table></td></tr><tr>'+
27807             '<td colspan="3" class="x-date-bottom" align="center"></td></tr></table><div class="x-date-mp"></div>';
27808
27809         var el = document.createElement("div");
27810         el.className = "x-date-picker";
27811         el.innerHTML = m.join("");
27812
27813         container.dom.insertBefore(el, position);
27814
27815         this.el = Roo.get(el);
27816         this.eventEl = Roo.get(el.firstChild);
27817
27818         new Roo.util.ClickRepeater(this.el.child("td.x-date-left a"), {
27819             handler: this.showPrevMonth,
27820             scope: this,
27821             preventDefault:true,
27822             stopDefault:true
27823         });
27824
27825         new Roo.util.ClickRepeater(this.el.child("td.x-date-right a"), {
27826             handler: this.showNextMonth,
27827             scope: this,
27828             preventDefault:true,
27829             stopDefault:true
27830         });
27831
27832         this.eventEl.on("mousewheel", this.handleMouseWheel,  this);
27833
27834         this.monthPicker = this.el.down('div.x-date-mp');
27835         this.monthPicker.enableDisplayMode('block');
27836         
27837         var kn = new Roo.KeyNav(this.eventEl, {
27838             "left" : function(e){
27839                 e.ctrlKey ?
27840                     this.showPrevMonth() :
27841                     this.update(this.activeDate.add("d", -1));
27842             },
27843
27844             "right" : function(e){
27845                 e.ctrlKey ?
27846                     this.showNextMonth() :
27847                     this.update(this.activeDate.add("d", 1));
27848             },
27849
27850             "up" : function(e){
27851                 e.ctrlKey ?
27852                     this.showNextYear() :
27853                     this.update(this.activeDate.add("d", -7));
27854             },
27855
27856             "down" : function(e){
27857                 e.ctrlKey ?
27858                     this.showPrevYear() :
27859                     this.update(this.activeDate.add("d", 7));
27860             },
27861
27862             "pageUp" : function(e){
27863                 this.showNextMonth();
27864             },
27865
27866             "pageDown" : function(e){
27867                 this.showPrevMonth();
27868             },
27869
27870             "enter" : function(e){
27871                 e.stopPropagation();
27872                 return true;
27873             },
27874
27875             scope : this
27876         });
27877
27878         this.eventEl.on("click", this.handleDateClick,  this, {delegate: "a.x-date-date"});
27879
27880         this.eventEl.addKeyListener(Roo.EventObject.SPACE, this.selectToday,  this);
27881
27882         this.el.unselectable();
27883         
27884         this.cells = this.el.select("table.x-date-inner tbody td");
27885         this.textNodes = this.el.query("table.x-date-inner tbody span");
27886
27887         this.mbtn = new Roo.Button(this.el.child("td.x-date-middle", true), {
27888             text: "&#160;",
27889             tooltip: this.monthYearText
27890         });
27891
27892         this.mbtn.on('click', this.showMonthPicker, this);
27893         this.mbtn.el.child(this.mbtn.menuClassTarget).addClass("x-btn-with-menu");
27894
27895
27896         var today = (new Date()).dateFormat(this.format);
27897         
27898         var baseTb = new Roo.Toolbar(this.el.child("td.x-date-bottom", true));
27899         if (this.showClear) {
27900             baseTb.add( new Roo.Toolbar.Fill());
27901         }
27902         baseTb.add({
27903             text: String.format(this.todayText, today),
27904             tooltip: String.format(this.todayTip, today),
27905             handler: this.selectToday,
27906             scope: this
27907         });
27908         
27909         //var todayBtn = new Roo.Button(this.el.child("td.x-date-bottom", true), {
27910             
27911         //});
27912         if (this.showClear) {
27913             
27914             baseTb.add( new Roo.Toolbar.Fill());
27915             baseTb.add({
27916                 text: '&#160;',
27917                 cls: 'x-btn-icon x-btn-clear',
27918                 handler: function() {
27919                     //this.value = '';
27920                     this.fireEvent("select", this, '');
27921                 },
27922                 scope: this
27923             });
27924         }
27925         
27926         
27927         if(Roo.isIE){
27928             this.el.repaint();
27929         }
27930         this.update(this.value);
27931     },
27932
27933     createMonthPicker : function(){
27934         if(!this.monthPicker.dom.firstChild){
27935             var buf = ['<table border="0" cellspacing="0">'];
27936             for(var i = 0; i < 6; i++){
27937                 buf.push(
27938                     '<tr><td class="x-date-mp-month"><a href="#">', this.monthNames[i].substr(0, 3), '</a></td>',
27939                     '<td class="x-date-mp-month x-date-mp-sep"><a href="#">', this.monthNames[i+6].substr(0, 3), '</a></td>',
27940                     i == 0 ?
27941                     '<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>' :
27942                     '<td class="x-date-mp-year"><a href="#"></a></td><td class="x-date-mp-year"><a href="#"></a></td></tr>'
27943                 );
27944             }
27945             buf.push(
27946                 '<tr class="x-date-mp-btns"><td colspan="4"><button type="button" class="x-date-mp-ok">',
27947                     this.okText,
27948                     '</button><button type="button" class="x-date-mp-cancel">',
27949                     this.cancelText,
27950                     '</button></td></tr>',
27951                 '</table>'
27952             );
27953             this.monthPicker.update(buf.join(''));
27954             this.monthPicker.on('click', this.onMonthClick, this);
27955             this.monthPicker.on('dblclick', this.onMonthDblClick, this);
27956
27957             this.mpMonths = this.monthPicker.select('td.x-date-mp-month');
27958             this.mpYears = this.monthPicker.select('td.x-date-mp-year');
27959
27960             this.mpMonths.each(function(m, a, i){
27961                 i += 1;
27962                 if((i%2) == 0){
27963                     m.dom.xmonth = 5 + Math.round(i * .5);
27964                 }else{
27965                     m.dom.xmonth = Math.round((i-1) * .5);
27966                 }
27967             });
27968         }
27969     },
27970
27971     showMonthPicker : function(){
27972         this.createMonthPicker();
27973         var size = this.el.getSize();
27974         this.monthPicker.setSize(size);
27975         this.monthPicker.child('table').setSize(size);
27976
27977         this.mpSelMonth = (this.activeDate || this.value).getMonth();
27978         this.updateMPMonth(this.mpSelMonth);
27979         this.mpSelYear = (this.activeDate || this.value).getFullYear();
27980         this.updateMPYear(this.mpSelYear);
27981
27982         this.monthPicker.slideIn('t', {duration:.2});
27983     },
27984
27985     updateMPYear : function(y){
27986         this.mpyear = y;
27987         var ys = this.mpYears.elements;
27988         for(var i = 1; i <= 10; i++){
27989             var td = ys[i-1], y2;
27990             if((i%2) == 0){
27991                 y2 = y + Math.round(i * .5);
27992                 td.firstChild.innerHTML = y2;
27993                 td.xyear = y2;
27994             }else{
27995                 y2 = y - (5-Math.round(i * .5));
27996                 td.firstChild.innerHTML = y2;
27997                 td.xyear = y2;
27998             }
27999             this.mpYears.item(i-1)[y2 == this.mpSelYear ? 'addClass' : 'removeClass']('x-date-mp-sel');
28000         }
28001     },
28002
28003     updateMPMonth : function(sm){
28004         this.mpMonths.each(function(m, a, i){
28005             m[m.dom.xmonth == sm ? 'addClass' : 'removeClass']('x-date-mp-sel');
28006         });
28007     },
28008
28009     selectMPMonth: function(m){
28010         
28011     },
28012
28013     onMonthClick : function(e, t){
28014         e.stopEvent();
28015         var el = new Roo.Element(t), pn;
28016         if(el.is('button.x-date-mp-cancel')){
28017             this.hideMonthPicker();
28018         }
28019         else if(el.is('button.x-date-mp-ok')){
28020             this.update(new Date(this.mpSelYear, this.mpSelMonth, (this.activeDate || this.value).getDate()));
28021             this.hideMonthPicker();
28022         }
28023         else if(pn = el.up('td.x-date-mp-month', 2)){
28024             this.mpMonths.removeClass('x-date-mp-sel');
28025             pn.addClass('x-date-mp-sel');
28026             this.mpSelMonth = pn.dom.xmonth;
28027         }
28028         else if(pn = el.up('td.x-date-mp-year', 2)){
28029             this.mpYears.removeClass('x-date-mp-sel');
28030             pn.addClass('x-date-mp-sel');
28031             this.mpSelYear = pn.dom.xyear;
28032         }
28033         else if(el.is('a.x-date-mp-prev')){
28034             this.updateMPYear(this.mpyear-10);
28035         }
28036         else if(el.is('a.x-date-mp-next')){
28037             this.updateMPYear(this.mpyear+10);
28038         }
28039     },
28040
28041     onMonthDblClick : function(e, t){
28042         e.stopEvent();
28043         var el = new Roo.Element(t), pn;
28044         if(pn = el.up('td.x-date-mp-month', 2)){
28045             this.update(new Date(this.mpSelYear, pn.dom.xmonth, (this.activeDate || this.value).getDate()));
28046             this.hideMonthPicker();
28047         }
28048         else if(pn = el.up('td.x-date-mp-year', 2)){
28049             this.update(new Date(pn.dom.xyear, this.mpSelMonth, (this.activeDate || this.value).getDate()));
28050             this.hideMonthPicker();
28051         }
28052     },
28053
28054     hideMonthPicker : function(disableAnim){
28055         if(this.monthPicker){
28056             if(disableAnim === true){
28057                 this.monthPicker.hide();
28058             }else{
28059                 this.monthPicker.slideOut('t', {duration:.2});
28060             }
28061         }
28062     },
28063
28064     // private
28065     showPrevMonth : function(e){
28066         this.update(this.activeDate.add("mo", -1));
28067     },
28068
28069     // private
28070     showNextMonth : function(e){
28071         this.update(this.activeDate.add("mo", 1));
28072     },
28073
28074     // private
28075     showPrevYear : function(){
28076         this.update(this.activeDate.add("y", -1));
28077     },
28078
28079     // private
28080     showNextYear : function(){
28081         this.update(this.activeDate.add("y", 1));
28082     },
28083
28084     // private
28085     handleMouseWheel : function(e){
28086         var delta = e.getWheelDelta();
28087         if(delta > 0){
28088             this.showPrevMonth();
28089             e.stopEvent();
28090         } else if(delta < 0){
28091             this.showNextMonth();
28092             e.stopEvent();
28093         }
28094     },
28095
28096     // private
28097     handleDateClick : function(e, t){
28098         e.stopEvent();
28099         if(t.dateValue && !Roo.fly(t.parentNode).hasClass("x-date-disabled")){
28100             this.setValue(new Date(t.dateValue));
28101             this.fireEvent("select", this, this.value);
28102         }
28103     },
28104
28105     // private
28106     selectToday : function(){
28107         this.setValue(new Date().clearTime());
28108         this.fireEvent("select", this, this.value);
28109     },
28110
28111     // private
28112     update : function(date)
28113     {
28114         var vd = this.activeDate;
28115         this.activeDate = date;
28116         if(vd && this.el){
28117             var t = date.getTime();
28118             if(vd.getMonth() == date.getMonth() && vd.getFullYear() == date.getFullYear()){
28119                 this.cells.removeClass("x-date-selected");
28120                 this.cells.each(function(c){
28121                    if(c.dom.firstChild.dateValue == t){
28122                        c.addClass("x-date-selected");
28123                        setTimeout(function(){
28124                             try{c.dom.firstChild.focus();}catch(e){}
28125                        }, 50);
28126                        return false;
28127                    }
28128                 });
28129                 return;
28130             }
28131         }
28132         
28133         var days = date.getDaysInMonth();
28134         var firstOfMonth = date.getFirstDateOfMonth();
28135         var startingPos = firstOfMonth.getDay()-this.startDay;
28136
28137         if(startingPos <= this.startDay){
28138             startingPos += 7;
28139         }
28140
28141         var pm = date.add("mo", -1);
28142         var prevStart = pm.getDaysInMonth()-startingPos;
28143
28144         var cells = this.cells.elements;
28145         var textEls = this.textNodes;
28146         days += startingPos;
28147
28148         // convert everything to numbers so it's fast
28149         var day = 86400000;
28150         var d = (new Date(pm.getFullYear(), pm.getMonth(), prevStart)).clearTime();
28151         var today = new Date().clearTime().getTime();
28152         var sel = date.clearTime().getTime();
28153         var min = this.minDate ? this.minDate.clearTime() : Number.NEGATIVE_INFINITY;
28154         var max = this.maxDate ? this.maxDate.clearTime() : Number.POSITIVE_INFINITY;
28155         var ddMatch = this.disabledDatesRE;
28156         var ddText = this.disabledDatesText;
28157         var ddays = this.disabledDays ? this.disabledDays.join("") : false;
28158         var ddaysText = this.disabledDaysText;
28159         var format = this.format;
28160
28161         var setCellClass = function(cal, cell){
28162             cell.title = "";
28163             var t = d.getTime();
28164             cell.firstChild.dateValue = t;
28165             if(t == today){
28166                 cell.className += " x-date-today";
28167                 cell.title = cal.todayText;
28168             }
28169             if(t == sel){
28170                 cell.className += " x-date-selected";
28171                 setTimeout(function(){
28172                     try{cell.firstChild.focus();}catch(e){}
28173                 }, 50);
28174             }
28175             // disabling
28176             if(t < min) {
28177                 cell.className = " x-date-disabled";
28178                 cell.title = cal.minText;
28179                 return;
28180             }
28181             if(t > max) {
28182                 cell.className = " x-date-disabled";
28183                 cell.title = cal.maxText;
28184                 return;
28185             }
28186             if(ddays){
28187                 if(ddays.indexOf(d.getDay()) != -1){
28188                     cell.title = ddaysText;
28189                     cell.className = " x-date-disabled";
28190                 }
28191             }
28192             if(ddMatch && format){
28193                 var fvalue = d.dateFormat(format);
28194                 if(ddMatch.test(fvalue)){
28195                     cell.title = ddText.replace("%0", fvalue);
28196                     cell.className = " x-date-disabled";
28197                 }
28198             }
28199         };
28200
28201         var i = 0;
28202         for(; i < startingPos; i++) {
28203             textEls[i].innerHTML = (++prevStart);
28204             d.setDate(d.getDate()+1);
28205             cells[i].className = "x-date-prevday";
28206             setCellClass(this, cells[i]);
28207         }
28208         for(; i < days; i++){
28209             intDay = i - startingPos + 1;
28210             textEls[i].innerHTML = (intDay);
28211             d.setDate(d.getDate()+1);
28212             cells[i].className = "x-date-active";
28213             setCellClass(this, cells[i]);
28214         }
28215         var extraDays = 0;
28216         for(; i < 42; i++) {
28217              textEls[i].innerHTML = (++extraDays);
28218              d.setDate(d.getDate()+1);
28219              cells[i].className = "x-date-nextday";
28220              setCellClass(this, cells[i]);
28221         }
28222
28223         this.mbtn.setText(this.monthNames[date.getMonth()] + " " + date.getFullYear());
28224         this.fireEvent('monthchange', this, date);
28225         
28226         if(!this.internalRender){
28227             var main = this.el.dom.firstChild;
28228             var w = main.offsetWidth;
28229             this.el.setWidth(w + this.el.getBorderWidth("lr"));
28230             Roo.fly(main).setWidth(w);
28231             this.internalRender = true;
28232             // opera does not respect the auto grow header center column
28233             // then, after it gets a width opera refuses to recalculate
28234             // without a second pass
28235             if(Roo.isOpera && !this.secondPass){
28236                 main.rows[0].cells[1].style.width = (w - (main.rows[0].cells[0].offsetWidth+main.rows[0].cells[2].offsetWidth)) + "px";
28237                 this.secondPass = true;
28238                 this.update.defer(10, this, [date]);
28239             }
28240         }
28241         
28242         
28243     }
28244 });        /*
28245  * Based on:
28246  * Ext JS Library 1.1.1
28247  * Copyright(c) 2006-2007, Ext JS, LLC.
28248  *
28249  * Originally Released Under LGPL - original licence link has changed is not relivant.
28250  *
28251  * Fork - LGPL
28252  * <script type="text/javascript">
28253  */
28254 /**
28255  * @class Roo.TabPanel
28256  * @extends Roo.util.Observable
28257  * A lightweight tab container.
28258  * <br><br>
28259  * Usage:
28260  * <pre><code>
28261 // basic tabs 1, built from existing content
28262 var tabs = new Roo.TabPanel("tabs1");
28263 tabs.addTab("script", "View Script");
28264 tabs.addTab("markup", "View Markup");
28265 tabs.activate("script");
28266
28267 // more advanced tabs, built from javascript
28268 var jtabs = new Roo.TabPanel("jtabs");
28269 jtabs.addTab("jtabs-1", "Normal Tab", "My content was added during construction.");
28270
28271 // set up the UpdateManager
28272 var tab2 = jtabs.addTab("jtabs-2", "Ajax Tab 1");
28273 var updater = tab2.getUpdateManager();
28274 updater.setDefaultUrl("ajax1.htm");
28275 tab2.on('activate', updater.refresh, updater, true);
28276
28277 // Use setUrl for Ajax loading
28278 var tab3 = jtabs.addTab("jtabs-3", "Ajax Tab 2");
28279 tab3.setUrl("ajax2.htm", null, true);
28280
28281 // Disabled tab
28282 var tab4 = jtabs.addTab("tabs1-5", "Disabled Tab", "Can't see me cause I'm disabled");
28283 tab4.disable();
28284
28285 jtabs.activate("jtabs-1");
28286  * </code></pre>
28287  * @constructor
28288  * Create a new TabPanel.
28289  * @param {String/HTMLElement/Roo.Element} container The id, DOM element or Roo.Element container where this TabPanel is to be rendered.
28290  * @param {Object/Boolean} config Config object to set any properties for this TabPanel, or true to render the tabs on the bottom.
28291  */
28292 Roo.TabPanel = function(container, config){
28293     /**
28294     * The container element for this TabPanel.
28295     * @type Roo.Element
28296     */
28297     this.el = Roo.get(container, true);
28298     if(config){
28299         if(typeof config == "boolean"){
28300             this.tabPosition = config ? "bottom" : "top";
28301         }else{
28302             Roo.apply(this, config);
28303         }
28304     }
28305     if(this.tabPosition == "bottom"){
28306         this.bodyEl = Roo.get(this.createBody(this.el.dom));
28307         this.el.addClass("x-tabs-bottom");
28308     }
28309     this.stripWrap = Roo.get(this.createStrip(this.el.dom), true);
28310     this.stripEl = Roo.get(this.createStripList(this.stripWrap.dom), true);
28311     this.stripBody = Roo.get(this.stripWrap.dom.firstChild.firstChild, true);
28312     if(Roo.isIE){
28313         Roo.fly(this.stripWrap.dom.firstChild).setStyle("overflow-x", "hidden");
28314     }
28315     if(this.tabPosition != "bottom"){
28316         /** The body element that contains {@link Roo.TabPanelItem} bodies. +
28317          * @type Roo.Element
28318          */
28319         this.bodyEl = Roo.get(this.createBody(this.el.dom));
28320         this.el.addClass("x-tabs-top");
28321     }
28322     this.items = [];
28323
28324     this.bodyEl.setStyle("position", "relative");
28325
28326     this.active = null;
28327     this.activateDelegate = this.activate.createDelegate(this);
28328
28329     this.addEvents({
28330         /**
28331          * @event tabchange
28332          * Fires when the active tab changes
28333          * @param {Roo.TabPanel} this
28334          * @param {Roo.TabPanelItem} activePanel The new active tab
28335          */
28336         "tabchange": true,
28337         /**
28338          * @event beforetabchange
28339          * Fires before the active tab changes, set cancel to true on the "e" parameter to cancel the change
28340          * @param {Roo.TabPanel} this
28341          * @param {Object} e Set cancel to true on this object to cancel the tab change
28342          * @param {Roo.TabPanelItem} tab The tab being changed to
28343          */
28344         "beforetabchange" : true
28345     });
28346
28347     Roo.EventManager.onWindowResize(this.onResize, this);
28348     this.cpad = this.el.getPadding("lr");
28349     this.hiddenCount = 0;
28350
28351
28352     // toolbar on the tabbar support...
28353     if (this.toolbar) {
28354         var tcfg = this.toolbar;
28355         tcfg.container = this.stripEl.child('td.x-tab-strip-toolbar');  
28356         this.toolbar = new Roo.Toolbar(tcfg);
28357         if (Roo.isSafari) {
28358             var tbl = tcfg.container.child('table', true);
28359             tbl.setAttribute('width', '100%');
28360         }
28361         
28362     }
28363    
28364
28365
28366     Roo.TabPanel.superclass.constructor.call(this);
28367 };
28368
28369 Roo.extend(Roo.TabPanel, Roo.util.Observable, {
28370     /*
28371      *@cfg {String} tabPosition "top" or "bottom" (defaults to "top")
28372      */
28373     tabPosition : "top",
28374     /*
28375      *@cfg {Number} currentTabWidth The width of the current tab (defaults to 0)
28376      */
28377     currentTabWidth : 0,
28378     /*
28379      *@cfg {Number} minTabWidth The minimum width of a tab (defaults to 40) (ignored if {@link #resizeTabs} is not true)
28380      */
28381     minTabWidth : 40,
28382     /*
28383      *@cfg {Number} maxTabWidth The maximum width of a tab (defaults to 250) (ignored if {@link #resizeTabs} is not true)
28384      */
28385     maxTabWidth : 250,
28386     /*
28387      *@cfg {Number} preferredTabWidth The preferred (default) width of a tab (defaults to 175) (ignored if {@link #resizeTabs} is not true)
28388      */
28389     preferredTabWidth : 175,
28390     /*
28391      *@cfg {Boolean} resizeTabs True to enable dynamic tab resizing (defaults to false)
28392      */
28393     resizeTabs : false,
28394     /*
28395      *@cfg {Boolean} monitorResize Set this to true to turn on window resize monitoring (ignored if {@link #resizeTabs} is not true) (defaults to true)
28396      */
28397     monitorResize : true,
28398     /*
28399      *@cfg {Object} toolbar xtype description of toolbar to show at the right of the tab bar. 
28400      */
28401     toolbar : false,
28402
28403     /**
28404      * Creates a new {@link Roo.TabPanelItem} by looking for an existing element with the provided id -- if it's not found it creates one.
28405      * @param {String} id The id of the div to use <b>or create</b>
28406      * @param {String} text The text for the tab
28407      * @param {String} content (optional) Content to put in the TabPanelItem body
28408      * @param {Boolean} closable (optional) True to create a close icon on the tab
28409      * @return {Roo.TabPanelItem} The created TabPanelItem
28410      */
28411     addTab : function(id, text, content, closable){
28412         var item = new Roo.TabPanelItem(this, id, text, closable);
28413         this.addTabItem(item);
28414         if(content){
28415             item.setContent(content);
28416         }
28417         return item;
28418     },
28419
28420     /**
28421      * Returns the {@link Roo.TabPanelItem} with the specified id/index
28422      * @param {String/Number} id The id or index of the TabPanelItem to fetch.
28423      * @return {Roo.TabPanelItem}
28424      */
28425     getTab : function(id){
28426         return this.items[id];
28427     },
28428
28429     /**
28430      * Hides the {@link Roo.TabPanelItem} with the specified id/index
28431      * @param {String/Number} id The id or index of the TabPanelItem to hide.
28432      */
28433     hideTab : function(id){
28434         var t = this.items[id];
28435         if(!t.isHidden()){
28436            t.setHidden(true);
28437            this.hiddenCount++;
28438            this.autoSizeTabs();
28439         }
28440     },
28441
28442     /**
28443      * "Unhides" the {@link Roo.TabPanelItem} with the specified id/index.
28444      * @param {String/Number} id The id or index of the TabPanelItem to unhide.
28445      */
28446     unhideTab : function(id){
28447         var t = this.items[id];
28448         if(t.isHidden()){
28449            t.setHidden(false);
28450            this.hiddenCount--;
28451            this.autoSizeTabs();
28452         }
28453     },
28454
28455     /**
28456      * Adds an existing {@link Roo.TabPanelItem}.
28457      * @param {Roo.TabPanelItem} item The TabPanelItem to add
28458      */
28459     addTabItem : function(item){
28460         this.items[item.id] = item;
28461         this.items.push(item);
28462         if(this.resizeTabs){
28463            item.setWidth(this.currentTabWidth || this.preferredTabWidth);
28464            this.autoSizeTabs();
28465         }else{
28466             item.autoSize();
28467         }
28468     },
28469
28470     /**
28471      * Removes a {@link Roo.TabPanelItem}.
28472      * @param {String/Number} id The id or index of the TabPanelItem to remove.
28473      */
28474     removeTab : function(id){
28475         var items = this.items;
28476         var tab = items[id];
28477         if(!tab) { return; }
28478         var index = items.indexOf(tab);
28479         if(this.active == tab && items.length > 1){
28480             var newTab = this.getNextAvailable(index);
28481             if(newTab) {
28482                 newTab.activate();
28483             }
28484         }
28485         this.stripEl.dom.removeChild(tab.pnode.dom);
28486         if(tab.bodyEl.dom.parentNode == this.bodyEl.dom){ // if it was moved already prevent error
28487             this.bodyEl.dom.removeChild(tab.bodyEl.dom);
28488         }
28489         items.splice(index, 1);
28490         delete this.items[tab.id];
28491         tab.fireEvent("close", tab);
28492         tab.purgeListeners();
28493         this.autoSizeTabs();
28494     },
28495
28496     getNextAvailable : function(start){
28497         var items = this.items;
28498         var index = start;
28499         // look for a next tab that will slide over to
28500         // replace the one being removed
28501         while(index < items.length){
28502             var item = items[++index];
28503             if(item && !item.isHidden()){
28504                 return item;
28505             }
28506         }
28507         // if one isn't found select the previous tab (on the left)
28508         index = start;
28509         while(index >= 0){
28510             var item = items[--index];
28511             if(item && !item.isHidden()){
28512                 return item;
28513             }
28514         }
28515         return null;
28516     },
28517
28518     /**
28519      * Disables a {@link Roo.TabPanelItem}. It cannot be the active tab, if it is this call is ignored.
28520      * @param {String/Number} id The id or index of the TabPanelItem to disable.
28521      */
28522     disableTab : function(id){
28523         var tab = this.items[id];
28524         if(tab && this.active != tab){
28525             tab.disable();
28526         }
28527     },
28528
28529     /**
28530      * Enables a {@link Roo.TabPanelItem} that is disabled.
28531      * @param {String/Number} id The id or index of the TabPanelItem to enable.
28532      */
28533     enableTab : function(id){
28534         var tab = this.items[id];
28535         tab.enable();
28536     },
28537
28538     /**
28539      * Activates a {@link Roo.TabPanelItem}. The currently active one will be deactivated.
28540      * @param {String/Number} id The id or index of the TabPanelItem to activate.
28541      * @return {Roo.TabPanelItem} The TabPanelItem.
28542      */
28543     activate : function(id){
28544         var tab = this.items[id];
28545         if(!tab){
28546             return null;
28547         }
28548         if(tab == this.active || tab.disabled){
28549             return tab;
28550         }
28551         var e = {};
28552         this.fireEvent("beforetabchange", this, e, tab);
28553         if(e.cancel !== true && !tab.disabled){
28554             if(this.active){
28555                 this.active.hide();
28556             }
28557             this.active = this.items[id];
28558             this.active.show();
28559             this.fireEvent("tabchange", this, this.active);
28560         }
28561         return tab;
28562     },
28563
28564     /**
28565      * Gets the active {@link Roo.TabPanelItem}.
28566      * @return {Roo.TabPanelItem} The active TabPanelItem or null if none are active.
28567      */
28568     getActiveTab : function(){
28569         return this.active;
28570     },
28571
28572     /**
28573      * Updates the tab body element to fit the height of the container element
28574      * for overflow scrolling
28575      * @param {Number} targetHeight (optional) Override the starting height from the elements height
28576      */
28577     syncHeight : function(targetHeight){
28578         var height = (targetHeight || this.el.getHeight())-this.el.getBorderWidth("tb")-this.el.getPadding("tb");
28579         var bm = this.bodyEl.getMargins();
28580         var newHeight = height-(this.stripWrap.getHeight()||0)-(bm.top+bm.bottom);
28581         this.bodyEl.setHeight(newHeight);
28582         return newHeight;
28583     },
28584
28585     onResize : function(){
28586         if(this.monitorResize){
28587             this.autoSizeTabs();
28588         }
28589     },
28590
28591     /**
28592      * Disables tab resizing while tabs are being added (if {@link #resizeTabs} is false this does nothing)
28593      */
28594     beginUpdate : function(){
28595         this.updating = true;
28596     },
28597
28598     /**
28599      * Stops an update and resizes the tabs (if {@link #resizeTabs} is false this does nothing)
28600      */
28601     endUpdate : function(){
28602         this.updating = false;
28603         this.autoSizeTabs();
28604     },
28605
28606     /**
28607      * Manual call to resize the tabs (if {@link #resizeTabs} is false this does nothing)
28608      */
28609     autoSizeTabs : function(){
28610         var count = this.items.length;
28611         var vcount = count - this.hiddenCount;
28612         if(!this.resizeTabs || count < 1 || vcount < 1 || this.updating) {
28613             return;
28614         }
28615         var w = Math.max(this.el.getWidth() - this.cpad, 10);
28616         var availWidth = Math.floor(w / vcount);
28617         var b = this.stripBody;
28618         if(b.getWidth() > w){
28619             var tabs = this.items;
28620             this.setTabWidth(Math.max(availWidth, this.minTabWidth)-2);
28621             if(availWidth < this.minTabWidth){
28622                 /*if(!this.sleft){    // incomplete scrolling code
28623                     this.createScrollButtons();
28624                 }
28625                 this.showScroll();
28626                 this.stripClip.setWidth(w - (this.sleft.getWidth()+this.sright.getWidth()));*/
28627             }
28628         }else{
28629             if(this.currentTabWidth < this.preferredTabWidth){
28630                 this.setTabWidth(Math.min(availWidth, this.preferredTabWidth)-2);
28631             }
28632         }
28633     },
28634
28635     /**
28636      * Returns the number of tabs in this TabPanel.
28637      * @return {Number}
28638      */
28639      getCount : function(){
28640          return this.items.length;
28641      },
28642
28643     /**
28644      * Resizes all the tabs to the passed width
28645      * @param {Number} The new width
28646      */
28647     setTabWidth : function(width){
28648         this.currentTabWidth = width;
28649         for(var i = 0, len = this.items.length; i < len; i++) {
28650                 if(!this.items[i].isHidden()) {
28651                 this.items[i].setWidth(width);
28652             }
28653         }
28654     },
28655
28656     /**
28657      * Destroys this TabPanel
28658      * @param {Boolean} removeEl (optional) True to remove the element from the DOM as well (defaults to undefined)
28659      */
28660     destroy : function(removeEl){
28661         Roo.EventManager.removeResizeListener(this.onResize, this);
28662         for(var i = 0, len = this.items.length; i < len; i++){
28663             this.items[i].purgeListeners();
28664         }
28665         if(removeEl === true){
28666             this.el.update("");
28667             this.el.remove();
28668         }
28669     }
28670 });
28671
28672 /**
28673  * @class Roo.TabPanelItem
28674  * @extends Roo.util.Observable
28675  * Represents an individual item (tab plus body) in a TabPanel.
28676  * @param {Roo.TabPanel} tabPanel The {@link Roo.TabPanel} this TabPanelItem belongs to
28677  * @param {String} id The id of this TabPanelItem
28678  * @param {String} text The text for the tab of this TabPanelItem
28679  * @param {Boolean} closable True to allow this TabPanelItem to be closable (defaults to false)
28680  */
28681 Roo.TabPanelItem = function(tabPanel, id, text, closable){
28682     /**
28683      * The {@link Roo.TabPanel} this TabPanelItem belongs to
28684      * @type Roo.TabPanel
28685      */
28686     this.tabPanel = tabPanel;
28687     /**
28688      * The id for this TabPanelItem
28689      * @type String
28690      */
28691     this.id = id;
28692     /** @private */
28693     this.disabled = false;
28694     /** @private */
28695     this.text = text;
28696     /** @private */
28697     this.loaded = false;
28698     this.closable = closable;
28699
28700     /**
28701      * The body element for this TabPanelItem.
28702      * @type Roo.Element
28703      */
28704     this.bodyEl = Roo.get(tabPanel.createItemBody(tabPanel.bodyEl.dom, id));
28705     this.bodyEl.setVisibilityMode(Roo.Element.VISIBILITY);
28706     this.bodyEl.setStyle("display", "block");
28707     this.bodyEl.setStyle("zoom", "1");
28708     this.hideAction();
28709
28710     var els = tabPanel.createStripElements(tabPanel.stripEl.dom, text, closable);
28711     /** @private */
28712     this.el = Roo.get(els.el, true);
28713     this.inner = Roo.get(els.inner, true);
28714     this.textEl = Roo.get(this.el.dom.firstChild.firstChild.firstChild, true);
28715     this.pnode = Roo.get(els.el.parentNode, true);
28716     this.el.on("mousedown", this.onTabMouseDown, this);
28717     this.el.on("click", this.onTabClick, this);
28718     /** @private */
28719     if(closable){
28720         var c = Roo.get(els.close, true);
28721         c.dom.title = this.closeText;
28722         c.addClassOnOver("close-over");
28723         c.on("click", this.closeClick, this);
28724      }
28725
28726     this.addEvents({
28727          /**
28728          * @event activate
28729          * Fires when this tab becomes the active tab.
28730          * @param {Roo.TabPanel} tabPanel The parent TabPanel
28731          * @param {Roo.TabPanelItem} this
28732          */
28733         "activate": true,
28734         /**
28735          * @event beforeclose
28736          * Fires before this tab is closed. To cancel the close, set cancel to true on e (e.cancel = true).
28737          * @param {Roo.TabPanelItem} this
28738          * @param {Object} e Set cancel to true on this object to cancel the close.
28739          */
28740         "beforeclose": true,
28741         /**
28742          * @event close
28743          * Fires when this tab is closed.
28744          * @param {Roo.TabPanelItem} this
28745          */
28746          "close": true,
28747         /**
28748          * @event deactivate
28749          * Fires when this tab is no longer the active tab.
28750          * @param {Roo.TabPanel} tabPanel The parent TabPanel
28751          * @param {Roo.TabPanelItem} this
28752          */
28753          "deactivate" : true
28754     });
28755     this.hidden = false;
28756
28757     Roo.TabPanelItem.superclass.constructor.call(this);
28758 };
28759
28760 Roo.extend(Roo.TabPanelItem, Roo.util.Observable, {
28761     purgeListeners : function(){
28762        Roo.util.Observable.prototype.purgeListeners.call(this);
28763        this.el.removeAllListeners();
28764     },
28765     /**
28766      * Shows this TabPanelItem -- this <b>does not</b> deactivate the currently active TabPanelItem.
28767      */
28768     show : function(){
28769         this.pnode.addClass("on");
28770         this.showAction();
28771         if(Roo.isOpera){
28772             this.tabPanel.stripWrap.repaint();
28773         }
28774         this.fireEvent("activate", this.tabPanel, this);
28775     },
28776
28777     /**
28778      * Returns true if this tab is the active tab.
28779      * @return {Boolean}
28780      */
28781     isActive : function(){
28782         return this.tabPanel.getActiveTab() == this;
28783     },
28784
28785     /**
28786      * Hides this TabPanelItem -- if you don't activate another TabPanelItem this could look odd.
28787      */
28788     hide : function(){
28789         this.pnode.removeClass("on");
28790         this.hideAction();
28791         this.fireEvent("deactivate", this.tabPanel, this);
28792     },
28793
28794     hideAction : function(){
28795         this.bodyEl.hide();
28796         this.bodyEl.setStyle("position", "absolute");
28797         this.bodyEl.setLeft("-20000px");
28798         this.bodyEl.setTop("-20000px");
28799     },
28800
28801     showAction : function(){
28802         this.bodyEl.setStyle("position", "relative");
28803         this.bodyEl.setTop("");
28804         this.bodyEl.setLeft("");
28805         this.bodyEl.show();
28806     },
28807
28808     /**
28809      * Set the tooltip for the tab.
28810      * @param {String} tooltip The tab's tooltip
28811      */
28812     setTooltip : function(text){
28813         if(Roo.QuickTips && Roo.QuickTips.isEnabled()){
28814             this.textEl.dom.qtip = text;
28815             this.textEl.dom.removeAttribute('title');
28816         }else{
28817             this.textEl.dom.title = text;
28818         }
28819     },
28820
28821     onTabClick : function(e){
28822         e.preventDefault();
28823         this.tabPanel.activate(this.id);
28824     },
28825
28826     onTabMouseDown : function(e){
28827         e.preventDefault();
28828         this.tabPanel.activate(this.id);
28829     },
28830
28831     getWidth : function(){
28832         return this.inner.getWidth();
28833     },
28834
28835     setWidth : function(width){
28836         var iwidth = width - this.pnode.getPadding("lr");
28837         this.inner.setWidth(iwidth);
28838         this.textEl.setWidth(iwidth-this.inner.getPadding("lr"));
28839         this.pnode.setWidth(width);
28840     },
28841
28842     /**
28843      * Show or hide the tab
28844      * @param {Boolean} hidden True to hide or false to show.
28845      */
28846     setHidden : function(hidden){
28847         this.hidden = hidden;
28848         this.pnode.setStyle("display", hidden ? "none" : "");
28849     },
28850
28851     /**
28852      * Returns true if this tab is "hidden"
28853      * @return {Boolean}
28854      */
28855     isHidden : function(){
28856         return this.hidden;
28857     },
28858
28859     /**
28860      * Returns the text for this tab
28861      * @return {String}
28862      */
28863     getText : function(){
28864         return this.text;
28865     },
28866
28867     autoSize : function(){
28868         //this.el.beginMeasure();
28869         this.textEl.setWidth(1);
28870         /*
28871          *  #2804 [new] Tabs in Roojs
28872          *  increase the width by 2-4 pixels to prevent the ellipssis showing in chrome
28873          */
28874         this.setWidth(this.textEl.dom.scrollWidth+this.pnode.getPadding("lr")+this.inner.getPadding("lr") + 2);
28875         //this.el.endMeasure();
28876     },
28877
28878     /**
28879      * Sets the text for the tab (Note: this also sets the tooltip text)
28880      * @param {String} text The tab's text and tooltip
28881      */
28882     setText : function(text){
28883         this.text = text;
28884         this.textEl.update(text);
28885         this.setTooltip(text);
28886         if(!this.tabPanel.resizeTabs){
28887             this.autoSize();
28888         }
28889     },
28890     /**
28891      * Activates this TabPanelItem -- this <b>does</b> deactivate the currently active TabPanelItem.
28892      */
28893     activate : function(){
28894         this.tabPanel.activate(this.id);
28895     },
28896
28897     /**
28898      * Disables this TabPanelItem -- this does nothing if this is the active TabPanelItem.
28899      */
28900     disable : function(){
28901         if(this.tabPanel.active != this){
28902             this.disabled = true;
28903             this.pnode.addClass("disabled");
28904         }
28905     },
28906
28907     /**
28908      * Enables this TabPanelItem if it was previously disabled.
28909      */
28910     enable : function(){
28911         this.disabled = false;
28912         this.pnode.removeClass("disabled");
28913     },
28914
28915     /**
28916      * Sets the content for this TabPanelItem.
28917      * @param {String} content The content
28918      * @param {Boolean} loadScripts true to look for and load scripts
28919      */
28920     setContent : function(content, loadScripts){
28921         this.bodyEl.update(content, loadScripts);
28922     },
28923
28924     /**
28925      * Gets the {@link Roo.UpdateManager} for the body of this TabPanelItem. Enables you to perform Ajax updates.
28926      * @return {Roo.UpdateManager} The UpdateManager
28927      */
28928     getUpdateManager : function(){
28929         return this.bodyEl.getUpdateManager();
28930     },
28931
28932     /**
28933      * Set a URL to be used to load the content for this TabPanelItem.
28934      * @param {String/Function} url The URL to load the content from, or a function to call to get the URL
28935      * @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)
28936      * @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)
28937      * @return {Roo.UpdateManager} The UpdateManager
28938      */
28939     setUrl : function(url, params, loadOnce){
28940         if(this.refreshDelegate){
28941             this.un('activate', this.refreshDelegate);
28942         }
28943         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
28944         this.on("activate", this.refreshDelegate);
28945         return this.bodyEl.getUpdateManager();
28946     },
28947
28948     /** @private */
28949     _handleRefresh : function(url, params, loadOnce){
28950         if(!loadOnce || !this.loaded){
28951             var updater = this.bodyEl.getUpdateManager();
28952             updater.update(url, params, this._setLoaded.createDelegate(this));
28953         }
28954     },
28955
28956     /**
28957      *   Forces a content refresh from the URL specified in the {@link #setUrl} method.
28958      *   Will fail silently if the setUrl method has not been called.
28959      *   This does not activate the panel, just updates its content.
28960      */
28961     refresh : function(){
28962         if(this.refreshDelegate){
28963            this.loaded = false;
28964            this.refreshDelegate();
28965         }
28966     },
28967
28968     /** @private */
28969     _setLoaded : function(){
28970         this.loaded = true;
28971     },
28972
28973     /** @private */
28974     closeClick : function(e){
28975         var o = {};
28976         e.stopEvent();
28977         this.fireEvent("beforeclose", this, o);
28978         if(o.cancel !== true){
28979             this.tabPanel.removeTab(this.id);
28980         }
28981     },
28982     /**
28983      * The text displayed in the tooltip for the close icon.
28984      * @type String
28985      */
28986     closeText : "Close this tab"
28987 });
28988
28989 /** @private */
28990 Roo.TabPanel.prototype.createStrip = function(container){
28991     var strip = document.createElement("div");
28992     strip.className = "x-tabs-wrap";
28993     container.appendChild(strip);
28994     return strip;
28995 };
28996 /** @private */
28997 Roo.TabPanel.prototype.createStripList = function(strip){
28998     // div wrapper for retard IE
28999     // returns the "tr" element.
29000     strip.innerHTML = '<div class="x-tabs-strip-wrap">'+
29001         '<table class="x-tabs-strip" cellspacing="0" cellpadding="0" border="0"><tbody><tr>'+
29002         '<td class="x-tab-strip-toolbar"></td></tr></tbody></table></div>';
29003     return strip.firstChild.firstChild.firstChild.firstChild;
29004 };
29005 /** @private */
29006 Roo.TabPanel.prototype.createBody = function(container){
29007     var body = document.createElement("div");
29008     Roo.id(body, "tab-body");
29009     Roo.fly(body).addClass("x-tabs-body");
29010     container.appendChild(body);
29011     return body;
29012 };
29013 /** @private */
29014 Roo.TabPanel.prototype.createItemBody = function(bodyEl, id){
29015     var body = Roo.getDom(id);
29016     if(!body){
29017         body = document.createElement("div");
29018         body.id = id;
29019     }
29020     Roo.fly(body).addClass("x-tabs-item-body");
29021     bodyEl.insertBefore(body, bodyEl.firstChild);
29022     return body;
29023 };
29024 /** @private */
29025 Roo.TabPanel.prototype.createStripElements = function(stripEl, text, closable){
29026     var td = document.createElement("td");
29027     stripEl.insertBefore(td, stripEl.childNodes[stripEl.childNodes.length-1]);
29028     //stripEl.appendChild(td);
29029     if(closable){
29030         td.className = "x-tabs-closable";
29031         if(!this.closeTpl){
29032             this.closeTpl = new Roo.Template(
29033                '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
29034                '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span>' +
29035                '<div unselectable="on" class="close-icon">&#160;</div></em></span></a>'
29036             );
29037         }
29038         var el = this.closeTpl.overwrite(td, {"text": text});
29039         var close = el.getElementsByTagName("div")[0];
29040         var inner = el.getElementsByTagName("em")[0];
29041         return {"el": el, "close": close, "inner": inner};
29042     } else {
29043         if(!this.tabTpl){
29044             this.tabTpl = new Roo.Template(
29045                '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
29046                '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span></em></span></a>'
29047             );
29048         }
29049         var el = this.tabTpl.overwrite(td, {"text": text});
29050         var inner = el.getElementsByTagName("em")[0];
29051         return {"el": el, "inner": inner};
29052     }
29053 };/*
29054  * Based on:
29055  * Ext JS Library 1.1.1
29056  * Copyright(c) 2006-2007, Ext JS, LLC.
29057  *
29058  * Originally Released Under LGPL - original licence link has changed is not relivant.
29059  *
29060  * Fork - LGPL
29061  * <script type="text/javascript">
29062  */
29063
29064 /**
29065  * @class Roo.Button
29066  * @extends Roo.util.Observable
29067  * Simple Button class
29068  * @cfg {String} text The button text
29069  * @cfg {String} icon The path to an image to display in the button (the image will be set as the background-image
29070  * CSS property of the button by default, so if you want a mixed icon/text button, set cls:"x-btn-text-icon")
29071  * @cfg {Function} handler A function called when the button is clicked (can be used instead of click event)
29072  * @cfg {Object} scope The scope of the handler
29073  * @cfg {Number} minWidth The minimum width for this button (used to give a set of buttons a common width)
29074  * @cfg {String/Object} tooltip The tooltip for the button - can be a string or QuickTips config object
29075  * @cfg {Boolean} hidden True to start hidden (defaults to false)
29076  * @cfg {Boolean} disabled True to start disabled (defaults to false)
29077  * @cfg {Boolean} pressed True to start pressed (only if enableToggle = true)
29078  * @cfg {String} toggleGroup The group this toggle button is a member of (only 1 per group can be pressed, only
29079    applies if enableToggle = true)
29080  * @cfg {String/HTMLElement/Element} renderTo The element to append the button to
29081  * @cfg {Boolean/Object} repeat True to repeat fire the click event while the mouse is down. This can also be
29082   an {@link Roo.util.ClickRepeater} config object (defaults to false).
29083  * @constructor
29084  * Create a new button
29085  * @param {Object} config The config object
29086  */
29087 Roo.Button = function(renderTo, config)
29088 {
29089     if (!config) {
29090         config = renderTo;
29091         renderTo = config.renderTo || false;
29092     }
29093     
29094     Roo.apply(this, config);
29095     this.addEvents({
29096         /**
29097              * @event click
29098              * Fires when this button is clicked
29099              * @param {Button} this
29100              * @param {EventObject} e The click event
29101              */
29102             "click" : true,
29103         /**
29104              * @event toggle
29105              * Fires when the "pressed" state of this button changes (only if enableToggle = true)
29106              * @param {Button} this
29107              * @param {Boolean} pressed
29108              */
29109             "toggle" : true,
29110         /**
29111              * @event mouseover
29112              * Fires when the mouse hovers over the button
29113              * @param {Button} this
29114              * @param {Event} e The event object
29115              */
29116         'mouseover' : true,
29117         /**
29118              * @event mouseout
29119              * Fires when the mouse exits the button
29120              * @param {Button} this
29121              * @param {Event} e The event object
29122              */
29123         'mouseout': true,
29124          /**
29125              * @event render
29126              * Fires when the button is rendered
29127              * @param {Button} this
29128              */
29129         'render': true
29130     });
29131     if(this.menu){
29132         this.menu = Roo.menu.MenuMgr.get(this.menu);
29133     }
29134     // register listeners first!!  - so render can be captured..
29135     Roo.util.Observable.call(this);
29136     if(renderTo){
29137         this.render(renderTo);
29138     }
29139     
29140   
29141 };
29142
29143 Roo.extend(Roo.Button, Roo.util.Observable, {
29144     /**
29145      * 
29146      */
29147     
29148     /**
29149      * Read-only. True if this button is hidden
29150      * @type Boolean
29151      */
29152     hidden : false,
29153     /**
29154      * Read-only. True if this button is disabled
29155      * @type Boolean
29156      */
29157     disabled : false,
29158     /**
29159      * Read-only. True if this button is pressed (only if enableToggle = true)
29160      * @type Boolean
29161      */
29162     pressed : false,
29163
29164     /**
29165      * @cfg {Number} tabIndex 
29166      * The DOM tabIndex for this button (defaults to undefined)
29167      */
29168     tabIndex : undefined,
29169
29170     /**
29171      * @cfg {Boolean} enableToggle
29172      * True to enable pressed/not pressed toggling (defaults to false)
29173      */
29174     enableToggle: false,
29175     /**
29176      * @cfg {Mixed} menu
29177      * Standard menu attribute consisting of a reference to a menu object, a menu id or a menu config blob (defaults to undefined).
29178      */
29179     menu : undefined,
29180     /**
29181      * @cfg {String} menuAlign
29182      * The position to align the menu to (see {@link Roo.Element#alignTo} for more details, defaults to 'tl-bl?').
29183      */
29184     menuAlign : "tl-bl?",
29185
29186     /**
29187      * @cfg {String} iconCls
29188      * A css class which sets a background image to be used as the icon for this button (defaults to undefined).
29189      */
29190     iconCls : undefined,
29191     /**
29192      * @cfg {String} type
29193      * The button's type, corresponding to the DOM input element type attribute.  Either "submit," "reset" or "button" (default).
29194      */
29195     type : 'button',
29196
29197     // private
29198     menuClassTarget: 'tr',
29199
29200     /**
29201      * @cfg {String} clickEvent
29202      * The type of event to map to the button's event handler (defaults to 'click')
29203      */
29204     clickEvent : 'click',
29205
29206     /**
29207      * @cfg {Boolean} handleMouseEvents
29208      * False to disable visual cues on mouseover, mouseout and mousedown (defaults to true)
29209      */
29210     handleMouseEvents : true,
29211
29212     /**
29213      * @cfg {String} tooltipType
29214      * The type of tooltip to use. Either "qtip" (default) for QuickTips or "title" for title attribute.
29215      */
29216     tooltipType : 'qtip',
29217
29218     /**
29219      * @cfg {String} cls
29220      * A CSS class to apply to the button's main element.
29221      */
29222     
29223     /**
29224      * @cfg {Roo.Template} template (Optional)
29225      * An {@link Roo.Template} with which to create the Button's main element. This Template must
29226      * contain numeric substitution parameter 0 if it is to display the tRoo property. Changing the template could
29227      * require code modifications if required elements (e.g. a button) aren't present.
29228      */
29229
29230     // private
29231     render : function(renderTo){
29232         var btn;
29233         if(this.hideParent){
29234             this.parentEl = Roo.get(renderTo);
29235         }
29236         if(!this.dhconfig){
29237             if(!this.template){
29238                 if(!Roo.Button.buttonTemplate){
29239                     // hideous table template
29240                     Roo.Button.buttonTemplate = new Roo.Template(
29241                         '<table border="0" cellpadding="0" cellspacing="0" class="x-btn-wrap"><tbody><tr>',
29242                         '<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>',
29243                         "</tr></tbody></table>");
29244                 }
29245                 this.template = Roo.Button.buttonTemplate;
29246             }
29247             btn = this.template.append(renderTo, [this.text || '&#160;', this.type], true);
29248             var btnEl = btn.child("button:first");
29249             btnEl.on('focus', this.onFocus, this);
29250             btnEl.on('blur', this.onBlur, this);
29251             if(this.cls){
29252                 btn.addClass(this.cls);
29253             }
29254             if(this.icon){
29255                 btnEl.setStyle('background-image', 'url(' +this.icon +')');
29256             }
29257             if(this.iconCls){
29258                 btnEl.addClass(this.iconCls);
29259                 if(!this.cls){
29260                     btn.addClass(this.text ? 'x-btn-text-icon' : 'x-btn-icon');
29261                 }
29262             }
29263             if(this.tabIndex !== undefined){
29264                 btnEl.dom.tabIndex = this.tabIndex;
29265             }
29266             if(this.tooltip){
29267                 if(typeof this.tooltip == 'object'){
29268                     Roo.QuickTips.tips(Roo.apply({
29269                           target: btnEl.id
29270                     }, this.tooltip));
29271                 } else {
29272                     btnEl.dom[this.tooltipType] = this.tooltip;
29273                 }
29274             }
29275         }else{
29276             btn = Roo.DomHelper.append(Roo.get(renderTo).dom, this.dhconfig, true);
29277         }
29278         this.el = btn;
29279         if(this.id){
29280             this.el.dom.id = this.el.id = this.id;
29281         }
29282         if(this.menu){
29283             this.el.child(this.menuClassTarget).addClass("x-btn-with-menu");
29284             this.menu.on("show", this.onMenuShow, this);
29285             this.menu.on("hide", this.onMenuHide, this);
29286         }
29287         btn.addClass("x-btn");
29288         if(Roo.isIE && !Roo.isIE7){
29289             this.autoWidth.defer(1, this);
29290         }else{
29291             this.autoWidth();
29292         }
29293         if(this.handleMouseEvents){
29294             btn.on("mouseover", this.onMouseOver, this);
29295             btn.on("mouseout", this.onMouseOut, this);
29296             btn.on("mousedown", this.onMouseDown, this);
29297         }
29298         btn.on(this.clickEvent, this.onClick, this);
29299         //btn.on("mouseup", this.onMouseUp, this);
29300         if(this.hidden){
29301             this.hide();
29302         }
29303         if(this.disabled){
29304             this.disable();
29305         }
29306         Roo.ButtonToggleMgr.register(this);
29307         if(this.pressed){
29308             this.el.addClass("x-btn-pressed");
29309         }
29310         if(this.repeat){
29311             var repeater = new Roo.util.ClickRepeater(btn,
29312                 typeof this.repeat == "object" ? this.repeat : {}
29313             );
29314             repeater.on("click", this.onClick,  this);
29315         }
29316         
29317         this.fireEvent('render', this);
29318         
29319     },
29320     /**
29321      * Returns the button's underlying element
29322      * @return {Roo.Element} The element
29323      */
29324     getEl : function(){
29325         return this.el;  
29326     },
29327     
29328     /**
29329      * Destroys this Button and removes any listeners.
29330      */
29331     destroy : function(){
29332         Roo.ButtonToggleMgr.unregister(this);
29333         this.el.removeAllListeners();
29334         this.purgeListeners();
29335         this.el.remove();
29336     },
29337
29338     // private
29339     autoWidth : function(){
29340         if(this.el){
29341             this.el.setWidth("auto");
29342             if(Roo.isIE7 && Roo.isStrict){
29343                 var ib = this.el.child('button');
29344                 if(ib && ib.getWidth() > 20){
29345                     ib.clip();
29346                     ib.setWidth(Roo.util.TextMetrics.measure(ib, this.text).width+ib.getFrameWidth('lr'));
29347                 }
29348             }
29349             if(this.minWidth){
29350                 if(this.hidden){
29351                     this.el.beginMeasure();
29352                 }
29353                 if(this.el.getWidth() < this.minWidth){
29354                     this.el.setWidth(this.minWidth);
29355                 }
29356                 if(this.hidden){
29357                     this.el.endMeasure();
29358                 }
29359             }
29360         }
29361     },
29362
29363     /**
29364      * Assigns this button's click handler
29365      * @param {Function} handler The function to call when the button is clicked
29366      * @param {Object} scope (optional) Scope for the function passed in
29367      */
29368     setHandler : function(handler, scope){
29369         this.handler = handler;
29370         this.scope = scope;  
29371     },
29372     
29373     /**
29374      * Sets this button's text
29375      * @param {String} text The button text
29376      */
29377     setText : function(text){
29378         this.text = text;
29379         if(this.el){
29380             this.el.child("td.x-btn-center button.x-btn-text").update(text);
29381         }
29382         this.autoWidth();
29383     },
29384     
29385     /**
29386      * Gets the text for this button
29387      * @return {String} The button text
29388      */
29389     getText : function(){
29390         return this.text;  
29391     },
29392     
29393     /**
29394      * Show this button
29395      */
29396     show: function(){
29397         this.hidden = false;
29398         if(this.el){
29399             this[this.hideParent? 'parentEl' : 'el'].setStyle("display", "");
29400         }
29401     },
29402     
29403     /**
29404      * Hide this button
29405      */
29406     hide: function(){
29407         this.hidden = true;
29408         if(this.el){
29409             this[this.hideParent? 'parentEl' : 'el'].setStyle("display", "none");
29410         }
29411     },
29412     
29413     /**
29414      * Convenience function for boolean show/hide
29415      * @param {Boolean} visible True to show, false to hide
29416      */
29417     setVisible: function(visible){
29418         if(visible) {
29419             this.show();
29420         }else{
29421             this.hide();
29422         }
29423     },
29424     
29425     /**
29426      * If a state it passed, it becomes the pressed state otherwise the current state is toggled.
29427      * @param {Boolean} state (optional) Force a particular state
29428      */
29429     toggle : function(state){
29430         state = state === undefined ? !this.pressed : state;
29431         if(state != this.pressed){
29432             if(state){
29433                 this.el.addClass("x-btn-pressed");
29434                 this.pressed = true;
29435                 this.fireEvent("toggle", this, true);
29436             }else{
29437                 this.el.removeClass("x-btn-pressed");
29438                 this.pressed = false;
29439                 this.fireEvent("toggle", this, false);
29440             }
29441             if(this.toggleHandler){
29442                 this.toggleHandler.call(this.scope || this, this, state);
29443             }
29444         }
29445     },
29446     
29447     /**
29448      * Focus the button
29449      */
29450     focus : function(){
29451         this.el.child('button:first').focus();
29452     },
29453     
29454     /**
29455      * Disable this button
29456      */
29457     disable : function(){
29458         if(this.el){
29459             this.el.addClass("x-btn-disabled");
29460         }
29461         this.disabled = true;
29462     },
29463     
29464     /**
29465      * Enable this button
29466      */
29467     enable : function(){
29468         if(this.el){
29469             this.el.removeClass("x-btn-disabled");
29470         }
29471         this.disabled = false;
29472     },
29473
29474     /**
29475      * Convenience function for boolean enable/disable
29476      * @param {Boolean} enabled True to enable, false to disable
29477      */
29478     setDisabled : function(v){
29479         this[v !== true ? "enable" : "disable"]();
29480     },
29481
29482     // private
29483     onClick : function(e)
29484     {
29485         if(e){
29486             e.preventDefault();
29487         }
29488         if(e.button != 0){
29489             return;
29490         }
29491         if(!this.disabled){
29492             if(this.enableToggle){
29493                 this.toggle();
29494             }
29495             if(this.menu && !this.menu.isVisible()){
29496                 this.menu.show(this.el, this.menuAlign);
29497             }
29498             this.fireEvent("click", this, e);
29499             if(this.handler){
29500                 this.el.removeClass("x-btn-over");
29501                 this.handler.call(this.scope || this, this, e);
29502             }
29503         }
29504     },
29505     // private
29506     onMouseOver : function(e){
29507         if(!this.disabled){
29508             this.el.addClass("x-btn-over");
29509             this.fireEvent('mouseover', this, e);
29510         }
29511     },
29512     // private
29513     onMouseOut : function(e){
29514         if(!e.within(this.el,  true)){
29515             this.el.removeClass("x-btn-over");
29516             this.fireEvent('mouseout', this, e);
29517         }
29518     },
29519     // private
29520     onFocus : function(e){
29521         if(!this.disabled){
29522             this.el.addClass("x-btn-focus");
29523         }
29524     },
29525     // private
29526     onBlur : function(e){
29527         this.el.removeClass("x-btn-focus");
29528     },
29529     // private
29530     onMouseDown : function(e){
29531         if(!this.disabled && e.button == 0){
29532             this.el.addClass("x-btn-click");
29533             Roo.get(document).on('mouseup', this.onMouseUp, this);
29534         }
29535     },
29536     // private
29537     onMouseUp : function(e){
29538         if(e.button == 0){
29539             this.el.removeClass("x-btn-click");
29540             Roo.get(document).un('mouseup', this.onMouseUp, this);
29541         }
29542     },
29543     // private
29544     onMenuShow : function(e){
29545         this.el.addClass("x-btn-menu-active");
29546     },
29547     // private
29548     onMenuHide : function(e){
29549         this.el.removeClass("x-btn-menu-active");
29550     }   
29551 });
29552
29553 // Private utility class used by Button
29554 Roo.ButtonToggleMgr = function(){
29555    var groups = {};
29556    
29557    function toggleGroup(btn, state){
29558        if(state){
29559            var g = groups[btn.toggleGroup];
29560            for(var i = 0, l = g.length; i < l; i++){
29561                if(g[i] != btn){
29562                    g[i].toggle(false);
29563                }
29564            }
29565        }
29566    }
29567    
29568    return {
29569        register : function(btn){
29570            if(!btn.toggleGroup){
29571                return;
29572            }
29573            var g = groups[btn.toggleGroup];
29574            if(!g){
29575                g = groups[btn.toggleGroup] = [];
29576            }
29577            g.push(btn);
29578            btn.on("toggle", toggleGroup);
29579        },
29580        
29581        unregister : function(btn){
29582            if(!btn.toggleGroup){
29583                return;
29584            }
29585            var g = groups[btn.toggleGroup];
29586            if(g){
29587                g.remove(btn);
29588                btn.un("toggle", toggleGroup);
29589            }
29590        }
29591    };
29592 }();/*
29593  * Based on:
29594  * Ext JS Library 1.1.1
29595  * Copyright(c) 2006-2007, Ext JS, LLC.
29596  *
29597  * Originally Released Under LGPL - original licence link has changed is not relivant.
29598  *
29599  * Fork - LGPL
29600  * <script type="text/javascript">
29601  */
29602  
29603 /**
29604  * @class Roo.SplitButton
29605  * @extends Roo.Button
29606  * A split button that provides a built-in dropdown arrow that can fire an event separately from the default
29607  * click event of the button.  Typically this would be used to display a dropdown menu that provides additional
29608  * options to the primary button action, but any custom handler can provide the arrowclick implementation.
29609  * @cfg {Function} arrowHandler A function called when the arrow button is clicked (can be used instead of click event)
29610  * @cfg {String} arrowTooltip The title attribute of the arrow
29611  * @constructor
29612  * Create a new menu button
29613  * @param {String/HTMLElement/Element} renderTo The element to append the button to
29614  * @param {Object} config The config object
29615  */
29616 Roo.SplitButton = function(renderTo, config){
29617     Roo.SplitButton.superclass.constructor.call(this, renderTo, config);
29618     /**
29619      * @event arrowclick
29620      * Fires when this button's arrow is clicked
29621      * @param {SplitButton} this
29622      * @param {EventObject} e The click event
29623      */
29624     this.addEvents({"arrowclick":true});
29625 };
29626
29627 Roo.extend(Roo.SplitButton, Roo.Button, {
29628     render : function(renderTo){
29629         // this is one sweet looking template!
29630         var tpl = new Roo.Template(
29631             '<table cellspacing="0" class="x-btn-menu-wrap x-btn"><tr><td>',
29632             '<table cellspacing="0" class="x-btn-wrap x-btn-menu-text-wrap"><tbody>',
29633             '<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>',
29634             "</tbody></table></td><td>",
29635             '<table cellspacing="0" class="x-btn-wrap x-btn-menu-arrow-wrap"><tbody>',
29636             '<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>',
29637             "</tbody></table></td></tr></table>"
29638         );
29639         var btn = tpl.append(renderTo, [this.text, this.type], true);
29640         var btnEl = btn.child("button");
29641         if(this.cls){
29642             btn.addClass(this.cls);
29643         }
29644         if(this.icon){
29645             btnEl.setStyle('background-image', 'url(' +this.icon +')');
29646         }
29647         if(this.iconCls){
29648             btnEl.addClass(this.iconCls);
29649             if(!this.cls){
29650                 btn.addClass(this.text ? 'x-btn-text-icon' : 'x-btn-icon');
29651             }
29652         }
29653         this.el = btn;
29654         if(this.handleMouseEvents){
29655             btn.on("mouseover", this.onMouseOver, this);
29656             btn.on("mouseout", this.onMouseOut, this);
29657             btn.on("mousedown", this.onMouseDown, this);
29658             btn.on("mouseup", this.onMouseUp, this);
29659         }
29660         btn.on(this.clickEvent, this.onClick, this);
29661         if(this.tooltip){
29662             if(typeof this.tooltip == 'object'){
29663                 Roo.QuickTips.tips(Roo.apply({
29664                       target: btnEl.id
29665                 }, this.tooltip));
29666             } else {
29667                 btnEl.dom[this.tooltipType] = this.tooltip;
29668             }
29669         }
29670         if(this.arrowTooltip){
29671             btn.child("button:nth(2)").dom[this.tooltipType] = this.arrowTooltip;
29672         }
29673         if(this.hidden){
29674             this.hide();
29675         }
29676         if(this.disabled){
29677             this.disable();
29678         }
29679         if(this.pressed){
29680             this.el.addClass("x-btn-pressed");
29681         }
29682         if(Roo.isIE && !Roo.isIE7){
29683             this.autoWidth.defer(1, this);
29684         }else{
29685             this.autoWidth();
29686         }
29687         if(this.menu){
29688             this.menu.on("show", this.onMenuShow, this);
29689             this.menu.on("hide", this.onMenuHide, this);
29690         }
29691         this.fireEvent('render', this);
29692     },
29693
29694     // private
29695     autoWidth : function(){
29696         if(this.el){
29697             var tbl = this.el.child("table:first");
29698             var tbl2 = this.el.child("table:last");
29699             this.el.setWidth("auto");
29700             tbl.setWidth("auto");
29701             if(Roo.isIE7 && Roo.isStrict){
29702                 var ib = this.el.child('button:first');
29703                 if(ib && ib.getWidth() > 20){
29704                     ib.clip();
29705                     ib.setWidth(Roo.util.TextMetrics.measure(ib, this.text).width+ib.getFrameWidth('lr'));
29706                 }
29707             }
29708             if(this.minWidth){
29709                 if(this.hidden){
29710                     this.el.beginMeasure();
29711                 }
29712                 if((tbl.getWidth()+tbl2.getWidth()) < this.minWidth){
29713                     tbl.setWidth(this.minWidth-tbl2.getWidth());
29714                 }
29715                 if(this.hidden){
29716                     this.el.endMeasure();
29717                 }
29718             }
29719             this.el.setWidth(tbl.getWidth()+tbl2.getWidth());
29720         } 
29721     },
29722     /**
29723      * Sets this button's click handler
29724      * @param {Function} handler The function to call when the button is clicked
29725      * @param {Object} scope (optional) Scope for the function passed above
29726      */
29727     setHandler : function(handler, scope){
29728         this.handler = handler;
29729         this.scope = scope;  
29730     },
29731     
29732     /**
29733      * Sets this button's arrow click handler
29734      * @param {Function} handler The function to call when the arrow is clicked
29735      * @param {Object} scope (optional) Scope for the function passed above
29736      */
29737     setArrowHandler : function(handler, scope){
29738         this.arrowHandler = handler;
29739         this.scope = scope;  
29740     },
29741     
29742     /**
29743      * Focus the button
29744      */
29745     focus : function(){
29746         if(this.el){
29747             this.el.child("button:first").focus();
29748         }
29749     },
29750
29751     // private
29752     onClick : function(e){
29753         e.preventDefault();
29754         if(!this.disabled){
29755             if(e.getTarget(".x-btn-menu-arrow-wrap")){
29756                 if(this.menu && !this.menu.isVisible()){
29757                     this.menu.show(this.el, this.menuAlign);
29758                 }
29759                 this.fireEvent("arrowclick", this, e);
29760                 if(this.arrowHandler){
29761                     this.arrowHandler.call(this.scope || this, this, e);
29762                 }
29763             }else{
29764                 this.fireEvent("click", this, e);
29765                 if(this.handler){
29766                     this.handler.call(this.scope || this, this, e);
29767                 }
29768             }
29769         }
29770     },
29771     // private
29772     onMouseDown : function(e){
29773         if(!this.disabled){
29774             Roo.fly(e.getTarget("table")).addClass("x-btn-click");
29775         }
29776     },
29777     // private
29778     onMouseUp : function(e){
29779         Roo.fly(e.getTarget("table")).removeClass("x-btn-click");
29780     }   
29781 });
29782
29783
29784 // backwards compat
29785 Roo.MenuButton = Roo.SplitButton;/*
29786  * Based on:
29787  * Ext JS Library 1.1.1
29788  * Copyright(c) 2006-2007, Ext JS, LLC.
29789  *
29790  * Originally Released Under LGPL - original licence link has changed is not relivant.
29791  *
29792  * Fork - LGPL
29793  * <script type="text/javascript">
29794  */
29795
29796 /**
29797  * @class Roo.Toolbar
29798  * Basic Toolbar class.
29799  * @constructor
29800  * Creates a new Toolbar
29801  * @param {Object} container The config object
29802  */ 
29803 Roo.Toolbar = function(container, buttons, config)
29804 {
29805     /// old consturctor format still supported..
29806     if(container instanceof Array){ // omit the container for later rendering
29807         buttons = container;
29808         config = buttons;
29809         container = null;
29810     }
29811     if (typeof(container) == 'object' && container.xtype) {
29812         config = container;
29813         container = config.container;
29814         buttons = config.buttons || []; // not really - use items!!
29815     }
29816     var xitems = [];
29817     if (config && config.items) {
29818         xitems = config.items;
29819         delete config.items;
29820     }
29821     Roo.apply(this, config);
29822     this.buttons = buttons;
29823     
29824     if(container){
29825         this.render(container);
29826     }
29827     this.xitems = xitems;
29828     Roo.each(xitems, function(b) {
29829         this.add(b);
29830     }, this);
29831     
29832 };
29833
29834 Roo.Toolbar.prototype = {
29835     /**
29836      * @cfg {Array} items
29837      * array of button configs or elements to add (will be converted to a MixedCollection)
29838      */
29839     
29840     /**
29841      * @cfg {String/HTMLElement/Element} container
29842      * The id or element that will contain the toolbar
29843      */
29844     // private
29845     render : function(ct){
29846         this.el = Roo.get(ct);
29847         if(this.cls){
29848             this.el.addClass(this.cls);
29849         }
29850         // using a table allows for vertical alignment
29851         // 100% width is needed by Safari...
29852         this.el.update('<div class="x-toolbar x-small-editor"><table cellspacing="0"><tr></tr></table></div>');
29853         this.tr = this.el.child("tr", true);
29854         var autoId = 0;
29855         this.items = new Roo.util.MixedCollection(false, function(o){
29856             return o.id || ("item" + (++autoId));
29857         });
29858         if(this.buttons){
29859             this.add.apply(this, this.buttons);
29860             delete this.buttons;
29861         }
29862     },
29863
29864     /**
29865      * Adds element(s) to the toolbar -- this function takes a variable number of 
29866      * arguments of mixed type and adds them to the toolbar.
29867      * @param {Mixed} arg1 The following types of arguments are all valid:<br />
29868      * <ul>
29869      * <li>{@link Roo.Toolbar.Button} config: A valid button config object (equivalent to {@link #addButton})</li>
29870      * <li>HtmlElement: Any standard HTML element (equivalent to {@link #addElement})</li>
29871      * <li>Field: Any form field (equivalent to {@link #addField})</li>
29872      * <li>Item: Any subclass of {@link Roo.Toolbar.Item} (equivalent to {@link #addItem})</li>
29873      * <li>String: Any generic string (gets wrapped in a {@link Roo.Toolbar.TextItem}, equivalent to {@link #addText}).
29874      * Note that there are a few special strings that are treated differently as explained nRoo.</li>
29875      * <li>'separator' or '-': Creates a separator element (equivalent to {@link #addSeparator})</li>
29876      * <li>' ': Creates a spacer element (equivalent to {@link #addSpacer})</li>
29877      * <li>'->': Creates a fill element (equivalent to {@link #addFill})</li>
29878      * </ul>
29879      * @param {Mixed} arg2
29880      * @param {Mixed} etc.
29881      */
29882     add : function(){
29883         var a = arguments, l = a.length;
29884         for(var i = 0; i < l; i++){
29885             this._add(a[i]);
29886         }
29887     },
29888     // private..
29889     _add : function(el) {
29890         
29891         if (el.xtype) {
29892             el = Roo.factory(el, typeof(Roo.Toolbar[el.xtype]) == 'undefined' ? Roo.form : Roo.Toolbar);
29893         }
29894         
29895         if (el.applyTo){ // some kind of form field
29896             return this.addField(el);
29897         } 
29898         if (el.render){ // some kind of Toolbar.Item
29899             return this.addItem(el);
29900         }
29901         if (typeof el == "string"){ // string
29902             if(el == "separator" || el == "-"){
29903                 return this.addSeparator();
29904             }
29905             if (el == " "){
29906                 return this.addSpacer();
29907             }
29908             if(el == "->"){
29909                 return this.addFill();
29910             }
29911             return this.addText(el);
29912             
29913         }
29914         if(el.tagName){ // element
29915             return this.addElement(el);
29916         }
29917         if(typeof el == "object"){ // must be button config?
29918             return this.addButton(el);
29919         }
29920         // and now what?!?!
29921         return false;
29922         
29923     },
29924     
29925     /**
29926      * Add an Xtype element
29927      * @param {Object} xtype Xtype Object
29928      * @return {Object} created Object
29929      */
29930     addxtype : function(e){
29931         return this.add(e);  
29932     },
29933     
29934     /**
29935      * Returns the Element for this toolbar.
29936      * @return {Roo.Element}
29937      */
29938     getEl : function(){
29939         return this.el;  
29940     },
29941     
29942     /**
29943      * Adds a separator
29944      * @return {Roo.Toolbar.Item} The separator item
29945      */
29946     addSeparator : function(){
29947         return this.addItem(new Roo.Toolbar.Separator());
29948     },
29949
29950     /**
29951      * Adds a spacer element
29952      * @return {Roo.Toolbar.Spacer} The spacer item
29953      */
29954     addSpacer : function(){
29955         return this.addItem(new Roo.Toolbar.Spacer());
29956     },
29957
29958     /**
29959      * Adds a fill element that forces subsequent additions to the right side of the toolbar
29960      * @return {Roo.Toolbar.Fill} The fill item
29961      */
29962     addFill : function(){
29963         return this.addItem(new Roo.Toolbar.Fill());
29964     },
29965
29966     /**
29967      * Adds any standard HTML element to the toolbar
29968      * @param {String/HTMLElement/Element} el The element or id of the element to add
29969      * @return {Roo.Toolbar.Item} The element's item
29970      */
29971     addElement : function(el){
29972         return this.addItem(new Roo.Toolbar.Item(el));
29973     },
29974     /**
29975      * Collection of items on the toolbar.. (only Toolbar Items, so use fields to retrieve fields)
29976      * @type Roo.util.MixedCollection  
29977      */
29978     items : false,
29979      
29980     /**
29981      * Adds any Toolbar.Item or subclass
29982      * @param {Roo.Toolbar.Item} item
29983      * @return {Roo.Toolbar.Item} The item
29984      */
29985     addItem : function(item){
29986         var td = this.nextBlock();
29987         item.render(td);
29988         this.items.add(item);
29989         return item;
29990     },
29991     
29992     /**
29993      * Adds a button (or buttons). See {@link Roo.Toolbar.Button} for more info on the config.
29994      * @param {Object/Array} config A button config or array of configs
29995      * @return {Roo.Toolbar.Button/Array}
29996      */
29997     addButton : function(config){
29998         if(config instanceof Array){
29999             var buttons = [];
30000             for(var i = 0, len = config.length; i < len; i++) {
30001                 buttons.push(this.addButton(config[i]));
30002             }
30003             return buttons;
30004         }
30005         var b = config;
30006         if(!(config instanceof Roo.Toolbar.Button)){
30007             b = config.split ?
30008                 new Roo.Toolbar.SplitButton(config) :
30009                 new Roo.Toolbar.Button(config);
30010         }
30011         var td = this.nextBlock();
30012         b.render(td);
30013         this.items.add(b);
30014         return b;
30015     },
30016     
30017     /**
30018      * Adds text to the toolbar
30019      * @param {String} text The text to add
30020      * @return {Roo.Toolbar.Item} The element's item
30021      */
30022     addText : function(text){
30023         return this.addItem(new Roo.Toolbar.TextItem(text));
30024     },
30025     
30026     /**
30027      * Inserts any {@link Roo.Toolbar.Item}/{@link Roo.Toolbar.Button} at the specified index.
30028      * @param {Number} index The index where the item is to be inserted
30029      * @param {Object/Roo.Toolbar.Item/Roo.Toolbar.Button (may be Array)} item The button, or button config object to be inserted.
30030      * @return {Roo.Toolbar.Button/Item}
30031      */
30032     insertButton : function(index, item){
30033         if(item instanceof Array){
30034             var buttons = [];
30035             for(var i = 0, len = item.length; i < len; i++) {
30036                buttons.push(this.insertButton(index + i, item[i]));
30037             }
30038             return buttons;
30039         }
30040         if (!(item instanceof Roo.Toolbar.Button)){
30041            item = new Roo.Toolbar.Button(item);
30042         }
30043         var td = document.createElement("td");
30044         this.tr.insertBefore(td, this.tr.childNodes[index]);
30045         item.render(td);
30046         this.items.insert(index, item);
30047         return item;
30048     },
30049     
30050     /**
30051      * Adds a new element to the toolbar from the passed {@link Roo.DomHelper} config.
30052      * @param {Object} config
30053      * @return {Roo.Toolbar.Item} The element's item
30054      */
30055     addDom : function(config, returnEl){
30056         var td = this.nextBlock();
30057         Roo.DomHelper.overwrite(td, config);
30058         var ti = new Roo.Toolbar.Item(td.firstChild);
30059         ti.render(td);
30060         this.items.add(ti);
30061         return ti;
30062     },
30063
30064     /**
30065      * Collection of fields on the toolbar.. usefull for quering (value is false if there are no fields)
30066      * @type Roo.util.MixedCollection  
30067      */
30068     fields : false,
30069     
30070     /**
30071      * Adds a dynamically rendered Roo.form field (TextField, ComboBox, etc).
30072      * Note: the field should not have been rendered yet. For a field that has already been
30073      * rendered, use {@link #addElement}.
30074      * @param {Roo.form.Field} field
30075      * @return {Roo.ToolbarItem}
30076      */
30077      
30078       
30079     addField : function(field) {
30080         if (!this.fields) {
30081             var autoId = 0;
30082             this.fields = new Roo.util.MixedCollection(false, function(o){
30083                 return o.id || ("item" + (++autoId));
30084             });
30085
30086         }
30087         
30088         var td = this.nextBlock();
30089         field.render(td);
30090         var ti = new Roo.Toolbar.Item(td.firstChild);
30091         ti.render(td);
30092         this.items.add(ti);
30093         this.fields.add(field);
30094         return ti;
30095     },
30096     /**
30097      * Hide the toolbar
30098      * @method hide
30099      */
30100      
30101       
30102     hide : function()
30103     {
30104         this.el.child('div').setVisibilityMode(Roo.Element.DISPLAY);
30105         this.el.child('div').hide();
30106     },
30107     /**
30108      * Show the toolbar
30109      * @method show
30110      */
30111     show : function()
30112     {
30113         this.el.child('div').show();
30114     },
30115       
30116     // private
30117     nextBlock : function(){
30118         var td = document.createElement("td");
30119         this.tr.appendChild(td);
30120         return td;
30121     },
30122
30123     // private
30124     destroy : function(){
30125         if(this.items){ // rendered?
30126             Roo.destroy.apply(Roo, this.items.items);
30127         }
30128         if(this.fields){ // rendered?
30129             Roo.destroy.apply(Roo, this.fields.items);
30130         }
30131         Roo.Element.uncache(this.el, this.tr);
30132     }
30133 };
30134
30135 /**
30136  * @class Roo.Toolbar.Item
30137  * The base class that other classes should extend in order to get some basic common toolbar item functionality.
30138  * @constructor
30139  * Creates a new Item
30140  * @param {HTMLElement} el 
30141  */
30142 Roo.Toolbar.Item = function(el){
30143     var cfg = {};
30144     if (typeof (el.xtype) != 'undefined') {
30145         cfg = el;
30146         el = cfg.el;
30147     }
30148     
30149     this.el = Roo.getDom(el);
30150     this.id = Roo.id(this.el);
30151     this.hidden = false;
30152     
30153     this.addEvents({
30154          /**
30155              * @event render
30156              * Fires when the button is rendered
30157              * @param {Button} this
30158              */
30159         'render': true
30160     });
30161     Roo.Toolbar.Item.superclass.constructor.call(this,cfg);
30162 };
30163 Roo.extend(Roo.Toolbar.Item, Roo.util.Observable, {
30164 //Roo.Toolbar.Item.prototype = {
30165     
30166     /**
30167      * Get this item's HTML Element
30168      * @return {HTMLElement}
30169      */
30170     getEl : function(){
30171        return this.el;  
30172     },
30173
30174     // private
30175     render : function(td){
30176         
30177          this.td = td;
30178         td.appendChild(this.el);
30179         
30180         this.fireEvent('render', this);
30181     },
30182     
30183     /**
30184      * Removes and destroys this item.
30185      */
30186     destroy : function(){
30187         this.td.parentNode.removeChild(this.td);
30188     },
30189     
30190     /**
30191      * Shows this item.
30192      */
30193     show: function(){
30194         this.hidden = false;
30195         this.td.style.display = "";
30196     },
30197     
30198     /**
30199      * Hides this item.
30200      */
30201     hide: function(){
30202         this.hidden = true;
30203         this.td.style.display = "none";
30204     },
30205     
30206     /**
30207      * Convenience function for boolean show/hide.
30208      * @param {Boolean} visible true to show/false to hide
30209      */
30210     setVisible: function(visible){
30211         if(visible) {
30212             this.show();
30213         }else{
30214             this.hide();
30215         }
30216     },
30217     
30218     /**
30219      * Try to focus this item.
30220      */
30221     focus : function(){
30222         Roo.fly(this.el).focus();
30223     },
30224     
30225     /**
30226      * Disables this item.
30227      */
30228     disable : function(){
30229         Roo.fly(this.td).addClass("x-item-disabled");
30230         this.disabled = true;
30231         this.el.disabled = true;
30232     },
30233     
30234     /**
30235      * Enables this item.
30236      */
30237     enable : function(){
30238         Roo.fly(this.td).removeClass("x-item-disabled");
30239         this.disabled = false;
30240         this.el.disabled = false;
30241     }
30242 });
30243
30244
30245 /**
30246  * @class Roo.Toolbar.Separator
30247  * @extends Roo.Toolbar.Item
30248  * A simple toolbar separator class
30249  * @constructor
30250  * Creates a new Separator
30251  */
30252 Roo.Toolbar.Separator = function(cfg){
30253     
30254     var s = document.createElement("span");
30255     s.className = "ytb-sep";
30256     if (cfg) {
30257         cfg.el = s;
30258     }
30259     
30260     Roo.Toolbar.Separator.superclass.constructor.call(this, cfg || s);
30261 };
30262 Roo.extend(Roo.Toolbar.Separator, Roo.Toolbar.Item, {
30263     enable:Roo.emptyFn,
30264     disable:Roo.emptyFn,
30265     focus:Roo.emptyFn
30266 });
30267
30268 /**
30269  * @class Roo.Toolbar.Spacer
30270  * @extends Roo.Toolbar.Item
30271  * A simple element that adds extra horizontal space to a toolbar.
30272  * @constructor
30273  * Creates a new Spacer
30274  */
30275 Roo.Toolbar.Spacer = function(cfg){
30276     var s = document.createElement("div");
30277     s.className = "ytb-spacer";
30278     if (cfg) {
30279         cfg.el = s;
30280     }
30281     Roo.Toolbar.Spacer.superclass.constructor.call(this, cfg || s);
30282 };
30283 Roo.extend(Roo.Toolbar.Spacer, Roo.Toolbar.Item, {
30284     enable:Roo.emptyFn,
30285     disable:Roo.emptyFn,
30286     focus:Roo.emptyFn
30287 });
30288
30289 /**
30290  * @class Roo.Toolbar.Fill
30291  * @extends Roo.Toolbar.Spacer
30292  * A simple element that adds a greedy (100% width) horizontal space to a toolbar.
30293  * @constructor
30294  * Creates a new Spacer
30295  */
30296 Roo.Toolbar.Fill = Roo.extend(Roo.Toolbar.Spacer, {
30297     // private
30298     render : function(td){
30299         td.style.width = '100%';
30300         Roo.Toolbar.Fill.superclass.render.call(this, td);
30301     }
30302 });
30303
30304 /**
30305  * @class Roo.Toolbar.TextItem
30306  * @extends Roo.Toolbar.Item
30307  * A simple class that renders text directly into a toolbar.
30308  * @constructor
30309  * Creates a new TextItem
30310  * @param {String} text
30311  */
30312 Roo.Toolbar.TextItem = function(cfg){
30313     var  text = cfg || "";
30314     if (typeof(cfg) == 'object') {
30315         text = cfg.text || "";
30316     }  else {
30317         cfg = null;
30318     }
30319     var s = document.createElement("span");
30320     s.className = "ytb-text";
30321     s.innerHTML = text;
30322     if (cfg) {
30323         cfg.el  = s;
30324     }
30325     
30326     Roo.Toolbar.TextItem.superclass.constructor.call(this, cfg ||  s);
30327 };
30328 Roo.extend(Roo.Toolbar.TextItem, Roo.Toolbar.Item, {
30329     
30330      
30331     enable:Roo.emptyFn,
30332     disable:Roo.emptyFn,
30333     focus:Roo.emptyFn
30334 });
30335
30336 /**
30337  * @class Roo.Toolbar.Button
30338  * @extends Roo.Button
30339  * A button that renders into a toolbar.
30340  * @constructor
30341  * Creates a new Button
30342  * @param {Object} config A standard {@link Roo.Button} config object
30343  */
30344 Roo.Toolbar.Button = function(config){
30345     Roo.Toolbar.Button.superclass.constructor.call(this, null, config);
30346 };
30347 Roo.extend(Roo.Toolbar.Button, Roo.Button, {
30348     render : function(td){
30349         this.td = td;
30350         Roo.Toolbar.Button.superclass.render.call(this, td);
30351     },
30352     
30353     /**
30354      * Removes and destroys this button
30355      */
30356     destroy : function(){
30357         Roo.Toolbar.Button.superclass.destroy.call(this);
30358         this.td.parentNode.removeChild(this.td);
30359     },
30360     
30361     /**
30362      * Shows this button
30363      */
30364     show: function(){
30365         this.hidden = false;
30366         this.td.style.display = "";
30367     },
30368     
30369     /**
30370      * Hides this button
30371      */
30372     hide: function(){
30373         this.hidden = true;
30374         this.td.style.display = "none";
30375     },
30376
30377     /**
30378      * Disables this item
30379      */
30380     disable : function(){
30381         Roo.fly(this.td).addClass("x-item-disabled");
30382         this.disabled = true;
30383     },
30384
30385     /**
30386      * Enables this item
30387      */
30388     enable : function(){
30389         Roo.fly(this.td).removeClass("x-item-disabled");
30390         this.disabled = false;
30391     }
30392 });
30393 // backwards compat
30394 Roo.ToolbarButton = Roo.Toolbar.Button;
30395
30396 /**
30397  * @class Roo.Toolbar.SplitButton
30398  * @extends Roo.SplitButton
30399  * A menu button that renders into a toolbar.
30400  * @constructor
30401  * Creates a new SplitButton
30402  * @param {Object} config A standard {@link Roo.SplitButton} config object
30403  */
30404 Roo.Toolbar.SplitButton = function(config){
30405     Roo.Toolbar.SplitButton.superclass.constructor.call(this, null, config);
30406 };
30407 Roo.extend(Roo.Toolbar.SplitButton, Roo.SplitButton, {
30408     render : function(td){
30409         this.td = td;
30410         Roo.Toolbar.SplitButton.superclass.render.call(this, td);
30411     },
30412     
30413     /**
30414      * Removes and destroys this button
30415      */
30416     destroy : function(){
30417         Roo.Toolbar.SplitButton.superclass.destroy.call(this);
30418         this.td.parentNode.removeChild(this.td);
30419     },
30420     
30421     /**
30422      * Shows this button
30423      */
30424     show: function(){
30425         this.hidden = false;
30426         this.td.style.display = "";
30427     },
30428     
30429     /**
30430      * Hides this button
30431      */
30432     hide: function(){
30433         this.hidden = true;
30434         this.td.style.display = "none";
30435     }
30436 });
30437
30438 // backwards compat
30439 Roo.Toolbar.MenuButton = Roo.Toolbar.SplitButton;/*
30440  * Based on:
30441  * Ext JS Library 1.1.1
30442  * Copyright(c) 2006-2007, Ext JS, LLC.
30443  *
30444  * Originally Released Under LGPL - original licence link has changed is not relivant.
30445  *
30446  * Fork - LGPL
30447  * <script type="text/javascript">
30448  */
30449  
30450 /**
30451  * @class Roo.PagingToolbar
30452  * @extends Roo.Toolbar
30453  * A specialized toolbar that is bound to a {@link Roo.data.Store} and provides automatic paging controls.
30454  * @constructor
30455  * Create a new PagingToolbar
30456  * @param {Object} config The config object
30457  */
30458 Roo.PagingToolbar = function(el, ds, config)
30459 {
30460     // old args format still supported... - xtype is prefered..
30461     if (typeof(el) == 'object' && el.xtype) {
30462         // created from xtype...
30463         config = el;
30464         ds = el.dataSource;
30465         el = config.container;
30466     }
30467     var items = [];
30468     if (config.items) {
30469         items = config.items;
30470         config.items = [];
30471     }
30472     
30473     Roo.PagingToolbar.superclass.constructor.call(this, el, null, config);
30474     this.ds = ds;
30475     this.cursor = 0;
30476     this.renderButtons(this.el);
30477     this.bind(ds);
30478     
30479     // supprot items array.
30480    
30481     Roo.each(items, function(e) {
30482         this.add(Roo.factory(e));
30483     },this);
30484     
30485 };
30486
30487 Roo.extend(Roo.PagingToolbar, Roo.Toolbar, {
30488     /**
30489      * @cfg {Roo.data.Store} dataSource
30490      * The underlying data store providing the paged data
30491      */
30492     /**
30493      * @cfg {String/HTMLElement/Element} container
30494      * container The id or element that will contain the toolbar
30495      */
30496     /**
30497      * @cfg {Boolean} displayInfo
30498      * True to display the displayMsg (defaults to false)
30499      */
30500     /**
30501      * @cfg {Number} pageSize
30502      * The number of records to display per page (defaults to 20)
30503      */
30504     pageSize: 20,
30505     /**
30506      * @cfg {String} displayMsg
30507      * The paging status message to display (defaults to "Displaying {start} - {end} of {total}")
30508      */
30509     displayMsg : 'Displaying {0} - {1} of {2}',
30510     /**
30511      * @cfg {String} emptyMsg
30512      * The message to display when no records are found (defaults to "No data to display")
30513      */
30514     emptyMsg : 'No data to display',
30515     /**
30516      * Customizable piece of the default paging text (defaults to "Page")
30517      * @type String
30518      */
30519     beforePageText : "Page",
30520     /**
30521      * Customizable piece of the default paging text (defaults to "of %0")
30522      * @type String
30523      */
30524     afterPageText : "of {0}",
30525     /**
30526      * Customizable piece of the default paging text (defaults to "First Page")
30527      * @type String
30528      */
30529     firstText : "First Page",
30530     /**
30531      * Customizable piece of the default paging text (defaults to "Previous Page")
30532      * @type String
30533      */
30534     prevText : "Previous Page",
30535     /**
30536      * Customizable piece of the default paging text (defaults to "Next Page")
30537      * @type String
30538      */
30539     nextText : "Next Page",
30540     /**
30541      * Customizable piece of the default paging text (defaults to "Last Page")
30542      * @type String
30543      */
30544     lastText : "Last Page",
30545     /**
30546      * Customizable piece of the default paging text (defaults to "Refresh")
30547      * @type String
30548      */
30549     refreshText : "Refresh",
30550
30551     // private
30552     renderButtons : function(el){
30553         Roo.PagingToolbar.superclass.render.call(this, el);
30554         this.first = this.addButton({
30555             tooltip: this.firstText,
30556             cls: "x-btn-icon x-grid-page-first",
30557             disabled: true,
30558             handler: this.onClick.createDelegate(this, ["first"])
30559         });
30560         this.prev = this.addButton({
30561             tooltip: this.prevText,
30562             cls: "x-btn-icon x-grid-page-prev",
30563             disabled: true,
30564             handler: this.onClick.createDelegate(this, ["prev"])
30565         });
30566         //this.addSeparator();
30567         this.add(this.beforePageText);
30568         this.field = Roo.get(this.addDom({
30569            tag: "input",
30570            type: "text",
30571            size: "3",
30572            value: "1",
30573            cls: "x-grid-page-number"
30574         }).el);
30575         this.field.on("keydown", this.onPagingKeydown, this);
30576         this.field.on("focus", function(){this.dom.select();});
30577         this.afterTextEl = this.addText(String.format(this.afterPageText, 1));
30578         this.field.setHeight(18);
30579         //this.addSeparator();
30580         this.next = this.addButton({
30581             tooltip: this.nextText,
30582             cls: "x-btn-icon x-grid-page-next",
30583             disabled: true,
30584             handler: this.onClick.createDelegate(this, ["next"])
30585         });
30586         this.last = this.addButton({
30587             tooltip: this.lastText,
30588             cls: "x-btn-icon x-grid-page-last",
30589             disabled: true,
30590             handler: this.onClick.createDelegate(this, ["last"])
30591         });
30592         //this.addSeparator();
30593         this.loading = this.addButton({
30594             tooltip: this.refreshText,
30595             cls: "x-btn-icon x-grid-loading",
30596             handler: this.onClick.createDelegate(this, ["refresh"])
30597         });
30598
30599         if(this.displayInfo){
30600             this.displayEl = Roo.fly(this.el.dom.firstChild).createChild({cls:'x-paging-info'});
30601         }
30602     },
30603
30604     // private
30605     updateInfo : function(){
30606         if(this.displayEl){
30607             var count = this.ds.getCount();
30608             var msg = count == 0 ?
30609                 this.emptyMsg :
30610                 String.format(
30611                     this.displayMsg,
30612                     this.cursor+1, this.cursor+count, this.ds.getTotalCount()    
30613                 );
30614             this.displayEl.update(msg);
30615         }
30616     },
30617
30618     // private
30619     onLoad : function(ds, r, o){
30620        this.cursor = o.params ? o.params.start : 0;
30621        var d = this.getPageData(), ap = d.activePage, ps = d.pages;
30622
30623        this.afterTextEl.el.innerHTML = String.format(this.afterPageText, d.pages);
30624        this.field.dom.value = ap;
30625        this.first.setDisabled(ap == 1);
30626        this.prev.setDisabled(ap == 1);
30627        this.next.setDisabled(ap == ps);
30628        this.last.setDisabled(ap == ps);
30629        this.loading.enable();
30630        this.updateInfo();
30631     },
30632
30633     // private
30634     getPageData : function(){
30635         var total = this.ds.getTotalCount();
30636         return {
30637             total : total,
30638             activePage : Math.ceil((this.cursor+this.pageSize)/this.pageSize),
30639             pages :  total < this.pageSize ? 1 : Math.ceil(total/this.pageSize)
30640         };
30641     },
30642
30643     // private
30644     onLoadError : function(){
30645         this.loading.enable();
30646     },
30647
30648     // private
30649     onPagingKeydown : function(e){
30650         var k = e.getKey();
30651         var d = this.getPageData();
30652         if(k == e.RETURN){
30653             var v = this.field.dom.value, pageNum;
30654             if(!v || isNaN(pageNum = parseInt(v, 10))){
30655                 this.field.dom.value = d.activePage;
30656                 return;
30657             }
30658             pageNum = Math.min(Math.max(1, pageNum), d.pages) - 1;
30659             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
30660             e.stopEvent();
30661         }
30662         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))
30663         {
30664           var pageNum = (k == e.HOME || (k == e.DOWN && e.ctrlKey) || (k == e.LEFT && e.ctrlKey) || (k == e.PAGEDOWN && e.ctrlKey)) ? 1 : d.pages;
30665           this.field.dom.value = pageNum;
30666           this.ds.load({params:{start: (pageNum - 1) * this.pageSize, limit: this.pageSize}});
30667           e.stopEvent();
30668         }
30669         else if(k == e.UP || k == e.RIGHT || k == e.PAGEUP || k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN)
30670         {
30671           var v = this.field.dom.value, pageNum; 
30672           var increment = (e.shiftKey) ? 10 : 1;
30673           if(k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN) {
30674             increment *= -1;
30675           }
30676           if(!v || isNaN(pageNum = parseInt(v, 10))) {
30677             this.field.dom.value = d.activePage;
30678             return;
30679           }
30680           else if(parseInt(v, 10) + increment >= 1 & parseInt(v, 10) + increment <= d.pages)
30681           {
30682             this.field.dom.value = parseInt(v, 10) + increment;
30683             pageNum = Math.min(Math.max(1, pageNum + increment), d.pages) - 1;
30684             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
30685           }
30686           e.stopEvent();
30687         }
30688     },
30689
30690     // private
30691     beforeLoad : function(){
30692         if(this.loading){
30693             this.loading.disable();
30694         }
30695     },
30696
30697     // private
30698     onClick : function(which){
30699         var ds = this.ds;
30700         switch(which){
30701             case "first":
30702                 ds.load({params:{start: 0, limit: this.pageSize}});
30703             break;
30704             case "prev":
30705                 ds.load({params:{start: Math.max(0, this.cursor-this.pageSize), limit: this.pageSize}});
30706             break;
30707             case "next":
30708                 ds.load({params:{start: this.cursor+this.pageSize, limit: this.pageSize}});
30709             break;
30710             case "last":
30711                 var total = ds.getTotalCount();
30712                 var extra = total % this.pageSize;
30713                 var lastStart = extra ? (total - extra) : total-this.pageSize;
30714                 ds.load({params:{start: lastStart, limit: this.pageSize}});
30715             break;
30716             case "refresh":
30717                 ds.load({params:{start: this.cursor, limit: this.pageSize}});
30718             break;
30719         }
30720     },
30721
30722     /**
30723      * Unbinds the paging toolbar from the specified {@link Roo.data.Store}
30724      * @param {Roo.data.Store} store The data store to unbind
30725      */
30726     unbind : function(ds){
30727         ds.un("beforeload", this.beforeLoad, this);
30728         ds.un("load", this.onLoad, this);
30729         ds.un("loadexception", this.onLoadError, this);
30730         ds.un("remove", this.updateInfo, this);
30731         ds.un("add", this.updateInfo, this);
30732         this.ds = undefined;
30733     },
30734
30735     /**
30736      * Binds the paging toolbar to the specified {@link Roo.data.Store}
30737      * @param {Roo.data.Store} store The data store to bind
30738      */
30739     bind : function(ds){
30740         ds.on("beforeload", this.beforeLoad, this);
30741         ds.on("load", this.onLoad, this);
30742         ds.on("loadexception", this.onLoadError, this);
30743         ds.on("remove", this.updateInfo, this);
30744         ds.on("add", this.updateInfo, this);
30745         this.ds = ds;
30746     }
30747 });/*
30748  * Based on:
30749  * Ext JS Library 1.1.1
30750  * Copyright(c) 2006-2007, Ext JS, LLC.
30751  *
30752  * Originally Released Under LGPL - original licence link has changed is not relivant.
30753  *
30754  * Fork - LGPL
30755  * <script type="text/javascript">
30756  */
30757
30758 /**
30759  * @class Roo.Resizable
30760  * @extends Roo.util.Observable
30761  * <p>Applies drag handles to an element to make it resizable. The drag handles are inserted into the element
30762  * and positioned absolute. Some elements, such as a textarea or image, don't support this. To overcome that, you can wrap
30763  * 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
30764  * the element will be wrapped for you automatically.</p>
30765  * <p>Here is the list of valid resize handles:</p>
30766  * <pre>
30767 Value   Description
30768 ------  -------------------
30769  'n'     north
30770  's'     south
30771  'e'     east
30772  'w'     west
30773  'nw'    northwest
30774  'sw'    southwest
30775  'se'    southeast
30776  'ne'    northeast
30777  'hd'    horizontal drag
30778  'all'   all
30779 </pre>
30780  * <p>Here's an example showing the creation of a typical Resizable:</p>
30781  * <pre><code>
30782 var resizer = new Roo.Resizable("element-id", {
30783     handles: 'all',
30784     minWidth: 200,
30785     minHeight: 100,
30786     maxWidth: 500,
30787     maxHeight: 400,
30788     pinned: true
30789 });
30790 resizer.on("resize", myHandler);
30791 </code></pre>
30792  * <p>To hide a particular handle, set its display to none in CSS, or through script:<br>
30793  * resizer.east.setDisplayed(false);</p>
30794  * @cfg {Boolean/String/Element} resizeChild True to resize the first child, or id/element to resize (defaults to false)
30795  * @cfg {Array/String} adjustments String "auto" or an array [width, height] with values to be <b>added</b> to the
30796  * resize operation's new size (defaults to [0, 0])
30797  * @cfg {Number} minWidth The minimum width for the element (defaults to 5)
30798  * @cfg {Number} minHeight The minimum height for the element (defaults to 5)
30799  * @cfg {Number} maxWidth The maximum width for the element (defaults to 10000)
30800  * @cfg {Number} maxHeight The maximum height for the element (defaults to 10000)
30801  * @cfg {Boolean} enabled False to disable resizing (defaults to true)
30802  * @cfg {Boolean} wrap True to wrap an element with a div if needed (required for textareas and images, defaults to false)
30803  * @cfg {Number} width The width of the element in pixels (defaults to null)
30804  * @cfg {Number} height The height of the element in pixels (defaults to null)
30805  * @cfg {Boolean} animate True to animate the resize (not compatible with dynamic sizing, defaults to false)
30806  * @cfg {Number} duration Animation duration if animate = true (defaults to .35)
30807  * @cfg {Boolean} dynamic True to resize the element while dragging instead of using a proxy (defaults to false)
30808  * @cfg {String} handles String consisting of the resize handles to display (defaults to undefined)
30809  * @cfg {Boolean} multiDirectional <b>Deprecated</b>.  The old style of adding multi-direction resize handles, deprecated
30810  * in favor of the handles config option (defaults to false)
30811  * @cfg {Boolean} disableTrackOver True to disable mouse tracking. This is only applied at config time. (defaults to false)
30812  * @cfg {String} easing Animation easing if animate = true (defaults to 'easingOutStrong')
30813  * @cfg {Number} widthIncrement The increment to snap the width resize in pixels (dynamic must be true, defaults to 0)
30814  * @cfg {Number} heightIncrement The increment to snap the height resize in pixels (dynamic must be true, defaults to 0)
30815  * @cfg {Boolean} pinned True to ensure that the resize handles are always visible, false to display them only when the
30816  * user mouses over the resizable borders. This is only applied at config time. (defaults to false)
30817  * @cfg {Boolean} preserveRatio True to preserve the original ratio between height and width during resize (defaults to false)
30818  * @cfg {Boolean} transparent True for transparent handles. This is only applied at config time. (defaults to false)
30819  * @cfg {Number} minX The minimum allowed page X for the element (only used for west resizing, defaults to 0)
30820  * @cfg {Number} minY The minimum allowed page Y for the element (only used for north resizing, defaults to 0)
30821  * @cfg {Boolean} draggable Convenience to initialize drag drop (defaults to false)
30822  * @constructor
30823  * Create a new resizable component
30824  * @param {String/HTMLElement/Roo.Element} el The id or element to resize
30825  * @param {Object} config configuration options
30826   */
30827 Roo.Resizable = function(el, config)
30828 {
30829     this.el = Roo.get(el);
30830
30831     if(config && config.wrap){
30832         config.resizeChild = this.el;
30833         this.el = this.el.wrap(typeof config.wrap == "object" ? config.wrap : {cls:"xresizable-wrap"});
30834         this.el.id = this.el.dom.id = config.resizeChild.id + "-rzwrap";
30835         this.el.setStyle("overflow", "hidden");
30836         this.el.setPositioning(config.resizeChild.getPositioning());
30837         config.resizeChild.clearPositioning();
30838         if(!config.width || !config.height){
30839             var csize = config.resizeChild.getSize();
30840             this.el.setSize(csize.width, csize.height);
30841         }
30842         if(config.pinned && !config.adjustments){
30843             config.adjustments = "auto";
30844         }
30845     }
30846
30847     this.proxy = this.el.createProxy({tag: "div", cls: "x-resizable-proxy", id: this.el.id + "-rzproxy"});
30848     this.proxy.unselectable();
30849     this.proxy.enableDisplayMode('block');
30850
30851     Roo.apply(this, config);
30852
30853     if(this.pinned){
30854         this.disableTrackOver = true;
30855         this.el.addClass("x-resizable-pinned");
30856     }
30857     // if the element isn't positioned, make it relative
30858     var position = this.el.getStyle("position");
30859     if(position != "absolute" && position != "fixed"){
30860         this.el.setStyle("position", "relative");
30861     }
30862     if(!this.handles){ // no handles passed, must be legacy style
30863         this.handles = 's,e,se';
30864         if(this.multiDirectional){
30865             this.handles += ',n,w';
30866         }
30867     }
30868     if(this.handles == "all"){
30869         this.handles = "n s e w ne nw se sw";
30870     }
30871     var hs = this.handles.split(/\s*?[,;]\s*?| /);
30872     var ps = Roo.Resizable.positions;
30873     for(var i = 0, len = hs.length; i < len; i++){
30874         if(hs[i] && ps[hs[i]]){
30875             var pos = ps[hs[i]];
30876             this[pos] = new Roo.Resizable.Handle(this, pos, this.disableTrackOver, this.transparent);
30877         }
30878     }
30879     // legacy
30880     this.corner = this.southeast;
30881     
30882     // updateBox = the box can move..
30883     if(this.handles.indexOf("n") != -1 || this.handles.indexOf("w") != -1 || this.handles.indexOf("hd") != -1) {
30884         this.updateBox = true;
30885     }
30886
30887     this.activeHandle = null;
30888
30889     if(this.resizeChild){
30890         if(typeof this.resizeChild == "boolean"){
30891             this.resizeChild = Roo.get(this.el.dom.firstChild, true);
30892         }else{
30893             this.resizeChild = Roo.get(this.resizeChild, true);
30894         }
30895     }
30896     
30897     if(this.adjustments == "auto"){
30898         var rc = this.resizeChild;
30899         var hw = this.west, he = this.east, hn = this.north, hs = this.south;
30900         if(rc && (hw || hn)){
30901             rc.position("relative");
30902             rc.setLeft(hw ? hw.el.getWidth() : 0);
30903             rc.setTop(hn ? hn.el.getHeight() : 0);
30904         }
30905         this.adjustments = [
30906             (he ? -he.el.getWidth() : 0) + (hw ? -hw.el.getWidth() : 0),
30907             (hn ? -hn.el.getHeight() : 0) + (hs ? -hs.el.getHeight() : 0) -1
30908         ];
30909     }
30910
30911     if(this.draggable){
30912         this.dd = this.dynamic ?
30913             this.el.initDD(null) : this.el.initDDProxy(null, {dragElId: this.proxy.id});
30914         this.dd.setHandleElId(this.resizeChild ? this.resizeChild.id : this.el.id);
30915     }
30916
30917     // public events
30918     this.addEvents({
30919         /**
30920          * @event beforeresize
30921          * Fired before resize is allowed. Set enabled to false to cancel resize.
30922          * @param {Roo.Resizable} this
30923          * @param {Roo.EventObject} e The mousedown event
30924          */
30925         "beforeresize" : true,
30926         /**
30927          * @event resizing
30928          * Fired a resizing.
30929          * @param {Roo.Resizable} this
30930          * @param {Number} x The new x position
30931          * @param {Number} y The new y position
30932          * @param {Number} w The new w width
30933          * @param {Number} h The new h hight
30934          * @param {Roo.EventObject} e The mouseup event
30935          */
30936         "resizing" : true,
30937         /**
30938          * @event resize
30939          * Fired after a resize.
30940          * @param {Roo.Resizable} this
30941          * @param {Number} width The new width
30942          * @param {Number} height The new height
30943          * @param {Roo.EventObject} e The mouseup event
30944          */
30945         "resize" : true
30946     });
30947
30948     if(this.width !== null && this.height !== null){
30949         this.resizeTo(this.width, this.height);
30950     }else{
30951         this.updateChildSize();
30952     }
30953     if(Roo.isIE){
30954         this.el.dom.style.zoom = 1;
30955     }
30956     Roo.Resizable.superclass.constructor.call(this);
30957 };
30958
30959 Roo.extend(Roo.Resizable, Roo.util.Observable, {
30960         resizeChild : false,
30961         adjustments : [0, 0],
30962         minWidth : 5,
30963         minHeight : 5,
30964         maxWidth : 10000,
30965         maxHeight : 10000,
30966         enabled : true,
30967         animate : false,
30968         duration : .35,
30969         dynamic : false,
30970         handles : false,
30971         multiDirectional : false,
30972         disableTrackOver : false,
30973         easing : 'easeOutStrong',
30974         widthIncrement : 0,
30975         heightIncrement : 0,
30976         pinned : false,
30977         width : null,
30978         height : null,
30979         preserveRatio : false,
30980         transparent: false,
30981         minX: 0,
30982         minY: 0,
30983         draggable: false,
30984
30985         /**
30986          * @cfg {String/HTMLElement/Element} constrainTo Constrain the resize to a particular element
30987          */
30988         constrainTo: undefined,
30989         /**
30990          * @cfg {Roo.lib.Region} resizeRegion Constrain the resize to a particular region
30991          */
30992         resizeRegion: undefined,
30993
30994
30995     /**
30996      * Perform a manual resize
30997      * @param {Number} width
30998      * @param {Number} height
30999      */
31000     resizeTo : function(width, height){
31001         this.el.setSize(width, height);
31002         this.updateChildSize();
31003         this.fireEvent("resize", this, width, height, null);
31004     },
31005
31006     // private
31007     startSizing : function(e, handle){
31008         this.fireEvent("beforeresize", this, e);
31009         if(this.enabled){ // 2nd enabled check in case disabled before beforeresize handler
31010
31011             if(!this.overlay){
31012                 this.overlay = this.el.createProxy({tag: "div", cls: "x-resizable-overlay", html: "&#160;"});
31013                 this.overlay.unselectable();
31014                 this.overlay.enableDisplayMode("block");
31015                 this.overlay.on("mousemove", this.onMouseMove, this);
31016                 this.overlay.on("mouseup", this.onMouseUp, this);
31017             }
31018             this.overlay.setStyle("cursor", handle.el.getStyle("cursor"));
31019
31020             this.resizing = true;
31021             this.startBox = this.el.getBox();
31022             this.startPoint = e.getXY();
31023             this.offsets = [(this.startBox.x + this.startBox.width) - this.startPoint[0],
31024                             (this.startBox.y + this.startBox.height) - this.startPoint[1]];
31025
31026             this.overlay.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
31027             this.overlay.show();
31028
31029             if(this.constrainTo) {
31030                 var ct = Roo.get(this.constrainTo);
31031                 this.resizeRegion = ct.getRegion().adjust(
31032                     ct.getFrameWidth('t'),
31033                     ct.getFrameWidth('l'),
31034                     -ct.getFrameWidth('b'),
31035                     -ct.getFrameWidth('r')
31036                 );
31037             }
31038
31039             this.proxy.setStyle('visibility', 'hidden'); // workaround display none
31040             this.proxy.show();
31041             this.proxy.setBox(this.startBox);
31042             if(!this.dynamic){
31043                 this.proxy.setStyle('visibility', 'visible');
31044             }
31045         }
31046     },
31047
31048     // private
31049     onMouseDown : function(handle, e){
31050         if(this.enabled){
31051             e.stopEvent();
31052             this.activeHandle = handle;
31053             this.startSizing(e, handle);
31054         }
31055     },
31056
31057     // private
31058     onMouseUp : function(e){
31059         var size = this.resizeElement();
31060         this.resizing = false;
31061         this.handleOut();
31062         this.overlay.hide();
31063         this.proxy.hide();
31064         this.fireEvent("resize", this, size.width, size.height, e);
31065     },
31066
31067     // private
31068     updateChildSize : function(){
31069         
31070         if(this.resizeChild){
31071             var el = this.el;
31072             var child = this.resizeChild;
31073             var adj = this.adjustments;
31074             if(el.dom.offsetWidth){
31075                 var b = el.getSize(true);
31076                 child.setSize(b.width+adj[0], b.height+adj[1]);
31077             }
31078             // Second call here for IE
31079             // The first call enables instant resizing and
31080             // the second call corrects scroll bars if they
31081             // exist
31082             if(Roo.isIE){
31083                 setTimeout(function(){
31084                     if(el.dom.offsetWidth){
31085                         var b = el.getSize(true);
31086                         child.setSize(b.width+adj[0], b.height+adj[1]);
31087                     }
31088                 }, 10);
31089             }
31090         }
31091     },
31092
31093     // private
31094     snap : function(value, inc, min){
31095         if(!inc || !value) {
31096             return value;
31097         }
31098         var newValue = value;
31099         var m = value % inc;
31100         if(m > 0){
31101             if(m > (inc/2)){
31102                 newValue = value + (inc-m);
31103             }else{
31104                 newValue = value - m;
31105             }
31106         }
31107         return Math.max(min, newValue);
31108     },
31109
31110     // private
31111     resizeElement : function(){
31112         var box = this.proxy.getBox();
31113         if(this.updateBox){
31114             this.el.setBox(box, false, this.animate, this.duration, null, this.easing);
31115         }else{
31116             this.el.setSize(box.width, box.height, this.animate, this.duration, null, this.easing);
31117         }
31118         this.updateChildSize();
31119         if(!this.dynamic){
31120             this.proxy.hide();
31121         }
31122         return box;
31123     },
31124
31125     // private
31126     constrain : function(v, diff, m, mx){
31127         if(v - diff < m){
31128             diff = v - m;
31129         }else if(v - diff > mx){
31130             diff = mx - v;
31131         }
31132         return diff;
31133     },
31134
31135     // private
31136     onMouseMove : function(e){
31137         
31138         if(this.enabled){
31139             try{// try catch so if something goes wrong the user doesn't get hung
31140
31141             if(this.resizeRegion && !this.resizeRegion.contains(e.getPoint())) {
31142                 return;
31143             }
31144
31145             //var curXY = this.startPoint;
31146             var curSize = this.curSize || this.startBox;
31147             var x = this.startBox.x, y = this.startBox.y;
31148             var ox = x, oy = y;
31149             var w = curSize.width, h = curSize.height;
31150             var ow = w, oh = h;
31151             var mw = this.minWidth, mh = this.minHeight;
31152             var mxw = this.maxWidth, mxh = this.maxHeight;
31153             var wi = this.widthIncrement;
31154             var hi = this.heightIncrement;
31155
31156             var eventXY = e.getXY();
31157             var diffX = -(this.startPoint[0] - Math.max(this.minX, eventXY[0]));
31158             var diffY = -(this.startPoint[1] - Math.max(this.minY, eventXY[1]));
31159
31160             var pos = this.activeHandle.position;
31161
31162             switch(pos){
31163                 case "east":
31164                     w += diffX;
31165                     w = Math.min(Math.max(mw, w), mxw);
31166                     break;
31167              
31168                 case "south":
31169                     h += diffY;
31170                     h = Math.min(Math.max(mh, h), mxh);
31171                     break;
31172                 case "southeast":
31173                     w += diffX;
31174                     h += diffY;
31175                     w = Math.min(Math.max(mw, w), mxw);
31176                     h = Math.min(Math.max(mh, h), mxh);
31177                     break;
31178                 case "north":
31179                     diffY = this.constrain(h, diffY, mh, mxh);
31180                     y += diffY;
31181                     h -= diffY;
31182                     break;
31183                 case "hdrag":
31184                     
31185                     if (wi) {
31186                         var adiffX = Math.abs(diffX);
31187                         var sub = (adiffX % wi); // how much 
31188                         if (sub > (wi/2)) { // far enough to snap
31189                             diffX = (diffX > 0) ? diffX-sub + wi : diffX+sub - wi;
31190                         } else {
31191                             // remove difference.. 
31192                             diffX = (diffX > 0) ? diffX-sub : diffX+sub;
31193                         }
31194                     }
31195                     x += diffX;
31196                     x = Math.max(this.minX, x);
31197                     break;
31198                 case "west":
31199                     diffX = this.constrain(w, diffX, mw, mxw);
31200                     x += diffX;
31201                     w -= diffX;
31202                     break;
31203                 case "northeast":
31204                     w += diffX;
31205                     w = Math.min(Math.max(mw, w), mxw);
31206                     diffY = this.constrain(h, diffY, mh, mxh);
31207                     y += diffY;
31208                     h -= diffY;
31209                     break;
31210                 case "northwest":
31211                     diffX = this.constrain(w, diffX, mw, mxw);
31212                     diffY = this.constrain(h, diffY, mh, mxh);
31213                     y += diffY;
31214                     h -= diffY;
31215                     x += diffX;
31216                     w -= diffX;
31217                     break;
31218                case "southwest":
31219                     diffX = this.constrain(w, diffX, mw, mxw);
31220                     h += diffY;
31221                     h = Math.min(Math.max(mh, h), mxh);
31222                     x += diffX;
31223                     w -= diffX;
31224                     break;
31225             }
31226
31227             var sw = this.snap(w, wi, mw);
31228             var sh = this.snap(h, hi, mh);
31229             if(sw != w || sh != h){
31230                 switch(pos){
31231                     case "northeast":
31232                         y -= sh - h;
31233                     break;
31234                     case "north":
31235                         y -= sh - h;
31236                         break;
31237                     case "southwest":
31238                         x -= sw - w;
31239                     break;
31240                     case "west":
31241                         x -= sw - w;
31242                         break;
31243                     case "northwest":
31244                         x -= sw - w;
31245                         y -= sh - h;
31246                     break;
31247                 }
31248                 w = sw;
31249                 h = sh;
31250             }
31251
31252             if(this.preserveRatio){
31253                 switch(pos){
31254                     case "southeast":
31255                     case "east":
31256                         h = oh * (w/ow);
31257                         h = Math.min(Math.max(mh, h), mxh);
31258                         w = ow * (h/oh);
31259                        break;
31260                     case "south":
31261                         w = ow * (h/oh);
31262                         w = Math.min(Math.max(mw, w), mxw);
31263                         h = oh * (w/ow);
31264                         break;
31265                     case "northeast":
31266                         w = ow * (h/oh);
31267                         w = Math.min(Math.max(mw, w), mxw);
31268                         h = oh * (w/ow);
31269                     break;
31270                     case "north":
31271                         var tw = w;
31272                         w = ow * (h/oh);
31273                         w = Math.min(Math.max(mw, w), mxw);
31274                         h = oh * (w/ow);
31275                         x += (tw - w) / 2;
31276                         break;
31277                     case "southwest":
31278                         h = oh * (w/ow);
31279                         h = Math.min(Math.max(mh, h), mxh);
31280                         var tw = w;
31281                         w = ow * (h/oh);
31282                         x += tw - w;
31283                         break;
31284                     case "west":
31285                         var th = h;
31286                         h = oh * (w/ow);
31287                         h = Math.min(Math.max(mh, h), mxh);
31288                         y += (th - h) / 2;
31289                         var tw = w;
31290                         w = ow * (h/oh);
31291                         x += tw - w;
31292                        break;
31293                     case "northwest":
31294                         var tw = w;
31295                         var th = h;
31296                         h = oh * (w/ow);
31297                         h = Math.min(Math.max(mh, h), mxh);
31298                         w = ow * (h/oh);
31299                         y += th - h;
31300                         x += tw - w;
31301                        break;
31302
31303                 }
31304             }
31305             if (pos == 'hdrag') {
31306                 w = ow;
31307             }
31308             this.proxy.setBounds(x, y, w, h);
31309             if(this.dynamic){
31310                 this.resizeElement();
31311             }
31312             }catch(e){}
31313         }
31314         this.fireEvent("resizing", this, x, y, w, h, e);
31315     },
31316
31317     // private
31318     handleOver : function(){
31319         if(this.enabled){
31320             this.el.addClass("x-resizable-over");
31321         }
31322     },
31323
31324     // private
31325     handleOut : function(){
31326         if(!this.resizing){
31327             this.el.removeClass("x-resizable-over");
31328         }
31329     },
31330
31331     /**
31332      * Returns the element this component is bound to.
31333      * @return {Roo.Element}
31334      */
31335     getEl : function(){
31336         return this.el;
31337     },
31338
31339     /**
31340      * Returns the resizeChild element (or null).
31341      * @return {Roo.Element}
31342      */
31343     getResizeChild : function(){
31344         return this.resizeChild;
31345     },
31346     groupHandler : function()
31347     {
31348         
31349     },
31350     /**
31351      * Destroys this resizable. If the element was wrapped and
31352      * removeEl is not true then the element remains.
31353      * @param {Boolean} removeEl (optional) true to remove the element from the DOM
31354      */
31355     destroy : function(removeEl){
31356         this.proxy.remove();
31357         if(this.overlay){
31358             this.overlay.removeAllListeners();
31359             this.overlay.remove();
31360         }
31361         var ps = Roo.Resizable.positions;
31362         for(var k in ps){
31363             if(typeof ps[k] != "function" && this[ps[k]]){
31364                 var h = this[ps[k]];
31365                 h.el.removeAllListeners();
31366                 h.el.remove();
31367             }
31368         }
31369         if(removeEl){
31370             this.el.update("");
31371             this.el.remove();
31372         }
31373     }
31374 });
31375
31376 // private
31377 // hash to map config positions to true positions
31378 Roo.Resizable.positions = {
31379     n: "north", s: "south", e: "east", w: "west", se: "southeast", sw: "southwest", nw: "northwest", ne: "northeast", 
31380     hd: "hdrag"
31381 };
31382
31383 // private
31384 Roo.Resizable.Handle = function(rz, pos, disableTrackOver, transparent){
31385     if(!this.tpl){
31386         // only initialize the template if resizable is used
31387         var tpl = Roo.DomHelper.createTemplate(
31388             {tag: "div", cls: "x-resizable-handle x-resizable-handle-{0}"}
31389         );
31390         tpl.compile();
31391         Roo.Resizable.Handle.prototype.tpl = tpl;
31392     }
31393     this.position = pos;
31394     this.rz = rz;
31395     // show north drag fro topdra
31396     var handlepos = pos == 'hdrag' ? 'north' : pos;
31397     
31398     this.el = this.tpl.append(rz.el.dom, [handlepos], true);
31399     if (pos == 'hdrag') {
31400         this.el.setStyle('cursor', 'pointer');
31401     }
31402     this.el.unselectable();
31403     if(transparent){
31404         this.el.setOpacity(0);
31405     }
31406     this.el.on("mousedown", this.onMouseDown, this);
31407     if(!disableTrackOver){
31408         this.el.on("mouseover", this.onMouseOver, this);
31409         this.el.on("mouseout", this.onMouseOut, this);
31410     }
31411 };
31412
31413 // private
31414 Roo.Resizable.Handle.prototype = {
31415     afterResize : function(rz){
31416         Roo.log('after?');
31417         // do nothing
31418     },
31419     // private
31420     onMouseDown : function(e){
31421         this.rz.onMouseDown(this, e);
31422     },
31423     // private
31424     onMouseOver : function(e){
31425         this.rz.handleOver(this, e);
31426     },
31427     // private
31428     onMouseOut : function(e){
31429         this.rz.handleOut(this, e);
31430     }
31431 };/*
31432  * Based on:
31433  * Ext JS Library 1.1.1
31434  * Copyright(c) 2006-2007, Ext JS, LLC.
31435  *
31436  * Originally Released Under LGPL - original licence link has changed is not relivant.
31437  *
31438  * Fork - LGPL
31439  * <script type="text/javascript">
31440  */
31441
31442 /**
31443  * @class Roo.Editor
31444  * @extends Roo.Component
31445  * A base editor field that handles displaying/hiding on demand and has some built-in sizing and event handling logic.
31446  * @constructor
31447  * Create a new Editor
31448  * @param {Roo.form.Field} field The Field object (or descendant)
31449  * @param {Object} config The config object
31450  */
31451 Roo.Editor = function(field, config){
31452     Roo.Editor.superclass.constructor.call(this, config);
31453     this.field = field;
31454     this.addEvents({
31455         /**
31456              * @event beforestartedit
31457              * Fires when editing is initiated, but before the value changes.  Editing can be canceled by returning
31458              * false from the handler of this event.
31459              * @param {Editor} this
31460              * @param {Roo.Element} boundEl The underlying element bound to this editor
31461              * @param {Mixed} value The field value being set
31462              */
31463         "beforestartedit" : true,
31464         /**
31465              * @event startedit
31466              * Fires when this editor is displayed
31467              * @param {Roo.Element} boundEl The underlying element bound to this editor
31468              * @param {Mixed} value The starting field value
31469              */
31470         "startedit" : true,
31471         /**
31472              * @event beforecomplete
31473              * Fires after a change has been made to the field, but before the change is reflected in the underlying
31474              * field.  Saving the change to the field can be canceled by returning false from the handler of this event.
31475              * Note that if the value has not changed and ignoreNoChange = true, the editing will still end but this
31476              * event will not fire since no edit actually occurred.
31477              * @param {Editor} this
31478              * @param {Mixed} value The current field value
31479              * @param {Mixed} startValue The original field value
31480              */
31481         "beforecomplete" : true,
31482         /**
31483              * @event complete
31484              * Fires after editing is complete and any changed value has been written to the underlying field.
31485              * @param {Editor} this
31486              * @param {Mixed} value The current field value
31487              * @param {Mixed} startValue The original field value
31488              */
31489         "complete" : true,
31490         /**
31491          * @event specialkey
31492          * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
31493          * {@link Roo.EventObject#getKey} to determine which key was pressed.
31494          * @param {Roo.form.Field} this
31495          * @param {Roo.EventObject} e The event object
31496          */
31497         "specialkey" : true
31498     });
31499 };
31500
31501 Roo.extend(Roo.Editor, Roo.Component, {
31502     /**
31503      * @cfg {Boolean/String} autosize
31504      * True for the editor to automatically adopt the size of the underlying field, "width" to adopt the width only,
31505      * or "height" to adopt the height only (defaults to false)
31506      */
31507     /**
31508      * @cfg {Boolean} revertInvalid
31509      * True to automatically revert the field value and cancel the edit when the user completes an edit and the field
31510      * validation fails (defaults to true)
31511      */
31512     /**
31513      * @cfg {Boolean} ignoreNoChange
31514      * True to skip the the edit completion process (no save, no events fired) if the user completes an edit and
31515      * the value has not changed (defaults to false).  Applies only to string values - edits for other data types
31516      * will never be ignored.
31517      */
31518     /**
31519      * @cfg {Boolean} hideEl
31520      * False to keep the bound element visible while the editor is displayed (defaults to true)
31521      */
31522     /**
31523      * @cfg {Mixed} value
31524      * The data value of the underlying field (defaults to "")
31525      */
31526     value : "",
31527     /**
31528      * @cfg {String} alignment
31529      * The position to align to (see {@link Roo.Element#alignTo} for more details, defaults to "c-c?").
31530      */
31531     alignment: "c-c?",
31532     /**
31533      * @cfg {Boolean/String} shadow "sides" for sides/bottom only, "frame" for 4-way shadow, and "drop"
31534      * for bottom-right shadow (defaults to "frame")
31535      */
31536     shadow : "frame",
31537     /**
31538      * @cfg {Boolean} constrain True to constrain the editor to the viewport
31539      */
31540     constrain : false,
31541     /**
31542      * @cfg {Boolean} completeOnEnter True to complete the edit when the enter key is pressed (defaults to false)
31543      */
31544     completeOnEnter : false,
31545     /**
31546      * @cfg {Boolean} cancelOnEsc True to cancel the edit when the escape key is pressed (defaults to false)
31547      */
31548     cancelOnEsc : false,
31549     /**
31550      * @cfg {Boolean} updateEl True to update the innerHTML of the bound element when the update completes (defaults to false)
31551      */
31552     updateEl : false,
31553
31554     // private
31555     onRender : function(ct, position){
31556         this.el = new Roo.Layer({
31557             shadow: this.shadow,
31558             cls: "x-editor",
31559             parentEl : ct,
31560             shim : this.shim,
31561             shadowOffset:4,
31562             id: this.id,
31563             constrain: this.constrain
31564         });
31565         this.el.setStyle("overflow", Roo.isGecko ? "auto" : "hidden");
31566         if(this.field.msgTarget != 'title'){
31567             this.field.msgTarget = 'qtip';
31568         }
31569         this.field.render(this.el);
31570         if(Roo.isGecko){
31571             this.field.el.dom.setAttribute('autocomplete', 'off');
31572         }
31573         this.field.on("specialkey", this.onSpecialKey, this);
31574         if(this.swallowKeys){
31575             this.field.el.swallowEvent(['keydown','keypress']);
31576         }
31577         this.field.show();
31578         this.field.on("blur", this.onBlur, this);
31579         if(this.field.grow){
31580             this.field.on("autosize", this.el.sync,  this.el, {delay:1});
31581         }
31582     },
31583
31584     onSpecialKey : function(field, e)
31585     {
31586         //Roo.log('editor onSpecialKey');
31587         if(this.completeOnEnter && e.getKey() == e.ENTER){
31588             e.stopEvent();
31589             this.completeEdit();
31590             return;
31591         }
31592         // do not fire special key otherwise it might hide close the editor...
31593         if(e.getKey() == e.ENTER){    
31594             return;
31595         }
31596         if(this.cancelOnEsc && e.getKey() == e.ESC){
31597             this.cancelEdit();
31598             return;
31599         } 
31600         this.fireEvent('specialkey', field, e);
31601     
31602     },
31603
31604     /**
31605      * Starts the editing process and shows the editor.
31606      * @param {String/HTMLElement/Element} el The element to edit
31607      * @param {String} value (optional) A value to initialize the editor with. If a value is not provided, it defaults
31608       * to the innerHTML of el.
31609      */
31610     startEdit : function(el, value){
31611         if(this.editing){
31612             this.completeEdit();
31613         }
31614         this.boundEl = Roo.get(el);
31615         var v = value !== undefined ? value : this.boundEl.dom.innerHTML;
31616         if(!this.rendered){
31617             this.render(this.parentEl || document.body);
31618         }
31619         if(this.fireEvent("beforestartedit", this, this.boundEl, v) === false){
31620             return;
31621         }
31622         this.startValue = v;
31623         this.field.setValue(v);
31624         if(this.autoSize){
31625             var sz = this.boundEl.getSize();
31626             switch(this.autoSize){
31627                 case "width":
31628                 this.setSize(sz.width,  "");
31629                 break;
31630                 case "height":
31631                 this.setSize("",  sz.height);
31632                 break;
31633                 default:
31634                 this.setSize(sz.width,  sz.height);
31635             }
31636         }
31637         this.el.alignTo(this.boundEl, this.alignment);
31638         this.editing = true;
31639         if(Roo.QuickTips){
31640             Roo.QuickTips.disable();
31641         }
31642         this.show();
31643     },
31644
31645     /**
31646      * Sets the height and width of this editor.
31647      * @param {Number} width The new width
31648      * @param {Number} height The new height
31649      */
31650     setSize : function(w, h){
31651         this.field.setSize(w, h);
31652         if(this.el){
31653             this.el.sync();
31654         }
31655     },
31656
31657     /**
31658      * Realigns the editor to the bound field based on the current alignment config value.
31659      */
31660     realign : function(){
31661         this.el.alignTo(this.boundEl, this.alignment);
31662     },
31663
31664     /**
31665      * Ends the editing process, persists the changed value to the underlying field, and hides the editor.
31666      * @param {Boolean} remainVisible Override the default behavior and keep the editor visible after edit (defaults to false)
31667      */
31668     completeEdit : function(remainVisible){
31669         if(!this.editing){
31670             return;
31671         }
31672         var v = this.getValue();
31673         if(this.revertInvalid !== false && !this.field.isValid()){
31674             v = this.startValue;
31675             this.cancelEdit(true);
31676         }
31677         if(String(v) === String(this.startValue) && this.ignoreNoChange){
31678             this.editing = false;
31679             this.hide();
31680             return;
31681         }
31682         if(this.fireEvent("beforecomplete", this, v, this.startValue) !== false){
31683             this.editing = false;
31684             if(this.updateEl && this.boundEl){
31685                 this.boundEl.update(v);
31686             }
31687             if(remainVisible !== true){
31688                 this.hide();
31689             }
31690             this.fireEvent("complete", this, v, this.startValue);
31691         }
31692     },
31693
31694     // private
31695     onShow : function(){
31696         this.el.show();
31697         if(this.hideEl !== false){
31698             this.boundEl.hide();
31699         }
31700         this.field.show();
31701         if(Roo.isIE && !this.fixIEFocus){ // IE has problems with focusing the first time
31702             this.fixIEFocus = true;
31703             this.deferredFocus.defer(50, this);
31704         }else{
31705             this.field.focus();
31706         }
31707         this.fireEvent("startedit", this.boundEl, this.startValue);
31708     },
31709
31710     deferredFocus : function(){
31711         if(this.editing){
31712             this.field.focus();
31713         }
31714     },
31715
31716     /**
31717      * Cancels the editing process and hides the editor without persisting any changes.  The field value will be
31718      * reverted to the original starting value.
31719      * @param {Boolean} remainVisible Override the default behavior and keep the editor visible after
31720      * cancel (defaults to false)
31721      */
31722     cancelEdit : function(remainVisible){
31723         if(this.editing){
31724             this.setValue(this.startValue);
31725             if(remainVisible !== true){
31726                 this.hide();
31727             }
31728         }
31729     },
31730
31731     // private
31732     onBlur : function(){
31733         if(this.allowBlur !== true && this.editing){
31734             this.completeEdit();
31735         }
31736     },
31737
31738     // private
31739     onHide : function(){
31740         if(this.editing){
31741             this.completeEdit();
31742             return;
31743         }
31744         this.field.blur();
31745         if(this.field.collapse){
31746             this.field.collapse();
31747         }
31748         this.el.hide();
31749         if(this.hideEl !== false){
31750             this.boundEl.show();
31751         }
31752         if(Roo.QuickTips){
31753             Roo.QuickTips.enable();
31754         }
31755     },
31756
31757     /**
31758      * Sets the data value of the editor
31759      * @param {Mixed} value Any valid value supported by the underlying field
31760      */
31761     setValue : function(v){
31762         this.field.setValue(v);
31763     },
31764
31765     /**
31766      * Gets the data value of the editor
31767      * @return {Mixed} The data value
31768      */
31769     getValue : function(){
31770         return this.field.getValue();
31771     }
31772 });/*
31773  * Based on:
31774  * Ext JS Library 1.1.1
31775  * Copyright(c) 2006-2007, Ext JS, LLC.
31776  *
31777  * Originally Released Under LGPL - original licence link has changed is not relivant.
31778  *
31779  * Fork - LGPL
31780  * <script type="text/javascript">
31781  */
31782  
31783 /**
31784  * @class Roo.BasicDialog
31785  * @extends Roo.util.Observable
31786  * Lightweight Dialog Class.  The code below shows the creation of a typical dialog using existing HTML markup:
31787  * <pre><code>
31788 var dlg = new Roo.BasicDialog("my-dlg", {
31789     height: 200,
31790     width: 300,
31791     minHeight: 100,
31792     minWidth: 150,
31793     modal: true,
31794     proxyDrag: true,
31795     shadow: true
31796 });
31797 dlg.addKeyListener(27, dlg.hide, dlg); // ESC can also close the dialog
31798 dlg.addButton('OK', dlg.hide, dlg);    // Could call a save function instead of hiding
31799 dlg.addButton('Cancel', dlg.hide, dlg);
31800 dlg.show();
31801 </code></pre>
31802   <b>A Dialog should always be a direct child of the body element.</b>
31803  * @cfg {Boolean/DomHelper} autoCreate True to auto create from scratch, or using a DomHelper Object (defaults to false)
31804  * @cfg {String} title Default text to display in the title bar (defaults to null)
31805  * @cfg {Number} width Width of the dialog in pixels (can also be set via CSS).  Determined by browser if unspecified.
31806  * @cfg {Number} height Height of the dialog in pixels (can also be set via CSS).  Determined by browser if unspecified.
31807  * @cfg {Number} x The default left page coordinate of the dialog (defaults to center screen)
31808  * @cfg {Number} y The default top page coordinate of the dialog (defaults to center screen)
31809  * @cfg {String/Element} animateTarget Id or element from which the dialog should animate while opening
31810  * (defaults to null with no animation)
31811  * @cfg {Boolean} resizable False to disable manual dialog resizing (defaults to true)
31812  * @cfg {String} resizeHandles Which resize handles to display - see the {@link Roo.Resizable} handles config
31813  * property for valid values (defaults to 'all')
31814  * @cfg {Number} minHeight The minimum allowable height for a resizable dialog (defaults to 80)
31815  * @cfg {Number} minWidth The minimum allowable width for a resizable dialog (defaults to 200)
31816  * @cfg {Boolean} modal True to show the dialog modally, preventing user interaction with the rest of the page (defaults to false)
31817  * @cfg {Boolean} autoScroll True to allow the dialog body contents to overflow and display scrollbars (defaults to false)
31818  * @cfg {Boolean} closable False to remove the built-in top-right corner close button (defaults to true)
31819  * @cfg {Boolean} collapsible False to remove the built-in top-right corner collapse button (defaults to true)
31820  * @cfg {Boolean} constraintoviewport True to keep the dialog constrained within the visible viewport boundaries (defaults to true)
31821  * @cfg {Boolean} syncHeightBeforeShow True to cause the dimensions to be recalculated before the dialog is shown (defaults to false)
31822  * @cfg {Boolean} draggable False to disable dragging of the dialog within the viewport (defaults to true)
31823  * @cfg {Boolean} autoTabs If true, all elements with class 'x-dlg-tab' will get automatically converted to tabs (defaults to false)
31824  * @cfg {String} tabTag The tag name of tab elements, used when autoTabs = true (defaults to 'div')
31825  * @cfg {Boolean} proxyDrag True to drag a lightweight proxy element rather than the dialog itself, used when
31826  * draggable = true (defaults to false)
31827  * @cfg {Boolean} fixedcenter True to ensure that anytime the dialog is shown or resized it gets centered (defaults to false)
31828  * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
31829  * shadow (defaults to false)
31830  * @cfg {Number} shadowOffset The number of pixels to offset the shadow if displayed (defaults to 5)
31831  * @cfg {String} buttonAlign Valid values are "left," "center" and "right" (defaults to "right")
31832  * @cfg {Number} minButtonWidth Minimum width of all dialog buttons (defaults to 75)
31833  * @cfg {Array} buttons Array of buttons
31834  * @cfg {Boolean} shim True to create an iframe shim that prevents selects from showing through (defaults to false)
31835  * @constructor
31836  * Create a new BasicDialog.
31837  * @param {String/HTMLElement/Roo.Element} el The container element or DOM node, or its id
31838  * @param {Object} config Configuration options
31839  */
31840 Roo.BasicDialog = function(el, config){
31841     this.el = Roo.get(el);
31842     var dh = Roo.DomHelper;
31843     if(!this.el && config && config.autoCreate){
31844         if(typeof config.autoCreate == "object"){
31845             if(!config.autoCreate.id){
31846                 config.autoCreate.id = el;
31847             }
31848             this.el = dh.append(document.body,
31849                         config.autoCreate, true);
31850         }else{
31851             this.el = dh.append(document.body,
31852                         {tag: "div", id: el, style:'visibility:hidden;'}, true);
31853         }
31854     }
31855     el = this.el;
31856     el.setDisplayed(true);
31857     el.hide = this.hideAction;
31858     this.id = el.id;
31859     el.addClass("x-dlg");
31860
31861     Roo.apply(this, config);
31862
31863     this.proxy = el.createProxy("x-dlg-proxy");
31864     this.proxy.hide = this.hideAction;
31865     this.proxy.setOpacity(.5);
31866     this.proxy.hide();
31867
31868     if(config.width){
31869         el.setWidth(config.width);
31870     }
31871     if(config.height){
31872         el.setHeight(config.height);
31873     }
31874     this.size = el.getSize();
31875     if(typeof config.x != "undefined" && typeof config.y != "undefined"){
31876         this.xy = [config.x,config.y];
31877     }else{
31878         this.xy = el.getCenterXY(true);
31879     }
31880     /** The header element @type Roo.Element */
31881     this.header = el.child("> .x-dlg-hd");
31882     /** The body element @type Roo.Element */
31883     this.body = el.child("> .x-dlg-bd");
31884     /** The footer element @type Roo.Element */
31885     this.footer = el.child("> .x-dlg-ft");
31886
31887     if(!this.header){
31888         this.header = el.createChild({tag: "div", cls:"x-dlg-hd", html: "&#160;"}, this.body ? this.body.dom : null);
31889     }
31890     if(!this.body){
31891         this.body = el.createChild({tag: "div", cls:"x-dlg-bd"});
31892     }
31893
31894     this.header.unselectable();
31895     if(this.title){
31896         this.header.update(this.title);
31897     }
31898     // this element allows the dialog to be focused for keyboard event
31899     this.focusEl = el.createChild({tag: "a", href:"#", cls:"x-dlg-focus", tabIndex:"-1"});
31900     this.focusEl.swallowEvent("click", true);
31901
31902     this.header.wrap({cls:"x-dlg-hd-right"}).wrap({cls:"x-dlg-hd-left"}, true);
31903
31904     // wrap the body and footer for special rendering
31905     this.bwrap = this.body.wrap({tag: "div", cls:"x-dlg-dlg-body"});
31906     if(this.footer){
31907         this.bwrap.dom.appendChild(this.footer.dom);
31908     }
31909
31910     this.bg = this.el.createChild({
31911         tag: "div", cls:"x-dlg-bg",
31912         html: '<div class="x-dlg-bg-left"><div class="x-dlg-bg-right"><div class="x-dlg-bg-center">&#160;</div></div></div>'
31913     });
31914     this.centerBg = this.bg.child("div.x-dlg-bg-center");
31915
31916
31917     if(this.autoScroll !== false && !this.autoTabs){
31918         this.body.setStyle("overflow", "auto");
31919     }
31920
31921     this.toolbox = this.el.createChild({cls: "x-dlg-toolbox"});
31922
31923     if(this.closable !== false){
31924         this.el.addClass("x-dlg-closable");
31925         this.close = this.toolbox.createChild({cls:"x-dlg-close"});
31926         this.close.on("click", this.closeClick, this);
31927         this.close.addClassOnOver("x-dlg-close-over");
31928     }
31929     if(this.collapsible !== false){
31930         this.collapseBtn = this.toolbox.createChild({cls:"x-dlg-collapse"});
31931         this.collapseBtn.on("click", this.collapseClick, this);
31932         this.collapseBtn.addClassOnOver("x-dlg-collapse-over");
31933         this.header.on("dblclick", this.collapseClick, this);
31934     }
31935     if(this.resizable !== false){
31936         this.el.addClass("x-dlg-resizable");
31937         this.resizer = new Roo.Resizable(el, {
31938             minWidth: this.minWidth || 80,
31939             minHeight:this.minHeight || 80,
31940             handles: this.resizeHandles || "all",
31941             pinned: true
31942         });
31943         this.resizer.on("beforeresize", this.beforeResize, this);
31944         this.resizer.on("resize", this.onResize, this);
31945     }
31946     if(this.draggable !== false){
31947         el.addClass("x-dlg-draggable");
31948         if (!this.proxyDrag) {
31949             var dd = new Roo.dd.DD(el.dom.id, "WindowDrag");
31950         }
31951         else {
31952             var dd = new Roo.dd.DDProxy(el.dom.id, "WindowDrag", {dragElId: this.proxy.id});
31953         }
31954         dd.setHandleElId(this.header.id);
31955         dd.endDrag = this.endMove.createDelegate(this);
31956         dd.startDrag = this.startMove.createDelegate(this);
31957         dd.onDrag = this.onDrag.createDelegate(this);
31958         dd.scroll = false;
31959         this.dd = dd;
31960     }
31961     if(this.modal){
31962         this.mask = dh.append(document.body, {tag: "div", cls:"x-dlg-mask"}, true);
31963         this.mask.enableDisplayMode("block");
31964         this.mask.hide();
31965         this.el.addClass("x-dlg-modal");
31966     }
31967     if(this.shadow){
31968         this.shadow = new Roo.Shadow({
31969             mode : typeof this.shadow == "string" ? this.shadow : "sides",
31970             offset : this.shadowOffset
31971         });
31972     }else{
31973         this.shadowOffset = 0;
31974     }
31975     if(Roo.useShims && this.shim !== false){
31976         this.shim = this.el.createShim();
31977         this.shim.hide = this.hideAction;
31978         this.shim.hide();
31979     }else{
31980         this.shim = false;
31981     }
31982     if(this.autoTabs){
31983         this.initTabs();
31984     }
31985     if (this.buttons) { 
31986         var bts= this.buttons;
31987         this.buttons = [];
31988         Roo.each(bts, function(b) {
31989             this.addButton(b);
31990         }, this);
31991     }
31992     
31993     
31994     this.addEvents({
31995         /**
31996          * @event keydown
31997          * Fires when a key is pressed
31998          * @param {Roo.BasicDialog} this
31999          * @param {Roo.EventObject} e
32000          */
32001         "keydown" : true,
32002         /**
32003          * @event move
32004          * Fires when this dialog is moved by the user.
32005          * @param {Roo.BasicDialog} this
32006          * @param {Number} x The new page X
32007          * @param {Number} y The new page Y
32008          */
32009         "move" : true,
32010         /**
32011          * @event resize
32012          * Fires when this dialog is resized by the user.
32013          * @param {Roo.BasicDialog} this
32014          * @param {Number} width The new width
32015          * @param {Number} height The new height
32016          */
32017         "resize" : true,
32018         /**
32019          * @event beforehide
32020          * Fires before this dialog is hidden.
32021          * @param {Roo.BasicDialog} this
32022          */
32023         "beforehide" : true,
32024         /**
32025          * @event hide
32026          * Fires when this dialog is hidden.
32027          * @param {Roo.BasicDialog} this
32028          */
32029         "hide" : true,
32030         /**
32031          * @event beforeshow
32032          * Fires before this dialog is shown.
32033          * @param {Roo.BasicDialog} this
32034          */
32035         "beforeshow" : true,
32036         /**
32037          * @event show
32038          * Fires when this dialog is shown.
32039          * @param {Roo.BasicDialog} this
32040          */
32041         "show" : true
32042     });
32043     el.on("keydown", this.onKeyDown, this);
32044     el.on("mousedown", this.toFront, this);
32045     Roo.EventManager.onWindowResize(this.adjustViewport, this, true);
32046     this.el.hide();
32047     Roo.DialogManager.register(this);
32048     Roo.BasicDialog.superclass.constructor.call(this);
32049 };
32050
32051 Roo.extend(Roo.BasicDialog, Roo.util.Observable, {
32052     shadowOffset: Roo.isIE ? 6 : 5,
32053     minHeight: 80,
32054     minWidth: 200,
32055     minButtonWidth: 75,
32056     defaultButton: null,
32057     buttonAlign: "right",
32058     tabTag: 'div',
32059     firstShow: true,
32060
32061     /**
32062      * Sets the dialog title text
32063      * @param {String} text The title text to display
32064      * @return {Roo.BasicDialog} this
32065      */
32066     setTitle : function(text){
32067         this.header.update(text);
32068         return this;
32069     },
32070
32071     // private
32072     closeClick : function(){
32073         this.hide();
32074     },
32075
32076     // private
32077     collapseClick : function(){
32078         this[this.collapsed ? "expand" : "collapse"]();
32079     },
32080
32081     /**
32082      * Collapses the dialog to its minimized state (only the title bar is visible).
32083      * Equivalent to the user clicking the collapse dialog button.
32084      */
32085     collapse : function(){
32086         if(!this.collapsed){
32087             this.collapsed = true;
32088             this.el.addClass("x-dlg-collapsed");
32089             this.restoreHeight = this.el.getHeight();
32090             this.resizeTo(this.el.getWidth(), this.header.getHeight());
32091         }
32092     },
32093
32094     /**
32095      * Expands a collapsed dialog back to its normal state.  Equivalent to the user
32096      * clicking the expand dialog button.
32097      */
32098     expand : function(){
32099         if(this.collapsed){
32100             this.collapsed = false;
32101             this.el.removeClass("x-dlg-collapsed");
32102             this.resizeTo(this.el.getWidth(), this.restoreHeight);
32103         }
32104     },
32105
32106     /**
32107      * Reinitializes the tabs component, clearing out old tabs and finding new ones.
32108      * @return {Roo.TabPanel} The tabs component
32109      */
32110     initTabs : function(){
32111         var tabs = this.getTabs();
32112         while(tabs.getTab(0)){
32113             tabs.removeTab(0);
32114         }
32115         this.el.select(this.tabTag+'.x-dlg-tab').each(function(el){
32116             var dom = el.dom;
32117             tabs.addTab(Roo.id(dom), dom.title);
32118             dom.title = "";
32119         });
32120         tabs.activate(0);
32121         return tabs;
32122     },
32123
32124     // private
32125     beforeResize : function(){
32126         this.resizer.minHeight = Math.max(this.minHeight, this.getHeaderFooterHeight(true)+40);
32127     },
32128
32129     // private
32130     onResize : function(){
32131         this.refreshSize();
32132         this.syncBodyHeight();
32133         this.adjustAssets();
32134         this.focus();
32135         this.fireEvent("resize", this, this.size.width, this.size.height);
32136     },
32137
32138     // private
32139     onKeyDown : function(e){
32140         if(this.isVisible()){
32141             this.fireEvent("keydown", this, e);
32142         }
32143     },
32144
32145     /**
32146      * Resizes the dialog.
32147      * @param {Number} width
32148      * @param {Number} height
32149      * @return {Roo.BasicDialog} this
32150      */
32151     resizeTo : function(width, height){
32152         this.el.setSize(width, height);
32153         this.size = {width: width, height: height};
32154         this.syncBodyHeight();
32155         if(this.fixedcenter){
32156             this.center();
32157         }
32158         if(this.isVisible()){
32159             this.constrainXY();
32160             this.adjustAssets();
32161         }
32162         this.fireEvent("resize", this, width, height);
32163         return this;
32164     },
32165
32166
32167     /**
32168      * Resizes the dialog to fit the specified content size.
32169      * @param {Number} width
32170      * @param {Number} height
32171      * @return {Roo.BasicDialog} this
32172      */
32173     setContentSize : function(w, h){
32174         h += this.getHeaderFooterHeight() + this.body.getMargins("tb");
32175         w += this.body.getMargins("lr") + this.bwrap.getMargins("lr") + this.centerBg.getPadding("lr");
32176         //if(!this.el.isBorderBox()){
32177             h +=  this.body.getPadding("tb") + this.bwrap.getBorderWidth("tb") + this.body.getBorderWidth("tb") + this.el.getBorderWidth("tb");
32178             w += this.body.getPadding("lr") + this.bwrap.getBorderWidth("lr") + this.body.getBorderWidth("lr") + this.bwrap.getPadding("lr") + this.el.getBorderWidth("lr");
32179         //}
32180         if(this.tabs){
32181             h += this.tabs.stripWrap.getHeight() + this.tabs.bodyEl.getMargins("tb") + this.tabs.bodyEl.getPadding("tb");
32182             w += this.tabs.bodyEl.getMargins("lr") + this.tabs.bodyEl.getPadding("lr");
32183         }
32184         this.resizeTo(w, h);
32185         return this;
32186     },
32187
32188     /**
32189      * Adds a key listener for when this dialog is displayed.  This allows you to hook in a function that will be
32190      * executed in response to a particular key being pressed while the dialog is active.
32191      * @param {Number/Array/Object} key Either the numeric key code, array of key codes or an object with the following options:
32192      *                                  {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
32193      * @param {Function} fn The function to call
32194      * @param {Object} scope (optional) The scope of the function
32195      * @return {Roo.BasicDialog} this
32196      */
32197     addKeyListener : function(key, fn, scope){
32198         var keyCode, shift, ctrl, alt;
32199         if(typeof key == "object" && !(key instanceof Array)){
32200             keyCode = key["key"];
32201             shift = key["shift"];
32202             ctrl = key["ctrl"];
32203             alt = key["alt"];
32204         }else{
32205             keyCode = key;
32206         }
32207         var handler = function(dlg, e){
32208             if((!shift || e.shiftKey) && (!ctrl || e.ctrlKey) &&  (!alt || e.altKey)){
32209                 var k = e.getKey();
32210                 if(keyCode instanceof Array){
32211                     for(var i = 0, len = keyCode.length; i < len; i++){
32212                         if(keyCode[i] == k){
32213                           fn.call(scope || window, dlg, k, e);
32214                           return;
32215                         }
32216                     }
32217                 }else{
32218                     if(k == keyCode){
32219                         fn.call(scope || window, dlg, k, e);
32220                     }
32221                 }
32222             }
32223         };
32224         this.on("keydown", handler);
32225         return this;
32226     },
32227
32228     /**
32229      * Returns the TabPanel component (creates it if it doesn't exist).
32230      * Note: If you wish to simply check for the existence of tabs without creating them,
32231      * check for a null 'tabs' property.
32232      * @return {Roo.TabPanel} The tabs component
32233      */
32234     getTabs : function(){
32235         if(!this.tabs){
32236             this.el.addClass("x-dlg-auto-tabs");
32237             this.body.addClass(this.tabPosition == "bottom" ? "x-tabs-bottom" : "x-tabs-top");
32238             this.tabs = new Roo.TabPanel(this.body.dom, this.tabPosition == "bottom");
32239         }
32240         return this.tabs;
32241     },
32242
32243     /**
32244      * Adds a button to the footer section of the dialog.
32245      * @param {String/Object} config A string becomes the button text, an object can either be a Button config
32246      * object or a valid Roo.DomHelper element config
32247      * @param {Function} handler The function called when the button is clicked
32248      * @param {Object} scope (optional) The scope of the handler function (accepts position as a property)
32249      * @return {Roo.Button} The new button
32250      */
32251     addButton : function(config, handler, scope){
32252         var dh = Roo.DomHelper;
32253         if(!this.footer){
32254             this.footer = dh.append(this.bwrap, {tag: "div", cls:"x-dlg-ft"}, true);
32255         }
32256         if(!this.btnContainer){
32257             var tb = this.footer.createChild({
32258
32259                 cls:"x-dlg-btns x-dlg-btns-"+this.buttonAlign,
32260                 html:'<table cellspacing="0"><tbody><tr></tr></tbody></table><div class="x-clear"></div>'
32261             }, null, true);
32262             this.btnContainer = tb.firstChild.firstChild.firstChild;
32263         }
32264         var bconfig = {
32265             handler: handler,
32266             scope: scope,
32267             minWidth: this.minButtonWidth,
32268             hideParent:true
32269         };
32270         if(typeof config == "string"){
32271             bconfig.text = config;
32272         }else{
32273             if(config.tag){
32274                 bconfig.dhconfig = config;
32275             }else{
32276                 Roo.apply(bconfig, config);
32277             }
32278         }
32279         var fc = false;
32280         if ((typeof(bconfig.position) != 'undefined') && bconfig.position < this.btnContainer.childNodes.length-1) {
32281             bconfig.position = Math.max(0, bconfig.position);
32282             fc = this.btnContainer.childNodes[bconfig.position];
32283         }
32284          
32285         var btn = new Roo.Button(
32286             fc ? 
32287                 this.btnContainer.insertBefore(document.createElement("td"),fc)
32288                 : this.btnContainer.appendChild(document.createElement("td")),
32289             //Roo.get(this.btnContainer).createChild( { tag: 'td'},  fc ),
32290             bconfig
32291         );
32292         this.syncBodyHeight();
32293         if(!this.buttons){
32294             /**
32295              * Array of all the buttons that have been added to this dialog via addButton
32296              * @type Array
32297              */
32298             this.buttons = [];
32299         }
32300         this.buttons.push(btn);
32301         return btn;
32302     },
32303
32304     /**
32305      * Sets the default button to be focused when the dialog is displayed.
32306      * @param {Roo.BasicDialog.Button} btn The button object returned by {@link #addButton}
32307      * @return {Roo.BasicDialog} this
32308      */
32309     setDefaultButton : function(btn){
32310         this.defaultButton = btn;
32311         return this;
32312     },
32313
32314     // private
32315     getHeaderFooterHeight : function(safe){
32316         var height = 0;
32317         if(this.header){
32318            height += this.header.getHeight();
32319         }
32320         if(this.footer){
32321            var fm = this.footer.getMargins();
32322             height += (this.footer.getHeight()+fm.top+fm.bottom);
32323         }
32324         height += this.bwrap.getPadding("tb")+this.bwrap.getBorderWidth("tb");
32325         height += this.centerBg.getPadding("tb");
32326         return height;
32327     },
32328
32329     // private
32330     syncBodyHeight : function()
32331     {
32332         var bd = this.body, // the text
32333             cb = this.centerBg, // wrapper around bottom.. but does not seem to be used..
32334             bw = this.bwrap;
32335         var height = this.size.height - this.getHeaderFooterHeight(false);
32336         bd.setHeight(height-bd.getMargins("tb"));
32337         var hh = this.header.getHeight();
32338         var h = this.size.height-hh;
32339         cb.setHeight(h);
32340         
32341         bw.setLeftTop(cb.getPadding("l"), hh+cb.getPadding("t"));
32342         bw.setHeight(h-cb.getPadding("tb"));
32343         
32344         bw.setWidth(this.el.getWidth(true)-cb.getPadding("lr"));
32345         bd.setWidth(bw.getWidth(true));
32346         if(this.tabs){
32347             this.tabs.syncHeight();
32348             if(Roo.isIE){
32349                 this.tabs.el.repaint();
32350             }
32351         }
32352     },
32353
32354     /**
32355      * Restores the previous state of the dialog if Roo.state is configured.
32356      * @return {Roo.BasicDialog} this
32357      */
32358     restoreState : function(){
32359         var box = Roo.state.Manager.get(this.stateId || (this.el.id + "-state"));
32360         if(box && box.width){
32361             this.xy = [box.x, box.y];
32362             this.resizeTo(box.width, box.height);
32363         }
32364         return this;
32365     },
32366
32367     // private
32368     beforeShow : function(){
32369         this.expand();
32370         if(this.fixedcenter){
32371             this.xy = this.el.getCenterXY(true);
32372         }
32373         if(this.modal){
32374             Roo.get(document.body).addClass("x-body-masked");
32375             this.mask.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
32376             this.mask.show();
32377         }
32378         this.constrainXY();
32379     },
32380
32381     // private
32382     animShow : function(){
32383         var b = Roo.get(this.animateTarget).getBox();
32384         this.proxy.setSize(b.width, b.height);
32385         this.proxy.setLocation(b.x, b.y);
32386         this.proxy.show();
32387         this.proxy.setBounds(this.xy[0], this.xy[1], this.size.width, this.size.height,
32388                     true, .35, this.showEl.createDelegate(this));
32389     },
32390
32391     /**
32392      * Shows the dialog.
32393      * @param {String/HTMLElement/Roo.Element} animateTarget (optional) Reset the animation target
32394      * @return {Roo.BasicDialog} this
32395      */
32396     show : function(animateTarget){
32397         if (this.fireEvent("beforeshow", this) === false){
32398             return;
32399         }
32400         if(this.syncHeightBeforeShow){
32401             this.syncBodyHeight();
32402         }else if(this.firstShow){
32403             this.firstShow = false;
32404             this.syncBodyHeight(); // sync the height on the first show instead of in the constructor
32405         }
32406         this.animateTarget = animateTarget || this.animateTarget;
32407         if(!this.el.isVisible()){
32408             this.beforeShow();
32409             if(this.animateTarget && Roo.get(this.animateTarget)){
32410                 this.animShow();
32411             }else{
32412                 this.showEl();
32413             }
32414         }
32415         return this;
32416     },
32417
32418     // private
32419     showEl : function(){
32420         this.proxy.hide();
32421         this.el.setXY(this.xy);
32422         this.el.show();
32423         this.adjustAssets(true);
32424         this.toFront();
32425         this.focus();
32426         // IE peekaboo bug - fix found by Dave Fenwick
32427         if(Roo.isIE){
32428             this.el.repaint();
32429         }
32430         this.fireEvent("show", this);
32431     },
32432
32433     /**
32434      * Focuses the dialog.  If a defaultButton is set, it will receive focus, otherwise the
32435      * dialog itself will receive focus.
32436      */
32437     focus : function(){
32438         if(this.defaultButton){
32439             this.defaultButton.focus();
32440         }else{
32441             this.focusEl.focus();
32442         }
32443     },
32444
32445     // private
32446     constrainXY : function(){
32447         if(this.constraintoviewport !== false){
32448             if(!this.viewSize){
32449                 if(this.container){
32450                     var s = this.container.getSize();
32451                     this.viewSize = [s.width, s.height];
32452                 }else{
32453                     this.viewSize = [Roo.lib.Dom.getViewWidth(),Roo.lib.Dom.getViewHeight()];
32454                 }
32455             }
32456             var s = Roo.get(this.container||document).getScroll();
32457
32458             var x = this.xy[0], y = this.xy[1];
32459             var w = this.size.width, h = this.size.height;
32460             var vw = this.viewSize[0], vh = this.viewSize[1];
32461             // only move it if it needs it
32462             var moved = false;
32463             // first validate right/bottom
32464             if(x + w > vw+s.left){
32465                 x = vw - w;
32466                 moved = true;
32467             }
32468             if(y + h > vh+s.top){
32469                 y = vh - h;
32470                 moved = true;
32471             }
32472             // then make sure top/left isn't negative
32473             if(x < s.left){
32474                 x = s.left;
32475                 moved = true;
32476             }
32477             if(y < s.top){
32478                 y = s.top;
32479                 moved = true;
32480             }
32481             if(moved){
32482                 // cache xy
32483                 this.xy = [x, y];
32484                 if(this.isVisible()){
32485                     this.el.setLocation(x, y);
32486                     this.adjustAssets();
32487                 }
32488             }
32489         }
32490     },
32491
32492     // private
32493     onDrag : function(){
32494         if(!this.proxyDrag){
32495             this.xy = this.el.getXY();
32496             this.adjustAssets();
32497         }
32498     },
32499
32500     // private
32501     adjustAssets : function(doShow){
32502         var x = this.xy[0], y = this.xy[1];
32503         var w = this.size.width, h = this.size.height;
32504         if(doShow === true){
32505             if(this.shadow){
32506                 this.shadow.show(this.el);
32507             }
32508             if(this.shim){
32509                 this.shim.show();
32510             }
32511         }
32512         if(this.shadow && this.shadow.isVisible()){
32513             this.shadow.show(this.el);
32514         }
32515         if(this.shim && this.shim.isVisible()){
32516             this.shim.setBounds(x, y, w, h);
32517         }
32518     },
32519
32520     // private
32521     adjustViewport : function(w, h){
32522         if(!w || !h){
32523             w = Roo.lib.Dom.getViewWidth();
32524             h = Roo.lib.Dom.getViewHeight();
32525         }
32526         // cache the size
32527         this.viewSize = [w, h];
32528         if(this.modal && this.mask.isVisible()){
32529             this.mask.setSize(w, h); // first make sure the mask isn't causing overflow
32530             this.mask.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
32531         }
32532         if(this.isVisible()){
32533             this.constrainXY();
32534         }
32535     },
32536
32537     /**
32538      * Destroys this dialog and all its supporting elements (including any tabs, shim,
32539      * shadow, proxy, mask, etc.)  Also removes all event listeners.
32540      * @param {Boolean} removeEl (optional) true to remove the element from the DOM
32541      */
32542     destroy : function(removeEl){
32543         if(this.isVisible()){
32544             this.animateTarget = null;
32545             this.hide();
32546         }
32547         Roo.EventManager.removeResizeListener(this.adjustViewport, this);
32548         if(this.tabs){
32549             this.tabs.destroy(removeEl);
32550         }
32551         Roo.destroy(
32552              this.shim,
32553              this.proxy,
32554              this.resizer,
32555              this.close,
32556              this.mask
32557         );
32558         if(this.dd){
32559             this.dd.unreg();
32560         }
32561         if(this.buttons){
32562            for(var i = 0, len = this.buttons.length; i < len; i++){
32563                this.buttons[i].destroy();
32564            }
32565         }
32566         this.el.removeAllListeners();
32567         if(removeEl === true){
32568             this.el.update("");
32569             this.el.remove();
32570         }
32571         Roo.DialogManager.unregister(this);
32572     },
32573
32574     // private
32575     startMove : function(){
32576         if(this.proxyDrag){
32577             this.proxy.show();
32578         }
32579         if(this.constraintoviewport !== false){
32580             this.dd.constrainTo(document.body, {right: this.shadowOffset, bottom: this.shadowOffset});
32581         }
32582     },
32583
32584     // private
32585     endMove : function(){
32586         if(!this.proxyDrag){
32587             Roo.dd.DD.prototype.endDrag.apply(this.dd, arguments);
32588         }else{
32589             Roo.dd.DDProxy.prototype.endDrag.apply(this.dd, arguments);
32590             this.proxy.hide();
32591         }
32592         this.refreshSize();
32593         this.adjustAssets();
32594         this.focus();
32595         this.fireEvent("move", this, this.xy[0], this.xy[1]);
32596     },
32597
32598     /**
32599      * Brings this dialog to the front of any other visible dialogs
32600      * @return {Roo.BasicDialog} this
32601      */
32602     toFront : function(){
32603         Roo.DialogManager.bringToFront(this);
32604         return this;
32605     },
32606
32607     /**
32608      * Sends this dialog to the back (under) of any other visible dialogs
32609      * @return {Roo.BasicDialog} this
32610      */
32611     toBack : function(){
32612         Roo.DialogManager.sendToBack(this);
32613         return this;
32614     },
32615
32616     /**
32617      * Centers this dialog in the viewport
32618      * @return {Roo.BasicDialog} this
32619      */
32620     center : function(){
32621         var xy = this.el.getCenterXY(true);
32622         this.moveTo(xy[0], xy[1]);
32623         return this;
32624     },
32625
32626     /**
32627      * Moves the dialog's top-left corner to the specified point
32628      * @param {Number} x
32629      * @param {Number} y
32630      * @return {Roo.BasicDialog} this
32631      */
32632     moveTo : function(x, y){
32633         this.xy = [x,y];
32634         if(this.isVisible()){
32635             this.el.setXY(this.xy);
32636             this.adjustAssets();
32637         }
32638         return this;
32639     },
32640
32641     /**
32642      * Aligns the dialog to the specified element
32643      * @param {String/HTMLElement/Roo.Element} element The element to align to.
32644      * @param {String} position The position to align to (see {@link Roo.Element#alignTo} for more details).
32645      * @param {Array} offsets (optional) Offset the positioning by [x, y]
32646      * @return {Roo.BasicDialog} this
32647      */
32648     alignTo : function(element, position, offsets){
32649         this.xy = this.el.getAlignToXY(element, position, offsets);
32650         if(this.isVisible()){
32651             this.el.setXY(this.xy);
32652             this.adjustAssets();
32653         }
32654         return this;
32655     },
32656
32657     /**
32658      * Anchors an element to another element and realigns it when the window is resized.
32659      * @param {String/HTMLElement/Roo.Element} element The element to align to.
32660      * @param {String} position The position to align to (see {@link Roo.Element#alignTo} for more details)
32661      * @param {Array} offsets (optional) Offset the positioning by [x, y]
32662      * @param {Boolean/Number} monitorScroll (optional) true to monitor body scroll and reposition. If this parameter
32663      * is a number, it is used as the buffer delay (defaults to 50ms).
32664      * @return {Roo.BasicDialog} this
32665      */
32666     anchorTo : function(el, alignment, offsets, monitorScroll){
32667         var action = function(){
32668             this.alignTo(el, alignment, offsets);
32669         };
32670         Roo.EventManager.onWindowResize(action, this);
32671         var tm = typeof monitorScroll;
32672         if(tm != 'undefined'){
32673             Roo.EventManager.on(window, 'scroll', action, this,
32674                 {buffer: tm == 'number' ? monitorScroll : 50});
32675         }
32676         action.call(this);
32677         return this;
32678     },
32679
32680     /**
32681      * Returns true if the dialog is visible
32682      * @return {Boolean}
32683      */
32684     isVisible : function(){
32685         return this.el.isVisible();
32686     },
32687
32688     // private
32689     animHide : function(callback){
32690         var b = Roo.get(this.animateTarget).getBox();
32691         this.proxy.show();
32692         this.proxy.setBounds(this.xy[0], this.xy[1], this.size.width, this.size.height);
32693         this.el.hide();
32694         this.proxy.setBounds(b.x, b.y, b.width, b.height, true, .35,
32695                     this.hideEl.createDelegate(this, [callback]));
32696     },
32697
32698     /**
32699      * Hides the dialog.
32700      * @param {Function} callback (optional) Function to call when the dialog is hidden
32701      * @return {Roo.BasicDialog} this
32702      */
32703     hide : function(callback){
32704         if (this.fireEvent("beforehide", this) === false){
32705             return;
32706         }
32707         if(this.shadow){
32708             this.shadow.hide();
32709         }
32710         if(this.shim) {
32711           this.shim.hide();
32712         }
32713         // sometimes animateTarget seems to get set.. causing problems...
32714         // this just double checks..
32715         if(this.animateTarget && Roo.get(this.animateTarget)) {
32716            this.animHide(callback);
32717         }else{
32718             this.el.hide();
32719             this.hideEl(callback);
32720         }
32721         return this;
32722     },
32723
32724     // private
32725     hideEl : function(callback){
32726         this.proxy.hide();
32727         if(this.modal){
32728             this.mask.hide();
32729             Roo.get(document.body).removeClass("x-body-masked");
32730         }
32731         this.fireEvent("hide", this);
32732         if(typeof callback == "function"){
32733             callback();
32734         }
32735     },
32736
32737     // private
32738     hideAction : function(){
32739         this.setLeft("-10000px");
32740         this.setTop("-10000px");
32741         this.setStyle("visibility", "hidden");
32742     },
32743
32744     // private
32745     refreshSize : function(){
32746         this.size = this.el.getSize();
32747         this.xy = this.el.getXY();
32748         Roo.state.Manager.set(this.stateId || this.el.id + "-state", this.el.getBox());
32749     },
32750
32751     // private
32752     // z-index is managed by the DialogManager and may be overwritten at any time
32753     setZIndex : function(index){
32754         if(this.modal){
32755             this.mask.setStyle("z-index", index);
32756         }
32757         if(this.shim){
32758             this.shim.setStyle("z-index", ++index);
32759         }
32760         if(this.shadow){
32761             this.shadow.setZIndex(++index);
32762         }
32763         this.el.setStyle("z-index", ++index);
32764         if(this.proxy){
32765             this.proxy.setStyle("z-index", ++index);
32766         }
32767         if(this.resizer){
32768             this.resizer.proxy.setStyle("z-index", ++index);
32769         }
32770
32771         this.lastZIndex = index;
32772     },
32773
32774     /**
32775      * Returns the element for this dialog
32776      * @return {Roo.Element} The underlying dialog Element
32777      */
32778     getEl : function(){
32779         return this.el;
32780     }
32781 });
32782
32783 /**
32784  * @class Roo.DialogManager
32785  * Provides global access to BasicDialogs that have been created and
32786  * support for z-indexing (layering) multiple open dialogs.
32787  */
32788 Roo.DialogManager = function(){
32789     var list = {};
32790     var accessList = [];
32791     var front = null;
32792
32793     // private
32794     var sortDialogs = function(d1, d2){
32795         return (!d1._lastAccess || d1._lastAccess < d2._lastAccess) ? -1 : 1;
32796     };
32797
32798     // private
32799     var orderDialogs = function(){
32800         accessList.sort(sortDialogs);
32801         var seed = Roo.DialogManager.zseed;
32802         for(var i = 0, len = accessList.length; i < len; i++){
32803             var dlg = accessList[i];
32804             if(dlg){
32805                 dlg.setZIndex(seed + (i*10));
32806             }
32807         }
32808     };
32809
32810     return {
32811         /**
32812          * The starting z-index for BasicDialogs (defaults to 9000)
32813          * @type Number The z-index value
32814          */
32815         zseed : 9000,
32816
32817         // private
32818         register : function(dlg){
32819             list[dlg.id] = dlg;
32820             accessList.push(dlg);
32821         },
32822
32823         // private
32824         unregister : function(dlg){
32825             delete list[dlg.id];
32826             var i=0;
32827             var len=0;
32828             if(!accessList.indexOf){
32829                 for(  i = 0, len = accessList.length; i < len; i++){
32830                     if(accessList[i] == dlg){
32831                         accessList.splice(i, 1);
32832                         return;
32833                     }
32834                 }
32835             }else{
32836                  i = accessList.indexOf(dlg);
32837                 if(i != -1){
32838                     accessList.splice(i, 1);
32839                 }
32840             }
32841         },
32842
32843         /**
32844          * Gets a registered dialog by id
32845          * @param {String/Object} id The id of the dialog or a dialog
32846          * @return {Roo.BasicDialog} this
32847          */
32848         get : function(id){
32849             return typeof id == "object" ? id : list[id];
32850         },
32851
32852         /**
32853          * Brings the specified dialog to the front
32854          * @param {String/Object} dlg The id of the dialog or a dialog
32855          * @return {Roo.BasicDialog} this
32856          */
32857         bringToFront : function(dlg){
32858             dlg = this.get(dlg);
32859             if(dlg != front){
32860                 front = dlg;
32861                 dlg._lastAccess = new Date().getTime();
32862                 orderDialogs();
32863             }
32864             return dlg;
32865         },
32866
32867         /**
32868          * Sends the specified dialog to the back
32869          * @param {String/Object} dlg The id of the dialog or a dialog
32870          * @return {Roo.BasicDialog} this
32871          */
32872         sendToBack : function(dlg){
32873             dlg = this.get(dlg);
32874             dlg._lastAccess = -(new Date().getTime());
32875             orderDialogs();
32876             return dlg;
32877         },
32878
32879         /**
32880          * Hides all dialogs
32881          */
32882         hideAll : function(){
32883             for(var id in list){
32884                 if(list[id] && typeof list[id] != "function" && list[id].isVisible()){
32885                     list[id].hide();
32886                 }
32887             }
32888         }
32889     };
32890 }();
32891
32892 /**
32893  * @class Roo.LayoutDialog
32894  * @extends Roo.BasicDialog
32895  * Dialog which provides adjustments for working with a layout in a Dialog.
32896  * Add your necessary layout config options to the dialog's config.<br>
32897  * Example usage (including a nested layout):
32898  * <pre><code>
32899 if(!dialog){
32900     dialog = new Roo.LayoutDialog("download-dlg", {
32901         modal: true,
32902         width:600,
32903         height:450,
32904         shadow:true,
32905         minWidth:500,
32906         minHeight:350,
32907         autoTabs:true,
32908         proxyDrag:true,
32909         // layout config merges with the dialog config
32910         center:{
32911             tabPosition: "top",
32912             alwaysShowTabs: true
32913         }
32914     });
32915     dialog.addKeyListener(27, dialog.hide, dialog);
32916     dialog.setDefaultButton(dialog.addButton("Close", dialog.hide, dialog));
32917     dialog.addButton("Build It!", this.getDownload, this);
32918
32919     // we can even add nested layouts
32920     var innerLayout = new Roo.BorderLayout("dl-inner", {
32921         east: {
32922             initialSize: 200,
32923             autoScroll:true,
32924             split:true
32925         },
32926         center: {
32927             autoScroll:true
32928         }
32929     });
32930     innerLayout.beginUpdate();
32931     innerLayout.add("east", new Roo.ContentPanel("dl-details"));
32932     innerLayout.add("center", new Roo.ContentPanel("selection-panel"));
32933     innerLayout.endUpdate(true);
32934
32935     var layout = dialog.getLayout();
32936     layout.beginUpdate();
32937     layout.add("center", new Roo.ContentPanel("standard-panel",
32938                         {title: "Download the Source", fitToFrame:true}));
32939     layout.add("center", new Roo.NestedLayoutPanel(innerLayout,
32940                {title: "Build your own roo.js"}));
32941     layout.getRegion("center").showPanel(sp);
32942     layout.endUpdate();
32943 }
32944 </code></pre>
32945     * @constructor
32946     * @param {String/HTMLElement/Roo.Element} el The id of or container element, or config
32947     * @param {Object} config configuration options
32948   */
32949 Roo.LayoutDialog = function(el, cfg){
32950     
32951     var config=  cfg;
32952     if (typeof(cfg) == 'undefined') {
32953         config = Roo.apply({}, el);
32954         // not sure why we use documentElement here.. - it should always be body.
32955         // IE7 borks horribly if we use documentElement.
32956         // webkit also does not like documentElement - it creates a body element...
32957         el = Roo.get( document.body || document.documentElement ).createChild();
32958         //config.autoCreate = true;
32959     }
32960     
32961     
32962     config.autoTabs = false;
32963     Roo.LayoutDialog.superclass.constructor.call(this, el, config);
32964     this.body.setStyle({overflow:"hidden", position:"relative"});
32965     this.layout = new Roo.BorderLayout(this.body.dom, config);
32966     this.layout.monitorWindowResize = false;
32967     this.el.addClass("x-dlg-auto-layout");
32968     // fix case when center region overwrites center function
32969     this.center = Roo.BasicDialog.prototype.center;
32970     this.on("show", this.layout.layout, this.layout, true);
32971     if (config.items) {
32972         var xitems = config.items;
32973         delete config.items;
32974         Roo.each(xitems, this.addxtype, this);
32975     }
32976     
32977     
32978 };
32979 Roo.extend(Roo.LayoutDialog, Roo.BasicDialog, {
32980     /**
32981      * Ends update of the layout <strike>and resets display to none</strike>. Use standard beginUpdate/endUpdate on the layout.
32982      * @deprecated
32983      */
32984     endUpdate : function(){
32985         this.layout.endUpdate();
32986     },
32987
32988     /**
32989      * Begins an update of the layout <strike>and sets display to block and visibility to hidden</strike>. Use standard beginUpdate/endUpdate on the layout.
32990      *  @deprecated
32991      */
32992     beginUpdate : function(){
32993         this.layout.beginUpdate();
32994     },
32995
32996     /**
32997      * Get the BorderLayout for this dialog
32998      * @return {Roo.BorderLayout}
32999      */
33000     getLayout : function(){
33001         return this.layout;
33002     },
33003
33004     showEl : function(){
33005         Roo.LayoutDialog.superclass.showEl.apply(this, arguments);
33006         if(Roo.isIE7){
33007             this.layout.layout();
33008         }
33009     },
33010
33011     // private
33012     // Use the syncHeightBeforeShow config option to control this automatically
33013     syncBodyHeight : function(){
33014         Roo.LayoutDialog.superclass.syncBodyHeight.call(this);
33015         if(this.layout){this.layout.layout();}
33016     },
33017     
33018       /**
33019      * Add an xtype element (actually adds to the layout.)
33020      * @return {Object} xdata xtype object data.
33021      */
33022     
33023     addxtype : function(c) {
33024         return this.layout.addxtype(c);
33025     }
33026 });/*
33027  * Based on:
33028  * Ext JS Library 1.1.1
33029  * Copyright(c) 2006-2007, Ext JS, LLC.
33030  *
33031  * Originally Released Under LGPL - original licence link has changed is not relivant.
33032  *
33033  * Fork - LGPL
33034  * <script type="text/javascript">
33035  */
33036  
33037 /**
33038  * @class Roo.MessageBox
33039  * Utility class for generating different styles of message boxes.  The alias Roo.Msg can also be used.
33040  * Example usage:
33041  *<pre><code>
33042 // Basic alert:
33043 Roo.Msg.alert('Status', 'Changes saved successfully.');
33044
33045 // Prompt for user data:
33046 Roo.Msg.prompt('Name', 'Please enter your name:', function(btn, text){
33047     if (btn == 'ok'){
33048         // process text value...
33049     }
33050 });
33051
33052 // Show a dialog using config options:
33053 Roo.Msg.show({
33054    title:'Save Changes?',
33055    msg: 'Your are closing a tab that has unsaved changes. Would you like to save your changes?',
33056    buttons: Roo.Msg.YESNOCANCEL,
33057    fn: processResult,
33058    animEl: 'elId'
33059 });
33060 </code></pre>
33061  * @singleton
33062  */
33063 Roo.MessageBox = function(){
33064     var dlg, opt, mask, waitTimer;
33065     var bodyEl, msgEl, textboxEl, textareaEl, progressEl, pp;
33066     var buttons, activeTextEl, bwidth;
33067
33068     // private
33069     var handleButton = function(button){
33070         dlg.hide();
33071         Roo.callback(opt.fn, opt.scope||window, [button, activeTextEl.dom.value], 1);
33072     };
33073
33074     // private
33075     var handleHide = function(){
33076         if(opt && opt.cls){
33077             dlg.el.removeClass(opt.cls);
33078         }
33079         if(waitTimer){
33080             Roo.TaskMgr.stop(waitTimer);
33081             waitTimer = null;
33082         }
33083     };
33084
33085     // private
33086     var updateButtons = function(b){
33087         var width = 0;
33088         if(!b){
33089             buttons["ok"].hide();
33090             buttons["cancel"].hide();
33091             buttons["yes"].hide();
33092             buttons["no"].hide();
33093             dlg.footer.dom.style.display = 'none';
33094             return width;
33095         }
33096         dlg.footer.dom.style.display = '';
33097         for(var k in buttons){
33098             if(typeof buttons[k] != "function"){
33099                 if(b[k]){
33100                     buttons[k].show();
33101                     buttons[k].setText(typeof b[k] == "string" ? b[k] : Roo.MessageBox.buttonText[k]);
33102                     width += buttons[k].el.getWidth()+15;
33103                 }else{
33104                     buttons[k].hide();
33105                 }
33106             }
33107         }
33108         return width;
33109     };
33110
33111     // private
33112     var handleEsc = function(d, k, e){
33113         if(opt && opt.closable !== false){
33114             dlg.hide();
33115         }
33116         if(e){
33117             e.stopEvent();
33118         }
33119     };
33120
33121     return {
33122         /**
33123          * Returns a reference to the underlying {@link Roo.BasicDialog} element
33124          * @return {Roo.BasicDialog} The BasicDialog element
33125          */
33126         getDialog : function(){
33127            if(!dlg){
33128                 dlg = new Roo.BasicDialog("x-msg-box", {
33129                     autoCreate : true,
33130                     shadow: true,
33131                     draggable: true,
33132                     resizable:false,
33133                     constraintoviewport:false,
33134                     fixedcenter:true,
33135                     collapsible : false,
33136                     shim:true,
33137                     modal: true,
33138                     width:400, height:100,
33139                     buttonAlign:"center",
33140                     closeClick : function(){
33141                         if(opt && opt.buttons && opt.buttons.no && !opt.buttons.cancel){
33142                             handleButton("no");
33143                         }else{
33144                             handleButton("cancel");
33145                         }
33146                     }
33147                 });
33148                 dlg.on("hide", handleHide);
33149                 mask = dlg.mask;
33150                 dlg.addKeyListener(27, handleEsc);
33151                 buttons = {};
33152                 var bt = this.buttonText;
33153                 buttons["ok"] = dlg.addButton(bt["ok"], handleButton.createCallback("ok"));
33154                 buttons["yes"] = dlg.addButton(bt["yes"], handleButton.createCallback("yes"));
33155                 buttons["no"] = dlg.addButton(bt["no"], handleButton.createCallback("no"));
33156                 buttons["cancel"] = dlg.addButton(bt["cancel"], handleButton.createCallback("cancel"));
33157                 bodyEl = dlg.body.createChild({
33158
33159                     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>'
33160                 });
33161                 msgEl = bodyEl.dom.firstChild;
33162                 textboxEl = Roo.get(bodyEl.dom.childNodes[2]);
33163                 textboxEl.enableDisplayMode();
33164                 textboxEl.addKeyListener([10,13], function(){
33165                     if(dlg.isVisible() && opt && opt.buttons){
33166                         if(opt.buttons.ok){
33167                             handleButton("ok");
33168                         }else if(opt.buttons.yes){
33169                             handleButton("yes");
33170                         }
33171                     }
33172                 });
33173                 textareaEl = Roo.get(bodyEl.dom.childNodes[3]);
33174                 textareaEl.enableDisplayMode();
33175                 progressEl = Roo.get(bodyEl.dom.childNodes[4]);
33176                 progressEl.enableDisplayMode();
33177                 var pf = progressEl.dom.firstChild;
33178                 if (pf) {
33179                     pp = Roo.get(pf.firstChild);
33180                     pp.setHeight(pf.offsetHeight);
33181                 }
33182                 
33183             }
33184             return dlg;
33185         },
33186
33187         /**
33188          * Updates the message box body text
33189          * @param {String} text (optional) Replaces the message box element's innerHTML with the specified string (defaults to
33190          * the XHTML-compliant non-breaking space character '&amp;#160;')
33191          * @return {Roo.MessageBox} This message box
33192          */
33193         updateText : function(text){
33194             if(!dlg.isVisible() && !opt.width){
33195                 dlg.resizeTo(this.maxWidth, 100); // resize first so content is never clipped from previous shows
33196             }
33197             msgEl.innerHTML = text || '&#160;';
33198       
33199             var cw =  Math.max(msgEl.offsetWidth, msgEl.parentNode.scrollWidth);
33200             //Roo.log("guesed size: " + JSON.stringify([cw,msgEl.offsetWidth, msgEl.parentNode.scrollWidth]));
33201             var w = Math.max(
33202                     Math.min(opt.width || cw , this.maxWidth), 
33203                     Math.max(opt.minWidth || this.minWidth, bwidth)
33204             );
33205             if(opt.prompt){
33206                 activeTextEl.setWidth(w);
33207             }
33208             if(dlg.isVisible()){
33209                 dlg.fixedcenter = false;
33210             }
33211             // to big, make it scroll. = But as usual stupid IE does not support
33212             // !important..
33213             
33214             if ( bodyEl.getHeight() > (Roo.lib.Dom.getViewHeight() - 100)) {
33215                 bodyEl.setHeight ( Roo.lib.Dom.getViewHeight() - 100 );
33216                 bodyEl.dom.style.overflowY = 'auto' + ( Roo.isIE ? '' : ' !important');
33217             } else {
33218                 bodyEl.dom.style.height = '';
33219                 bodyEl.dom.style.overflowY = '';
33220             }
33221             if (cw > w) {
33222                 bodyEl.dom.style.get = 'auto' + ( Roo.isIE ? '' : ' !important');
33223             } else {
33224                 bodyEl.dom.style.overflowX = '';
33225             }
33226             
33227             dlg.setContentSize(w, bodyEl.getHeight());
33228             if(dlg.isVisible()){
33229                 dlg.fixedcenter = true;
33230             }
33231             return this;
33232         },
33233
33234         /**
33235          * Updates a progress-style message box's text and progress bar.  Only relevant on message boxes
33236          * initiated via {@link Roo.MessageBox#progress} or by calling {@link Roo.MessageBox#show} with progress: true.
33237          * @param {Number} value Any number between 0 and 1 (e.g., .5)
33238          * @param {String} text (optional) If defined, the message box's body text is replaced with the specified string (defaults to undefined)
33239          * @return {Roo.MessageBox} This message box
33240          */
33241         updateProgress : function(value, text){
33242             if(text){
33243                 this.updateText(text);
33244             }
33245             if (pp) { // weird bug on my firefox - for some reason this is not defined
33246                 pp.setWidth(Math.floor(value*progressEl.dom.firstChild.offsetWidth));
33247             }
33248             return this;
33249         },        
33250
33251         /**
33252          * Returns true if the message box is currently displayed
33253          * @return {Boolean} True if the message box is visible, else false
33254          */
33255         isVisible : function(){
33256             return dlg && dlg.isVisible();  
33257         },
33258
33259         /**
33260          * Hides the message box if it is displayed
33261          */
33262         hide : function(){
33263             if(this.isVisible()){
33264                 dlg.hide();
33265             }  
33266         },
33267
33268         /**
33269          * Displays a new message box, or reinitializes an existing message box, based on the config options
33270          * passed in. All functions (e.g. prompt, alert, etc) on MessageBox call this function internally.
33271          * The following config object properties are supported:
33272          * <pre>
33273 Property    Type             Description
33274 ----------  ---------------  ------------------------------------------------------------------------------------
33275 animEl            String/Element   An id or Element from which the message box should animate as it opens and
33276                                    closes (defaults to undefined)
33277 buttons           Object/Boolean   A button config object (e.g., Roo.MessageBox.OKCANCEL or {ok:'Foo',
33278                                    cancel:'Bar'}), or false to not show any buttons (defaults to false)
33279 closable          Boolean          False to hide the top-right close button (defaults to true).  Note that
33280                                    progress and wait dialogs will ignore this property and always hide the
33281                                    close button as they can only be closed programmatically.
33282 cls               String           A custom CSS class to apply to the message box element
33283 defaultTextHeight Number           The default height in pixels of the message box's multiline textarea if
33284                                    displayed (defaults to 75)
33285 fn                Function         A callback function to execute after closing the dialog.  The arguments to the
33286                                    function will be btn (the name of the button that was clicked, if applicable,
33287                                    e.g. "ok"), and text (the value of the active text field, if applicable).
33288                                    Progress and wait dialogs will ignore this option since they do not respond to
33289                                    user actions and can only be closed programmatically, so any required function
33290                                    should be called by the same code after it closes the dialog.
33291 icon              String           A CSS class that provides a background image to be used as an icon for
33292                                    the dialog (e.g., Roo.MessageBox.WARNING or 'custom-class', defaults to '')
33293 maxWidth          Number           The maximum width in pixels of the message box (defaults to 600)
33294 minWidth          Number           The minimum width in pixels of the message box (defaults to 100)
33295 modal             Boolean          False to allow user interaction with the page while the message box is
33296                                    displayed (defaults to true)
33297 msg               String           A string that will replace the existing message box body text (defaults
33298                                    to the XHTML-compliant non-breaking space character '&#160;')
33299 multiline         Boolean          True to prompt the user to enter multi-line text (defaults to false)
33300 progress          Boolean          True to display a progress bar (defaults to false)
33301 progressText      String           The text to display inside the progress bar if progress = true (defaults to '')
33302 prompt            Boolean          True to prompt the user to enter single-line text (defaults to false)
33303 proxyDrag         Boolean          True to display a lightweight proxy while dragging (defaults to false)
33304 title             String           The title text
33305 value             String           The string value to set into the active textbox element if displayed
33306 wait              Boolean          True to display a progress bar (defaults to false)
33307 width             Number           The width of the dialog in pixels
33308 </pre>
33309          *
33310          * Example usage:
33311          * <pre><code>
33312 Roo.Msg.show({
33313    title: 'Address',
33314    msg: 'Please enter your address:',
33315    width: 300,
33316    buttons: Roo.MessageBox.OKCANCEL,
33317    multiline: true,
33318    fn: saveAddress,
33319    animEl: 'addAddressBtn'
33320 });
33321 </code></pre>
33322          * @param {Object} config Configuration options
33323          * @return {Roo.MessageBox} This message box
33324          */
33325         show : function(options)
33326         {
33327             
33328             // this causes nightmares if you show one dialog after another
33329             // especially on callbacks..
33330              
33331             if(this.isVisible()){
33332                 
33333                 this.hide();
33334                 Roo.log("[Roo.Messagebox] Show called while message displayed:" );
33335                 Roo.log("Old Dialog Message:" +  msgEl.innerHTML );
33336                 Roo.log("New Dialog Message:" +  options.msg )
33337                 //this.alert("ERROR", "Multiple dialogs where displayed at the same time");
33338                 //throw "Roo.MessageBox ERROR : Multiple dialogs where displayed at the same time";
33339                 
33340             }
33341             var d = this.getDialog();
33342             opt = options;
33343             d.setTitle(opt.title || "&#160;");
33344             d.close.setDisplayed(opt.closable !== false);
33345             activeTextEl = textboxEl;
33346             opt.prompt = opt.prompt || (opt.multiline ? true : false);
33347             if(opt.prompt){
33348                 if(opt.multiline){
33349                     textboxEl.hide();
33350                     textareaEl.show();
33351                     textareaEl.setHeight(typeof opt.multiline == "number" ?
33352                         opt.multiline : this.defaultTextHeight);
33353                     activeTextEl = textareaEl;
33354                 }else{
33355                     textboxEl.show();
33356                     textareaEl.hide();
33357                 }
33358             }else{
33359                 textboxEl.hide();
33360                 textareaEl.hide();
33361             }
33362             progressEl.setDisplayed(opt.progress === true);
33363             this.updateProgress(0);
33364             activeTextEl.dom.value = opt.value || "";
33365             if(opt.prompt){
33366                 dlg.setDefaultButton(activeTextEl);
33367             }else{
33368                 var bs = opt.buttons;
33369                 var db = null;
33370                 if(bs && bs.ok){
33371                     db = buttons["ok"];
33372                 }else if(bs && bs.yes){
33373                     db = buttons["yes"];
33374                 }
33375                 dlg.setDefaultButton(db);
33376             }
33377             bwidth = updateButtons(opt.buttons);
33378             this.updateText(opt.msg);
33379             if(opt.cls){
33380                 d.el.addClass(opt.cls);
33381             }
33382             d.proxyDrag = opt.proxyDrag === true;
33383             d.modal = opt.modal !== false;
33384             d.mask = opt.modal !== false ? mask : false;
33385             if(!d.isVisible()){
33386                 // force it to the end of the z-index stack so it gets a cursor in FF
33387                 document.body.appendChild(dlg.el.dom);
33388                 d.animateTarget = null;
33389                 d.show(options.animEl);
33390             }
33391             return this;
33392         },
33393
33394         /**
33395          * Displays a message box with a progress bar.  This message box has no buttons and is not closeable by
33396          * the user.  You are responsible for updating the progress bar as needed via {@link Roo.MessageBox#updateProgress}
33397          * and closing the message box when the process is complete.
33398          * @param {String} title The title bar text
33399          * @param {String} msg The message box body text
33400          * @return {Roo.MessageBox} This message box
33401          */
33402         progress : function(title, msg){
33403             this.show({
33404                 title : title,
33405                 msg : msg,
33406                 buttons: false,
33407                 progress:true,
33408                 closable:false,
33409                 minWidth: this.minProgressWidth,
33410                 modal : true
33411             });
33412             return this;
33413         },
33414
33415         /**
33416          * Displays a standard read-only message box with an OK button (comparable to the basic JavaScript Window.alert).
33417          * If a callback function is passed it will be called after the user clicks the button, and the
33418          * id of the button that was clicked will be passed as the only parameter to the callback
33419          * (could also be the top-right close button).
33420          * @param {String} title The title bar text
33421          * @param {String} msg The message box body text
33422          * @param {Function} fn (optional) The callback function invoked after the message box is closed
33423          * @param {Object} scope (optional) The scope of the callback function
33424          * @return {Roo.MessageBox} This message box
33425          */
33426         alert : function(title, msg, fn, scope){
33427             this.show({
33428                 title : title,
33429                 msg : msg,
33430                 buttons: this.OK,
33431                 fn: fn,
33432                 scope : scope,
33433                 modal : true
33434             });
33435             return this;
33436         },
33437
33438         /**
33439          * Displays a message box with an infinitely auto-updating progress bar.  This can be used to block user
33440          * interaction while waiting for a long-running process to complete that does not have defined intervals.
33441          * You are responsible for closing the message box when the process is complete.
33442          * @param {String} msg The message box body text
33443          * @param {String} title (optional) The title bar text
33444          * @return {Roo.MessageBox} This message box
33445          */
33446         wait : function(msg, title){
33447             this.show({
33448                 title : title,
33449                 msg : msg,
33450                 buttons: false,
33451                 closable:false,
33452                 progress:true,
33453                 modal:true,
33454                 width:300,
33455                 wait:true
33456             });
33457             waitTimer = Roo.TaskMgr.start({
33458                 run: function(i){
33459                     Roo.MessageBox.updateProgress(((((i+20)%20)+1)*5)*.01);
33460                 },
33461                 interval: 1000
33462             });
33463             return this;
33464         },
33465
33466         /**
33467          * Displays a confirmation message box with Yes and No buttons (comparable to JavaScript's Window.confirm).
33468          * If a callback function is passed it will be called after the user clicks either button, and the id of the
33469          * button that was clicked will be passed as the only parameter to the callback (could also be the top-right close button).
33470          * @param {String} title The title bar text
33471          * @param {String} msg The message box body text
33472          * @param {Function} fn (optional) The callback function invoked after the message box is closed
33473          * @param {Object} scope (optional) The scope of the callback function
33474          * @return {Roo.MessageBox} This message box
33475          */
33476         confirm : function(title, msg, fn, scope){
33477             this.show({
33478                 title : title,
33479                 msg : msg,
33480                 buttons: this.YESNO,
33481                 fn: fn,
33482                 scope : scope,
33483                 modal : true
33484             });
33485             return this;
33486         },
33487
33488         /**
33489          * Displays a message box with OK and Cancel buttons prompting the user to enter some text (comparable to
33490          * JavaScript's Window.prompt).  The prompt can be a single-line or multi-line textbox.  If a callback function
33491          * is passed it will be called after the user clicks either button, and the id of the button that was clicked
33492          * (could also be the top-right close button) and the text that was entered will be passed as the two
33493          * parameters to the callback.
33494          * @param {String} title The title bar text
33495          * @param {String} msg The message box body text
33496          * @param {Function} fn (optional) The callback function invoked after the message box is closed
33497          * @param {Object} scope (optional) The scope of the callback function
33498          * @param {Boolean/Number} multiline (optional) True to create a multiline textbox using the defaultTextHeight
33499          * property, or the height in pixels to create the textbox (defaults to false / single-line)
33500          * @return {Roo.MessageBox} This message box
33501          */
33502         prompt : function(title, msg, fn, scope, multiline){
33503             this.show({
33504                 title : title,
33505                 msg : msg,
33506                 buttons: this.OKCANCEL,
33507                 fn: fn,
33508                 minWidth:250,
33509                 scope : scope,
33510                 prompt:true,
33511                 multiline: multiline,
33512                 modal : true
33513             });
33514             return this;
33515         },
33516
33517         /**
33518          * Button config that displays a single OK button
33519          * @type Object
33520          */
33521         OK : {ok:true},
33522         /**
33523          * Button config that displays Yes and No buttons
33524          * @type Object
33525          */
33526         YESNO : {yes:true, no:true},
33527         /**
33528          * Button config that displays OK and Cancel buttons
33529          * @type Object
33530          */
33531         OKCANCEL : {ok:true, cancel:true},
33532         /**
33533          * Button config that displays Yes, No and Cancel buttons
33534          * @type Object
33535          */
33536         YESNOCANCEL : {yes:true, no:true, cancel:true},
33537
33538         /**
33539          * The default height in pixels of the message box's multiline textarea if displayed (defaults to 75)
33540          * @type Number
33541          */
33542         defaultTextHeight : 75,
33543         /**
33544          * The maximum width in pixels of the message box (defaults to 600)
33545          * @type Number
33546          */
33547         maxWidth : 600,
33548         /**
33549          * The minimum width in pixels of the message box (defaults to 100)
33550          * @type Number
33551          */
33552         minWidth : 100,
33553         /**
33554          * The minimum width in pixels of the message box if it is a progress-style dialog.  This is useful
33555          * for setting a different minimum width than text-only dialogs may need (defaults to 250)
33556          * @type Number
33557          */
33558         minProgressWidth : 250,
33559         /**
33560          * An object containing the default button text strings that can be overriden for localized language support.
33561          * Supported properties are: ok, cancel, yes and no.
33562          * Customize the default text like so: Roo.MessageBox.buttonText.yes = "S?";
33563          * @type Object
33564          */
33565         buttonText : {
33566             ok : "OK",
33567             cancel : "Cancel",
33568             yes : "Yes",
33569             no : "No"
33570         }
33571     };
33572 }();
33573
33574 /**
33575  * Shorthand for {@link Roo.MessageBox}
33576  */
33577 Roo.Msg = Roo.MessageBox;/*
33578  * Based on:
33579  * Ext JS Library 1.1.1
33580  * Copyright(c) 2006-2007, Ext JS, LLC.
33581  *
33582  * Originally Released Under LGPL - original licence link has changed is not relivant.
33583  *
33584  * Fork - LGPL
33585  * <script type="text/javascript">
33586  */
33587 /**
33588  * @class Roo.QuickTips
33589  * Provides attractive and customizable tooltips for any element.
33590  * @singleton
33591  */
33592 Roo.QuickTips = function(){
33593     var el, tipBody, tipBodyText, tipTitle, tm, cfg, close, tagEls = {}, esc, removeCls = null, bdLeft, bdRight;
33594     var ce, bd, xy, dd;
33595     var visible = false, disabled = true, inited = false;
33596     var showProc = 1, hideProc = 1, dismissProc = 1, locks = [];
33597     
33598     var onOver = function(e){
33599         if(disabled){
33600             return;
33601         }
33602         var t = e.getTarget();
33603         if(!t || t.nodeType !== 1 || t == document || t == document.body){
33604             return;
33605         }
33606         if(ce && t == ce.el){
33607             clearTimeout(hideProc);
33608             return;
33609         }
33610         if(t && tagEls[t.id]){
33611             tagEls[t.id].el = t;
33612             showProc = show.defer(tm.showDelay, tm, [tagEls[t.id]]);
33613             return;
33614         }
33615         var ttp, et = Roo.fly(t);
33616         var ns = cfg.namespace;
33617         if(tm.interceptTitles && t.title){
33618             ttp = t.title;
33619             t.qtip = ttp;
33620             t.removeAttribute("title");
33621             e.preventDefault();
33622         }else{
33623             ttp = t.qtip || et.getAttributeNS(ns, cfg.attribute) || et.getAttributeNS(cfg.alt_namespace, cfg.attribute) ;
33624         }
33625         if(ttp){
33626             showProc = show.defer(tm.showDelay, tm, [{
33627                 el: t, 
33628                 text: ttp.replace(/\\n/g,'<br/>'),
33629                 width: et.getAttributeNS(ns, cfg.width),
33630                 autoHide: et.getAttributeNS(ns, cfg.hide) != "user",
33631                 title: et.getAttributeNS(ns, cfg.title),
33632                     cls: et.getAttributeNS(ns, cfg.cls)
33633             }]);
33634         }
33635     };
33636     
33637     var onOut = function(e){
33638         clearTimeout(showProc);
33639         var t = e.getTarget();
33640         if(t && ce && ce.el == t && (tm.autoHide && ce.autoHide !== false)){
33641             hideProc = setTimeout(hide, tm.hideDelay);
33642         }
33643     };
33644     
33645     var onMove = function(e){
33646         if(disabled){
33647             return;
33648         }
33649         xy = e.getXY();
33650         xy[1] += 18;
33651         if(tm.trackMouse && ce){
33652             el.setXY(xy);
33653         }
33654     };
33655     
33656     var onDown = function(e){
33657         clearTimeout(showProc);
33658         clearTimeout(hideProc);
33659         if(!e.within(el)){
33660             if(tm.hideOnClick){
33661                 hide();
33662                 tm.disable();
33663                 tm.enable.defer(100, tm);
33664             }
33665         }
33666     };
33667     
33668     var getPad = function(){
33669         return 2;//bdLeft.getPadding('l')+bdRight.getPadding('r');
33670     };
33671
33672     var show = function(o){
33673         if(disabled){
33674             return;
33675         }
33676         clearTimeout(dismissProc);
33677         ce = o;
33678         if(removeCls){ // in case manually hidden
33679             el.removeClass(removeCls);
33680             removeCls = null;
33681         }
33682         if(ce.cls){
33683             el.addClass(ce.cls);
33684             removeCls = ce.cls;
33685         }
33686         if(ce.title){
33687             tipTitle.update(ce.title);
33688             tipTitle.show();
33689         }else{
33690             tipTitle.update('');
33691             tipTitle.hide();
33692         }
33693         el.dom.style.width  = tm.maxWidth+'px';
33694         //tipBody.dom.style.width = '';
33695         tipBodyText.update(o.text);
33696         var p = getPad(), w = ce.width;
33697         if(!w){
33698             var td = tipBodyText.dom;
33699             var aw = Math.max(td.offsetWidth, td.clientWidth, td.scrollWidth);
33700             if(aw > tm.maxWidth){
33701                 w = tm.maxWidth;
33702             }else if(aw < tm.minWidth){
33703                 w = tm.minWidth;
33704             }else{
33705                 w = aw;
33706             }
33707         }
33708         //tipBody.setWidth(w);
33709         el.setWidth(parseInt(w, 10) + p);
33710         if(ce.autoHide === false){
33711             close.setDisplayed(true);
33712             if(dd){
33713                 dd.unlock();
33714             }
33715         }else{
33716             close.setDisplayed(false);
33717             if(dd){
33718                 dd.lock();
33719             }
33720         }
33721         if(xy){
33722             el.avoidY = xy[1]-18;
33723             el.setXY(xy);
33724         }
33725         if(tm.animate){
33726             el.setOpacity(.1);
33727             el.setStyle("visibility", "visible");
33728             el.fadeIn({callback: afterShow});
33729         }else{
33730             afterShow();
33731         }
33732     };
33733     
33734     var afterShow = function(){
33735         if(ce){
33736             el.show();
33737             esc.enable();
33738             if(tm.autoDismiss && ce.autoHide !== false){
33739                 dismissProc = setTimeout(hide, tm.autoDismissDelay);
33740             }
33741         }
33742     };
33743     
33744     var hide = function(noanim){
33745         clearTimeout(dismissProc);
33746         clearTimeout(hideProc);
33747         ce = null;
33748         if(el.isVisible()){
33749             esc.disable();
33750             if(noanim !== true && tm.animate){
33751                 el.fadeOut({callback: afterHide});
33752             }else{
33753                 afterHide();
33754             } 
33755         }
33756     };
33757     
33758     var afterHide = function(){
33759         el.hide();
33760         if(removeCls){
33761             el.removeClass(removeCls);
33762             removeCls = null;
33763         }
33764     };
33765     
33766     return {
33767         /**
33768         * @cfg {Number} minWidth
33769         * The minimum width of the quick tip (defaults to 40)
33770         */
33771        minWidth : 40,
33772         /**
33773         * @cfg {Number} maxWidth
33774         * The maximum width of the quick tip (defaults to 300)
33775         */
33776        maxWidth : 300,
33777         /**
33778         * @cfg {Boolean} interceptTitles
33779         * True to automatically use the element's DOM title value if available (defaults to false)
33780         */
33781        interceptTitles : false,
33782         /**
33783         * @cfg {Boolean} trackMouse
33784         * True to have the quick tip follow the mouse as it moves over the target element (defaults to false)
33785         */
33786        trackMouse : false,
33787         /**
33788         * @cfg {Boolean} hideOnClick
33789         * True to hide the quick tip if the user clicks anywhere in the document (defaults to true)
33790         */
33791        hideOnClick : true,
33792         /**
33793         * @cfg {Number} showDelay
33794         * Delay in milliseconds before the quick tip displays after the mouse enters the target element (defaults to 500)
33795         */
33796        showDelay : 500,
33797         /**
33798         * @cfg {Number} hideDelay
33799         * Delay in milliseconds before the quick tip hides when autoHide = true (defaults to 200)
33800         */
33801        hideDelay : 200,
33802         /**
33803         * @cfg {Boolean} autoHide
33804         * True to automatically hide the quick tip after the mouse exits the target element (defaults to true).
33805         * Used in conjunction with hideDelay.
33806         */
33807        autoHide : true,
33808         /**
33809         * @cfg {Boolean}
33810         * True to automatically hide the quick tip after a set period of time, regardless of the user's actions
33811         * (defaults to true).  Used in conjunction with autoDismissDelay.
33812         */
33813        autoDismiss : true,
33814         /**
33815         * @cfg {Number}
33816         * Delay in milliseconds before the quick tip hides when autoDismiss = true (defaults to 5000)
33817         */
33818        autoDismissDelay : 5000,
33819        /**
33820         * @cfg {Boolean} animate
33821         * True to turn on fade animation. Defaults to false (ClearType/scrollbar flicker issues in IE7).
33822         */
33823        animate : false,
33824
33825        /**
33826         * @cfg {String} title
33827         * Title text to display (defaults to '').  This can be any valid HTML markup.
33828         */
33829         title: '',
33830        /**
33831         * @cfg {String} text
33832         * Body text to display (defaults to '').  This can be any valid HTML markup.
33833         */
33834         text : '',
33835        /**
33836         * @cfg {String} cls
33837         * A CSS class to apply to the base quick tip element (defaults to '').
33838         */
33839         cls : '',
33840        /**
33841         * @cfg {Number} width
33842         * Width in pixels of the quick tip (defaults to auto).  Width will be ignored if it exceeds the bounds of
33843         * minWidth or maxWidth.
33844         */
33845         width : null,
33846
33847     /**
33848      * Initialize and enable QuickTips for first use.  This should be called once before the first attempt to access
33849      * or display QuickTips in a page.
33850      */
33851        init : function(){
33852           tm = Roo.QuickTips;
33853           cfg = tm.tagConfig;
33854           if(!inited){
33855               if(!Roo.isReady){ // allow calling of init() before onReady
33856                   Roo.onReady(Roo.QuickTips.init, Roo.QuickTips);
33857                   return;
33858               }
33859               el = new Roo.Layer({cls:"x-tip", shadow:"drop", shim: true, constrain:true, shadowOffset:4});
33860               el.fxDefaults = {stopFx: true};
33861               // maximum custom styling
33862               //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>');
33863               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>');              
33864               tipTitle = el.child('h3');
33865               tipTitle.enableDisplayMode("block");
33866               tipBody = el.child('div.x-tip-bd');
33867               tipBodyText = el.child('div.x-tip-bd-inner');
33868               //bdLeft = el.child('div.x-tip-bd-left');
33869               //bdRight = el.child('div.x-tip-bd-right');
33870               close = el.child('div.x-tip-close');
33871               close.enableDisplayMode("block");
33872               close.on("click", hide);
33873               var d = Roo.get(document);
33874               d.on("mousedown", onDown);
33875               d.on("mouseover", onOver);
33876               d.on("mouseout", onOut);
33877               d.on("mousemove", onMove);
33878               esc = d.addKeyListener(27, hide);
33879               esc.disable();
33880               if(Roo.dd.DD){
33881                   dd = el.initDD("default", null, {
33882                       onDrag : function(){
33883                           el.sync();  
33884                       }
33885                   });
33886                   dd.setHandleElId(tipTitle.id);
33887                   dd.lock();
33888               }
33889               inited = true;
33890           }
33891           this.enable(); 
33892        },
33893
33894     /**
33895      * Configures a new quick tip instance and assigns it to a target element.  The following config options
33896      * are supported:
33897      * <pre>
33898 Property    Type                   Description
33899 ----------  ---------------------  ------------------------------------------------------------------------
33900 target      Element/String/Array   An Element, id or array of ids that this quick tip should be tied to
33901      * </ul>
33902      * @param {Object} config The config object
33903      */
33904        register : function(config){
33905            var cs = config instanceof Array ? config : arguments;
33906            for(var i = 0, len = cs.length; i < len; i++) {
33907                var c = cs[i];
33908                var target = c.target;
33909                if(target){
33910                    if(target instanceof Array){
33911                        for(var j = 0, jlen = target.length; j < jlen; j++){
33912                            tagEls[target[j]] = c;
33913                        }
33914                    }else{
33915                        tagEls[typeof target == 'string' ? target : Roo.id(target)] = c;
33916                    }
33917                }
33918            }
33919        },
33920
33921     /**
33922      * Removes this quick tip from its element and destroys it.
33923      * @param {String/HTMLElement/Element} el The element from which the quick tip is to be removed.
33924      */
33925        unregister : function(el){
33926            delete tagEls[Roo.id(el)];
33927        },
33928
33929     /**
33930      * Enable this quick tip.
33931      */
33932        enable : function(){
33933            if(inited && disabled){
33934                locks.pop();
33935                if(locks.length < 1){
33936                    disabled = false;
33937                }
33938            }
33939        },
33940
33941     /**
33942      * Disable this quick tip.
33943      */
33944        disable : function(){
33945           disabled = true;
33946           clearTimeout(showProc);
33947           clearTimeout(hideProc);
33948           clearTimeout(dismissProc);
33949           if(ce){
33950               hide(true);
33951           }
33952           locks.push(1);
33953        },
33954
33955     /**
33956      * Returns true if the quick tip is enabled, else false.
33957      */
33958        isEnabled : function(){
33959             return !disabled;
33960        },
33961
33962         // private
33963        tagConfig : {
33964            namespace : "roo", // was ext?? this may break..
33965            alt_namespace : "ext",
33966            attribute : "qtip",
33967            width : "width",
33968            target : "target",
33969            title : "qtitle",
33970            hide : "hide",
33971            cls : "qclass"
33972        }
33973    };
33974 }();
33975
33976 // backwards compat
33977 Roo.QuickTips.tips = Roo.QuickTips.register;/*
33978  * Based on:
33979  * Ext JS Library 1.1.1
33980  * Copyright(c) 2006-2007, Ext JS, LLC.
33981  *
33982  * Originally Released Under LGPL - original licence link has changed is not relivant.
33983  *
33984  * Fork - LGPL
33985  * <script type="text/javascript">
33986  */
33987  
33988
33989 /**
33990  * @class Roo.tree.TreePanel
33991  * @extends Roo.data.Tree
33992
33993  * @cfg {Boolean} rootVisible false to hide the root node (defaults to true)
33994  * @cfg {Boolean} lines false to disable tree lines (defaults to true)
33995  * @cfg {Boolean} enableDD true to enable drag and drop
33996  * @cfg {Boolean} enableDrag true to enable just drag
33997  * @cfg {Boolean} enableDrop true to enable just drop
33998  * @cfg {Object} dragConfig Custom config to pass to the {@link Roo.tree.TreeDragZone} instance
33999  * @cfg {Object} dropConfig Custom config to pass to the {@link Roo.tree.TreeDropZone} instance
34000  * @cfg {String} ddGroup The DD group this TreePanel belongs to
34001  * @cfg {String} ddAppendOnly True if the tree should only allow append drops (use for trees which are sorted)
34002  * @cfg {Boolean} ddScroll true to enable YUI body scrolling
34003  * @cfg {Boolean} containerScroll true to register this container with ScrollManager
34004  * @cfg {Boolean} hlDrop false to disable node highlight on drop (defaults to the value of Roo.enableFx)
34005  * @cfg {String} hlColor The color of the node highlight (defaults to C3DAF9)
34006  * @cfg {Boolean} animate true to enable animated expand/collapse (defaults to the value of Roo.enableFx)
34007  * @cfg {Boolean} singleExpand true if only 1 node per branch may be expanded
34008  * @cfg {Boolean} selModel A tree selection model to use with this TreePanel (defaults to a {@link Roo.tree.DefaultSelectionModel})
34009  * @cfg {Boolean} loader A TreeLoader for use with this TreePanel
34010  * @cfg {Object|Roo.tree.TreeEditor} editor The TreeEditor or xtype data to display when clicked.
34011  * @cfg {String} pathSeparator The token used to separate sub-paths in path strings (defaults to '/')
34012  * @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>
34013  * @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>
34014  * 
34015  * @constructor
34016  * @param {String/HTMLElement/Element} el The container element
34017  * @param {Object} config
34018  */
34019 Roo.tree.TreePanel = function(el, config){
34020     var root = false;
34021     var loader = false;
34022     if (config.root) {
34023         root = config.root;
34024         delete config.root;
34025     }
34026     if (config.loader) {
34027         loader = config.loader;
34028         delete config.loader;
34029     }
34030     
34031     Roo.apply(this, config);
34032     Roo.tree.TreePanel.superclass.constructor.call(this);
34033     this.el = Roo.get(el);
34034     this.el.addClass('x-tree');
34035     //console.log(root);
34036     if (root) {
34037         this.setRootNode( Roo.factory(root, Roo.tree));
34038     }
34039     if (loader) {
34040         this.loader = Roo.factory(loader, Roo.tree);
34041     }
34042    /**
34043     * Read-only. The id of the container element becomes this TreePanel's id.
34044     */
34045     this.id = this.el.id;
34046     this.addEvents({
34047         /**
34048         * @event beforeload
34049         * Fires before a node is loaded, return false to cancel
34050         * @param {Node} node The node being loaded
34051         */
34052         "beforeload" : true,
34053         /**
34054         * @event load
34055         * Fires when a node is loaded
34056         * @param {Node} node The node that was loaded
34057         */
34058         "load" : true,
34059         /**
34060         * @event textchange
34061         * Fires when the text for a node is changed
34062         * @param {Node} node The node
34063         * @param {String} text The new text
34064         * @param {String} oldText The old text
34065         */
34066         "textchange" : true,
34067         /**
34068         * @event beforeexpand
34069         * Fires before a node is expanded, return false to cancel.
34070         * @param {Node} node The node
34071         * @param {Boolean} deep
34072         * @param {Boolean} anim
34073         */
34074         "beforeexpand" : true,
34075         /**
34076         * @event beforecollapse
34077         * Fires before a node is collapsed, return false to cancel.
34078         * @param {Node} node The node
34079         * @param {Boolean} deep
34080         * @param {Boolean} anim
34081         */
34082         "beforecollapse" : true,
34083         /**
34084         * @event expand
34085         * Fires when a node is expanded
34086         * @param {Node} node The node
34087         */
34088         "expand" : true,
34089         /**
34090         * @event disabledchange
34091         * Fires when the disabled status of a node changes
34092         * @param {Node} node The node
34093         * @param {Boolean} disabled
34094         */
34095         "disabledchange" : true,
34096         /**
34097         * @event collapse
34098         * Fires when a node is collapsed
34099         * @param {Node} node The node
34100         */
34101         "collapse" : true,
34102         /**
34103         * @event beforeclick
34104         * Fires before click processing on a node. Return false to cancel the default action.
34105         * @param {Node} node The node
34106         * @param {Roo.EventObject} e The event object
34107         */
34108         "beforeclick":true,
34109         /**
34110         * @event checkchange
34111         * Fires when a node with a checkbox's checked property changes
34112         * @param {Node} this This node
34113         * @param {Boolean} checked
34114         */
34115         "checkchange":true,
34116         /**
34117         * @event click
34118         * Fires when a node is clicked
34119         * @param {Node} node The node
34120         * @param {Roo.EventObject} e The event object
34121         */
34122         "click":true,
34123         /**
34124         * @event dblclick
34125         * Fires when a node is double clicked
34126         * @param {Node} node The node
34127         * @param {Roo.EventObject} e The event object
34128         */
34129         "dblclick":true,
34130         /**
34131         * @event contextmenu
34132         * Fires when a node is right clicked
34133         * @param {Node} node The node
34134         * @param {Roo.EventObject} e The event object
34135         */
34136         "contextmenu":true,
34137         /**
34138         * @event beforechildrenrendered
34139         * Fires right before the child nodes for a node are rendered
34140         * @param {Node} node The node
34141         */
34142         "beforechildrenrendered":true,
34143         /**
34144         * @event startdrag
34145         * Fires when a node starts being dragged
34146         * @param {Roo.tree.TreePanel} this
34147         * @param {Roo.tree.TreeNode} node
34148         * @param {event} e The raw browser event
34149         */ 
34150        "startdrag" : true,
34151        /**
34152         * @event enddrag
34153         * Fires when a drag operation is complete
34154         * @param {Roo.tree.TreePanel} this
34155         * @param {Roo.tree.TreeNode} node
34156         * @param {event} e The raw browser event
34157         */
34158        "enddrag" : true,
34159        /**
34160         * @event dragdrop
34161         * Fires when a dragged node is dropped on a valid DD target
34162         * @param {Roo.tree.TreePanel} this
34163         * @param {Roo.tree.TreeNode} node
34164         * @param {DD} dd The dd it was dropped on
34165         * @param {event} e The raw browser event
34166         */
34167        "dragdrop" : true,
34168        /**
34169         * @event beforenodedrop
34170         * Fires when a DD object is dropped on a node in this tree for preprocessing. Return false to cancel the drop. The dropEvent
34171         * passed to handlers has the following properties:<br />
34172         * <ul style="padding:5px;padding-left:16px;">
34173         * <li>tree - The TreePanel</li>
34174         * <li>target - The node being targeted for the drop</li>
34175         * <li>data - The drag data from the drag source</li>
34176         * <li>point - The point of the drop - append, above or below</li>
34177         * <li>source - The drag source</li>
34178         * <li>rawEvent - Raw mouse event</li>
34179         * <li>dropNode - Drop node(s) provided by the source <b>OR</b> you can supply node(s)
34180         * to be inserted by setting them on this object.</li>
34181         * <li>cancel - Set this to true to cancel the drop.</li>
34182         * </ul>
34183         * @param {Object} dropEvent
34184         */
34185        "beforenodedrop" : true,
34186        /**
34187         * @event nodedrop
34188         * Fires after a DD object is dropped on a node in this tree. The dropEvent
34189         * passed to handlers has the following properties:<br />
34190         * <ul style="padding:5px;padding-left:16px;">
34191         * <li>tree - The TreePanel</li>
34192         * <li>target - The node being targeted for the drop</li>
34193         * <li>data - The drag data from the drag source</li>
34194         * <li>point - The point of the drop - append, above or below</li>
34195         * <li>source - The drag source</li>
34196         * <li>rawEvent - Raw mouse event</li>
34197         * <li>dropNode - Dropped node(s).</li>
34198         * </ul>
34199         * @param {Object} dropEvent
34200         */
34201        "nodedrop" : true,
34202         /**
34203         * @event nodedragover
34204         * Fires when a tree node is being targeted for a drag drop, return false to signal drop not allowed. The dragOverEvent
34205         * passed to handlers has the following properties:<br />
34206         * <ul style="padding:5px;padding-left:16px;">
34207         * <li>tree - The TreePanel</li>
34208         * <li>target - The node being targeted for the drop</li>
34209         * <li>data - The drag data from the drag source</li>
34210         * <li>point - The point of the drop - append, above or below</li>
34211         * <li>source - The drag source</li>
34212         * <li>rawEvent - Raw mouse event</li>
34213         * <li>dropNode - Drop node(s) provided by the source.</li>
34214         * <li>cancel - Set this to true to signal drop not allowed.</li>
34215         * </ul>
34216         * @param {Object} dragOverEvent
34217         */
34218        "nodedragover" : true
34219         
34220     });
34221     if(this.singleExpand){
34222        this.on("beforeexpand", this.restrictExpand, this);
34223     }
34224     if (this.editor) {
34225         this.editor.tree = this;
34226         this.editor = Roo.factory(this.editor, Roo.tree);
34227     }
34228     
34229     if (this.selModel) {
34230         this.selModel = Roo.factory(this.selModel, Roo.tree);
34231     }
34232    
34233 };
34234 Roo.extend(Roo.tree.TreePanel, Roo.data.Tree, {
34235     rootVisible : true,
34236     animate: Roo.enableFx,
34237     lines : true,
34238     enableDD : false,
34239     hlDrop : Roo.enableFx,
34240   
34241     renderer: false,
34242     
34243     rendererTip: false,
34244     // private
34245     restrictExpand : function(node){
34246         var p = node.parentNode;
34247         if(p){
34248             if(p.expandedChild && p.expandedChild.parentNode == p){
34249                 p.expandedChild.collapse();
34250             }
34251             p.expandedChild = node;
34252         }
34253     },
34254
34255     // private override
34256     setRootNode : function(node){
34257         Roo.tree.TreePanel.superclass.setRootNode.call(this, node);
34258         if(!this.rootVisible){
34259             node.ui = new Roo.tree.RootTreeNodeUI(node);
34260         }
34261         return node;
34262     },
34263
34264     /**
34265      * Returns the container element for this TreePanel
34266      */
34267     getEl : function(){
34268         return this.el;
34269     },
34270
34271     /**
34272      * Returns the default TreeLoader for this TreePanel
34273      */
34274     getLoader : function(){
34275         return this.loader;
34276     },
34277
34278     /**
34279      * Expand all nodes
34280      */
34281     expandAll : function(){
34282         this.root.expand(true);
34283     },
34284
34285     /**
34286      * Collapse all nodes
34287      */
34288     collapseAll : function(){
34289         this.root.collapse(true);
34290     },
34291
34292     /**
34293      * Returns the selection model used by this TreePanel
34294      */
34295     getSelectionModel : function(){
34296         if(!this.selModel){
34297             this.selModel = new Roo.tree.DefaultSelectionModel();
34298         }
34299         return this.selModel;
34300     },
34301
34302     /**
34303      * Retrieve an array of checked nodes, or an array of a specific attribute of checked nodes (e.g. "id")
34304      * @param {String} attribute (optional) Defaults to null (return the actual nodes)
34305      * @param {TreeNode} startNode (optional) The node to start from, defaults to the root
34306      * @return {Array}
34307      */
34308     getChecked : function(a, startNode){
34309         startNode = startNode || this.root;
34310         var r = [];
34311         var f = function(){
34312             if(this.attributes.checked){
34313                 r.push(!a ? this : (a == 'id' ? this.id : this.attributes[a]));
34314             }
34315         }
34316         startNode.cascade(f);
34317         return r;
34318     },
34319
34320     /**
34321      * Expands a specified path in this TreePanel. A path can be retrieved from a node with {@link Roo.data.Node#getPath}
34322      * @param {String} path
34323      * @param {String} attr (optional) The attribute used in the path (see {@link Roo.data.Node#getPath} for more info)
34324      * @param {Function} callback (optional) The callback to call when the expand is complete. The callback will be called with
34325      * (bSuccess, oLastNode) where bSuccess is if the expand was successful and oLastNode is the last node that was expanded.
34326      */
34327     expandPath : function(path, attr, callback){
34328         attr = attr || "id";
34329         var keys = path.split(this.pathSeparator);
34330         var curNode = this.root;
34331         if(curNode.attributes[attr] != keys[1]){ // invalid root
34332             if(callback){
34333                 callback(false, null);
34334             }
34335             return;
34336         }
34337         var index = 1;
34338         var f = function(){
34339             if(++index == keys.length){
34340                 if(callback){
34341                     callback(true, curNode);
34342                 }
34343                 return;
34344             }
34345             var c = curNode.findChild(attr, keys[index]);
34346             if(!c){
34347                 if(callback){
34348                     callback(false, curNode);
34349                 }
34350                 return;
34351             }
34352             curNode = c;
34353             c.expand(false, false, f);
34354         };
34355         curNode.expand(false, false, f);
34356     },
34357
34358     /**
34359      * Selects the node in this tree at the specified path. A path can be retrieved from a node with {@link Roo.data.Node#getPath}
34360      * @param {String} path
34361      * @param {String} attr (optional) The attribute used in the path (see {@link Roo.data.Node#getPath} for more info)
34362      * @param {Function} callback (optional) The callback to call when the selection is complete. The callback will be called with
34363      * (bSuccess, oSelNode) where bSuccess is if the selection was successful and oSelNode is the selected node.
34364      */
34365     selectPath : function(path, attr, callback){
34366         attr = attr || "id";
34367         var keys = path.split(this.pathSeparator);
34368         var v = keys.pop();
34369         if(keys.length > 0){
34370             var f = function(success, node){
34371                 if(success && node){
34372                     var n = node.findChild(attr, v);
34373                     if(n){
34374                         n.select();
34375                         if(callback){
34376                             callback(true, n);
34377                         }
34378                     }else if(callback){
34379                         callback(false, n);
34380                     }
34381                 }else{
34382                     if(callback){
34383                         callback(false, n);
34384                     }
34385                 }
34386             };
34387             this.expandPath(keys.join(this.pathSeparator), attr, f);
34388         }else{
34389             this.root.select();
34390             if(callback){
34391                 callback(true, this.root);
34392             }
34393         }
34394     },
34395
34396     getTreeEl : function(){
34397         return this.el;
34398     },
34399
34400     /**
34401      * Trigger rendering of this TreePanel
34402      */
34403     render : function(){
34404         if (this.innerCt) {
34405             return this; // stop it rendering more than once!!
34406         }
34407         
34408         this.innerCt = this.el.createChild({tag:"ul",
34409                cls:"x-tree-root-ct " +
34410                (this.lines ? "x-tree-lines" : "x-tree-no-lines")});
34411
34412         if(this.containerScroll){
34413             Roo.dd.ScrollManager.register(this.el);
34414         }
34415         if((this.enableDD || this.enableDrop) && !this.dropZone){
34416            /**
34417             * The dropZone used by this tree if drop is enabled
34418             * @type Roo.tree.TreeDropZone
34419             */
34420              this.dropZone = new Roo.tree.TreeDropZone(this, this.dropConfig || {
34421                ddGroup: this.ddGroup || "TreeDD", appendOnly: this.ddAppendOnly === true
34422            });
34423         }
34424         if((this.enableDD || this.enableDrag) && !this.dragZone){
34425            /**
34426             * The dragZone used by this tree if drag is enabled
34427             * @type Roo.tree.TreeDragZone
34428             */
34429             this.dragZone = new Roo.tree.TreeDragZone(this, this.dragConfig || {
34430                ddGroup: this.ddGroup || "TreeDD",
34431                scroll: this.ddScroll
34432            });
34433         }
34434         this.getSelectionModel().init(this);
34435         if (!this.root) {
34436             Roo.log("ROOT not set in tree");
34437             return this;
34438         }
34439         this.root.render();
34440         if(!this.rootVisible){
34441             this.root.renderChildren();
34442         }
34443         return this;
34444     }
34445 });/*
34446  * Based on:
34447  * Ext JS Library 1.1.1
34448  * Copyright(c) 2006-2007, Ext JS, LLC.
34449  *
34450  * Originally Released Under LGPL - original licence link has changed is not relivant.
34451  *
34452  * Fork - LGPL
34453  * <script type="text/javascript">
34454  */
34455  
34456
34457 /**
34458  * @class Roo.tree.DefaultSelectionModel
34459  * @extends Roo.util.Observable
34460  * The default single selection for a TreePanel.
34461  * @param {Object} cfg Configuration
34462  */
34463 Roo.tree.DefaultSelectionModel = function(cfg){
34464    this.selNode = null;
34465    
34466    
34467    
34468    this.addEvents({
34469        /**
34470         * @event selectionchange
34471         * Fires when the selected node changes
34472         * @param {DefaultSelectionModel} this
34473         * @param {TreeNode} node the new selection
34474         */
34475        "selectionchange" : true,
34476
34477        /**
34478         * @event beforeselect
34479         * Fires before the selected node changes, return false to cancel the change
34480         * @param {DefaultSelectionModel} this
34481         * @param {TreeNode} node the new selection
34482         * @param {TreeNode} node the old selection
34483         */
34484        "beforeselect" : true
34485    });
34486    
34487     Roo.tree.DefaultSelectionModel.superclass.constructor.call(this,cfg);
34488 };
34489
34490 Roo.extend(Roo.tree.DefaultSelectionModel, Roo.util.Observable, {
34491     init : function(tree){
34492         this.tree = tree;
34493         tree.getTreeEl().on("keydown", this.onKeyDown, this);
34494         tree.on("click", this.onNodeClick, this);
34495     },
34496     
34497     onNodeClick : function(node, e){
34498         if (e.ctrlKey && this.selNode == node)  {
34499             this.unselect(node);
34500             return;
34501         }
34502         this.select(node);
34503     },
34504     
34505     /**
34506      * Select a node.
34507      * @param {TreeNode} node The node to select
34508      * @return {TreeNode} The selected node
34509      */
34510     select : function(node){
34511         var last = this.selNode;
34512         if(last != node && this.fireEvent('beforeselect', this, node, last) !== false){
34513             if(last){
34514                 last.ui.onSelectedChange(false);
34515             }
34516             this.selNode = node;
34517             node.ui.onSelectedChange(true);
34518             this.fireEvent("selectionchange", this, node, last);
34519         }
34520         return node;
34521     },
34522     
34523     /**
34524      * Deselect a node.
34525      * @param {TreeNode} node The node to unselect
34526      */
34527     unselect : function(node){
34528         if(this.selNode == node){
34529             this.clearSelections();
34530         }    
34531     },
34532     
34533     /**
34534      * Clear all selections
34535      */
34536     clearSelections : function(){
34537         var n = this.selNode;
34538         if(n){
34539             n.ui.onSelectedChange(false);
34540             this.selNode = null;
34541             this.fireEvent("selectionchange", this, null);
34542         }
34543         return n;
34544     },
34545     
34546     /**
34547      * Get the selected node
34548      * @return {TreeNode} The selected node
34549      */
34550     getSelectedNode : function(){
34551         return this.selNode;    
34552     },
34553     
34554     /**
34555      * Returns true if the node is selected
34556      * @param {TreeNode} node The node to check
34557      * @return {Boolean}
34558      */
34559     isSelected : function(node){
34560         return this.selNode == node;  
34561     },
34562
34563     /**
34564      * Selects the node above the selected node in the tree, intelligently walking the nodes
34565      * @return TreeNode The new selection
34566      */
34567     selectPrevious : function(){
34568         var s = this.selNode || this.lastSelNode;
34569         if(!s){
34570             return null;
34571         }
34572         var ps = s.previousSibling;
34573         if(ps){
34574             if(!ps.isExpanded() || ps.childNodes.length < 1){
34575                 return this.select(ps);
34576             } else{
34577                 var lc = ps.lastChild;
34578                 while(lc && lc.isExpanded() && lc.childNodes.length > 0){
34579                     lc = lc.lastChild;
34580                 }
34581                 return this.select(lc);
34582             }
34583         } else if(s.parentNode && (this.tree.rootVisible || !s.parentNode.isRoot)){
34584             return this.select(s.parentNode);
34585         }
34586         return null;
34587     },
34588
34589     /**
34590      * Selects the node above the selected node in the tree, intelligently walking the nodes
34591      * @return TreeNode The new selection
34592      */
34593     selectNext : function(){
34594         var s = this.selNode || this.lastSelNode;
34595         if(!s){
34596             return null;
34597         }
34598         if(s.firstChild && s.isExpanded()){
34599              return this.select(s.firstChild);
34600          }else if(s.nextSibling){
34601              return this.select(s.nextSibling);
34602          }else if(s.parentNode){
34603             var newS = null;
34604             s.parentNode.bubble(function(){
34605                 if(this.nextSibling){
34606                     newS = this.getOwnerTree().selModel.select(this.nextSibling);
34607                     return false;
34608                 }
34609             });
34610             return newS;
34611          }
34612         return null;
34613     },
34614
34615     onKeyDown : function(e){
34616         var s = this.selNode || this.lastSelNode;
34617         // undesirable, but required
34618         var sm = this;
34619         if(!s){
34620             return;
34621         }
34622         var k = e.getKey();
34623         switch(k){
34624              case e.DOWN:
34625                  e.stopEvent();
34626                  this.selectNext();
34627              break;
34628              case e.UP:
34629                  e.stopEvent();
34630                  this.selectPrevious();
34631              break;
34632              case e.RIGHT:
34633                  e.preventDefault();
34634                  if(s.hasChildNodes()){
34635                      if(!s.isExpanded()){
34636                          s.expand();
34637                      }else if(s.firstChild){
34638                          this.select(s.firstChild, e);
34639                      }
34640                  }
34641              break;
34642              case e.LEFT:
34643                  e.preventDefault();
34644                  if(s.hasChildNodes() && s.isExpanded()){
34645                      s.collapse();
34646                  }else if(s.parentNode && (this.tree.rootVisible || s.parentNode != this.tree.getRootNode())){
34647                      this.select(s.parentNode, e);
34648                  }
34649              break;
34650         };
34651     }
34652 });
34653
34654 /**
34655  * @class Roo.tree.MultiSelectionModel
34656  * @extends Roo.util.Observable
34657  * Multi selection for a TreePanel.
34658  * @param {Object} cfg Configuration
34659  */
34660 Roo.tree.MultiSelectionModel = function(){
34661    this.selNodes = [];
34662    this.selMap = {};
34663    this.addEvents({
34664        /**
34665         * @event selectionchange
34666         * Fires when the selected nodes change
34667         * @param {MultiSelectionModel} this
34668         * @param {Array} nodes Array of the selected nodes
34669         */
34670        "selectionchange" : true
34671    });
34672    Roo.tree.MultiSelectionModel.superclass.constructor.call(this,cfg);
34673    
34674 };
34675
34676 Roo.extend(Roo.tree.MultiSelectionModel, Roo.util.Observable, {
34677     init : function(tree){
34678         this.tree = tree;
34679         tree.getTreeEl().on("keydown", this.onKeyDown, this);
34680         tree.on("click", this.onNodeClick, this);
34681     },
34682     
34683     onNodeClick : function(node, e){
34684         this.select(node, e, e.ctrlKey);
34685     },
34686     
34687     /**
34688      * Select a node.
34689      * @param {TreeNode} node The node to select
34690      * @param {EventObject} e (optional) An event associated with the selection
34691      * @param {Boolean} keepExisting True to retain existing selections
34692      * @return {TreeNode} The selected node
34693      */
34694     select : function(node, e, keepExisting){
34695         if(keepExisting !== true){
34696             this.clearSelections(true);
34697         }
34698         if(this.isSelected(node)){
34699             this.lastSelNode = node;
34700             return node;
34701         }
34702         this.selNodes.push(node);
34703         this.selMap[node.id] = node;
34704         this.lastSelNode = node;
34705         node.ui.onSelectedChange(true);
34706         this.fireEvent("selectionchange", this, this.selNodes);
34707         return node;
34708     },
34709     
34710     /**
34711      * Deselect a node.
34712      * @param {TreeNode} node The node to unselect
34713      */
34714     unselect : function(node){
34715         if(this.selMap[node.id]){
34716             node.ui.onSelectedChange(false);
34717             var sn = this.selNodes;
34718             var index = -1;
34719             if(sn.indexOf){
34720                 index = sn.indexOf(node);
34721             }else{
34722                 for(var i = 0, len = sn.length; i < len; i++){
34723                     if(sn[i] == node){
34724                         index = i;
34725                         break;
34726                     }
34727                 }
34728             }
34729             if(index != -1){
34730                 this.selNodes.splice(index, 1);
34731             }
34732             delete this.selMap[node.id];
34733             this.fireEvent("selectionchange", this, this.selNodes);
34734         }
34735     },
34736     
34737     /**
34738      * Clear all selections
34739      */
34740     clearSelections : function(suppressEvent){
34741         var sn = this.selNodes;
34742         if(sn.length > 0){
34743             for(var i = 0, len = sn.length; i < len; i++){
34744                 sn[i].ui.onSelectedChange(false);
34745             }
34746             this.selNodes = [];
34747             this.selMap = {};
34748             if(suppressEvent !== true){
34749                 this.fireEvent("selectionchange", this, this.selNodes);
34750             }
34751         }
34752     },
34753     
34754     /**
34755      * Returns true if the node is selected
34756      * @param {TreeNode} node The node to check
34757      * @return {Boolean}
34758      */
34759     isSelected : function(node){
34760         return this.selMap[node.id] ? true : false;  
34761     },
34762     
34763     /**
34764      * Returns an array of the selected nodes
34765      * @return {Array}
34766      */
34767     getSelectedNodes : function(){
34768         return this.selNodes;    
34769     },
34770
34771     onKeyDown : Roo.tree.DefaultSelectionModel.prototype.onKeyDown,
34772
34773     selectNext : Roo.tree.DefaultSelectionModel.prototype.selectNext,
34774
34775     selectPrevious : Roo.tree.DefaultSelectionModel.prototype.selectPrevious
34776 });/*
34777  * Based on:
34778  * Ext JS Library 1.1.1
34779  * Copyright(c) 2006-2007, Ext JS, LLC.
34780  *
34781  * Originally Released Under LGPL - original licence link has changed is not relivant.
34782  *
34783  * Fork - LGPL
34784  * <script type="text/javascript">
34785  */
34786  
34787 /**
34788  * @class Roo.tree.TreeNode
34789  * @extends Roo.data.Node
34790  * @cfg {String} text The text for this node
34791  * @cfg {Boolean} expanded true to start the node expanded
34792  * @cfg {Boolean} allowDrag false to make this node undraggable if DD is on (defaults to true)
34793  * @cfg {Boolean} allowDrop false if this node cannot be drop on
34794  * @cfg {Boolean} disabled true to start the node disabled
34795  * @cfg {String} icon The path to an icon for the node. The preferred way to do this
34796  * is to use the cls or iconCls attributes and add the icon via a CSS background image.
34797  * @cfg {String} cls A css class to be added to the node
34798  * @cfg {String} iconCls A css class to be added to the nodes icon element for applying css background images
34799  * @cfg {String} href URL of the link used for the node (defaults to #)
34800  * @cfg {String} hrefTarget target frame for the link
34801  * @cfg {String} qtip An Ext QuickTip for the node
34802  * @cfg {String} qtipCfg An Ext QuickTip config for the node (used instead of qtip)
34803  * @cfg {Boolean} singleClickExpand True for single click expand on this node
34804  * @cfg {Function} uiProvider A UI <b>class</b> to use for this node (defaults to Roo.tree.TreeNodeUI)
34805  * @cfg {Boolean} checked True to render a checked checkbox for this node, false to render an unchecked checkbox
34806  * (defaults to undefined with no checkbox rendered)
34807  * @constructor
34808  * @param {Object/String} attributes The attributes/config for the node or just a string with the text for the node
34809  */
34810 Roo.tree.TreeNode = function(attributes){
34811     attributes = attributes || {};
34812     if(typeof attributes == "string"){
34813         attributes = {text: attributes};
34814     }
34815     this.childrenRendered = false;
34816     this.rendered = false;
34817     Roo.tree.TreeNode.superclass.constructor.call(this, attributes);
34818     this.expanded = attributes.expanded === true;
34819     this.isTarget = attributes.isTarget !== false;
34820     this.draggable = attributes.draggable !== false && attributes.allowDrag !== false;
34821     this.allowChildren = attributes.allowChildren !== false && attributes.allowDrop !== false;
34822
34823     /**
34824      * Read-only. The text for this node. To change it use setText().
34825      * @type String
34826      */
34827     this.text = attributes.text;
34828     /**
34829      * True if this node is disabled.
34830      * @type Boolean
34831      */
34832     this.disabled = attributes.disabled === true;
34833
34834     this.addEvents({
34835         /**
34836         * @event textchange
34837         * Fires when the text for this node is changed
34838         * @param {Node} this This node
34839         * @param {String} text The new text
34840         * @param {String} oldText The old text
34841         */
34842         "textchange" : true,
34843         /**
34844         * @event beforeexpand
34845         * Fires before this node is expanded, return false to cancel.
34846         * @param {Node} this This node
34847         * @param {Boolean} deep
34848         * @param {Boolean} anim
34849         */
34850         "beforeexpand" : true,
34851         /**
34852         * @event beforecollapse
34853         * Fires before this node is collapsed, return false to cancel.
34854         * @param {Node} this This node
34855         * @param {Boolean} deep
34856         * @param {Boolean} anim
34857         */
34858         "beforecollapse" : true,
34859         /**
34860         * @event expand
34861         * Fires when this node is expanded
34862         * @param {Node} this This node
34863         */
34864         "expand" : true,
34865         /**
34866         * @event disabledchange
34867         * Fires when the disabled status of this node changes
34868         * @param {Node} this This node
34869         * @param {Boolean} disabled
34870         */
34871         "disabledchange" : true,
34872         /**
34873         * @event collapse
34874         * Fires when this node is collapsed
34875         * @param {Node} this This node
34876         */
34877         "collapse" : true,
34878         /**
34879         * @event beforeclick
34880         * Fires before click processing. Return false to cancel the default action.
34881         * @param {Node} this This node
34882         * @param {Roo.EventObject} e The event object
34883         */
34884         "beforeclick":true,
34885         /**
34886         * @event checkchange
34887         * Fires when a node with a checkbox's checked property changes
34888         * @param {Node} this This node
34889         * @param {Boolean} checked
34890         */
34891         "checkchange":true,
34892         /**
34893         * @event click
34894         * Fires when this node is clicked
34895         * @param {Node} this This node
34896         * @param {Roo.EventObject} e The event object
34897         */
34898         "click":true,
34899         /**
34900         * @event dblclick
34901         * Fires when this node is double clicked
34902         * @param {Node} this This node
34903         * @param {Roo.EventObject} e The event object
34904         */
34905         "dblclick":true,
34906         /**
34907         * @event contextmenu
34908         * Fires when this node is right clicked
34909         * @param {Node} this This node
34910         * @param {Roo.EventObject} e The event object
34911         */
34912         "contextmenu":true,
34913         /**
34914         * @event beforechildrenrendered
34915         * Fires right before the child nodes for this node are rendered
34916         * @param {Node} this This node
34917         */
34918         "beforechildrenrendered":true
34919     });
34920
34921     var uiClass = this.attributes.uiProvider || Roo.tree.TreeNodeUI;
34922
34923     /**
34924      * Read-only. The UI for this node
34925      * @type TreeNodeUI
34926      */
34927     this.ui = new uiClass(this);
34928     
34929     // finally support items[]
34930     if (typeof(this.attributes.items) == 'undefined' || !this.attributes.items) {
34931         return;
34932     }
34933     
34934     
34935     Roo.each(this.attributes.items, function(c) {
34936         this.appendChild(Roo.factory(c,Roo.Tree));
34937     }, this);
34938     delete this.attributes.items;
34939     
34940     
34941     
34942 };
34943 Roo.extend(Roo.tree.TreeNode, Roo.data.Node, {
34944     preventHScroll: true,
34945     /**
34946      * Returns true if this node is expanded
34947      * @return {Boolean}
34948      */
34949     isExpanded : function(){
34950         return this.expanded;
34951     },
34952
34953     /**
34954      * Returns the UI object for this node
34955      * @return {TreeNodeUI}
34956      */
34957     getUI : function(){
34958         return this.ui;
34959     },
34960
34961     // private override
34962     setFirstChild : function(node){
34963         var of = this.firstChild;
34964         Roo.tree.TreeNode.superclass.setFirstChild.call(this, node);
34965         if(this.childrenRendered && of && node != of){
34966             of.renderIndent(true, true);
34967         }
34968         if(this.rendered){
34969             this.renderIndent(true, true);
34970         }
34971     },
34972
34973     // private override
34974     setLastChild : function(node){
34975         var ol = this.lastChild;
34976         Roo.tree.TreeNode.superclass.setLastChild.call(this, node);
34977         if(this.childrenRendered && ol && node != ol){
34978             ol.renderIndent(true, true);
34979         }
34980         if(this.rendered){
34981             this.renderIndent(true, true);
34982         }
34983     },
34984
34985     // these methods are overridden to provide lazy rendering support
34986     // private override
34987     appendChild : function()
34988     {
34989         var node = Roo.tree.TreeNode.superclass.appendChild.apply(this, arguments);
34990         if(node && this.childrenRendered){
34991             node.render();
34992         }
34993         this.ui.updateExpandIcon();
34994         return node;
34995     },
34996
34997     // private override
34998     removeChild : function(node){
34999         this.ownerTree.getSelectionModel().unselect(node);
35000         Roo.tree.TreeNode.superclass.removeChild.apply(this, arguments);
35001         // if it's been rendered remove dom node
35002         if(this.childrenRendered){
35003             node.ui.remove();
35004         }
35005         if(this.childNodes.length < 1){
35006             this.collapse(false, false);
35007         }else{
35008             this.ui.updateExpandIcon();
35009         }
35010         if(!this.firstChild) {
35011             this.childrenRendered = false;
35012         }
35013         return node;
35014     },
35015
35016     // private override
35017     insertBefore : function(node, refNode){
35018         var newNode = Roo.tree.TreeNode.superclass.insertBefore.apply(this, arguments);
35019         if(newNode && refNode && this.childrenRendered){
35020             node.render();
35021         }
35022         this.ui.updateExpandIcon();
35023         return newNode;
35024     },
35025
35026     /**
35027      * Sets the text for this node
35028      * @param {String} text
35029      */
35030     setText : function(text){
35031         var oldText = this.text;
35032         this.text = text;
35033         this.attributes.text = text;
35034         if(this.rendered){ // event without subscribing
35035             this.ui.onTextChange(this, text, oldText);
35036         }
35037         this.fireEvent("textchange", this, text, oldText);
35038     },
35039
35040     /**
35041      * Triggers selection of this node
35042      */
35043     select : function(){
35044         this.getOwnerTree().getSelectionModel().select(this);
35045     },
35046
35047     /**
35048      * Triggers deselection of this node
35049      */
35050     unselect : function(){
35051         this.getOwnerTree().getSelectionModel().unselect(this);
35052     },
35053
35054     /**
35055      * Returns true if this node is selected
35056      * @return {Boolean}
35057      */
35058     isSelected : function(){
35059         return this.getOwnerTree().getSelectionModel().isSelected(this);
35060     },
35061
35062     /**
35063      * Expand this node.
35064      * @param {Boolean} deep (optional) True to expand all children as well
35065      * @param {Boolean} anim (optional) false to cancel the default animation
35066      * @param {Function} callback (optional) A callback to be called when
35067      * expanding this node completes (does not wait for deep expand to complete).
35068      * Called with 1 parameter, this node.
35069      */
35070     expand : function(deep, anim, callback){
35071         if(!this.expanded){
35072             if(this.fireEvent("beforeexpand", this, deep, anim) === false){
35073                 return;
35074             }
35075             if(!this.childrenRendered){
35076                 this.renderChildren();
35077             }
35078             this.expanded = true;
35079             if(!this.isHiddenRoot() && (this.getOwnerTree().animate && anim !== false) || anim){
35080                 this.ui.animExpand(function(){
35081                     this.fireEvent("expand", this);
35082                     if(typeof callback == "function"){
35083                         callback(this);
35084                     }
35085                     if(deep === true){
35086                         this.expandChildNodes(true);
35087                     }
35088                 }.createDelegate(this));
35089                 return;
35090             }else{
35091                 this.ui.expand();
35092                 this.fireEvent("expand", this);
35093                 if(typeof callback == "function"){
35094                     callback(this);
35095                 }
35096             }
35097         }else{
35098            if(typeof callback == "function"){
35099                callback(this);
35100            }
35101         }
35102         if(deep === true){
35103             this.expandChildNodes(true);
35104         }
35105     },
35106
35107     isHiddenRoot : function(){
35108         return this.isRoot && !this.getOwnerTree().rootVisible;
35109     },
35110
35111     /**
35112      * Collapse this node.
35113      * @param {Boolean} deep (optional) True to collapse all children as well
35114      * @param {Boolean} anim (optional) false to cancel the default animation
35115      */
35116     collapse : function(deep, anim){
35117         if(this.expanded && !this.isHiddenRoot()){
35118             if(this.fireEvent("beforecollapse", this, deep, anim) === false){
35119                 return;
35120             }
35121             this.expanded = false;
35122             if((this.getOwnerTree().animate && anim !== false) || anim){
35123                 this.ui.animCollapse(function(){
35124                     this.fireEvent("collapse", this);
35125                     if(deep === true){
35126                         this.collapseChildNodes(true);
35127                     }
35128                 }.createDelegate(this));
35129                 return;
35130             }else{
35131                 this.ui.collapse();
35132                 this.fireEvent("collapse", this);
35133             }
35134         }
35135         if(deep === true){
35136             var cs = this.childNodes;
35137             for(var i = 0, len = cs.length; i < len; i++) {
35138                 cs[i].collapse(true, false);
35139             }
35140         }
35141     },
35142
35143     // private
35144     delayedExpand : function(delay){
35145         if(!this.expandProcId){
35146             this.expandProcId = this.expand.defer(delay, this);
35147         }
35148     },
35149
35150     // private
35151     cancelExpand : function(){
35152         if(this.expandProcId){
35153             clearTimeout(this.expandProcId);
35154         }
35155         this.expandProcId = false;
35156     },
35157
35158     /**
35159      * Toggles expanded/collapsed state of the node
35160      */
35161     toggle : function(){
35162         if(this.expanded){
35163             this.collapse();
35164         }else{
35165             this.expand();
35166         }
35167     },
35168
35169     /**
35170      * Ensures all parent nodes are expanded
35171      */
35172     ensureVisible : function(callback){
35173         var tree = this.getOwnerTree();
35174         tree.expandPath(this.parentNode.getPath(), false, function(){
35175             tree.getTreeEl().scrollChildIntoView(this.ui.anchor);
35176             Roo.callback(callback);
35177         }.createDelegate(this));
35178     },
35179
35180     /**
35181      * Expand all child nodes
35182      * @param {Boolean} deep (optional) true if the child nodes should also expand their child nodes
35183      */
35184     expandChildNodes : function(deep){
35185         var cs = this.childNodes;
35186         for(var i = 0, len = cs.length; i < len; i++) {
35187                 cs[i].expand(deep);
35188         }
35189     },
35190
35191     /**
35192      * Collapse all child nodes
35193      * @param {Boolean} deep (optional) true if the child nodes should also collapse their child nodes
35194      */
35195     collapseChildNodes : function(deep){
35196         var cs = this.childNodes;
35197         for(var i = 0, len = cs.length; i < len; i++) {
35198                 cs[i].collapse(deep);
35199         }
35200     },
35201
35202     /**
35203      * Disables this node
35204      */
35205     disable : function(){
35206         this.disabled = true;
35207         this.unselect();
35208         if(this.rendered && this.ui.onDisableChange){ // event without subscribing
35209             this.ui.onDisableChange(this, true);
35210         }
35211         this.fireEvent("disabledchange", this, true);
35212     },
35213
35214     /**
35215      * Enables this node
35216      */
35217     enable : function(){
35218         this.disabled = false;
35219         if(this.rendered && this.ui.onDisableChange){ // event without subscribing
35220             this.ui.onDisableChange(this, false);
35221         }
35222         this.fireEvent("disabledchange", this, false);
35223     },
35224
35225     // private
35226     renderChildren : function(suppressEvent){
35227         if(suppressEvent !== false){
35228             this.fireEvent("beforechildrenrendered", this);
35229         }
35230         var cs = this.childNodes;
35231         for(var i = 0, len = cs.length; i < len; i++){
35232             cs[i].render(true);
35233         }
35234         this.childrenRendered = true;
35235     },
35236
35237     // private
35238     sort : function(fn, scope){
35239         Roo.tree.TreeNode.superclass.sort.apply(this, arguments);
35240         if(this.childrenRendered){
35241             var cs = this.childNodes;
35242             for(var i = 0, len = cs.length; i < len; i++){
35243                 cs[i].render(true);
35244             }
35245         }
35246     },
35247
35248     // private
35249     render : function(bulkRender){
35250         this.ui.render(bulkRender);
35251         if(!this.rendered){
35252             this.rendered = true;
35253             if(this.expanded){
35254                 this.expanded = false;
35255                 this.expand(false, false);
35256             }
35257         }
35258     },
35259
35260     // private
35261     renderIndent : function(deep, refresh){
35262         if(refresh){
35263             this.ui.childIndent = null;
35264         }
35265         this.ui.renderIndent();
35266         if(deep === true && this.childrenRendered){
35267             var cs = this.childNodes;
35268             for(var i = 0, len = cs.length; i < len; i++){
35269                 cs[i].renderIndent(true, refresh);
35270             }
35271         }
35272     }
35273 });/*
35274  * Based on:
35275  * Ext JS Library 1.1.1
35276  * Copyright(c) 2006-2007, Ext JS, LLC.
35277  *
35278  * Originally Released Under LGPL - original licence link has changed is not relivant.
35279  *
35280  * Fork - LGPL
35281  * <script type="text/javascript">
35282  */
35283  
35284 /**
35285  * @class Roo.tree.AsyncTreeNode
35286  * @extends Roo.tree.TreeNode
35287  * @cfg {TreeLoader} loader A TreeLoader to be used by this node (defaults to the loader defined on the tree)
35288  * @constructor
35289  * @param {Object/String} attributes The attributes/config for the node or just a string with the text for the node 
35290  */
35291  Roo.tree.AsyncTreeNode = function(config){
35292     this.loaded = false;
35293     this.loading = false;
35294     Roo.tree.AsyncTreeNode.superclass.constructor.apply(this, arguments);
35295     /**
35296     * @event beforeload
35297     * Fires before this node is loaded, return false to cancel
35298     * @param {Node} this This node
35299     */
35300     this.addEvents({'beforeload':true, 'load': true});
35301     /**
35302     * @event load
35303     * Fires when this node is loaded
35304     * @param {Node} this This node
35305     */
35306     /**
35307      * The loader used by this node (defaults to using the tree's defined loader)
35308      * @type TreeLoader
35309      * @property loader
35310      */
35311 };
35312 Roo.extend(Roo.tree.AsyncTreeNode, Roo.tree.TreeNode, {
35313     expand : function(deep, anim, callback){
35314         if(this.loading){ // if an async load is already running, waiting til it's done
35315             var timer;
35316             var f = function(){
35317                 if(!this.loading){ // done loading
35318                     clearInterval(timer);
35319                     this.expand(deep, anim, callback);
35320                 }
35321             }.createDelegate(this);
35322             timer = setInterval(f, 200);
35323             return;
35324         }
35325         if(!this.loaded){
35326             if(this.fireEvent("beforeload", this) === false){
35327                 return;
35328             }
35329             this.loading = true;
35330             this.ui.beforeLoad(this);
35331             var loader = this.loader || this.attributes.loader || this.getOwnerTree().getLoader();
35332             if(loader){
35333                 loader.load(this, this.loadComplete.createDelegate(this, [deep, anim, callback]));
35334                 return;
35335             }
35336         }
35337         Roo.tree.AsyncTreeNode.superclass.expand.call(this, deep, anim, callback);
35338     },
35339     
35340     /**
35341      * Returns true if this node is currently loading
35342      * @return {Boolean}
35343      */
35344     isLoading : function(){
35345         return this.loading;  
35346     },
35347     
35348     loadComplete : function(deep, anim, callback){
35349         this.loading = false;
35350         this.loaded = true;
35351         this.ui.afterLoad(this);
35352         this.fireEvent("load", this);
35353         this.expand(deep, anim, callback);
35354     },
35355     
35356     /**
35357      * Returns true if this node has been loaded
35358      * @return {Boolean}
35359      */
35360     isLoaded : function(){
35361         return this.loaded;
35362     },
35363     
35364     hasChildNodes : function(){
35365         if(!this.isLeaf() && !this.loaded){
35366             return true;
35367         }else{
35368             return Roo.tree.AsyncTreeNode.superclass.hasChildNodes.call(this);
35369         }
35370     },
35371
35372     /**
35373      * Trigger a reload for this node
35374      * @param {Function} callback
35375      */
35376     reload : function(callback){
35377         this.collapse(false, false);
35378         while(this.firstChild){
35379             this.removeChild(this.firstChild);
35380         }
35381         this.childrenRendered = false;
35382         this.loaded = false;
35383         if(this.isHiddenRoot()){
35384             this.expanded = false;
35385         }
35386         this.expand(false, false, callback);
35387     }
35388 });/*
35389  * Based on:
35390  * Ext JS Library 1.1.1
35391  * Copyright(c) 2006-2007, Ext JS, LLC.
35392  *
35393  * Originally Released Under LGPL - original licence link has changed is not relivant.
35394  *
35395  * Fork - LGPL
35396  * <script type="text/javascript">
35397  */
35398  
35399 /**
35400  * @class Roo.tree.TreeNodeUI
35401  * @constructor
35402  * @param {Object} node The node to render
35403  * The TreeNode UI implementation is separate from the
35404  * tree implementation. Unless you are customizing the tree UI,
35405  * you should never have to use this directly.
35406  */
35407 Roo.tree.TreeNodeUI = function(node){
35408     this.node = node;
35409     this.rendered = false;
35410     this.animating = false;
35411     this.emptyIcon = Roo.BLANK_IMAGE_URL;
35412 };
35413
35414 Roo.tree.TreeNodeUI.prototype = {
35415     removeChild : function(node){
35416         if(this.rendered){
35417             this.ctNode.removeChild(node.ui.getEl());
35418         }
35419     },
35420
35421     beforeLoad : function(){
35422          this.addClass("x-tree-node-loading");
35423     },
35424
35425     afterLoad : function(){
35426          this.removeClass("x-tree-node-loading");
35427     },
35428
35429     onTextChange : function(node, text, oldText){
35430         if(this.rendered){
35431             this.textNode.innerHTML = text;
35432         }
35433     },
35434
35435     onDisableChange : function(node, state){
35436         this.disabled = state;
35437         if(state){
35438             this.addClass("x-tree-node-disabled");
35439         }else{
35440             this.removeClass("x-tree-node-disabled");
35441         }
35442     },
35443
35444     onSelectedChange : function(state){
35445         if(state){
35446             this.focus();
35447             this.addClass("x-tree-selected");
35448         }else{
35449             //this.blur();
35450             this.removeClass("x-tree-selected");
35451         }
35452     },
35453
35454     onMove : function(tree, node, oldParent, newParent, index, refNode){
35455         this.childIndent = null;
35456         if(this.rendered){
35457             var targetNode = newParent.ui.getContainer();
35458             if(!targetNode){//target not rendered
35459                 this.holder = document.createElement("div");
35460                 this.holder.appendChild(this.wrap);
35461                 return;
35462             }
35463             var insertBefore = refNode ? refNode.ui.getEl() : null;
35464             if(insertBefore){
35465                 targetNode.insertBefore(this.wrap, insertBefore);
35466             }else{
35467                 targetNode.appendChild(this.wrap);
35468             }
35469             this.node.renderIndent(true);
35470         }
35471     },
35472
35473     addClass : function(cls){
35474         if(this.elNode){
35475             Roo.fly(this.elNode).addClass(cls);
35476         }
35477     },
35478
35479     removeClass : function(cls){
35480         if(this.elNode){
35481             Roo.fly(this.elNode).removeClass(cls);
35482         }
35483     },
35484
35485     remove : function(){
35486         if(this.rendered){
35487             this.holder = document.createElement("div");
35488             this.holder.appendChild(this.wrap);
35489         }
35490     },
35491
35492     fireEvent : function(){
35493         return this.node.fireEvent.apply(this.node, arguments);
35494     },
35495
35496     initEvents : function(){
35497         this.node.on("move", this.onMove, this);
35498         var E = Roo.EventManager;
35499         var a = this.anchor;
35500
35501         var el = Roo.fly(a, '_treeui');
35502
35503         if(Roo.isOpera){ // opera render bug ignores the CSS
35504             el.setStyle("text-decoration", "none");
35505         }
35506
35507         el.on("click", this.onClick, this);
35508         el.on("dblclick", this.onDblClick, this);
35509
35510         if(this.checkbox){
35511             Roo.EventManager.on(this.checkbox,
35512                     Roo.isIE ? 'click' : 'change', this.onCheckChange, this);
35513         }
35514
35515         el.on("contextmenu", this.onContextMenu, this);
35516
35517         var icon = Roo.fly(this.iconNode);
35518         icon.on("click", this.onClick, this);
35519         icon.on("dblclick", this.onDblClick, this);
35520         icon.on("contextmenu", this.onContextMenu, this);
35521         E.on(this.ecNode, "click", this.ecClick, this, true);
35522
35523         if(this.node.disabled){
35524             this.addClass("x-tree-node-disabled");
35525         }
35526         if(this.node.hidden){
35527             this.addClass("x-tree-node-disabled");
35528         }
35529         var ot = this.node.getOwnerTree();
35530         var dd = ot.enableDD || ot.enableDrag || ot.enableDrop;
35531         if(dd && (!this.node.isRoot || ot.rootVisible)){
35532             Roo.dd.Registry.register(this.elNode, {
35533                 node: this.node,
35534                 handles: this.getDDHandles(),
35535                 isHandle: false
35536             });
35537         }
35538     },
35539
35540     getDDHandles : function(){
35541         return [this.iconNode, this.textNode];
35542     },
35543
35544     hide : function(){
35545         if(this.rendered){
35546             this.wrap.style.display = "none";
35547         }
35548     },
35549
35550     show : function(){
35551         if(this.rendered){
35552             this.wrap.style.display = "";
35553         }
35554     },
35555
35556     onContextMenu : function(e){
35557         if (this.node.hasListener("contextmenu") || this.node.getOwnerTree().hasListener("contextmenu")) {
35558             e.preventDefault();
35559             this.focus();
35560             this.fireEvent("contextmenu", this.node, e);
35561         }
35562     },
35563
35564     onClick : function(e){
35565         if(this.dropping){
35566             e.stopEvent();
35567             return;
35568         }
35569         if(this.fireEvent("beforeclick", this.node, e) !== false){
35570             if(!this.disabled && this.node.attributes.href){
35571                 this.fireEvent("click", this.node, e);
35572                 return;
35573             }
35574             e.preventDefault();
35575             if(this.disabled){
35576                 return;
35577             }
35578
35579             if(this.node.attributes.singleClickExpand && !this.animating && this.node.hasChildNodes()){
35580                 this.node.toggle();
35581             }
35582
35583             this.fireEvent("click", this.node, e);
35584         }else{
35585             e.stopEvent();
35586         }
35587     },
35588
35589     onDblClick : function(e){
35590         e.preventDefault();
35591         if(this.disabled){
35592             return;
35593         }
35594         if(this.checkbox){
35595             this.toggleCheck();
35596         }
35597         if(!this.animating && this.node.hasChildNodes()){
35598             this.node.toggle();
35599         }
35600         this.fireEvent("dblclick", this.node, e);
35601     },
35602
35603     onCheckChange : function(){
35604         var checked = this.checkbox.checked;
35605         this.node.attributes.checked = checked;
35606         this.fireEvent('checkchange', this.node, checked);
35607     },
35608
35609     ecClick : function(e){
35610         if(!this.animating && this.node.hasChildNodes()){
35611             this.node.toggle();
35612         }
35613     },
35614
35615     startDrop : function(){
35616         this.dropping = true;
35617     },
35618
35619     // delayed drop so the click event doesn't get fired on a drop
35620     endDrop : function(){
35621        setTimeout(function(){
35622            this.dropping = false;
35623        }.createDelegate(this), 50);
35624     },
35625
35626     expand : function(){
35627         this.updateExpandIcon();
35628         this.ctNode.style.display = "";
35629     },
35630
35631     focus : function(){
35632         if(!this.node.preventHScroll){
35633             try{this.anchor.focus();
35634             }catch(e){}
35635         }else if(!Roo.isIE){
35636             try{
35637                 var noscroll = this.node.getOwnerTree().getTreeEl().dom;
35638                 var l = noscroll.scrollLeft;
35639                 this.anchor.focus();
35640                 noscroll.scrollLeft = l;
35641             }catch(e){}
35642         }
35643     },
35644
35645     toggleCheck : function(value){
35646         var cb = this.checkbox;
35647         if(cb){
35648             cb.checked = (value === undefined ? !cb.checked : value);
35649         }
35650     },
35651
35652     blur : function(){
35653         try{
35654             this.anchor.blur();
35655         }catch(e){}
35656     },
35657
35658     animExpand : function(callback){
35659         var ct = Roo.get(this.ctNode);
35660         ct.stopFx();
35661         if(!this.node.hasChildNodes()){
35662             this.updateExpandIcon();
35663             this.ctNode.style.display = "";
35664             Roo.callback(callback);
35665             return;
35666         }
35667         this.animating = true;
35668         this.updateExpandIcon();
35669
35670         ct.slideIn('t', {
35671            callback : function(){
35672                this.animating = false;
35673                Roo.callback(callback);
35674             },
35675             scope: this,
35676             duration: this.node.ownerTree.duration || .25
35677         });
35678     },
35679
35680     highlight : function(){
35681         var tree = this.node.getOwnerTree();
35682         Roo.fly(this.wrap).highlight(
35683             tree.hlColor || "C3DAF9",
35684             {endColor: tree.hlBaseColor}
35685         );
35686     },
35687
35688     collapse : function(){
35689         this.updateExpandIcon();
35690         this.ctNode.style.display = "none";
35691     },
35692
35693     animCollapse : function(callback){
35694         var ct = Roo.get(this.ctNode);
35695         ct.enableDisplayMode('block');
35696         ct.stopFx();
35697
35698         this.animating = true;
35699         this.updateExpandIcon();
35700
35701         ct.slideOut('t', {
35702             callback : function(){
35703                this.animating = false;
35704                Roo.callback(callback);
35705             },
35706             scope: this,
35707             duration: this.node.ownerTree.duration || .25
35708         });
35709     },
35710
35711     getContainer : function(){
35712         return this.ctNode;
35713     },
35714
35715     getEl : function(){
35716         return this.wrap;
35717     },
35718
35719     appendDDGhost : function(ghostNode){
35720         ghostNode.appendChild(this.elNode.cloneNode(true));
35721     },
35722
35723     getDDRepairXY : function(){
35724         return Roo.lib.Dom.getXY(this.iconNode);
35725     },
35726
35727     onRender : function(){
35728         this.render();
35729     },
35730
35731     render : function(bulkRender){
35732         var n = this.node, a = n.attributes;
35733         var targetNode = n.parentNode ?
35734               n.parentNode.ui.getContainer() : n.ownerTree.innerCt.dom;
35735
35736         if(!this.rendered){
35737             this.rendered = true;
35738
35739             this.renderElements(n, a, targetNode, bulkRender);
35740
35741             if(a.qtip){
35742                if(this.textNode.setAttributeNS){
35743                    this.textNode.setAttributeNS("ext", "qtip", a.qtip);
35744                    if(a.qtipTitle){
35745                        this.textNode.setAttributeNS("ext", "qtitle", a.qtipTitle);
35746                    }
35747                }else{
35748                    this.textNode.setAttribute("ext:qtip", a.qtip);
35749                    if(a.qtipTitle){
35750                        this.textNode.setAttribute("ext:qtitle", a.qtipTitle);
35751                    }
35752                }
35753             }else if(a.qtipCfg){
35754                 a.qtipCfg.target = Roo.id(this.textNode);
35755                 Roo.QuickTips.register(a.qtipCfg);
35756             }
35757             this.initEvents();
35758             if(!this.node.expanded){
35759                 this.updateExpandIcon();
35760             }
35761         }else{
35762             if(bulkRender === true) {
35763                 targetNode.appendChild(this.wrap);
35764             }
35765         }
35766     },
35767
35768     renderElements : function(n, a, targetNode, bulkRender)
35769     {
35770         // add some indent caching, this helps performance when rendering a large tree
35771         this.indentMarkup = n.parentNode ? n.parentNode.ui.getChildIndent() : '';
35772         var t = n.getOwnerTree();
35773         var txt = t.renderer ? t.renderer(n.attributes) : Roo.util.Format.htmlEncode(n.text);
35774         if (typeof(n.attributes.html) != 'undefined') {
35775             txt = n.attributes.html;
35776         }
35777         var tip = t.rendererTip ? t.rendererTip(n.attributes) : txt;
35778         var cb = typeof a.checked == 'boolean';
35779         var href = a.href ? a.href : Roo.isGecko ? "" : "#";
35780         var buf = ['<li class="x-tree-node"><div class="x-tree-node-el ', a.cls,'">',
35781             '<span class="x-tree-node-indent">',this.indentMarkup,"</span>",
35782             '<img src="', this.emptyIcon, '" class="x-tree-ec-icon" />',
35783             '<img src="', a.icon || this.emptyIcon, '" class="x-tree-node-icon',(a.icon ? " x-tree-node-inline-icon" : ""),(a.iconCls ? " "+a.iconCls : ""),'" unselectable="on" />',
35784             cb ? ('<input class="x-tree-node-cb" type="checkbox" ' + (a.checked ? 'checked="checked" />' : ' />')) : '',
35785             '<a hidefocus="on" href="',href,'" tabIndex="1" ',
35786              a.hrefTarget ? ' target="'+a.hrefTarget+'"' : "", 
35787                 '><span unselectable="on" qtip="' , tip ,'">',txt,"</span></a></div>",
35788             '<ul class="x-tree-node-ct" style="display:none;"></ul>',
35789             "</li>"];
35790
35791         if(bulkRender !== true && n.nextSibling && n.nextSibling.ui.getEl()){
35792             this.wrap = Roo.DomHelper.insertHtml("beforeBegin",
35793                                 n.nextSibling.ui.getEl(), buf.join(""));
35794         }else{
35795             this.wrap = Roo.DomHelper.insertHtml("beforeEnd", targetNode, buf.join(""));
35796         }
35797
35798         this.elNode = this.wrap.childNodes[0];
35799         this.ctNode = this.wrap.childNodes[1];
35800         var cs = this.elNode.childNodes;
35801         this.indentNode = cs[0];
35802         this.ecNode = cs[1];
35803         this.iconNode = cs[2];
35804         var index = 3;
35805         if(cb){
35806             this.checkbox = cs[3];
35807             index++;
35808         }
35809         this.anchor = cs[index];
35810         this.textNode = cs[index].firstChild;
35811     },
35812
35813     getAnchor : function(){
35814         return this.anchor;
35815     },
35816
35817     getTextEl : function(){
35818         return this.textNode;
35819     },
35820
35821     getIconEl : function(){
35822         return this.iconNode;
35823     },
35824
35825     isChecked : function(){
35826         return this.checkbox ? this.checkbox.checked : false;
35827     },
35828
35829     updateExpandIcon : function(){
35830         if(this.rendered){
35831             var n = this.node, c1, c2;
35832             var cls = n.isLast() ? "x-tree-elbow-end" : "x-tree-elbow";
35833             var hasChild = n.hasChildNodes();
35834             if(hasChild){
35835                 if(n.expanded){
35836                     cls += "-minus";
35837                     c1 = "x-tree-node-collapsed";
35838                     c2 = "x-tree-node-expanded";
35839                 }else{
35840                     cls += "-plus";
35841                     c1 = "x-tree-node-expanded";
35842                     c2 = "x-tree-node-collapsed";
35843                 }
35844                 if(this.wasLeaf){
35845                     this.removeClass("x-tree-node-leaf");
35846                     this.wasLeaf = false;
35847                 }
35848                 if(this.c1 != c1 || this.c2 != c2){
35849                     Roo.fly(this.elNode).replaceClass(c1, c2);
35850                     this.c1 = c1; this.c2 = c2;
35851                 }
35852             }else{
35853                 // this changes non-leafs into leafs if they have no children.
35854                 // it's not very rational behaviour..
35855                 
35856                 if(!this.wasLeaf && this.node.leaf){
35857                     Roo.fly(this.elNode).replaceClass("x-tree-node-expanded", "x-tree-node-leaf");
35858                     delete this.c1;
35859                     delete this.c2;
35860                     this.wasLeaf = true;
35861                 }
35862             }
35863             var ecc = "x-tree-ec-icon "+cls;
35864             if(this.ecc != ecc){
35865                 this.ecNode.className = ecc;
35866                 this.ecc = ecc;
35867             }
35868         }
35869     },
35870
35871     getChildIndent : function(){
35872         if(!this.childIndent){
35873             var buf = [];
35874             var p = this.node;
35875             while(p){
35876                 if(!p.isRoot || (p.isRoot && p.ownerTree.rootVisible)){
35877                     if(!p.isLast()) {
35878                         buf.unshift('<img src="'+this.emptyIcon+'" class="x-tree-elbow-line" />');
35879                     } else {
35880                         buf.unshift('<img src="'+this.emptyIcon+'" class="x-tree-icon" />');
35881                     }
35882                 }
35883                 p = p.parentNode;
35884             }
35885             this.childIndent = buf.join("");
35886         }
35887         return this.childIndent;
35888     },
35889
35890     renderIndent : function(){
35891         if(this.rendered){
35892             var indent = "";
35893             var p = this.node.parentNode;
35894             if(p){
35895                 indent = p.ui.getChildIndent();
35896             }
35897             if(this.indentMarkup != indent){ // don't rerender if not required
35898                 this.indentNode.innerHTML = indent;
35899                 this.indentMarkup = indent;
35900             }
35901             this.updateExpandIcon();
35902         }
35903     }
35904 };
35905
35906 Roo.tree.RootTreeNodeUI = function(){
35907     Roo.tree.RootTreeNodeUI.superclass.constructor.apply(this, arguments);
35908 };
35909 Roo.extend(Roo.tree.RootTreeNodeUI, Roo.tree.TreeNodeUI, {
35910     render : function(){
35911         if(!this.rendered){
35912             var targetNode = this.node.ownerTree.innerCt.dom;
35913             this.node.expanded = true;
35914             targetNode.innerHTML = '<div class="x-tree-root-node"></div>';
35915             this.wrap = this.ctNode = targetNode.firstChild;
35916         }
35917     },
35918     collapse : function(){
35919     },
35920     expand : function(){
35921     }
35922 });/*
35923  * Based on:
35924  * Ext JS Library 1.1.1
35925  * Copyright(c) 2006-2007, Ext JS, LLC.
35926  *
35927  * Originally Released Under LGPL - original licence link has changed is not relivant.
35928  *
35929  * Fork - LGPL
35930  * <script type="text/javascript">
35931  */
35932 /**
35933  * @class Roo.tree.TreeLoader
35934  * @extends Roo.util.Observable
35935  * A TreeLoader provides for lazy loading of an {@link Roo.tree.TreeNode}'s child
35936  * nodes from a specified URL. The response must be a javascript Array definition
35937  * who's elements are node definition objects. eg:
35938  * <pre><code>
35939 {  success : true,
35940    data :      [
35941    
35942     { 'id': 1, 'text': 'A folder Node', 'leaf': false },
35943     { 'id': 2, 'text': 'A leaf Node', 'leaf': true }
35944     ]
35945 }
35946
35947
35948 </code></pre>
35949  * <br><br>
35950  * The old style respose with just an array is still supported, but not recommended.
35951  * <br><br>
35952  *
35953  * A server request is sent, and child nodes are loaded only when a node is expanded.
35954  * The loading node's id is passed to the server under the parameter name "node" to
35955  * enable the server to produce the correct child nodes.
35956  * <br><br>
35957  * To pass extra parameters, an event handler may be attached to the "beforeload"
35958  * event, and the parameters specified in the TreeLoader's baseParams property:
35959  * <pre><code>
35960     myTreeLoader.on("beforeload", function(treeLoader, node) {
35961         this.baseParams.category = node.attributes.category;
35962     }, this);
35963 </code></pre><
35964  * This would pass an HTTP parameter called "category" to the server containing
35965  * the value of the Node's "category" attribute.
35966  * @constructor
35967  * Creates a new Treeloader.
35968  * @param {Object} config A config object containing config properties.
35969  */
35970 Roo.tree.TreeLoader = function(config){
35971     this.baseParams = {};
35972     this.requestMethod = "POST";
35973     Roo.apply(this, config);
35974
35975     this.addEvents({
35976     
35977         /**
35978          * @event beforeload
35979          * Fires before a network request is made to retrieve the Json text which specifies a node's children.
35980          * @param {Object} This TreeLoader object.
35981          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
35982          * @param {Object} callback The callback function specified in the {@link #load} call.
35983          */
35984         beforeload : true,
35985         /**
35986          * @event load
35987          * Fires when the node has been successfuly loaded.
35988          * @param {Object} This TreeLoader object.
35989          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
35990          * @param {Object} response The response object containing the data from the server.
35991          */
35992         load : true,
35993         /**
35994          * @event loadexception
35995          * Fires if the network request failed.
35996          * @param {Object} This TreeLoader object.
35997          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
35998          * @param {Object} response The response object containing the data from the server.
35999          */
36000         loadexception : true,
36001         /**
36002          * @event create
36003          * Fires before a node is created, enabling you to return custom Node types 
36004          * @param {Object} This TreeLoader object.
36005          * @param {Object} attr - the data returned from the AJAX call (modify it to suit)
36006          */
36007         create : true
36008     });
36009
36010     Roo.tree.TreeLoader.superclass.constructor.call(this);
36011 };
36012
36013 Roo.extend(Roo.tree.TreeLoader, Roo.util.Observable, {
36014     /**
36015     * @cfg {String} dataUrl The URL from which to request a Json string which
36016     * specifies an array of node definition object representing the child nodes
36017     * to be loaded.
36018     */
36019     /**
36020     * @cfg {String} requestMethod either GET or POST
36021     * defaults to POST (due to BC)
36022     * to be loaded.
36023     */
36024     /**
36025     * @cfg {Object} baseParams (optional) An object containing properties which
36026     * specify HTTP parameters to be passed to each request for child nodes.
36027     */
36028     /**
36029     * @cfg {Object} baseAttrs (optional) An object containing attributes to be added to all nodes
36030     * created by this loader. If the attributes sent by the server have an attribute in this object,
36031     * they take priority.
36032     */
36033     /**
36034     * @cfg {Object} uiProviders (optional) An object containing properties which
36035     * 
36036     * DEPRECATED - use 'create' event handler to modify attributes - which affect creation.
36037     * specify custom {@link Roo.tree.TreeNodeUI} implementations. If the optional
36038     * <i>uiProvider</i> attribute of a returned child node is a string rather
36039     * than a reference to a TreeNodeUI implementation, this that string value
36040     * is used as a property name in the uiProviders object. You can define the provider named
36041     * 'default' , and this will be used for all nodes (if no uiProvider is delivered by the node data)
36042     */
36043     uiProviders : {},
36044
36045     /**
36046     * @cfg {Boolean} clearOnLoad (optional) Default to true. Remove previously existing
36047     * child nodes before loading.
36048     */
36049     clearOnLoad : true,
36050
36051     /**
36052     * @cfg {String} root (optional) Default to false. Use this to read data from an object 
36053     * property on loading, rather than expecting an array. (eg. more compatible to a standard
36054     * Grid query { data : [ .....] }
36055     */
36056     
36057     root : false,
36058      /**
36059     * @cfg {String} queryParam (optional) 
36060     * Name of the query as it will be passed on the querystring (defaults to 'node')
36061     * eg. the request will be ?node=[id]
36062     */
36063     
36064     
36065     queryParam: false,
36066     
36067     /**
36068      * Load an {@link Roo.tree.TreeNode} from the URL specified in the constructor.
36069      * This is called automatically when a node is expanded, but may be used to reload
36070      * a node (or append new children if the {@link #clearOnLoad} option is false.)
36071      * @param {Roo.tree.TreeNode} node
36072      * @param {Function} callback
36073      */
36074     load : function(node, callback){
36075         if(this.clearOnLoad){
36076             while(node.firstChild){
36077                 node.removeChild(node.firstChild);
36078             }
36079         }
36080         if(node.attributes.children){ // preloaded json children
36081             var cs = node.attributes.children;
36082             for(var i = 0, len = cs.length; i < len; i++){
36083                 node.appendChild(this.createNode(cs[i]));
36084             }
36085             if(typeof callback == "function"){
36086                 callback();
36087             }
36088         }else if(this.dataUrl){
36089             this.requestData(node, callback);
36090         }
36091     },
36092
36093     getParams: function(node){
36094         var buf = [], bp = this.baseParams;
36095         for(var key in bp){
36096             if(typeof bp[key] != "function"){
36097                 buf.push(encodeURIComponent(key), "=", encodeURIComponent(bp[key]), "&");
36098             }
36099         }
36100         var n = this.queryParam === false ? 'node' : this.queryParam;
36101         buf.push(n + "=", encodeURIComponent(node.id));
36102         return buf.join("");
36103     },
36104
36105     requestData : function(node, callback){
36106         if(this.fireEvent("beforeload", this, node, callback) !== false){
36107             this.transId = Roo.Ajax.request({
36108                 method:this.requestMethod,
36109                 url: this.dataUrl||this.url,
36110                 success: this.handleResponse,
36111                 failure: this.handleFailure,
36112                 scope: this,
36113                 argument: {callback: callback, node: node},
36114                 params: this.getParams(node)
36115             });
36116         }else{
36117             // if the load is cancelled, make sure we notify
36118             // the node that we are done
36119             if(typeof callback == "function"){
36120                 callback();
36121             }
36122         }
36123     },
36124
36125     isLoading : function(){
36126         return this.transId ? true : false;
36127     },
36128
36129     abort : function(){
36130         if(this.isLoading()){
36131             Roo.Ajax.abort(this.transId);
36132         }
36133     },
36134
36135     // private
36136     createNode : function(attr)
36137     {
36138         // apply baseAttrs, nice idea Corey!
36139         if(this.baseAttrs){
36140             Roo.applyIf(attr, this.baseAttrs);
36141         }
36142         if(this.applyLoader !== false){
36143             attr.loader = this;
36144         }
36145         // uiProvider = depreciated..
36146         
36147         if(typeof(attr.uiProvider) == 'string'){
36148            attr.uiProvider = this.uiProviders[attr.uiProvider] || 
36149                 /**  eval:var:attr */ eval(attr.uiProvider);
36150         }
36151         if(typeof(this.uiProviders['default']) != 'undefined') {
36152             attr.uiProvider = this.uiProviders['default'];
36153         }
36154         
36155         this.fireEvent('create', this, attr);
36156         
36157         attr.leaf  = typeof(attr.leaf) == 'string' ? attr.leaf * 1 : attr.leaf;
36158         return(attr.leaf ?
36159                         new Roo.tree.TreeNode(attr) :
36160                         new Roo.tree.AsyncTreeNode(attr));
36161     },
36162
36163     processResponse : function(response, node, callback)
36164     {
36165         var json = response.responseText;
36166         try {
36167             
36168             var o = Roo.decode(json);
36169             
36170             if (this.root === false && typeof(o.success) != undefined) {
36171                 this.root = 'data'; // the default behaviour for list like data..
36172                 }
36173                 
36174             if (this.root !== false &&  !o.success) {
36175                 // it's a failure condition.
36176                 var a = response.argument;
36177                 this.fireEvent("loadexception", this, a.node, response);
36178                 Roo.log("Load failed - should have a handler really");
36179                 return;
36180             }
36181             
36182             
36183             
36184             if (this.root !== false) {
36185                  o = o[this.root];
36186             }
36187             
36188             for(var i = 0, len = o.length; i < len; i++){
36189                 var n = this.createNode(o[i]);
36190                 if(n){
36191                     node.appendChild(n);
36192                 }
36193             }
36194             if(typeof callback == "function"){
36195                 callback(this, node);
36196             }
36197         }catch(e){
36198             this.handleFailure(response);
36199         }
36200     },
36201
36202     handleResponse : function(response){
36203         this.transId = false;
36204         var a = response.argument;
36205         this.processResponse(response, a.node, a.callback);
36206         this.fireEvent("load", this, a.node, response);
36207     },
36208
36209     handleFailure : function(response)
36210     {
36211         // should handle failure better..
36212         this.transId = false;
36213         var a = response.argument;
36214         this.fireEvent("loadexception", this, a.node, response);
36215         if(typeof a.callback == "function"){
36216             a.callback(this, a.node);
36217         }
36218     }
36219 });/*
36220  * Based on:
36221  * Ext JS Library 1.1.1
36222  * Copyright(c) 2006-2007, Ext JS, LLC.
36223  *
36224  * Originally Released Under LGPL - original licence link has changed is not relivant.
36225  *
36226  * Fork - LGPL
36227  * <script type="text/javascript">
36228  */
36229
36230 /**
36231 * @class Roo.tree.TreeFilter
36232 * Note this class is experimental and doesn't update the indent (lines) or expand collapse icons of the nodes
36233 * @param {TreePanel} tree
36234 * @param {Object} config (optional)
36235  */
36236 Roo.tree.TreeFilter = function(tree, config){
36237     this.tree = tree;
36238     this.filtered = {};
36239     Roo.apply(this, config);
36240 };
36241
36242 Roo.tree.TreeFilter.prototype = {
36243     clearBlank:false,
36244     reverse:false,
36245     autoClear:false,
36246     remove:false,
36247
36248      /**
36249      * Filter the data by a specific attribute.
36250      * @param {String/RegExp} value Either string that the attribute value
36251      * should start with or a RegExp to test against the attribute
36252      * @param {String} attr (optional) The attribute passed in your node's attributes collection. Defaults to "text".
36253      * @param {TreeNode} startNode (optional) The node to start the filter at.
36254      */
36255     filter : function(value, attr, startNode){
36256         attr = attr || "text";
36257         var f;
36258         if(typeof value == "string"){
36259             var vlen = value.length;
36260             // auto clear empty filter
36261             if(vlen == 0 && this.clearBlank){
36262                 this.clear();
36263                 return;
36264             }
36265             value = value.toLowerCase();
36266             f = function(n){
36267                 return n.attributes[attr].substr(0, vlen).toLowerCase() == value;
36268             };
36269         }else if(value.exec){ // regex?
36270             f = function(n){
36271                 return value.test(n.attributes[attr]);
36272             };
36273         }else{
36274             throw 'Illegal filter type, must be string or regex';
36275         }
36276         this.filterBy(f, null, startNode);
36277         },
36278
36279     /**
36280      * Filter by a function. The passed function will be called with each
36281      * node in the tree (or from the startNode). If the function returns true, the node is kept
36282      * otherwise it is filtered. If a node is filtered, its children are also filtered.
36283      * @param {Function} fn The filter function
36284      * @param {Object} scope (optional) The scope of the function (defaults to the current node)
36285      */
36286     filterBy : function(fn, scope, startNode){
36287         startNode = startNode || this.tree.root;
36288         if(this.autoClear){
36289             this.clear();
36290         }
36291         var af = this.filtered, rv = this.reverse;
36292         var f = function(n){
36293             if(n == startNode){
36294                 return true;
36295             }
36296             if(af[n.id]){
36297                 return false;
36298             }
36299             var m = fn.call(scope || n, n);
36300             if(!m || rv){
36301                 af[n.id] = n;
36302                 n.ui.hide();
36303                 return false;
36304             }
36305             return true;
36306         };
36307         startNode.cascade(f);
36308         if(this.remove){
36309            for(var id in af){
36310                if(typeof id != "function"){
36311                    var n = af[id];
36312                    if(n && n.parentNode){
36313                        n.parentNode.removeChild(n);
36314                    }
36315                }
36316            }
36317         }
36318     },
36319
36320     /**
36321      * Clears the current filter. Note: with the "remove" option
36322      * set a filter cannot be cleared.
36323      */
36324     clear : function(){
36325         var t = this.tree;
36326         var af = this.filtered;
36327         for(var id in af){
36328             if(typeof id != "function"){
36329                 var n = af[id];
36330                 if(n){
36331                     n.ui.show();
36332                 }
36333             }
36334         }
36335         this.filtered = {};
36336     }
36337 };
36338 /*
36339  * Based on:
36340  * Ext JS Library 1.1.1
36341  * Copyright(c) 2006-2007, Ext JS, LLC.
36342  *
36343  * Originally Released Under LGPL - original licence link has changed is not relivant.
36344  *
36345  * Fork - LGPL
36346  * <script type="text/javascript">
36347  */
36348  
36349
36350 /**
36351  * @class Roo.tree.TreeSorter
36352  * Provides sorting of nodes in a TreePanel
36353  * 
36354  * @cfg {Boolean} folderSort True to sort leaf nodes under non leaf nodes
36355  * @cfg {String} property The named attribute on the node to sort by (defaults to text)
36356  * @cfg {String} dir The direction to sort (asc or desc) (defaults to asc)
36357  * @cfg {String} leafAttr The attribute used to determine leaf nodes in folder sort (defaults to "leaf")
36358  * @cfg {Boolean} caseSensitive true for case sensitive sort (defaults to false)
36359  * @cfg {Function} sortType A custom "casting" function used to convert node values before sorting
36360  * @constructor
36361  * @param {TreePanel} tree
36362  * @param {Object} config
36363  */
36364 Roo.tree.TreeSorter = function(tree, config){
36365     Roo.apply(this, config);
36366     tree.on("beforechildrenrendered", this.doSort, this);
36367     tree.on("append", this.updateSort, this);
36368     tree.on("insert", this.updateSort, this);
36369     
36370     var dsc = this.dir && this.dir.toLowerCase() == "desc";
36371     var p = this.property || "text";
36372     var sortType = this.sortType;
36373     var fs = this.folderSort;
36374     var cs = this.caseSensitive === true;
36375     var leafAttr = this.leafAttr || 'leaf';
36376
36377     this.sortFn = function(n1, n2){
36378         if(fs){
36379             if(n1.attributes[leafAttr] && !n2.attributes[leafAttr]){
36380                 return 1;
36381             }
36382             if(!n1.attributes[leafAttr] && n2.attributes[leafAttr]){
36383                 return -1;
36384             }
36385         }
36386         var v1 = sortType ? sortType(n1) : (cs ? n1.attributes[p] : n1.attributes[p].toUpperCase());
36387         var v2 = sortType ? sortType(n2) : (cs ? n2.attributes[p] : n2.attributes[p].toUpperCase());
36388         if(v1 < v2){
36389                         return dsc ? +1 : -1;
36390                 }else if(v1 > v2){
36391                         return dsc ? -1 : +1;
36392         }else{
36393                 return 0;
36394         }
36395     };
36396 };
36397
36398 Roo.tree.TreeSorter.prototype = {
36399     doSort : function(node){
36400         node.sort(this.sortFn);
36401     },
36402     
36403     compareNodes : function(n1, n2){
36404         return (n1.text.toUpperCase() > n2.text.toUpperCase() ? 1 : -1);
36405     },
36406     
36407     updateSort : function(tree, node){
36408         if(node.childrenRendered){
36409             this.doSort.defer(1, this, [node]);
36410         }
36411     }
36412 };/*
36413  * Based on:
36414  * Ext JS Library 1.1.1
36415  * Copyright(c) 2006-2007, Ext JS, LLC.
36416  *
36417  * Originally Released Under LGPL - original licence link has changed is not relivant.
36418  *
36419  * Fork - LGPL
36420  * <script type="text/javascript">
36421  */
36422
36423 if(Roo.dd.DropZone){
36424     
36425 Roo.tree.TreeDropZone = function(tree, config){
36426     this.allowParentInsert = false;
36427     this.allowContainerDrop = false;
36428     this.appendOnly = false;
36429     Roo.tree.TreeDropZone.superclass.constructor.call(this, tree.innerCt, config);
36430     this.tree = tree;
36431     this.lastInsertClass = "x-tree-no-status";
36432     this.dragOverData = {};
36433 };
36434
36435 Roo.extend(Roo.tree.TreeDropZone, Roo.dd.DropZone, {
36436     ddGroup : "TreeDD",
36437     scroll:  true,
36438     
36439     expandDelay : 1000,
36440     
36441     expandNode : function(node){
36442         if(node.hasChildNodes() && !node.isExpanded()){
36443             node.expand(false, null, this.triggerCacheRefresh.createDelegate(this));
36444         }
36445     },
36446     
36447     queueExpand : function(node){
36448         this.expandProcId = this.expandNode.defer(this.expandDelay, this, [node]);
36449     },
36450     
36451     cancelExpand : function(){
36452         if(this.expandProcId){
36453             clearTimeout(this.expandProcId);
36454             this.expandProcId = false;
36455         }
36456     },
36457     
36458     isValidDropPoint : function(n, pt, dd, e, data){
36459         if(!n || !data){ return false; }
36460         var targetNode = n.node;
36461         var dropNode = data.node;
36462         // default drop rules
36463         if(!(targetNode && targetNode.isTarget && pt)){
36464             return false;
36465         }
36466         if(pt == "append" && targetNode.allowChildren === false){
36467             return false;
36468         }
36469         if((pt == "above" || pt == "below") && (targetNode.parentNode && targetNode.parentNode.allowChildren === false)){
36470             return false;
36471         }
36472         if(dropNode && (targetNode == dropNode || dropNode.contains(targetNode))){
36473             return false;
36474         }
36475         // reuse the object
36476         var overEvent = this.dragOverData;
36477         overEvent.tree = this.tree;
36478         overEvent.target = targetNode;
36479         overEvent.data = data;
36480         overEvent.point = pt;
36481         overEvent.source = dd;
36482         overEvent.rawEvent = e;
36483         overEvent.dropNode = dropNode;
36484         overEvent.cancel = false;  
36485         var result = this.tree.fireEvent("nodedragover", overEvent);
36486         return overEvent.cancel === false && result !== false;
36487     },
36488     
36489     getDropPoint : function(e, n, dd)
36490     {
36491         var tn = n.node;
36492         if(tn.isRoot){
36493             return tn.allowChildren !== false ? "append" : false; // always append for root
36494         }
36495         var dragEl = n.ddel;
36496         var t = Roo.lib.Dom.getY(dragEl), b = t + dragEl.offsetHeight;
36497         var y = Roo.lib.Event.getPageY(e);
36498         //var noAppend = tn.allowChildren === false || tn.isLeaf();
36499         
36500         // we may drop nodes anywhere, as long as allowChildren has not been set to false..
36501         var noAppend = tn.allowChildren === false;
36502         if(this.appendOnly || tn.parentNode.allowChildren === false){
36503             return noAppend ? false : "append";
36504         }
36505         var noBelow = false;
36506         if(!this.allowParentInsert){
36507             noBelow = tn.hasChildNodes() && tn.isExpanded();
36508         }
36509         var q = (b - t) / (noAppend ? 2 : 3);
36510         if(y >= t && y < (t + q)){
36511             return "above";
36512         }else if(!noBelow && (noAppend || y >= b-q && y <= b)){
36513             return "below";
36514         }else{
36515             return "append";
36516         }
36517     },
36518     
36519     onNodeEnter : function(n, dd, e, data)
36520     {
36521         this.cancelExpand();
36522     },
36523     
36524     onNodeOver : function(n, dd, e, data)
36525     {
36526        
36527         var pt = this.getDropPoint(e, n, dd);
36528         var node = n.node;
36529         
36530         // auto node expand check
36531         if(!this.expandProcId && pt == "append" && node.hasChildNodes() && !n.node.isExpanded()){
36532             this.queueExpand(node);
36533         }else if(pt != "append"){
36534             this.cancelExpand();
36535         }
36536         
36537         // set the insert point style on the target node
36538         var returnCls = this.dropNotAllowed;
36539         if(this.isValidDropPoint(n, pt, dd, e, data)){
36540            if(pt){
36541                var el = n.ddel;
36542                var cls;
36543                if(pt == "above"){
36544                    returnCls = n.node.isFirst() ? "x-tree-drop-ok-above" : "x-tree-drop-ok-between";
36545                    cls = "x-tree-drag-insert-above";
36546                }else if(pt == "below"){
36547                    returnCls = n.node.isLast() ? "x-tree-drop-ok-below" : "x-tree-drop-ok-between";
36548                    cls = "x-tree-drag-insert-below";
36549                }else{
36550                    returnCls = "x-tree-drop-ok-append";
36551                    cls = "x-tree-drag-append";
36552                }
36553                if(this.lastInsertClass != cls){
36554                    Roo.fly(el).replaceClass(this.lastInsertClass, cls);
36555                    this.lastInsertClass = cls;
36556                }
36557            }
36558        }
36559        return returnCls;
36560     },
36561     
36562     onNodeOut : function(n, dd, e, data){
36563         
36564         this.cancelExpand();
36565         this.removeDropIndicators(n);
36566     },
36567     
36568     onNodeDrop : function(n, dd, e, data){
36569         var point = this.getDropPoint(e, n, dd);
36570         var targetNode = n.node;
36571         targetNode.ui.startDrop();
36572         if(!this.isValidDropPoint(n, point, dd, e, data)){
36573             targetNode.ui.endDrop();
36574             return false;
36575         }
36576         // first try to find the drop node
36577         var dropNode = data.node || (dd.getTreeNode ? dd.getTreeNode(data, targetNode, point, e) : null);
36578         var dropEvent = {
36579             tree : this.tree,
36580             target: targetNode,
36581             data: data,
36582             point: point,
36583             source: dd,
36584             rawEvent: e,
36585             dropNode: dropNode,
36586             cancel: !dropNode   
36587         };
36588         var retval = this.tree.fireEvent("beforenodedrop", dropEvent);
36589         if(retval === false || dropEvent.cancel === true || !dropEvent.dropNode){
36590             targetNode.ui.endDrop();
36591             return false;
36592         }
36593         // allow target changing
36594         targetNode = dropEvent.target;
36595         if(point == "append" && !targetNode.isExpanded()){
36596             targetNode.expand(false, null, function(){
36597                 this.completeDrop(dropEvent);
36598             }.createDelegate(this));
36599         }else{
36600             this.completeDrop(dropEvent);
36601         }
36602         return true;
36603     },
36604     
36605     completeDrop : function(de){
36606         var ns = de.dropNode, p = de.point, t = de.target;
36607         if(!(ns instanceof Array)){
36608             ns = [ns];
36609         }
36610         var n;
36611         for(var i = 0, len = ns.length; i < len; i++){
36612             n = ns[i];
36613             if(p == "above"){
36614                 t.parentNode.insertBefore(n, t);
36615             }else if(p == "below"){
36616                 t.parentNode.insertBefore(n, t.nextSibling);
36617             }else{
36618                 t.appendChild(n);
36619             }
36620         }
36621         n.ui.focus();
36622         if(this.tree.hlDrop){
36623             n.ui.highlight();
36624         }
36625         t.ui.endDrop();
36626         this.tree.fireEvent("nodedrop", de);
36627     },
36628     
36629     afterNodeMoved : function(dd, data, e, targetNode, dropNode){
36630         if(this.tree.hlDrop){
36631             dropNode.ui.focus();
36632             dropNode.ui.highlight();
36633         }
36634         this.tree.fireEvent("nodedrop", this.tree, targetNode, data, dd, e);
36635     },
36636     
36637     getTree : function(){
36638         return this.tree;
36639     },
36640     
36641     removeDropIndicators : function(n){
36642         if(n && n.ddel){
36643             var el = n.ddel;
36644             Roo.fly(el).removeClass([
36645                     "x-tree-drag-insert-above",
36646                     "x-tree-drag-insert-below",
36647                     "x-tree-drag-append"]);
36648             this.lastInsertClass = "_noclass";
36649         }
36650     },
36651     
36652     beforeDragDrop : function(target, e, id){
36653         this.cancelExpand();
36654         return true;
36655     },
36656     
36657     afterRepair : function(data){
36658         if(data && Roo.enableFx){
36659             data.node.ui.highlight();
36660         }
36661         this.hideProxy();
36662     } 
36663     
36664 });
36665
36666 }
36667 /*
36668  * Based on:
36669  * Ext JS Library 1.1.1
36670  * Copyright(c) 2006-2007, Ext JS, LLC.
36671  *
36672  * Originally Released Under LGPL - original licence link has changed is not relivant.
36673  *
36674  * Fork - LGPL
36675  * <script type="text/javascript">
36676  */
36677  
36678
36679 if(Roo.dd.DragZone){
36680 Roo.tree.TreeDragZone = function(tree, config){
36681     Roo.tree.TreeDragZone.superclass.constructor.call(this, tree.getTreeEl(), config);
36682     this.tree = tree;
36683 };
36684
36685 Roo.extend(Roo.tree.TreeDragZone, Roo.dd.DragZone, {
36686     ddGroup : "TreeDD",
36687    
36688     onBeforeDrag : function(data, e){
36689         var n = data.node;
36690         return n && n.draggable && !n.disabled;
36691     },
36692      
36693     
36694     onInitDrag : function(e){
36695         var data = this.dragData;
36696         this.tree.getSelectionModel().select(data.node);
36697         this.proxy.update("");
36698         data.node.ui.appendDDGhost(this.proxy.ghost.dom);
36699         this.tree.fireEvent("startdrag", this.tree, data.node, e);
36700     },
36701     
36702     getRepairXY : function(e, data){
36703         return data.node.ui.getDDRepairXY();
36704     },
36705     
36706     onEndDrag : function(data, e){
36707         this.tree.fireEvent("enddrag", this.tree, data.node, e);
36708         
36709         
36710     },
36711     
36712     onValidDrop : function(dd, e, id){
36713         this.tree.fireEvent("dragdrop", this.tree, this.dragData.node, dd, e);
36714         this.hideProxy();
36715     },
36716     
36717     beforeInvalidDrop : function(e, id){
36718         // this scrolls the original position back into view
36719         var sm = this.tree.getSelectionModel();
36720         sm.clearSelections();
36721         sm.select(this.dragData.node);
36722     }
36723 });
36724 }/*
36725  * Based on:
36726  * Ext JS Library 1.1.1
36727  * Copyright(c) 2006-2007, Ext JS, LLC.
36728  *
36729  * Originally Released Under LGPL - original licence link has changed is not relivant.
36730  *
36731  * Fork - LGPL
36732  * <script type="text/javascript">
36733  */
36734 /**
36735  * @class Roo.tree.TreeEditor
36736  * @extends Roo.Editor
36737  * Provides editor functionality for inline tree node editing.  Any valid {@link Roo.form.Field} can be used
36738  * as the editor field.
36739  * @constructor
36740  * @param {Object} config (used to be the tree panel.)
36741  * @param {Object} oldconfig DEPRECIATED Either a prebuilt {@link Roo.form.Field} instance or a Field config object
36742  * 
36743  * @cfg {Roo.tree.TreePanel} tree The tree to bind to.
36744  * @cfg {Roo.form.TextField|Object} field The field configuration
36745  *
36746  * 
36747  */
36748 Roo.tree.TreeEditor = function(config, oldconfig) { // was -- (tree, config){
36749     var tree = config;
36750     var field;
36751     if (oldconfig) { // old style..
36752         field = oldconfig.events ? oldconfig : new Roo.form.TextField(oldconfig);
36753     } else {
36754         // new style..
36755         tree = config.tree;
36756         config.field = config.field  || {};
36757         config.field.xtype = 'TextField';
36758         field = Roo.factory(config.field, Roo.form);
36759     }
36760     config = config || {};
36761     
36762     
36763     this.addEvents({
36764         /**
36765          * @event beforenodeedit
36766          * Fires when editing is initiated, but before the value changes.  Editing can be canceled by returning
36767          * false from the handler of this event.
36768          * @param {Editor} this
36769          * @param {Roo.tree.Node} node 
36770          */
36771         "beforenodeedit" : true
36772     });
36773     
36774     //Roo.log(config);
36775     Roo.tree.TreeEditor.superclass.constructor.call(this, field, config);
36776
36777     this.tree = tree;
36778
36779     tree.on('beforeclick', this.beforeNodeClick, this);
36780     tree.getTreeEl().on('mousedown', this.hide, this);
36781     this.on('complete', this.updateNode, this);
36782     this.on('beforestartedit', this.fitToTree, this);
36783     this.on('startedit', this.bindScroll, this, {delay:10});
36784     this.on('specialkey', this.onSpecialKey, this);
36785 };
36786
36787 Roo.extend(Roo.tree.TreeEditor, Roo.Editor, {
36788     /**
36789      * @cfg {String} alignment
36790      * The position to align to (see {@link Roo.Element#alignTo} for more details, defaults to "l-l").
36791      */
36792     alignment: "l-l",
36793     // inherit
36794     autoSize: false,
36795     /**
36796      * @cfg {Boolean} hideEl
36797      * True to hide the bound element while the editor is displayed (defaults to false)
36798      */
36799     hideEl : false,
36800     /**
36801      * @cfg {String} cls
36802      * CSS class to apply to the editor (defaults to "x-small-editor x-tree-editor")
36803      */
36804     cls: "x-small-editor x-tree-editor",
36805     /**
36806      * @cfg {Boolean} shim
36807      * True to shim the editor if selects/iframes could be displayed beneath it (defaults to false)
36808      */
36809     shim:false,
36810     // inherit
36811     shadow:"frame",
36812     /**
36813      * @cfg {Number} maxWidth
36814      * The maximum width in pixels of the editor field (defaults to 250).  Note that if the maxWidth would exceed
36815      * the containing tree element's size, it will be automatically limited for you to the container width, taking
36816      * scroll and client offsets into account prior to each edit.
36817      */
36818     maxWidth: 250,
36819
36820     editDelay : 350,
36821
36822     // private
36823     fitToTree : function(ed, el){
36824         var td = this.tree.getTreeEl().dom, nd = el.dom;
36825         if(td.scrollLeft >  nd.offsetLeft){ // ensure the node left point is visible
36826             td.scrollLeft = nd.offsetLeft;
36827         }
36828         var w = Math.min(
36829                 this.maxWidth,
36830                 (td.clientWidth > 20 ? td.clientWidth : td.offsetWidth) - Math.max(0, nd.offsetLeft-td.scrollLeft) - /*cushion*/5);
36831         this.setSize(w, '');
36832         
36833         return this.fireEvent('beforenodeedit', this, this.editNode);
36834         
36835     },
36836
36837     // private
36838     triggerEdit : function(node){
36839         this.completeEdit();
36840         this.editNode = node;
36841         this.startEdit(node.ui.textNode, node.text);
36842     },
36843
36844     // private
36845     bindScroll : function(){
36846         this.tree.getTreeEl().on('scroll', this.cancelEdit, this);
36847     },
36848
36849     // private
36850     beforeNodeClick : function(node, e){
36851         var sinceLast = (this.lastClick ? this.lastClick.getElapsed() : 0);
36852         this.lastClick = new Date();
36853         if(sinceLast > this.editDelay && this.tree.getSelectionModel().isSelected(node)){
36854             e.stopEvent();
36855             this.triggerEdit(node);
36856             return false;
36857         }
36858         return true;
36859     },
36860
36861     // private
36862     updateNode : function(ed, value){
36863         this.tree.getTreeEl().un('scroll', this.cancelEdit, this);
36864         this.editNode.setText(value);
36865     },
36866
36867     // private
36868     onHide : function(){
36869         Roo.tree.TreeEditor.superclass.onHide.call(this);
36870         if(this.editNode){
36871             this.editNode.ui.focus();
36872         }
36873     },
36874
36875     // private
36876     onSpecialKey : function(field, e){
36877         var k = e.getKey();
36878         if(k == e.ESC){
36879             e.stopEvent();
36880             this.cancelEdit();
36881         }else if(k == e.ENTER && !e.hasModifier()){
36882             e.stopEvent();
36883             this.completeEdit();
36884         }
36885     }
36886 });//<Script type="text/javascript">
36887 /*
36888  * Based on:
36889  * Ext JS Library 1.1.1
36890  * Copyright(c) 2006-2007, Ext JS, LLC.
36891  *
36892  * Originally Released Under LGPL - original licence link has changed is not relivant.
36893  *
36894  * Fork - LGPL
36895  * <script type="text/javascript">
36896  */
36897  
36898 /**
36899  * Not documented??? - probably should be...
36900  */
36901
36902 Roo.tree.ColumnNodeUI = Roo.extend(Roo.tree.TreeNodeUI, {
36903     //focus: Roo.emptyFn, // prevent odd scrolling behavior
36904     
36905     renderElements : function(n, a, targetNode, bulkRender){
36906         //consel.log("renderElements?");
36907         this.indentMarkup = n.parentNode ? n.parentNode.ui.getChildIndent() : '';
36908
36909         var t = n.getOwnerTree();
36910         var tid = Pman.Tab.Document_TypesTree.tree.el.id;
36911         
36912         var cols = t.columns;
36913         var bw = t.borderWidth;
36914         var c = cols[0];
36915         var href = a.href ? a.href : Roo.isGecko ? "" : "#";
36916          var cb = typeof a.checked == "boolean";
36917         var tx = String.format('{0}',n.text || (c.renderer ? c.renderer(a[c.dataIndex], n, a) : a[c.dataIndex]));
36918         var colcls = 'x-t-' + tid + '-c0';
36919         var buf = [
36920             '<li class="x-tree-node">',
36921             
36922                 
36923                 '<div class="x-tree-node-el ', a.cls,'">',
36924                     // extran...
36925                     '<div class="x-tree-col ', colcls, '" style="width:', c.width-bw, 'px;">',
36926                 
36927                 
36928                         '<span class="x-tree-node-indent">',this.indentMarkup,'</span>',
36929                         '<img src="', this.emptyIcon, '" class="x-tree-ec-icon  " />',
36930                         '<img src="', a.icon || this.emptyIcon, '" class="x-tree-node-icon',
36931                            (a.icon ? ' x-tree-node-inline-icon' : ''),
36932                            (a.iconCls ? ' '+a.iconCls : ''),
36933                            '" unselectable="on" />',
36934                         (cb ? ('<input class="x-tree-node-cb" type="checkbox" ' + 
36935                              (a.checked ? 'checked="checked" />' : ' />')) : ''),
36936                              
36937                         '<a class="x-tree-node-anchor" hidefocus="on" href="',href,'" tabIndex="1" ',
36938                             (a.hrefTarget ? ' target="' +a.hrefTarget + '"' : ''), '>',
36939                             '<span unselectable="on" qtip="' + tx + '">',
36940                              tx,
36941                              '</span></a>' ,
36942                     '</div>',
36943                      '<a class="x-tree-node-anchor" hidefocus="on" href="',href,'" tabIndex="1" ',
36944                             (a.hrefTarget ? ' target="' +a.hrefTarget + '"' : ''), '>'
36945                  ];
36946         for(var i = 1, len = cols.length; i < len; i++){
36947             c = cols[i];
36948             colcls = 'x-t-' + tid + '-c' +i;
36949             tx = String.format('{0}', (c.renderer ? c.renderer(a[c.dataIndex], n, a) : a[c.dataIndex]));
36950             buf.push('<div class="x-tree-col ', colcls, ' ' ,(c.cls?c.cls:''),'" style="width:',c.width-bw,'px;">',
36951                         '<div class="x-tree-col-text" qtip="' + tx +'">',tx,"</div>",
36952                       "</div>");
36953          }
36954          
36955          buf.push(
36956             '</a>',
36957             '<div class="x-clear"></div></div>',
36958             '<ul class="x-tree-node-ct" style="display:none;"></ul>',
36959             "</li>");
36960         
36961         if(bulkRender !== true && n.nextSibling && n.nextSibling.ui.getEl()){
36962             this.wrap = Roo.DomHelper.insertHtml("beforeBegin",
36963                                 n.nextSibling.ui.getEl(), buf.join(""));
36964         }else{
36965             this.wrap = Roo.DomHelper.insertHtml("beforeEnd", targetNode, buf.join(""));
36966         }
36967         var el = this.wrap.firstChild;
36968         this.elRow = el;
36969         this.elNode = el.firstChild;
36970         this.ranchor = el.childNodes[1];
36971         this.ctNode = this.wrap.childNodes[1];
36972         var cs = el.firstChild.childNodes;
36973         this.indentNode = cs[0];
36974         this.ecNode = cs[1];
36975         this.iconNode = cs[2];
36976         var index = 3;
36977         if(cb){
36978             this.checkbox = cs[3];
36979             index++;
36980         }
36981         this.anchor = cs[index];
36982         
36983         this.textNode = cs[index].firstChild;
36984         
36985         //el.on("click", this.onClick, this);
36986         //el.on("dblclick", this.onDblClick, this);
36987         
36988         
36989        // console.log(this);
36990     },
36991     initEvents : function(){
36992         Roo.tree.ColumnNodeUI.superclass.initEvents.call(this);
36993         
36994             
36995         var a = this.ranchor;
36996
36997         var el = Roo.get(a);
36998
36999         if(Roo.isOpera){ // opera render bug ignores the CSS
37000             el.setStyle("text-decoration", "none");
37001         }
37002
37003         el.on("click", this.onClick, this);
37004         el.on("dblclick", this.onDblClick, this);
37005         el.on("contextmenu", this.onContextMenu, this);
37006         
37007     },
37008     
37009     /*onSelectedChange : function(state){
37010         if(state){
37011             this.focus();
37012             this.addClass("x-tree-selected");
37013         }else{
37014             //this.blur();
37015             this.removeClass("x-tree-selected");
37016         }
37017     },*/
37018     addClass : function(cls){
37019         if(this.elRow){
37020             Roo.fly(this.elRow).addClass(cls);
37021         }
37022         
37023     },
37024     
37025     
37026     removeClass : function(cls){
37027         if(this.elRow){
37028             Roo.fly(this.elRow).removeClass(cls);
37029         }
37030     }
37031
37032     
37033     
37034 });//<Script type="text/javascript">
37035
37036 /*
37037  * Based on:
37038  * Ext JS Library 1.1.1
37039  * Copyright(c) 2006-2007, Ext JS, LLC.
37040  *
37041  * Originally Released Under LGPL - original licence link has changed is not relivant.
37042  *
37043  * Fork - LGPL
37044  * <script type="text/javascript">
37045  */
37046  
37047
37048 /**
37049  * @class Roo.tree.ColumnTree
37050  * @extends Roo.data.TreePanel
37051  * @cfg {Object} columns  Including width, header, renderer, cls, dataIndex 
37052  * @cfg {int} borderWidth  compined right/left border allowance
37053  * @constructor
37054  * @param {String/HTMLElement/Element} el The container element
37055  * @param {Object} config
37056  */
37057 Roo.tree.ColumnTree =  function(el, config)
37058 {
37059    Roo.tree.ColumnTree.superclass.constructor.call(this, el , config);
37060    this.addEvents({
37061         /**
37062         * @event resize
37063         * Fire this event on a container when it resizes
37064         * @param {int} w Width
37065         * @param {int} h Height
37066         */
37067        "resize" : true
37068     });
37069     this.on('resize', this.onResize, this);
37070 };
37071
37072 Roo.extend(Roo.tree.ColumnTree, Roo.tree.TreePanel, {
37073     //lines:false,
37074     
37075     
37076     borderWidth: Roo.isBorderBox ? 0 : 2, 
37077     headEls : false,
37078     
37079     render : function(){
37080         // add the header.....
37081        
37082         Roo.tree.ColumnTree.superclass.render.apply(this);
37083         
37084         this.el.addClass('x-column-tree');
37085         
37086         this.headers = this.el.createChild(
37087             {cls:'x-tree-headers'},this.innerCt.dom);
37088    
37089         var cols = this.columns, c;
37090         var totalWidth = 0;
37091         this.headEls = [];
37092         var  len = cols.length;
37093         for(var i = 0; i < len; i++){
37094              c = cols[i];
37095              totalWidth += c.width;
37096             this.headEls.push(this.headers.createChild({
37097                  cls:'x-tree-hd ' + (c.cls?c.cls+'-hd':''),
37098                  cn: {
37099                      cls:'x-tree-hd-text',
37100                      html: c.header
37101                  },
37102                  style:'width:'+(c.width-this.borderWidth)+'px;'
37103              }));
37104         }
37105         this.headers.createChild({cls:'x-clear'});
37106         // prevent floats from wrapping when clipped
37107         this.headers.setWidth(totalWidth);
37108         //this.innerCt.setWidth(totalWidth);
37109         this.innerCt.setStyle({ overflow: 'auto' });
37110         this.onResize(this.width, this.height);
37111              
37112         
37113     },
37114     onResize : function(w,h)
37115     {
37116         this.height = h;
37117         this.width = w;
37118         // resize cols..
37119         this.innerCt.setWidth(this.width);
37120         this.innerCt.setHeight(this.height-20);
37121         
37122         // headers...
37123         var cols = this.columns, c;
37124         var totalWidth = 0;
37125         var expEl = false;
37126         var len = cols.length;
37127         for(var i = 0; i < len; i++){
37128             c = cols[i];
37129             if (this.autoExpandColumn !== false && c.dataIndex == this.autoExpandColumn) {
37130                 // it's the expander..
37131                 expEl  = this.headEls[i];
37132                 continue;
37133             }
37134             totalWidth += c.width;
37135             
37136         }
37137         if (expEl) {
37138             expEl.setWidth(  ((w - totalWidth)-this.borderWidth - 20));
37139         }
37140         this.headers.setWidth(w-20);
37141
37142         
37143         
37144         
37145     }
37146 });
37147 /*
37148  * Based on:
37149  * Ext JS Library 1.1.1
37150  * Copyright(c) 2006-2007, Ext JS, LLC.
37151  *
37152  * Originally Released Under LGPL - original licence link has changed is not relivant.
37153  *
37154  * Fork - LGPL
37155  * <script type="text/javascript">
37156  */
37157  
37158 /**
37159  * @class Roo.menu.Menu
37160  * @extends Roo.util.Observable
37161  * A menu object.  This is the container to which you add all other menu items.  Menu can also serve a as a base class
37162  * when you want a specialzed menu based off of another component (like {@link Roo.menu.DateMenu} for example).
37163  * @constructor
37164  * Creates a new Menu
37165  * @param {Object} config Configuration options
37166  */
37167 Roo.menu.Menu = function(config){
37168     Roo.apply(this, config);
37169     this.id = this.id || Roo.id();
37170     this.addEvents({
37171         /**
37172          * @event beforeshow
37173          * Fires before this menu is displayed
37174          * @param {Roo.menu.Menu} this
37175          */
37176         beforeshow : true,
37177         /**
37178          * @event beforehide
37179          * Fires before this menu is hidden
37180          * @param {Roo.menu.Menu} this
37181          */
37182         beforehide : true,
37183         /**
37184          * @event show
37185          * Fires after this menu is displayed
37186          * @param {Roo.menu.Menu} this
37187          */
37188         show : true,
37189         /**
37190          * @event hide
37191          * Fires after this menu is hidden
37192          * @param {Roo.menu.Menu} this
37193          */
37194         hide : true,
37195         /**
37196          * @event click
37197          * Fires when this menu is clicked (or when the enter key is pressed while it is active)
37198          * @param {Roo.menu.Menu} this
37199          * @param {Roo.menu.Item} menuItem The menu item that was clicked
37200          * @param {Roo.EventObject} e
37201          */
37202         click : true,
37203         /**
37204          * @event mouseover
37205          * Fires when the mouse is hovering over this menu
37206          * @param {Roo.menu.Menu} this
37207          * @param {Roo.EventObject} e
37208          * @param {Roo.menu.Item} menuItem The menu item that was clicked
37209          */
37210         mouseover : true,
37211         /**
37212          * @event mouseout
37213          * Fires when the mouse exits this menu
37214          * @param {Roo.menu.Menu} this
37215          * @param {Roo.EventObject} e
37216          * @param {Roo.menu.Item} menuItem The menu item that was clicked
37217          */
37218         mouseout : true,
37219         /**
37220          * @event itemclick
37221          * Fires when a menu item contained in this menu is clicked
37222          * @param {Roo.menu.BaseItem} baseItem The BaseItem that was clicked
37223          * @param {Roo.EventObject} e
37224          */
37225         itemclick: true
37226     });
37227     if (this.registerMenu) {
37228         Roo.menu.MenuMgr.register(this);
37229     }
37230     
37231     var mis = this.items;
37232     this.items = new Roo.util.MixedCollection();
37233     if(mis){
37234         this.add.apply(this, mis);
37235     }
37236 };
37237
37238 Roo.extend(Roo.menu.Menu, Roo.util.Observable, {
37239     /**
37240      * @cfg {Number} minWidth The minimum width of the menu in pixels (defaults to 120)
37241      */
37242     minWidth : 120,
37243     /**
37244      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop"
37245      * for bottom-right shadow (defaults to "sides")
37246      */
37247     shadow : "sides",
37248     /**
37249      * @cfg {String} subMenuAlign The {@link Roo.Element#alignTo} anchor position value to use for submenus of
37250      * this menu (defaults to "tl-tr?")
37251      */
37252     subMenuAlign : "tl-tr?",
37253     /**
37254      * @cfg {String} defaultAlign The default {@link Roo.Element#alignTo) anchor position value for this menu
37255      * relative to its element of origin (defaults to "tl-bl?")
37256      */
37257     defaultAlign : "tl-bl?",
37258     /**
37259      * @cfg {Boolean} allowOtherMenus True to allow multiple menus to be displayed at the same time (defaults to false)
37260      */
37261     allowOtherMenus : false,
37262     /**
37263      * @cfg {Boolean} registerMenu True (default) - means that clicking on screen etc. hides it.
37264      */
37265     registerMenu : true,
37266
37267     hidden:true,
37268
37269     // private
37270     render : function(){
37271         if(this.el){
37272             return;
37273         }
37274         var el = this.el = new Roo.Layer({
37275             cls: "x-menu",
37276             shadow:this.shadow,
37277             constrain: false,
37278             parentEl: this.parentEl || document.body,
37279             zindex:15000
37280         });
37281
37282         this.keyNav = new Roo.menu.MenuNav(this);
37283
37284         if(this.plain){
37285             el.addClass("x-menu-plain");
37286         }
37287         if(this.cls){
37288             el.addClass(this.cls);
37289         }
37290         // generic focus element
37291         this.focusEl = el.createChild({
37292             tag: "a", cls: "x-menu-focus", href: "#", onclick: "return false;", tabIndex:"-1"
37293         });
37294         var ul = el.createChild({tag: "ul", cls: "x-menu-list"});
37295         //disabling touch- as it's causing issues ..
37296         //ul.on(Roo.isTouch ? 'touchstart' : 'click'   , this.onClick, this);
37297         ul.on('click'   , this.onClick, this);
37298         
37299         
37300         ul.on("mouseover", this.onMouseOver, this);
37301         ul.on("mouseout", this.onMouseOut, this);
37302         this.items.each(function(item){
37303             if (item.hidden) {
37304                 return;
37305             }
37306             
37307             var li = document.createElement("li");
37308             li.className = "x-menu-list-item";
37309             ul.dom.appendChild(li);
37310             item.render(li, this);
37311         }, this);
37312         this.ul = ul;
37313         this.autoWidth();
37314     },
37315
37316     // private
37317     autoWidth : function(){
37318         var el = this.el, ul = this.ul;
37319         if(!el){
37320             return;
37321         }
37322         var w = this.width;
37323         if(w){
37324             el.setWidth(w);
37325         }else if(Roo.isIE){
37326             el.setWidth(this.minWidth);
37327             var t = el.dom.offsetWidth; // force recalc
37328             el.setWidth(ul.getWidth()+el.getFrameWidth("lr"));
37329         }
37330     },
37331
37332     // private
37333     delayAutoWidth : function(){
37334         if(this.rendered){
37335             if(!this.awTask){
37336                 this.awTask = new Roo.util.DelayedTask(this.autoWidth, this);
37337             }
37338             this.awTask.delay(20);
37339         }
37340     },
37341
37342     // private
37343     findTargetItem : function(e){
37344         var t = e.getTarget(".x-menu-list-item", this.ul,  true);
37345         if(t && t.menuItemId){
37346             return this.items.get(t.menuItemId);
37347         }
37348     },
37349
37350     // private
37351     onClick : function(e){
37352         Roo.log("menu.onClick");
37353         var t = this.findTargetItem(e);
37354         if(!t){
37355             return;
37356         }
37357         Roo.log(e);
37358         if (Roo.isTouch && e.type == 'touchstart' && t.menu  && !t.disabled) {
37359             if(t == this.activeItem && t.shouldDeactivate(e)){
37360                 this.activeItem.deactivate();
37361                 delete this.activeItem;
37362                 return;
37363             }
37364             if(t.canActivate){
37365                 this.setActiveItem(t, true);
37366             }
37367             return;
37368             
37369             
37370         }
37371         
37372         t.onClick(e);
37373         this.fireEvent("click", this, t, e);
37374     },
37375
37376     // private
37377     setActiveItem : function(item, autoExpand){
37378         if(item != this.activeItem){
37379             if(this.activeItem){
37380                 this.activeItem.deactivate();
37381             }
37382             this.activeItem = item;
37383             item.activate(autoExpand);
37384         }else if(autoExpand){
37385             item.expandMenu();
37386         }
37387     },
37388
37389     // private
37390     tryActivate : function(start, step){
37391         var items = this.items;
37392         for(var i = start, len = items.length; i >= 0 && i < len; i+= step){
37393             var item = items.get(i);
37394             if(!item.disabled && item.canActivate){
37395                 this.setActiveItem(item, false);
37396                 return item;
37397             }
37398         }
37399         return false;
37400     },
37401
37402     // private
37403     onMouseOver : function(e){
37404         var t;
37405         if(t = this.findTargetItem(e)){
37406             if(t.canActivate && !t.disabled){
37407                 this.setActiveItem(t, true);
37408             }
37409         }
37410         this.fireEvent("mouseover", this, e, t);
37411     },
37412
37413     // private
37414     onMouseOut : function(e){
37415         var t;
37416         if(t = this.findTargetItem(e)){
37417             if(t == this.activeItem && t.shouldDeactivate(e)){
37418                 this.activeItem.deactivate();
37419                 delete this.activeItem;
37420             }
37421         }
37422         this.fireEvent("mouseout", this, e, t);
37423     },
37424
37425     /**
37426      * Read-only.  Returns true if the menu is currently displayed, else false.
37427      * @type Boolean
37428      */
37429     isVisible : function(){
37430         return this.el && !this.hidden;
37431     },
37432
37433     /**
37434      * Displays this menu relative to another element
37435      * @param {String/HTMLElement/Roo.Element} element The element to align to
37436      * @param {String} position (optional) The {@link Roo.Element#alignTo} anchor position to use in aligning to
37437      * the element (defaults to this.defaultAlign)
37438      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
37439      */
37440     show : function(el, pos, parentMenu){
37441         this.parentMenu = parentMenu;
37442         if(!this.el){
37443             this.render();
37444         }
37445         this.fireEvent("beforeshow", this);
37446         this.showAt(this.el.getAlignToXY(el, pos || this.defaultAlign), parentMenu, false);
37447     },
37448
37449     /**
37450      * Displays this menu at a specific xy position
37451      * @param {Array} xyPosition Contains X & Y [x, y] values for the position at which to show the menu (coordinates are page-based)
37452      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
37453      */
37454     showAt : function(xy, parentMenu, /* private: */_e){
37455         this.parentMenu = parentMenu;
37456         if(!this.el){
37457             this.render();
37458         }
37459         if(_e !== false){
37460             this.fireEvent("beforeshow", this);
37461             xy = this.el.adjustForConstraints(xy);
37462         }
37463         this.el.setXY(xy);
37464         this.el.show();
37465         this.hidden = false;
37466         this.focus();
37467         this.fireEvent("show", this);
37468     },
37469
37470     focus : function(){
37471         if(!this.hidden){
37472             this.doFocus.defer(50, this);
37473         }
37474     },
37475
37476     doFocus : function(){
37477         if(!this.hidden){
37478             this.focusEl.focus();
37479         }
37480     },
37481
37482     /**
37483      * Hides this menu and optionally all parent menus
37484      * @param {Boolean} deep (optional) True to hide all parent menus recursively, if any (defaults to false)
37485      */
37486     hide : function(deep){
37487         if(this.el && this.isVisible()){
37488             this.fireEvent("beforehide", this);
37489             if(this.activeItem){
37490                 this.activeItem.deactivate();
37491                 this.activeItem = null;
37492             }
37493             this.el.hide();
37494             this.hidden = true;
37495             this.fireEvent("hide", this);
37496         }
37497         if(deep === true && this.parentMenu){
37498             this.parentMenu.hide(true);
37499         }
37500     },
37501
37502     /**
37503      * Addds one or more items of any type supported by the Menu class, or that can be converted into menu items.
37504      * Any of the following are valid:
37505      * <ul>
37506      * <li>Any menu item object based on {@link Roo.menu.Item}</li>
37507      * <li>An HTMLElement object which will be converted to a menu item</li>
37508      * <li>A menu item config object that will be created as a new menu item</li>
37509      * <li>A string, which can either be '-' or 'separator' to add a menu separator, otherwise
37510      * it will be converted into a {@link Roo.menu.TextItem} and added</li>
37511      * </ul>
37512      * Usage:
37513      * <pre><code>
37514 // Create the menu
37515 var menu = new Roo.menu.Menu();
37516
37517 // Create a menu item to add by reference
37518 var menuItem = new Roo.menu.Item({ text: 'New Item!' });
37519
37520 // Add a bunch of items at once using different methods.
37521 // Only the last item added will be returned.
37522 var item = menu.add(
37523     menuItem,                // add existing item by ref
37524     'Dynamic Item',          // new TextItem
37525     '-',                     // new separator
37526     { text: 'Config Item' }  // new item by config
37527 );
37528 </code></pre>
37529      * @param {Mixed} args One or more menu items, menu item configs or other objects that can be converted to menu items
37530      * @return {Roo.menu.Item} The menu item that was added, or the last one if multiple items were added
37531      */
37532     add : function(){
37533         var a = arguments, l = a.length, item;
37534         for(var i = 0; i < l; i++){
37535             var el = a[i];
37536             if ((typeof(el) == "object") && el.xtype && el.xns) {
37537                 el = Roo.factory(el, Roo.menu);
37538             }
37539             
37540             if(el.render){ // some kind of Item
37541                 item = this.addItem(el);
37542             }else if(typeof el == "string"){ // string
37543                 if(el == "separator" || el == "-"){
37544                     item = this.addSeparator();
37545                 }else{
37546                     item = this.addText(el);
37547                 }
37548             }else if(el.tagName || el.el){ // element
37549                 item = this.addElement(el);
37550             }else if(typeof el == "object"){ // must be menu item config?
37551                 item = this.addMenuItem(el);
37552             }
37553         }
37554         return item;
37555     },
37556
37557     /**
37558      * Returns this menu's underlying {@link Roo.Element} object
37559      * @return {Roo.Element} The element
37560      */
37561     getEl : function(){
37562         if(!this.el){
37563             this.render();
37564         }
37565         return this.el;
37566     },
37567
37568     /**
37569      * Adds a separator bar to the menu
37570      * @return {Roo.menu.Item} The menu item that was added
37571      */
37572     addSeparator : function(){
37573         return this.addItem(new Roo.menu.Separator());
37574     },
37575
37576     /**
37577      * Adds an {@link Roo.Element} object to the menu
37578      * @param {String/HTMLElement/Roo.Element} el The element or DOM node to add, or its id
37579      * @return {Roo.menu.Item} The menu item that was added
37580      */
37581     addElement : function(el){
37582         return this.addItem(new Roo.menu.BaseItem(el));
37583     },
37584
37585     /**
37586      * Adds an existing object based on {@link Roo.menu.Item} to the menu
37587      * @param {Roo.menu.Item} item The menu item to add
37588      * @return {Roo.menu.Item} The menu item that was added
37589      */
37590     addItem : function(item){
37591         this.items.add(item);
37592         if(this.ul){
37593             var li = document.createElement("li");
37594             li.className = "x-menu-list-item";
37595             this.ul.dom.appendChild(li);
37596             item.render(li, this);
37597             this.delayAutoWidth();
37598         }
37599         return item;
37600     },
37601
37602     /**
37603      * Creates a new {@link Roo.menu.Item} based an the supplied config object and adds it to the menu
37604      * @param {Object} config A MenuItem config object
37605      * @return {Roo.menu.Item} The menu item that was added
37606      */
37607     addMenuItem : function(config){
37608         if(!(config instanceof Roo.menu.Item)){
37609             if(typeof config.checked == "boolean"){ // must be check menu item config?
37610                 config = new Roo.menu.CheckItem(config);
37611             }else{
37612                 config = new Roo.menu.Item(config);
37613             }
37614         }
37615         return this.addItem(config);
37616     },
37617
37618     /**
37619      * Creates a new {@link Roo.menu.TextItem} with the supplied text and adds it to the menu
37620      * @param {String} text The text to display in the menu item
37621      * @return {Roo.menu.Item} The menu item that was added
37622      */
37623     addText : function(text){
37624         return this.addItem(new Roo.menu.TextItem({ text : text }));
37625     },
37626
37627     /**
37628      * Inserts an existing object based on {@link Roo.menu.Item} to the menu at a specified index
37629      * @param {Number} index The index in the menu's list of current items where the new item should be inserted
37630      * @param {Roo.menu.Item} item The menu item to add
37631      * @return {Roo.menu.Item} The menu item that was added
37632      */
37633     insert : function(index, item){
37634         this.items.insert(index, item);
37635         if(this.ul){
37636             var li = document.createElement("li");
37637             li.className = "x-menu-list-item";
37638             this.ul.dom.insertBefore(li, this.ul.dom.childNodes[index]);
37639             item.render(li, this);
37640             this.delayAutoWidth();
37641         }
37642         return item;
37643     },
37644
37645     /**
37646      * Removes an {@link Roo.menu.Item} from the menu and destroys the object
37647      * @param {Roo.menu.Item} item The menu item to remove
37648      */
37649     remove : function(item){
37650         this.items.removeKey(item.id);
37651         item.destroy();
37652     },
37653
37654     /**
37655      * Removes and destroys all items in the menu
37656      */
37657     removeAll : function(){
37658         var f;
37659         while(f = this.items.first()){
37660             this.remove(f);
37661         }
37662     }
37663 });
37664
37665 // MenuNav is a private utility class used internally by the Menu
37666 Roo.menu.MenuNav = function(menu){
37667     Roo.menu.MenuNav.superclass.constructor.call(this, menu.el);
37668     this.scope = this.menu = menu;
37669 };
37670
37671 Roo.extend(Roo.menu.MenuNav, Roo.KeyNav, {
37672     doRelay : function(e, h){
37673         var k = e.getKey();
37674         if(!this.menu.activeItem && e.isNavKeyPress() && k != e.SPACE && k != e.RETURN){
37675             this.menu.tryActivate(0, 1);
37676             return false;
37677         }
37678         return h.call(this.scope || this, e, this.menu);
37679     },
37680
37681     up : function(e, m){
37682         if(!m.tryActivate(m.items.indexOf(m.activeItem)-1, -1)){
37683             m.tryActivate(m.items.length-1, -1);
37684         }
37685     },
37686
37687     down : function(e, m){
37688         if(!m.tryActivate(m.items.indexOf(m.activeItem)+1, 1)){
37689             m.tryActivate(0, 1);
37690         }
37691     },
37692
37693     right : function(e, m){
37694         if(m.activeItem){
37695             m.activeItem.expandMenu(true);
37696         }
37697     },
37698
37699     left : function(e, m){
37700         m.hide();
37701         if(m.parentMenu && m.parentMenu.activeItem){
37702             m.parentMenu.activeItem.activate();
37703         }
37704     },
37705
37706     enter : function(e, m){
37707         if(m.activeItem){
37708             e.stopPropagation();
37709             m.activeItem.onClick(e);
37710             m.fireEvent("click", this, m.activeItem);
37711             return true;
37712         }
37713     }
37714 });/*
37715  * Based on:
37716  * Ext JS Library 1.1.1
37717  * Copyright(c) 2006-2007, Ext JS, LLC.
37718  *
37719  * Originally Released Under LGPL - original licence link has changed is not relivant.
37720  *
37721  * Fork - LGPL
37722  * <script type="text/javascript">
37723  */
37724  
37725 /**
37726  * @class Roo.menu.MenuMgr
37727  * Provides a common registry of all menu items on a page so that they can be easily accessed by id.
37728  * @singleton
37729  */
37730 Roo.menu.MenuMgr = function(){
37731    var menus, active, groups = {}, attached = false, lastShow = new Date();
37732
37733    // private - called when first menu is created
37734    function init(){
37735        menus = {};
37736        active = new Roo.util.MixedCollection();
37737        Roo.get(document).addKeyListener(27, function(){
37738            if(active.length > 0){
37739                hideAll();
37740            }
37741        });
37742    }
37743
37744    // private
37745    function hideAll(){
37746        if(active && active.length > 0){
37747            var c = active.clone();
37748            c.each(function(m){
37749                m.hide();
37750            });
37751        }
37752    }
37753
37754    // private
37755    function onHide(m){
37756        active.remove(m);
37757        if(active.length < 1){
37758            Roo.get(document).un("mousedown", onMouseDown);
37759            attached = false;
37760        }
37761    }
37762
37763    // private
37764    function onShow(m){
37765        var last = active.last();
37766        lastShow = new Date();
37767        active.add(m);
37768        if(!attached){
37769            Roo.get(document).on("mousedown", onMouseDown);
37770            attached = true;
37771        }
37772        if(m.parentMenu){
37773           m.getEl().setZIndex(parseInt(m.parentMenu.getEl().getStyle("z-index"), 10) + 3);
37774           m.parentMenu.activeChild = m;
37775        }else if(last && last.isVisible()){
37776           m.getEl().setZIndex(parseInt(last.getEl().getStyle("z-index"), 10) + 3);
37777        }
37778    }
37779
37780    // private
37781    function onBeforeHide(m){
37782        if(m.activeChild){
37783            m.activeChild.hide();
37784        }
37785        if(m.autoHideTimer){
37786            clearTimeout(m.autoHideTimer);
37787            delete m.autoHideTimer;
37788        }
37789    }
37790
37791    // private
37792    function onBeforeShow(m){
37793        var pm = m.parentMenu;
37794        if(!pm && !m.allowOtherMenus){
37795            hideAll();
37796        }else if(pm && pm.activeChild && active != m){
37797            pm.activeChild.hide();
37798        }
37799    }
37800
37801    // private
37802    function onMouseDown(e){
37803        if(lastShow.getElapsed() > 50 && active.length > 0 && !e.getTarget(".x-menu")){
37804            hideAll();
37805        }
37806    }
37807
37808    // private
37809    function onBeforeCheck(mi, state){
37810        if(state){
37811            var g = groups[mi.group];
37812            for(var i = 0, l = g.length; i < l; i++){
37813                if(g[i] != mi){
37814                    g[i].setChecked(false);
37815                }
37816            }
37817        }
37818    }
37819
37820    return {
37821
37822        /**
37823         * Hides all menus that are currently visible
37824         */
37825        hideAll : function(){
37826             hideAll();  
37827        },
37828
37829        // private
37830        register : function(menu){
37831            if(!menus){
37832                init();
37833            }
37834            menus[menu.id] = menu;
37835            menu.on("beforehide", onBeforeHide);
37836            menu.on("hide", onHide);
37837            menu.on("beforeshow", onBeforeShow);
37838            menu.on("show", onShow);
37839            var g = menu.group;
37840            if(g && menu.events["checkchange"]){
37841                if(!groups[g]){
37842                    groups[g] = [];
37843                }
37844                groups[g].push(menu);
37845                menu.on("checkchange", onCheck);
37846            }
37847        },
37848
37849         /**
37850          * Returns a {@link Roo.menu.Menu} object
37851          * @param {String/Object} menu The string menu id, an existing menu object reference, or a Menu config that will
37852          * be used to generate and return a new Menu instance.
37853          */
37854        get : function(menu){
37855            if(typeof menu == "string"){ // menu id
37856                return menus[menu];
37857            }else if(menu.events){  // menu instance
37858                return menu;
37859            }else if(typeof menu.length == 'number'){ // array of menu items?
37860                return new Roo.menu.Menu({items:menu});
37861            }else{ // otherwise, must be a config
37862                return new Roo.menu.Menu(menu);
37863            }
37864        },
37865
37866        // private
37867        unregister : function(menu){
37868            delete menus[menu.id];
37869            menu.un("beforehide", onBeforeHide);
37870            menu.un("hide", onHide);
37871            menu.un("beforeshow", onBeforeShow);
37872            menu.un("show", onShow);
37873            var g = menu.group;
37874            if(g && menu.events["checkchange"]){
37875                groups[g].remove(menu);
37876                menu.un("checkchange", onCheck);
37877            }
37878        },
37879
37880        // private
37881        registerCheckable : function(menuItem){
37882            var g = menuItem.group;
37883            if(g){
37884                if(!groups[g]){
37885                    groups[g] = [];
37886                }
37887                groups[g].push(menuItem);
37888                menuItem.on("beforecheckchange", onBeforeCheck);
37889            }
37890        },
37891
37892        // private
37893        unregisterCheckable : function(menuItem){
37894            var g = menuItem.group;
37895            if(g){
37896                groups[g].remove(menuItem);
37897                menuItem.un("beforecheckchange", onBeforeCheck);
37898            }
37899        }
37900    };
37901 }();/*
37902  * Based on:
37903  * Ext JS Library 1.1.1
37904  * Copyright(c) 2006-2007, Ext JS, LLC.
37905  *
37906  * Originally Released Under LGPL - original licence link has changed is not relivant.
37907  *
37908  * Fork - LGPL
37909  * <script type="text/javascript">
37910  */
37911  
37912
37913 /**
37914  * @class Roo.menu.BaseItem
37915  * @extends Roo.Component
37916  * The base class for all items that render into menus.  BaseItem provides default rendering, activated state
37917  * management and base configuration options shared by all menu components.
37918  * @constructor
37919  * Creates a new BaseItem
37920  * @param {Object} config Configuration options
37921  */
37922 Roo.menu.BaseItem = function(config){
37923     Roo.menu.BaseItem.superclass.constructor.call(this, config);
37924
37925     this.addEvents({
37926         /**
37927          * @event click
37928          * Fires when this item is clicked
37929          * @param {Roo.menu.BaseItem} this
37930          * @param {Roo.EventObject} e
37931          */
37932         click: true,
37933         /**
37934          * @event activate
37935          * Fires when this item is activated
37936          * @param {Roo.menu.BaseItem} this
37937          */
37938         activate : true,
37939         /**
37940          * @event deactivate
37941          * Fires when this item is deactivated
37942          * @param {Roo.menu.BaseItem} this
37943          */
37944         deactivate : true
37945     });
37946
37947     if(this.handler){
37948         this.on("click", this.handler, this.scope, true);
37949     }
37950 };
37951
37952 Roo.extend(Roo.menu.BaseItem, Roo.Component, {
37953     /**
37954      * @cfg {Function} handler
37955      * A function that will handle the click event of this menu item (defaults to undefined)
37956      */
37957     /**
37958      * @cfg {Boolean} canActivate True if this item can be visually activated (defaults to false)
37959      */
37960     canActivate : false,
37961     
37962      /**
37963      * @cfg {Boolean} hidden True to prevent creation of this menu item (defaults to false)
37964      */
37965     hidden: false,
37966     
37967     /**
37968      * @cfg {String} activeClass The CSS class to use when the item becomes activated (defaults to "x-menu-item-active")
37969      */
37970     activeClass : "x-menu-item-active",
37971     /**
37972      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to true)
37973      */
37974     hideOnClick : true,
37975     /**
37976      * @cfg {Number} hideDelay Length of time in milliseconds to wait before hiding after a click (defaults to 100)
37977      */
37978     hideDelay : 100,
37979
37980     // private
37981     ctype: "Roo.menu.BaseItem",
37982
37983     // private
37984     actionMode : "container",
37985
37986     // private
37987     render : function(container, parentMenu){
37988         this.parentMenu = parentMenu;
37989         Roo.menu.BaseItem.superclass.render.call(this, container);
37990         this.container.menuItemId = this.id;
37991     },
37992
37993     // private
37994     onRender : function(container, position){
37995         this.el = Roo.get(this.el);
37996         container.dom.appendChild(this.el.dom);
37997     },
37998
37999     // private
38000     onClick : function(e){
38001         if(!this.disabled && this.fireEvent("click", this, e) !== false
38002                 && this.parentMenu.fireEvent("itemclick", this, e) !== false){
38003             this.handleClick(e);
38004         }else{
38005             e.stopEvent();
38006         }
38007     },
38008
38009     // private
38010     activate : function(){
38011         if(this.disabled){
38012             return false;
38013         }
38014         var li = this.container;
38015         li.addClass(this.activeClass);
38016         this.region = li.getRegion().adjust(2, 2, -2, -2);
38017         this.fireEvent("activate", this);
38018         return true;
38019     },
38020
38021     // private
38022     deactivate : function(){
38023         this.container.removeClass(this.activeClass);
38024         this.fireEvent("deactivate", this);
38025     },
38026
38027     // private
38028     shouldDeactivate : function(e){
38029         return !this.region || !this.region.contains(e.getPoint());
38030     },
38031
38032     // private
38033     handleClick : function(e){
38034         if(this.hideOnClick){
38035             this.parentMenu.hide.defer(this.hideDelay, this.parentMenu, [true]);
38036         }
38037     },
38038
38039     // private
38040     expandMenu : function(autoActivate){
38041         // do nothing
38042     },
38043
38044     // private
38045     hideMenu : function(){
38046         // do nothing
38047     }
38048 });/*
38049  * Based on:
38050  * Ext JS Library 1.1.1
38051  * Copyright(c) 2006-2007, Ext JS, LLC.
38052  *
38053  * Originally Released Under LGPL - original licence link has changed is not relivant.
38054  *
38055  * Fork - LGPL
38056  * <script type="text/javascript">
38057  */
38058  
38059 /**
38060  * @class Roo.menu.Adapter
38061  * @extends Roo.menu.BaseItem
38062  * 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.
38063  * It provides basic rendering, activation management and enable/disable logic required to work in menus.
38064  * @constructor
38065  * Creates a new Adapter
38066  * @param {Object} config Configuration options
38067  */
38068 Roo.menu.Adapter = function(component, config){
38069     Roo.menu.Adapter.superclass.constructor.call(this, config);
38070     this.component = component;
38071 };
38072 Roo.extend(Roo.menu.Adapter, Roo.menu.BaseItem, {
38073     // private
38074     canActivate : true,
38075
38076     // private
38077     onRender : function(container, position){
38078         this.component.render(container);
38079         this.el = this.component.getEl();
38080     },
38081
38082     // private
38083     activate : function(){
38084         if(this.disabled){
38085             return false;
38086         }
38087         this.component.focus();
38088         this.fireEvent("activate", this);
38089         return true;
38090     },
38091
38092     // private
38093     deactivate : function(){
38094         this.fireEvent("deactivate", this);
38095     },
38096
38097     // private
38098     disable : function(){
38099         this.component.disable();
38100         Roo.menu.Adapter.superclass.disable.call(this);
38101     },
38102
38103     // private
38104     enable : function(){
38105         this.component.enable();
38106         Roo.menu.Adapter.superclass.enable.call(this);
38107     }
38108 });/*
38109  * Based on:
38110  * Ext JS Library 1.1.1
38111  * Copyright(c) 2006-2007, Ext JS, LLC.
38112  *
38113  * Originally Released Under LGPL - original licence link has changed is not relivant.
38114  *
38115  * Fork - LGPL
38116  * <script type="text/javascript">
38117  */
38118
38119 /**
38120  * @class Roo.menu.TextItem
38121  * @extends Roo.menu.BaseItem
38122  * Adds a static text string to a menu, usually used as either a heading or group separator.
38123  * Note: old style constructor with text is still supported.
38124  * 
38125  * @constructor
38126  * Creates a new TextItem
38127  * @param {Object} cfg Configuration
38128  */
38129 Roo.menu.TextItem = function(cfg){
38130     if (typeof(cfg) == 'string') {
38131         this.text = cfg;
38132     } else {
38133         Roo.apply(this,cfg);
38134     }
38135     
38136     Roo.menu.TextItem.superclass.constructor.call(this);
38137 };
38138
38139 Roo.extend(Roo.menu.TextItem, Roo.menu.BaseItem, {
38140     /**
38141      * @cfg {Boolean} text Text to show on item.
38142      */
38143     text : '',
38144     
38145     /**
38146      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to false)
38147      */
38148     hideOnClick : false,
38149     /**
38150      * @cfg {String} itemCls The default CSS class to use for text items (defaults to "x-menu-text")
38151      */
38152     itemCls : "x-menu-text",
38153
38154     // private
38155     onRender : function(){
38156         var s = document.createElement("span");
38157         s.className = this.itemCls;
38158         s.innerHTML = this.text;
38159         this.el = s;
38160         Roo.menu.TextItem.superclass.onRender.apply(this, arguments);
38161     }
38162 });/*
38163  * Based on:
38164  * Ext JS Library 1.1.1
38165  * Copyright(c) 2006-2007, Ext JS, LLC.
38166  *
38167  * Originally Released Under LGPL - original licence link has changed is not relivant.
38168  *
38169  * Fork - LGPL
38170  * <script type="text/javascript">
38171  */
38172
38173 /**
38174  * @class Roo.menu.Separator
38175  * @extends Roo.menu.BaseItem
38176  * Adds a separator bar to a menu, used to divide logical groups of menu items. Generally you will
38177  * add one of these by using "-" in you call to add() or in your items config rather than creating one directly.
38178  * @constructor
38179  * @param {Object} config Configuration options
38180  */
38181 Roo.menu.Separator = function(config){
38182     Roo.menu.Separator.superclass.constructor.call(this, config);
38183 };
38184
38185 Roo.extend(Roo.menu.Separator, Roo.menu.BaseItem, {
38186     /**
38187      * @cfg {String} itemCls The default CSS class to use for separators (defaults to "x-menu-sep")
38188      */
38189     itemCls : "x-menu-sep",
38190     /**
38191      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to false)
38192      */
38193     hideOnClick : false,
38194
38195     // private
38196     onRender : function(li){
38197         var s = document.createElement("span");
38198         s.className = this.itemCls;
38199         s.innerHTML = "&#160;";
38200         this.el = s;
38201         li.addClass("x-menu-sep-li");
38202         Roo.menu.Separator.superclass.onRender.apply(this, arguments);
38203     }
38204 });/*
38205  * Based on:
38206  * Ext JS Library 1.1.1
38207  * Copyright(c) 2006-2007, Ext JS, LLC.
38208  *
38209  * Originally Released Under LGPL - original licence link has changed is not relivant.
38210  *
38211  * Fork - LGPL
38212  * <script type="text/javascript">
38213  */
38214 /**
38215  * @class Roo.menu.Item
38216  * @extends Roo.menu.BaseItem
38217  * A base class for all menu items that require menu-related functionality (like sub-menus) and are not static
38218  * display items.  Item extends the base functionality of {@link Roo.menu.BaseItem} by adding menu-specific
38219  * activation and click handling.
38220  * @constructor
38221  * Creates a new Item
38222  * @param {Object} config Configuration options
38223  */
38224 Roo.menu.Item = function(config){
38225     Roo.menu.Item.superclass.constructor.call(this, config);
38226     if(this.menu){
38227         this.menu = Roo.menu.MenuMgr.get(this.menu);
38228     }
38229 };
38230 Roo.extend(Roo.menu.Item, Roo.menu.BaseItem, {
38231     
38232     /**
38233      * @cfg {String} text
38234      * The text to show on the menu item.
38235      */
38236     text: '',
38237      /**
38238      * @cfg {String} HTML to render in menu
38239      * The text to show on the menu item (HTML version).
38240      */
38241     html: '',
38242     /**
38243      * @cfg {String} icon
38244      * The path to an icon to display in this menu item (defaults to Roo.BLANK_IMAGE_URL)
38245      */
38246     icon: undefined,
38247     /**
38248      * @cfg {String} itemCls The default CSS class to use for menu items (defaults to "x-menu-item")
38249      */
38250     itemCls : "x-menu-item",
38251     /**
38252      * @cfg {Boolean} canActivate True if this item can be visually activated (defaults to true)
38253      */
38254     canActivate : true,
38255     /**
38256      * @cfg {Number} showDelay Length of time in milliseconds to wait before showing this item (defaults to 200)
38257      */
38258     showDelay: 200,
38259     // doc'd in BaseItem
38260     hideDelay: 200,
38261
38262     // private
38263     ctype: "Roo.menu.Item",
38264     
38265     // private
38266     onRender : function(container, position){
38267         var el = document.createElement("a");
38268         el.hideFocus = true;
38269         el.unselectable = "on";
38270         el.href = this.href || "#";
38271         if(this.hrefTarget){
38272             el.target = this.hrefTarget;
38273         }
38274         el.className = this.itemCls + (this.menu ?  " x-menu-item-arrow" : "") + (this.cls ?  " " + this.cls : "");
38275         
38276         var html = this.html.length ? this.html  : String.format('{0}',this.text);
38277         
38278         el.innerHTML = String.format(
38279                 '<img src="{0}" class="x-menu-item-icon {1}" />' + html,
38280                 this.icon || Roo.BLANK_IMAGE_URL, this.iconCls || '');
38281         this.el = el;
38282         Roo.menu.Item.superclass.onRender.call(this, container, position);
38283     },
38284
38285     /**
38286      * Sets the text to display in this menu item
38287      * @param {String} text The text to display
38288      * @param {Boolean} isHTML true to indicate text is pure html.
38289      */
38290     setText : function(text, isHTML){
38291         if (isHTML) {
38292             this.html = text;
38293         } else {
38294             this.text = text;
38295             this.html = '';
38296         }
38297         if(this.rendered){
38298             var html = this.html.length ? this.html  : String.format('{0}',this.text);
38299      
38300             this.el.update(String.format(
38301                 '<img src="{0}" class="x-menu-item-icon {2}">' + html,
38302                 this.icon || Roo.BLANK_IMAGE_URL, this.text, this.iconCls || ''));
38303             this.parentMenu.autoWidth();
38304         }
38305     },
38306
38307     // private
38308     handleClick : function(e){
38309         if(!this.href){ // if no link defined, stop the event automatically
38310             e.stopEvent();
38311         }
38312         Roo.menu.Item.superclass.handleClick.apply(this, arguments);
38313     },
38314
38315     // private
38316     activate : function(autoExpand){
38317         if(Roo.menu.Item.superclass.activate.apply(this, arguments)){
38318             this.focus();
38319             if(autoExpand){
38320                 this.expandMenu();
38321             }
38322         }
38323         return true;
38324     },
38325
38326     // private
38327     shouldDeactivate : function(e){
38328         if(Roo.menu.Item.superclass.shouldDeactivate.call(this, e)){
38329             if(this.menu && this.menu.isVisible()){
38330                 return !this.menu.getEl().getRegion().contains(e.getPoint());
38331             }
38332             return true;
38333         }
38334         return false;
38335     },
38336
38337     // private
38338     deactivate : function(){
38339         Roo.menu.Item.superclass.deactivate.apply(this, arguments);
38340         this.hideMenu();
38341     },
38342
38343     // private
38344     expandMenu : function(autoActivate){
38345         if(!this.disabled && this.menu){
38346             clearTimeout(this.hideTimer);
38347             delete this.hideTimer;
38348             if(!this.menu.isVisible() && !this.showTimer){
38349                 this.showTimer = this.deferExpand.defer(this.showDelay, this, [autoActivate]);
38350             }else if (this.menu.isVisible() && autoActivate){
38351                 this.menu.tryActivate(0, 1);
38352             }
38353         }
38354     },
38355
38356     // private
38357     deferExpand : function(autoActivate){
38358         delete this.showTimer;
38359         this.menu.show(this.container, this.parentMenu.subMenuAlign || "tl-tr?", this.parentMenu);
38360         if(autoActivate){
38361             this.menu.tryActivate(0, 1);
38362         }
38363     },
38364
38365     // private
38366     hideMenu : function(){
38367         clearTimeout(this.showTimer);
38368         delete this.showTimer;
38369         if(!this.hideTimer && this.menu && this.menu.isVisible()){
38370             this.hideTimer = this.deferHide.defer(this.hideDelay, this);
38371         }
38372     },
38373
38374     // private
38375     deferHide : function(){
38376         delete this.hideTimer;
38377         this.menu.hide();
38378     }
38379 });/*
38380  * Based on:
38381  * Ext JS Library 1.1.1
38382  * Copyright(c) 2006-2007, Ext JS, LLC.
38383  *
38384  * Originally Released Under LGPL - original licence link has changed is not relivant.
38385  *
38386  * Fork - LGPL
38387  * <script type="text/javascript">
38388  */
38389  
38390 /**
38391  * @class Roo.menu.CheckItem
38392  * @extends Roo.menu.Item
38393  * Adds a menu item that contains a checkbox by default, but can also be part of a radio group.
38394  * @constructor
38395  * Creates a new CheckItem
38396  * @param {Object} config Configuration options
38397  */
38398 Roo.menu.CheckItem = function(config){
38399     Roo.menu.CheckItem.superclass.constructor.call(this, config);
38400     this.addEvents({
38401         /**
38402          * @event beforecheckchange
38403          * Fires before the checked value is set, providing an opportunity to cancel if needed
38404          * @param {Roo.menu.CheckItem} this
38405          * @param {Boolean} checked The new checked value that will be set
38406          */
38407         "beforecheckchange" : true,
38408         /**
38409          * @event checkchange
38410          * Fires after the checked value has been set
38411          * @param {Roo.menu.CheckItem} this
38412          * @param {Boolean} checked The checked value that was set
38413          */
38414         "checkchange" : true
38415     });
38416     if(this.checkHandler){
38417         this.on('checkchange', this.checkHandler, this.scope);
38418     }
38419 };
38420 Roo.extend(Roo.menu.CheckItem, Roo.menu.Item, {
38421     /**
38422      * @cfg {String} group
38423      * All check items with the same group name will automatically be grouped into a single-select
38424      * radio button group (defaults to '')
38425      */
38426     /**
38427      * @cfg {String} itemCls The default CSS class to use for check items (defaults to "x-menu-item x-menu-check-item")
38428      */
38429     itemCls : "x-menu-item x-menu-check-item",
38430     /**
38431      * @cfg {String} groupClass The default CSS class to use for radio group check items (defaults to "x-menu-group-item")
38432      */
38433     groupClass : "x-menu-group-item",
38434
38435     /**
38436      * @cfg {Boolean} checked True to initialize this checkbox as checked (defaults to false).  Note that
38437      * if this checkbox is part of a radio group (group = true) only the last item in the group that is
38438      * initialized with checked = true will be rendered as checked.
38439      */
38440     checked: false,
38441
38442     // private
38443     ctype: "Roo.menu.CheckItem",
38444
38445     // private
38446     onRender : function(c){
38447         Roo.menu.CheckItem.superclass.onRender.apply(this, arguments);
38448         if(this.group){
38449             this.el.addClass(this.groupClass);
38450         }
38451         Roo.menu.MenuMgr.registerCheckable(this);
38452         if(this.checked){
38453             this.checked = false;
38454             this.setChecked(true, true);
38455         }
38456     },
38457
38458     // private
38459     destroy : function(){
38460         if(this.rendered){
38461             Roo.menu.MenuMgr.unregisterCheckable(this);
38462         }
38463         Roo.menu.CheckItem.superclass.destroy.apply(this, arguments);
38464     },
38465
38466     /**
38467      * Set the checked state of this item
38468      * @param {Boolean} checked The new checked value
38469      * @param {Boolean} suppressEvent (optional) True to prevent the checkchange event from firing (defaults to false)
38470      */
38471     setChecked : function(state, suppressEvent){
38472         if(this.checked != state && this.fireEvent("beforecheckchange", this, state) !== false){
38473             if(this.container){
38474                 this.container[state ? "addClass" : "removeClass"]("x-menu-item-checked");
38475             }
38476             this.checked = state;
38477             if(suppressEvent !== true){
38478                 this.fireEvent("checkchange", this, state);
38479             }
38480         }
38481     },
38482
38483     // private
38484     handleClick : function(e){
38485        if(!this.disabled && !(this.checked && this.group)){// disable unselect on radio item
38486            this.setChecked(!this.checked);
38487        }
38488        Roo.menu.CheckItem.superclass.handleClick.apply(this, arguments);
38489     }
38490 });/*
38491  * Based on:
38492  * Ext JS Library 1.1.1
38493  * Copyright(c) 2006-2007, Ext JS, LLC.
38494  *
38495  * Originally Released Under LGPL - original licence link has changed is not relivant.
38496  *
38497  * Fork - LGPL
38498  * <script type="text/javascript">
38499  */
38500  
38501 /**
38502  * @class Roo.menu.DateItem
38503  * @extends Roo.menu.Adapter
38504  * A menu item that wraps the {@link Roo.DatPicker} component.
38505  * @constructor
38506  * Creates a new DateItem
38507  * @param {Object} config Configuration options
38508  */
38509 Roo.menu.DateItem = function(config){
38510     Roo.menu.DateItem.superclass.constructor.call(this, new Roo.DatePicker(config), config);
38511     /** The Roo.DatePicker object @type Roo.DatePicker */
38512     this.picker = this.component;
38513     this.addEvents({select: true});
38514     
38515     this.picker.on("render", function(picker){
38516         picker.getEl().swallowEvent("click");
38517         picker.container.addClass("x-menu-date-item");
38518     });
38519
38520     this.picker.on("select", this.onSelect, this);
38521 };
38522
38523 Roo.extend(Roo.menu.DateItem, Roo.menu.Adapter, {
38524     // private
38525     onSelect : function(picker, date){
38526         this.fireEvent("select", this, date, picker);
38527         Roo.menu.DateItem.superclass.handleClick.call(this);
38528     }
38529 });/*
38530  * Based on:
38531  * Ext JS Library 1.1.1
38532  * Copyright(c) 2006-2007, Ext JS, LLC.
38533  *
38534  * Originally Released Under LGPL - original licence link has changed is not relivant.
38535  *
38536  * Fork - LGPL
38537  * <script type="text/javascript">
38538  */
38539  
38540 /**
38541  * @class Roo.menu.ColorItem
38542  * @extends Roo.menu.Adapter
38543  * A menu item that wraps the {@link Roo.ColorPalette} component.
38544  * @constructor
38545  * Creates a new ColorItem
38546  * @param {Object} config Configuration options
38547  */
38548 Roo.menu.ColorItem = function(config){
38549     Roo.menu.ColorItem.superclass.constructor.call(this, new Roo.ColorPalette(config), config);
38550     /** The Roo.ColorPalette object @type Roo.ColorPalette */
38551     this.palette = this.component;
38552     this.relayEvents(this.palette, ["select"]);
38553     if(this.selectHandler){
38554         this.on('select', this.selectHandler, this.scope);
38555     }
38556 };
38557 Roo.extend(Roo.menu.ColorItem, Roo.menu.Adapter);/*
38558  * Based on:
38559  * Ext JS Library 1.1.1
38560  * Copyright(c) 2006-2007, Ext JS, LLC.
38561  *
38562  * Originally Released Under LGPL - original licence link has changed is not relivant.
38563  *
38564  * Fork - LGPL
38565  * <script type="text/javascript">
38566  */
38567  
38568
38569 /**
38570  * @class Roo.menu.DateMenu
38571  * @extends Roo.menu.Menu
38572  * A menu containing a {@link Roo.menu.DateItem} component (which provides a date picker).
38573  * @constructor
38574  * Creates a new DateMenu
38575  * @param {Object} config Configuration options
38576  */
38577 Roo.menu.DateMenu = function(config){
38578     Roo.menu.DateMenu.superclass.constructor.call(this, config);
38579     this.plain = true;
38580     var di = new Roo.menu.DateItem(config);
38581     this.add(di);
38582     /**
38583      * The {@link Roo.DatePicker} instance for this DateMenu
38584      * @type DatePicker
38585      */
38586     this.picker = di.picker;
38587     /**
38588      * @event select
38589      * @param {DatePicker} picker
38590      * @param {Date} date
38591      */
38592     this.relayEvents(di, ["select"]);
38593     this.on('beforeshow', function(){
38594         if(this.picker){
38595             this.picker.hideMonthPicker(false);
38596         }
38597     }, this);
38598 };
38599 Roo.extend(Roo.menu.DateMenu, Roo.menu.Menu, {
38600     cls:'x-date-menu'
38601 });/*
38602  * Based on:
38603  * Ext JS Library 1.1.1
38604  * Copyright(c) 2006-2007, Ext JS, LLC.
38605  *
38606  * Originally Released Under LGPL - original licence link has changed is not relivant.
38607  *
38608  * Fork - LGPL
38609  * <script type="text/javascript">
38610  */
38611  
38612
38613 /**
38614  * @class Roo.menu.ColorMenu
38615  * @extends Roo.menu.Menu
38616  * A menu containing a {@link Roo.menu.ColorItem} component (which provides a basic color picker).
38617  * @constructor
38618  * Creates a new ColorMenu
38619  * @param {Object} config Configuration options
38620  */
38621 Roo.menu.ColorMenu = function(config){
38622     Roo.menu.ColorMenu.superclass.constructor.call(this, config);
38623     this.plain = true;
38624     var ci = new Roo.menu.ColorItem(config);
38625     this.add(ci);
38626     /**
38627      * The {@link Roo.ColorPalette} instance for this ColorMenu
38628      * @type ColorPalette
38629      */
38630     this.palette = ci.palette;
38631     /**
38632      * @event select
38633      * @param {ColorPalette} palette
38634      * @param {String} color
38635      */
38636     this.relayEvents(ci, ["select"]);
38637 };
38638 Roo.extend(Roo.menu.ColorMenu, Roo.menu.Menu);/*
38639  * Based on:
38640  * Ext JS Library 1.1.1
38641  * Copyright(c) 2006-2007, Ext JS, LLC.
38642  *
38643  * Originally Released Under LGPL - original licence link has changed is not relivant.
38644  *
38645  * Fork - LGPL
38646  * <script type="text/javascript">
38647  */
38648  
38649 /**
38650  * @class Roo.form.Field
38651  * @extends Roo.BoxComponent
38652  * Base class for form fields that provides default event handling, sizing, value handling and other functionality.
38653  * @constructor
38654  * Creates a new Field
38655  * @param {Object} config Configuration options
38656  */
38657 Roo.form.Field = function(config){
38658     Roo.form.Field.superclass.constructor.call(this, config);
38659 };
38660
38661 Roo.extend(Roo.form.Field, Roo.BoxComponent,  {
38662     /**
38663      * @cfg {String} fieldLabel Label to use when rendering a form.
38664      */
38665        /**
38666      * @cfg {String} qtip Mouse over tip
38667      */
38668      
38669     /**
38670      * @cfg {String} invalidClass The CSS class to use when marking a field invalid (defaults to "x-form-invalid")
38671      */
38672     invalidClass : "x-form-invalid",
38673     /**
38674      * @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")
38675      */
38676     invalidText : "The value in this field is invalid",
38677     /**
38678      * @cfg {String} focusClass The CSS class to use when the field receives focus (defaults to "x-form-focus")
38679      */
38680     focusClass : "x-form-focus",
38681     /**
38682      * @cfg {String/Boolean} validationEvent The event that should initiate field validation. Set to false to disable
38683       automatic validation (defaults to "keyup").
38684      */
38685     validationEvent : "keyup",
38686     /**
38687      * @cfg {Boolean} validateOnBlur Whether the field should validate when it loses focus (defaults to true).
38688      */
38689     validateOnBlur : true,
38690     /**
38691      * @cfg {Number} validationDelay The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)
38692      */
38693     validationDelay : 250,
38694     /**
38695      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
38696      * {tag: "input", type: "text", size: "20", autocomplete: "off"})
38697      */
38698     defaultAutoCreate : {tag: "input", type: "text", size: "20", autocomplete: "new-password"},
38699     /**
38700      * @cfg {String} fieldClass The default CSS class for the field (defaults to "x-form-field")
38701      */
38702     fieldClass : "x-form-field",
38703     /**
38704      * @cfg {String} msgTarget The location where error text should display.  Should be one of the following values (defaults to 'qtip'):
38705      *<pre>
38706 Value         Description
38707 -----------   ----------------------------------------------------------------------
38708 qtip          Display a quick tip when the user hovers over the field
38709 title         Display a default browser title attribute popup
38710 under         Add a block div beneath the field containing the error text
38711 side          Add an error icon to the right of the field with a popup on hover
38712 [element id]  Add the error text directly to the innerHTML of the specified element
38713 </pre>
38714      */
38715     msgTarget : 'qtip',
38716     /**
38717      * @cfg {String} msgFx <b>Experimental</b> The effect used when displaying a validation message under the field (defaults to 'normal').
38718      */
38719     msgFx : 'normal',
38720
38721     /**
38722      * @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.
38723      */
38724     readOnly : false,
38725
38726     /**
38727      * @cfg {Boolean} disabled True to disable the field (defaults to false).
38728      */
38729     disabled : false,
38730
38731     /**
38732      * @cfg {String} inputType The type attribute for input fields -- e.g. radio, text, password (defaults to "text").
38733      */
38734     inputType : undefined,
38735     
38736     /**
38737      * @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).
38738          */
38739         tabIndex : undefined,
38740         
38741     // private
38742     isFormField : true,
38743
38744     // private
38745     hasFocus : false,
38746     /**
38747      * @property {Roo.Element} fieldEl
38748      * Element Containing the rendered Field (with label etc.)
38749      */
38750     /**
38751      * @cfg {Mixed} value A value to initialize this field with.
38752      */
38753     value : undefined,
38754
38755     /**
38756      * @cfg {String} name The field's HTML name attribute.
38757      */
38758     /**
38759      * @cfg {String} cls A CSS class to apply to the field's underlying element.
38760      */
38761     // private
38762     loadedValue : false,
38763      
38764      
38765         // private ??
38766         initComponent : function(){
38767         Roo.form.Field.superclass.initComponent.call(this);
38768         this.addEvents({
38769             /**
38770              * @event focus
38771              * Fires when this field receives input focus.
38772              * @param {Roo.form.Field} this
38773              */
38774             focus : true,
38775             /**
38776              * @event blur
38777              * Fires when this field loses input focus.
38778              * @param {Roo.form.Field} this
38779              */
38780             blur : true,
38781             /**
38782              * @event specialkey
38783              * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
38784              * {@link Roo.EventObject#getKey} to determine which key was pressed.
38785              * @param {Roo.form.Field} this
38786              * @param {Roo.EventObject} e The event object
38787              */
38788             specialkey : true,
38789             /**
38790              * @event change
38791              * Fires just before the field blurs if the field value has changed.
38792              * @param {Roo.form.Field} this
38793              * @param {Mixed} newValue The new value
38794              * @param {Mixed} oldValue The original value
38795              */
38796             change : true,
38797             /**
38798              * @event invalid
38799              * Fires after the field has been marked as invalid.
38800              * @param {Roo.form.Field} this
38801              * @param {String} msg The validation message
38802              */
38803             invalid : true,
38804             /**
38805              * @event valid
38806              * Fires after the field has been validated with no errors.
38807              * @param {Roo.form.Field} this
38808              */
38809             valid : true,
38810              /**
38811              * @event keyup
38812              * Fires after the key up
38813              * @param {Roo.form.Field} this
38814              * @param {Roo.EventObject}  e The event Object
38815              */
38816             keyup : true
38817         });
38818     },
38819
38820     /**
38821      * Returns the name attribute of the field if available
38822      * @return {String} name The field name
38823      */
38824     getName: function(){
38825          return this.rendered && this.el.dom.name ? this.el.dom.name : (this.hiddenName || '');
38826     },
38827
38828     // private
38829     onRender : function(ct, position){
38830         Roo.form.Field.superclass.onRender.call(this, ct, position);
38831         if(!this.el){
38832             var cfg = this.getAutoCreate();
38833             if(!cfg.name){
38834                 cfg.name = typeof(this.name) == 'undefined' ? this.id : this.name;
38835             }
38836             if (!cfg.name.length) {
38837                 delete cfg.name;
38838             }
38839             if(this.inputType){
38840                 cfg.type = this.inputType;
38841             }
38842             this.el = ct.createChild(cfg, position);
38843         }
38844         var type = this.el.dom.type;
38845         if(type){
38846             if(type == 'password'){
38847                 type = 'text';
38848             }
38849             this.el.addClass('x-form-'+type);
38850         }
38851         if(this.readOnly){
38852             this.el.dom.readOnly = true;
38853         }
38854         if(this.tabIndex !== undefined){
38855             this.el.dom.setAttribute('tabIndex', this.tabIndex);
38856         }
38857
38858         this.el.addClass([this.fieldClass, this.cls]);
38859         this.initValue();
38860     },
38861
38862     /**
38863      * Apply the behaviors of this component to an existing element. <b>This is used instead of render().</b>
38864      * @param {String/HTMLElement/Element} el The id of the node, a DOM node or an existing Element
38865      * @return {Roo.form.Field} this
38866      */
38867     applyTo : function(target){
38868         this.allowDomMove = false;
38869         this.el = Roo.get(target);
38870         this.render(this.el.dom.parentNode);
38871         return this;
38872     },
38873
38874     // private
38875     initValue : function(){
38876         if(this.value !== undefined){
38877             this.setValue(this.value);
38878         }else if(this.el.dom.value.length > 0){
38879             this.setValue(this.el.dom.value);
38880         }
38881     },
38882
38883     /**
38884      * Returns true if this field has been changed since it was originally loaded and is not disabled.
38885      * DEPRICATED  - it never worked well - use hasChanged/resetHasChanged.
38886      */
38887     isDirty : function() {
38888         if(this.disabled) {
38889             return false;
38890         }
38891         return String(this.getValue()) !== String(this.originalValue);
38892     },
38893
38894     /**
38895      * stores the current value in loadedValue
38896      */
38897     resetHasChanged : function()
38898     {
38899         this.loadedValue = String(this.getValue());
38900     },
38901     /**
38902      * checks the current value against the 'loaded' value.
38903      * Note - will return false if 'resetHasChanged' has not been called first.
38904      */
38905     hasChanged : function()
38906     {
38907         if(this.disabled || this.readOnly) {
38908             return false;
38909         }
38910         return this.loadedValue !== false && String(this.getValue()) !== this.loadedValue;
38911     },
38912     
38913     
38914     
38915     // private
38916     afterRender : function(){
38917         Roo.form.Field.superclass.afterRender.call(this);
38918         this.initEvents();
38919     },
38920
38921     // private
38922     fireKey : function(e){
38923         //Roo.log('field ' + e.getKey());
38924         if(e.isNavKeyPress()){
38925             this.fireEvent("specialkey", this, e);
38926         }
38927     },
38928
38929     /**
38930      * Resets the current field value to the originally loaded value and clears any validation messages
38931      */
38932     reset : function(){
38933         this.setValue(this.resetValue);
38934         this.originalValue = this.getValue();
38935         this.clearInvalid();
38936     },
38937
38938     // private
38939     initEvents : function(){
38940         // safari killled keypress - so keydown is now used..
38941         this.el.on("keydown" , this.fireKey,  this);
38942         this.el.on("focus", this.onFocus,  this);
38943         this.el.on("blur", this.onBlur,  this);
38944         this.el.relayEvent('keyup', this);
38945
38946         // reference to original value for reset
38947         this.originalValue = this.getValue();
38948         this.resetValue =  this.getValue();
38949     },
38950
38951     // private
38952     onFocus : function(){
38953         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
38954             this.el.addClass(this.focusClass);
38955         }
38956         if(!this.hasFocus){
38957             this.hasFocus = true;
38958             this.startValue = this.getValue();
38959             this.fireEvent("focus", this);
38960         }
38961     },
38962
38963     beforeBlur : Roo.emptyFn,
38964
38965     // private
38966     onBlur : function(){
38967         this.beforeBlur();
38968         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
38969             this.el.removeClass(this.focusClass);
38970         }
38971         this.hasFocus = false;
38972         if(this.validationEvent !== false && this.validateOnBlur && this.validationEvent != "blur"){
38973             this.validate();
38974         }
38975         var v = this.getValue();
38976         if(String(v) !== String(this.startValue)){
38977             this.fireEvent('change', this, v, this.startValue);
38978         }
38979         this.fireEvent("blur", this);
38980     },
38981
38982     /**
38983      * Returns whether or not the field value is currently valid
38984      * @param {Boolean} preventMark True to disable marking the field invalid
38985      * @return {Boolean} True if the value is valid, else false
38986      */
38987     isValid : function(preventMark){
38988         if(this.disabled){
38989             return true;
38990         }
38991         var restore = this.preventMark;
38992         this.preventMark = preventMark === true;
38993         var v = this.validateValue(this.processValue(this.getRawValue()));
38994         this.preventMark = restore;
38995         return v;
38996     },
38997
38998     /**
38999      * Validates the field value
39000      * @return {Boolean} True if the value is valid, else false
39001      */
39002     validate : function(){
39003         if(this.disabled || this.validateValue(this.processValue(this.getRawValue()))){
39004             this.clearInvalid();
39005             return true;
39006         }
39007         return false;
39008     },
39009
39010     processValue : function(value){
39011         return value;
39012     },
39013
39014     // private
39015     // Subclasses should provide the validation implementation by overriding this
39016     validateValue : function(value){
39017         return true;
39018     },
39019
39020     /**
39021      * Mark this field as invalid
39022      * @param {String} msg The validation message
39023      */
39024     markInvalid : function(msg){
39025         if(!this.rendered || this.preventMark){ // not rendered
39026             return;
39027         }
39028         
39029         var obj = (typeof(this.combo) != 'undefined') ? this.combo : this; // fix the combox array!!
39030         
39031         obj.el.addClass(this.invalidClass);
39032         msg = msg || this.invalidText;
39033         switch(this.msgTarget){
39034             case 'qtip':
39035                 obj.el.dom.qtip = msg;
39036                 obj.el.dom.qclass = 'x-form-invalid-tip';
39037                 if(Roo.QuickTips){ // fix for floating editors interacting with DND
39038                     Roo.QuickTips.enable();
39039                 }
39040                 break;
39041             case 'title':
39042                 this.el.dom.title = msg;
39043                 break;
39044             case 'under':
39045                 if(!this.errorEl){
39046                     var elp = this.el.findParent('.x-form-element', 5, true);
39047                     this.errorEl = elp.createChild({cls:'x-form-invalid-msg'});
39048                     this.errorEl.setWidth(elp.getWidth(true)-20);
39049                 }
39050                 this.errorEl.update(msg);
39051                 Roo.form.Field.msgFx[this.msgFx].show(this.errorEl, this);
39052                 break;
39053             case 'side':
39054                 if(!this.errorIcon){
39055                     var elp = this.el.findParent('.x-form-element', 5, true);
39056                     this.errorIcon = elp.createChild({cls:'x-form-invalid-icon'});
39057                 }
39058                 this.alignErrorIcon();
39059                 this.errorIcon.dom.qtip = msg;
39060                 this.errorIcon.dom.qclass = 'x-form-invalid-tip';
39061                 this.errorIcon.show();
39062                 this.on('resize', this.alignErrorIcon, this);
39063                 break;
39064             default:
39065                 var t = Roo.getDom(this.msgTarget);
39066                 t.innerHTML = msg;
39067                 t.style.display = this.msgDisplay;
39068                 break;
39069         }
39070         this.fireEvent('invalid', this, msg);
39071     },
39072
39073     // private
39074     alignErrorIcon : function(){
39075         this.errorIcon.alignTo(this.el, 'tl-tr', [2, 0]);
39076     },
39077
39078     /**
39079      * Clear any invalid styles/messages for this field
39080      */
39081     clearInvalid : function(){
39082         if(!this.rendered || this.preventMark){ // not rendered
39083             return;
39084         }
39085         var obj = (typeof(this.combo) != 'undefined') ? this.combo : this; // fix the combox array!!
39086         
39087         obj.el.removeClass(this.invalidClass);
39088         switch(this.msgTarget){
39089             case 'qtip':
39090                 obj.el.dom.qtip = '';
39091                 break;
39092             case 'title':
39093                 this.el.dom.title = '';
39094                 break;
39095             case 'under':
39096                 if(this.errorEl){
39097                     Roo.form.Field.msgFx[this.msgFx].hide(this.errorEl, this);
39098                 }
39099                 break;
39100             case 'side':
39101                 if(this.errorIcon){
39102                     this.errorIcon.dom.qtip = '';
39103                     this.errorIcon.hide();
39104                     this.un('resize', this.alignErrorIcon, this);
39105                 }
39106                 break;
39107             default:
39108                 var t = Roo.getDom(this.msgTarget);
39109                 t.innerHTML = '';
39110                 t.style.display = 'none';
39111                 break;
39112         }
39113         this.fireEvent('valid', this);
39114     },
39115
39116     /**
39117      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
39118      * @return {Mixed} value The field value
39119      */
39120     getRawValue : function(){
39121         var v = this.el.getValue();
39122         
39123         return v;
39124     },
39125
39126     /**
39127      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
39128      * @return {Mixed} value The field value
39129      */
39130     getValue : function(){
39131         var v = this.el.getValue();
39132          
39133         return v;
39134     },
39135
39136     /**
39137      * Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}.
39138      * @param {Mixed} value The value to set
39139      */
39140     setRawValue : function(v){
39141         return this.el.dom.value = (v === null || v === undefined ? '' : v);
39142     },
39143
39144     /**
39145      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
39146      * @param {Mixed} value The value to set
39147      */
39148     setValue : function(v){
39149         this.value = v;
39150         if(this.rendered){
39151             this.el.dom.value = (v === null || v === undefined ? '' : v);
39152              this.validate();
39153         }
39154     },
39155
39156     adjustSize : function(w, h){
39157         var s = Roo.form.Field.superclass.adjustSize.call(this, w, h);
39158         s.width = this.adjustWidth(this.el.dom.tagName, s.width);
39159         return s;
39160     },
39161
39162     adjustWidth : function(tag, w){
39163         tag = tag.toLowerCase();
39164         if(typeof w == 'number' && Roo.isStrict && !Roo.isSafari){
39165             if(Roo.isIE && (tag == 'input' || tag == 'textarea')){
39166                 if(tag == 'input'){
39167                     return w + 2;
39168                 }
39169                 if(tag == 'textarea'){
39170                     return w-2;
39171                 }
39172             }else if(Roo.isOpera){
39173                 if(tag == 'input'){
39174                     return w + 2;
39175                 }
39176                 if(tag == 'textarea'){
39177                     return w-2;
39178                 }
39179             }
39180         }
39181         return w;
39182     }
39183 });
39184
39185
39186 // anything other than normal should be considered experimental
39187 Roo.form.Field.msgFx = {
39188     normal : {
39189         show: function(msgEl, f){
39190             msgEl.setDisplayed('block');
39191         },
39192
39193         hide : function(msgEl, f){
39194             msgEl.setDisplayed(false).update('');
39195         }
39196     },
39197
39198     slide : {
39199         show: function(msgEl, f){
39200             msgEl.slideIn('t', {stopFx:true});
39201         },
39202
39203         hide : function(msgEl, f){
39204             msgEl.slideOut('t', {stopFx:true,useDisplay:true});
39205         }
39206     },
39207
39208     slideRight : {
39209         show: function(msgEl, f){
39210             msgEl.fixDisplay();
39211             msgEl.alignTo(f.el, 'tl-tr');
39212             msgEl.slideIn('l', {stopFx:true});
39213         },
39214
39215         hide : function(msgEl, f){
39216             msgEl.slideOut('l', {stopFx:true,useDisplay:true});
39217         }
39218     }
39219 };/*
39220  * Based on:
39221  * Ext JS Library 1.1.1
39222  * Copyright(c) 2006-2007, Ext JS, LLC.
39223  *
39224  * Originally Released Under LGPL - original licence link has changed is not relivant.
39225  *
39226  * Fork - LGPL
39227  * <script type="text/javascript">
39228  */
39229  
39230
39231 /**
39232  * @class Roo.form.TextField
39233  * @extends Roo.form.Field
39234  * Basic text field.  Can be used as a direct replacement for traditional text inputs, or as the base
39235  * class for more sophisticated input controls (like {@link Roo.form.TextArea} and {@link Roo.form.ComboBox}).
39236  * @constructor
39237  * Creates a new TextField
39238  * @param {Object} config Configuration options
39239  */
39240 Roo.form.TextField = function(config){
39241     Roo.form.TextField.superclass.constructor.call(this, config);
39242     this.addEvents({
39243         /**
39244          * @event autosize
39245          * Fires when the autosize function is triggered.  The field may or may not have actually changed size
39246          * according to the default logic, but this event provides a hook for the developer to apply additional
39247          * logic at runtime to resize the field if needed.
39248              * @param {Roo.form.Field} this This text field
39249              * @param {Number} width The new field width
39250              */
39251         autosize : true
39252     });
39253 };
39254
39255 Roo.extend(Roo.form.TextField, Roo.form.Field,  {
39256     /**
39257      * @cfg {Boolean} grow True if this field should automatically grow and shrink to its content
39258      */
39259     grow : false,
39260     /**
39261      * @cfg {Number} growMin The minimum width to allow when grow = true (defaults to 30)
39262      */
39263     growMin : 30,
39264     /**
39265      * @cfg {Number} growMax The maximum width to allow when grow = true (defaults to 800)
39266      */
39267     growMax : 800,
39268     /**
39269      * @cfg {String} vtype A validation type name as defined in {@link Roo.form.VTypes} (defaults to null)
39270      */
39271     vtype : null,
39272     /**
39273      * @cfg {String} maskRe An input mask regular expression that will be used to filter keystrokes that don't match (defaults to null)
39274      */
39275     maskRe : null,
39276     /**
39277      * @cfg {Boolean} disableKeyFilter True to disable input keystroke filtering (defaults to false)
39278      */
39279     disableKeyFilter : false,
39280     /**
39281      * @cfg {Boolean} allowBlank False to validate that the value length > 0 (defaults to true)
39282      */
39283     allowBlank : true,
39284     /**
39285      * @cfg {Number} minLength Minimum input field length required (defaults to 0)
39286      */
39287     minLength : 0,
39288     /**
39289      * @cfg {Number} maxLength Maximum input field length allowed (defaults to Number.MAX_VALUE)
39290      */
39291     maxLength : Number.MAX_VALUE,
39292     /**
39293      * @cfg {String} minLengthText Error text to display if the minimum length validation fails (defaults to "The minimum length for this field is {minLength}")
39294      */
39295     minLengthText : "The minimum length for this field is {0}",
39296     /**
39297      * @cfg {String} maxLengthText Error text to display if the maximum length validation fails (defaults to "The maximum length for this field is {maxLength}")
39298      */
39299     maxLengthText : "The maximum length for this field is {0}",
39300     /**
39301      * @cfg {Boolean} selectOnFocus True to automatically select any existing field text when the field receives input focus (defaults to false)
39302      */
39303     selectOnFocus : false,
39304     /**
39305      * @cfg {String} blankText Error text to display if the allow blank validation fails (defaults to "This field is required")
39306      */
39307     blankText : "This field is required",
39308     /**
39309      * @cfg {Function} validator A custom validation function to be called during field validation (defaults to null).
39310      * If available, this function will be called only after the basic validators all return true, and will be passed the
39311      * current field value and expected to return boolean true if the value is valid or a string error message if invalid.
39312      */
39313     validator : null,
39314     /**
39315      * @cfg {RegExp} regex A JavaScript RegExp object to be tested against the field value during validation (defaults to null).
39316      * If available, this regex will be evaluated only after the basic validators all return true, and will be passed the
39317      * current field value.  If the test fails, the field will be marked invalid using {@link #regexText}.
39318      */
39319     regex : null,
39320     /**
39321      * @cfg {String} regexText The error text to display if {@link #regex} is used and the test fails during validation (defaults to "")
39322      */
39323     regexText : "",
39324     /**
39325      * @cfg {String} emptyText The default text to display in an empty field - placeholder... (defaults to null).
39326      */
39327     emptyText : null,
39328    
39329
39330     // private
39331     initEvents : function()
39332     {
39333         if (this.emptyText) {
39334             this.el.attr('placeholder', this.emptyText);
39335         }
39336         
39337         Roo.form.TextField.superclass.initEvents.call(this);
39338         if(this.validationEvent == 'keyup'){
39339             this.validationTask = new Roo.util.DelayedTask(this.validate, this);
39340             this.el.on('keyup', this.filterValidation, this);
39341         }
39342         else if(this.validationEvent !== false){
39343             this.el.on(this.validationEvent, this.validate, this, {buffer: this.validationDelay});
39344         }
39345         
39346         if(this.selectOnFocus){
39347             this.on("focus", this.preFocus, this);
39348             
39349         }
39350         if(this.maskRe || (this.vtype && this.disableKeyFilter !== true && (this.maskRe = Roo.form.VTypes[this.vtype+'Mask']))){
39351             this.el.on("keypress", this.filterKeys, this);
39352         }
39353         if(this.grow){
39354             this.el.on("keyup", this.onKeyUp,  this, {buffer:50});
39355             this.el.on("click", this.autoSize,  this);
39356         }
39357         if(this.el.is('input[type=password]') && Roo.isSafari){
39358             this.el.on('keydown', this.SafariOnKeyDown, this);
39359         }
39360     },
39361
39362     processValue : function(value){
39363         if(this.stripCharsRe){
39364             var newValue = value.replace(this.stripCharsRe, '');
39365             if(newValue !== value){
39366                 this.setRawValue(newValue);
39367                 return newValue;
39368             }
39369         }
39370         return value;
39371     },
39372
39373     filterValidation : function(e){
39374         if(!e.isNavKeyPress()){
39375             this.validationTask.delay(this.validationDelay);
39376         }
39377     },
39378
39379     // private
39380     onKeyUp : function(e){
39381         if(!e.isNavKeyPress()){
39382             this.autoSize();
39383         }
39384     },
39385
39386     /**
39387      * Resets the current field value to the originally-loaded value and clears any validation messages.
39388      *  
39389      */
39390     reset : function(){
39391         Roo.form.TextField.superclass.reset.call(this);
39392        
39393     },
39394
39395     
39396     // private
39397     preFocus : function(){
39398         
39399         if(this.selectOnFocus){
39400             this.el.dom.select();
39401         }
39402     },
39403
39404     
39405     // private
39406     filterKeys : function(e){
39407         var k = e.getKey();
39408         if(!Roo.isIE && (e.isNavKeyPress() || k == e.BACKSPACE || (k == e.DELETE && e.button == -1))){
39409             return;
39410         }
39411         var c = e.getCharCode(), cc = String.fromCharCode(c);
39412         if(Roo.isIE && (e.isSpecialKey() || !cc)){
39413             return;
39414         }
39415         if(!this.maskRe.test(cc)){
39416             e.stopEvent();
39417         }
39418     },
39419
39420     setValue : function(v){
39421         
39422         Roo.form.TextField.superclass.setValue.apply(this, arguments);
39423         
39424         this.autoSize();
39425     },
39426
39427     /**
39428      * Validates a value according to the field's validation rules and marks the field as invalid
39429      * if the validation fails
39430      * @param {Mixed} value The value to validate
39431      * @return {Boolean} True if the value is valid, else false
39432      */
39433     validateValue : function(value){
39434         if(value.length < 1)  { // if it's blank
39435              if(this.allowBlank){
39436                 this.clearInvalid();
39437                 return true;
39438              }else{
39439                 this.markInvalid(this.blankText);
39440                 return false;
39441              }
39442         }
39443         if(value.length < this.minLength){
39444             this.markInvalid(String.format(this.minLengthText, this.minLength));
39445             return false;
39446         }
39447         if(value.length > this.maxLength){
39448             this.markInvalid(String.format(this.maxLengthText, this.maxLength));
39449             return false;
39450         }
39451         if(this.vtype){
39452             var vt = Roo.form.VTypes;
39453             if(!vt[this.vtype](value, this)){
39454                 this.markInvalid(this.vtypeText || vt[this.vtype +'Text']);
39455                 return false;
39456             }
39457         }
39458         if(typeof this.validator == "function"){
39459             var msg = this.validator(value);
39460             if(msg !== true){
39461                 this.markInvalid(msg);
39462                 return false;
39463             }
39464         }
39465         if(this.regex && !this.regex.test(value)){
39466             this.markInvalid(this.regexText);
39467             return false;
39468         }
39469         return true;
39470     },
39471
39472     /**
39473      * Selects text in this field
39474      * @param {Number} start (optional) The index where the selection should start (defaults to 0)
39475      * @param {Number} end (optional) The index where the selection should end (defaults to the text length)
39476      */
39477     selectText : function(start, end){
39478         var v = this.getRawValue();
39479         if(v.length > 0){
39480             start = start === undefined ? 0 : start;
39481             end = end === undefined ? v.length : end;
39482             var d = this.el.dom;
39483             if(d.setSelectionRange){
39484                 d.setSelectionRange(start, end);
39485             }else if(d.createTextRange){
39486                 var range = d.createTextRange();
39487                 range.moveStart("character", start);
39488                 range.moveEnd("character", v.length-end);
39489                 range.select();
39490             }
39491         }
39492     },
39493
39494     /**
39495      * Automatically grows the field to accomodate the width of the text up to the maximum field width allowed.
39496      * This only takes effect if grow = true, and fires the autosize event.
39497      */
39498     autoSize : function(){
39499         if(!this.grow || !this.rendered){
39500             return;
39501         }
39502         if(!this.metrics){
39503             this.metrics = Roo.util.TextMetrics.createInstance(this.el);
39504         }
39505         var el = this.el;
39506         var v = el.dom.value;
39507         var d = document.createElement('div');
39508         d.appendChild(document.createTextNode(v));
39509         v = d.innerHTML;
39510         d = null;
39511         v += "&#160;";
39512         var w = Math.min(this.growMax, Math.max(this.metrics.getWidth(v) + /* add extra padding */ 10, this.growMin));
39513         this.el.setWidth(w);
39514         this.fireEvent("autosize", this, w);
39515     },
39516     
39517     // private
39518     SafariOnKeyDown : function(event)
39519     {
39520         // this is a workaround for a password hang bug on chrome/ webkit.
39521         
39522         var isSelectAll = false;
39523         
39524         if(this.el.dom.selectionEnd > 0){
39525             isSelectAll = (this.el.dom.selectionEnd - this.el.dom.selectionStart - this.getValue().length == 0) ? true : false;
39526         }
39527         if(((event.getKey() == 8 || event.getKey() == 46) && this.getValue().length ==1)){ // backspace and delete key
39528             event.preventDefault();
39529             this.setValue('');
39530             return;
39531         }
39532         
39533         if(isSelectAll && event.getCharCode() > 31){ // backspace and delete key
39534             
39535             event.preventDefault();
39536             // this is very hacky as keydown always get's upper case.
39537             
39538             var cc = String.fromCharCode(event.getCharCode());
39539             
39540             
39541             this.setValue( event.shiftKey ?  cc : cc.toLowerCase());
39542             
39543         }
39544         
39545         
39546     }
39547 });/*
39548  * Based on:
39549  * Ext JS Library 1.1.1
39550  * Copyright(c) 2006-2007, Ext JS, LLC.
39551  *
39552  * Originally Released Under LGPL - original licence link has changed is not relivant.
39553  *
39554  * Fork - LGPL
39555  * <script type="text/javascript">
39556  */
39557  
39558 /**
39559  * @class Roo.form.Hidden
39560  * @extends Roo.form.TextField
39561  * Simple Hidden element used on forms 
39562  * 
39563  * usage: form.add(new Roo.form.HiddenField({ 'name' : 'test1' }));
39564  * 
39565  * @constructor
39566  * Creates a new Hidden form element.
39567  * @param {Object} config Configuration options
39568  */
39569
39570
39571
39572 // easy hidden field...
39573 Roo.form.Hidden = function(config){
39574     Roo.form.Hidden.superclass.constructor.call(this, config);
39575 };
39576   
39577 Roo.extend(Roo.form.Hidden, Roo.form.TextField, {
39578     fieldLabel:      '',
39579     inputType:      'hidden',
39580     width:          50,
39581     allowBlank:     true,
39582     labelSeparator: '',
39583     hidden:         true,
39584     itemCls :       'x-form-item-display-none'
39585
39586
39587 });
39588
39589
39590 /*
39591  * Based on:
39592  * Ext JS Library 1.1.1
39593  * Copyright(c) 2006-2007, Ext JS, LLC.
39594  *
39595  * Originally Released Under LGPL - original licence link has changed is not relivant.
39596  *
39597  * Fork - LGPL
39598  * <script type="text/javascript">
39599  */
39600  
39601 /**
39602  * @class Roo.form.TriggerField
39603  * @extends Roo.form.TextField
39604  * Provides a convenient wrapper for TextFields that adds a clickable trigger button (looks like a combobox by default).
39605  * The trigger has no default action, so you must assign a function to implement the trigger click handler by
39606  * overriding {@link #onTriggerClick}. You can create a TriggerField directly, as it renders exactly like a combobox
39607  * for which you can provide a custom implementation.  For example:
39608  * <pre><code>
39609 var trigger = new Roo.form.TriggerField();
39610 trigger.onTriggerClick = myTriggerFn;
39611 trigger.applyTo('my-field');
39612 </code></pre>
39613  *
39614  * However, in general you will most likely want to use TriggerField as the base class for a reusable component.
39615  * {@link Roo.form.DateField} and {@link Roo.form.ComboBox} are perfect examples of this.
39616  * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
39617  * class 'x-form-trigger' by default and triggerClass will be <b>appended</b> if specified.
39618  * @constructor
39619  * Create a new TriggerField.
39620  * @param {Object} config Configuration options (valid {@Roo.form.TextField} config options will also be applied
39621  * to the base TextField)
39622  */
39623 Roo.form.TriggerField = function(config){
39624     this.mimicing = false;
39625     Roo.form.TriggerField.superclass.constructor.call(this, config);
39626 };
39627
39628 Roo.extend(Roo.form.TriggerField, Roo.form.TextField,  {
39629     /**
39630      * @cfg {String} triggerClass A CSS class to apply to the trigger
39631      */
39632     /**
39633      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
39634      * {tag: "input", type: "text", size: "16", autocomplete: "off"})
39635      */
39636     defaultAutoCreate : {tag: "input", type: "text", size: "16", autocomplete: "new-password"},
39637     /**
39638      * @cfg {Boolean} hideTrigger True to hide the trigger element and display only the base text field (defaults to false)
39639      */
39640     hideTrigger:false,
39641
39642     /** @cfg {Boolean} grow @hide */
39643     /** @cfg {Number} growMin @hide */
39644     /** @cfg {Number} growMax @hide */
39645
39646     /**
39647      * @hide 
39648      * @method
39649      */
39650     autoSize: Roo.emptyFn,
39651     // private
39652     monitorTab : true,
39653     // private
39654     deferHeight : true,
39655
39656     
39657     actionMode : 'wrap',
39658     // private
39659     onResize : function(w, h){
39660         Roo.form.TriggerField.superclass.onResize.apply(this, arguments);
39661         if(typeof w == 'number'){
39662             var x = w - this.trigger.getWidth();
39663             this.el.setWidth(this.adjustWidth('input', x));
39664             this.trigger.setStyle('left', x+'px');
39665         }
39666     },
39667
39668     // private
39669     adjustSize : Roo.BoxComponent.prototype.adjustSize,
39670
39671     // private
39672     getResizeEl : function(){
39673         return this.wrap;
39674     },
39675
39676     // private
39677     getPositionEl : function(){
39678         return this.wrap;
39679     },
39680
39681     // private
39682     alignErrorIcon : function(){
39683         this.errorIcon.alignTo(this.wrap, 'tl-tr', [2, 0]);
39684     },
39685
39686     // private
39687     onRender : function(ct, position){
39688         Roo.form.TriggerField.superclass.onRender.call(this, ct, position);
39689         this.wrap = this.el.wrap({cls: "x-form-field-wrap"});
39690         this.trigger = this.wrap.createChild(this.triggerConfig ||
39691                 {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.triggerClass});
39692         if(this.hideTrigger){
39693             this.trigger.setDisplayed(false);
39694         }
39695         this.initTrigger();
39696         if(!this.width){
39697             this.wrap.setWidth(this.el.getWidth()+this.trigger.getWidth());
39698         }
39699     },
39700
39701     // private
39702     initTrigger : function(){
39703         this.trigger.on("click", this.onTriggerClick, this, {preventDefault:true});
39704         this.trigger.addClassOnOver('x-form-trigger-over');
39705         this.trigger.addClassOnClick('x-form-trigger-click');
39706     },
39707
39708     // private
39709     onDestroy : function(){
39710         if(this.trigger){
39711             this.trigger.removeAllListeners();
39712             this.trigger.remove();
39713         }
39714         if(this.wrap){
39715             this.wrap.remove();
39716         }
39717         Roo.form.TriggerField.superclass.onDestroy.call(this);
39718     },
39719
39720     // private
39721     onFocus : function(){
39722         Roo.form.TriggerField.superclass.onFocus.call(this);
39723         if(!this.mimicing){
39724             this.wrap.addClass('x-trigger-wrap-focus');
39725             this.mimicing = true;
39726             Roo.get(Roo.isIE ? document.body : document).on("mousedown", this.mimicBlur, this);
39727             if(this.monitorTab){
39728                 this.el.on("keydown", this.checkTab, this);
39729             }
39730         }
39731     },
39732
39733     // private
39734     checkTab : function(e){
39735         if(e.getKey() == e.TAB){
39736             this.triggerBlur();
39737         }
39738     },
39739
39740     // private
39741     onBlur : function(){
39742         // do nothing
39743     },
39744
39745     // private
39746     mimicBlur : function(e, t){
39747         if(!this.wrap.contains(t) && this.validateBlur()){
39748             this.triggerBlur();
39749         }
39750     },
39751
39752     // private
39753     triggerBlur : function(){
39754         this.mimicing = false;
39755         Roo.get(Roo.isIE ? document.body : document).un("mousedown", this.mimicBlur);
39756         if(this.monitorTab){
39757             this.el.un("keydown", this.checkTab, this);
39758         }
39759         this.wrap.removeClass('x-trigger-wrap-focus');
39760         Roo.form.TriggerField.superclass.onBlur.call(this);
39761     },
39762
39763     // private
39764     // This should be overriden by any subclass that needs to check whether or not the field can be blurred.
39765     validateBlur : function(e, t){
39766         return true;
39767     },
39768
39769     // private
39770     onDisable : function(){
39771         Roo.form.TriggerField.superclass.onDisable.call(this);
39772         if(this.wrap){
39773             this.wrap.addClass('x-item-disabled');
39774         }
39775     },
39776
39777     // private
39778     onEnable : function(){
39779         Roo.form.TriggerField.superclass.onEnable.call(this);
39780         if(this.wrap){
39781             this.wrap.removeClass('x-item-disabled');
39782         }
39783     },
39784
39785     // private
39786     onShow : function(){
39787         var ae = this.getActionEl();
39788         
39789         if(ae){
39790             ae.dom.style.display = '';
39791             ae.dom.style.visibility = 'visible';
39792         }
39793     },
39794
39795     // private
39796     
39797     onHide : function(){
39798         var ae = this.getActionEl();
39799         ae.dom.style.display = 'none';
39800     },
39801
39802     /**
39803      * The function that should handle the trigger's click event.  This method does nothing by default until overridden
39804      * by an implementing function.
39805      * @method
39806      * @param {EventObject} e
39807      */
39808     onTriggerClick : Roo.emptyFn
39809 });
39810
39811 // TwinTriggerField is not a public class to be used directly.  It is meant as an abstract base class
39812 // to be extended by an implementing class.  For an example of implementing this class, see the custom
39813 // SearchField implementation here: http://extjs.com/deploy/ext/examples/form/custom.html
39814 Roo.form.TwinTriggerField = Roo.extend(Roo.form.TriggerField, {
39815     initComponent : function(){
39816         Roo.form.TwinTriggerField.superclass.initComponent.call(this);
39817
39818         this.triggerConfig = {
39819             tag:'span', cls:'x-form-twin-triggers', cn:[
39820             {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.trigger1Class},
39821             {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.trigger2Class}
39822         ]};
39823     },
39824
39825     getTrigger : function(index){
39826         return this.triggers[index];
39827     },
39828
39829     initTrigger : function(){
39830         var ts = this.trigger.select('.x-form-trigger', true);
39831         this.wrap.setStyle('overflow', 'hidden');
39832         var triggerField = this;
39833         ts.each(function(t, all, index){
39834             t.hide = function(){
39835                 var w = triggerField.wrap.getWidth();
39836                 this.dom.style.display = 'none';
39837                 triggerField.el.setWidth(w-triggerField.trigger.getWidth());
39838             };
39839             t.show = function(){
39840                 var w = triggerField.wrap.getWidth();
39841                 this.dom.style.display = '';
39842                 triggerField.el.setWidth(w-triggerField.trigger.getWidth());
39843             };
39844             var triggerIndex = 'Trigger'+(index+1);
39845
39846             if(this['hide'+triggerIndex]){
39847                 t.dom.style.display = 'none';
39848             }
39849             t.on("click", this['on'+triggerIndex+'Click'], this, {preventDefault:true});
39850             t.addClassOnOver('x-form-trigger-over');
39851             t.addClassOnClick('x-form-trigger-click');
39852         }, this);
39853         this.triggers = ts.elements;
39854     },
39855
39856     onTrigger1Click : Roo.emptyFn,
39857     onTrigger2Click : Roo.emptyFn
39858 });/*
39859  * Based on:
39860  * Ext JS Library 1.1.1
39861  * Copyright(c) 2006-2007, Ext JS, LLC.
39862  *
39863  * Originally Released Under LGPL - original licence link has changed is not relivant.
39864  *
39865  * Fork - LGPL
39866  * <script type="text/javascript">
39867  */
39868  
39869 /**
39870  * @class Roo.form.TextArea
39871  * @extends Roo.form.TextField
39872  * Multiline text field.  Can be used as a direct replacement for traditional textarea fields, plus adds
39873  * support for auto-sizing.
39874  * @constructor
39875  * Creates a new TextArea
39876  * @param {Object} config Configuration options
39877  */
39878 Roo.form.TextArea = function(config){
39879     Roo.form.TextArea.superclass.constructor.call(this, config);
39880     // these are provided exchanges for backwards compat
39881     // minHeight/maxHeight were replaced by growMin/growMax to be
39882     // compatible with TextField growing config values
39883     if(this.minHeight !== undefined){
39884         this.growMin = this.minHeight;
39885     }
39886     if(this.maxHeight !== undefined){
39887         this.growMax = this.maxHeight;
39888     }
39889 };
39890
39891 Roo.extend(Roo.form.TextArea, Roo.form.TextField,  {
39892     /**
39893      * @cfg {Number} growMin The minimum height to allow when grow = true (defaults to 60)
39894      */
39895     growMin : 60,
39896     /**
39897      * @cfg {Number} growMax The maximum height to allow when grow = true (defaults to 1000)
39898      */
39899     growMax: 1000,
39900     /**
39901      * @cfg {Boolean} preventScrollbars True to prevent scrollbars from appearing regardless of how much text is
39902      * in the field (equivalent to setting overflow: hidden, defaults to false)
39903      */
39904     preventScrollbars: false,
39905     /**
39906      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
39907      * {tag: "textarea", style: "width:300px;height:60px;", autocomplete: "off"})
39908      */
39909
39910     // private
39911     onRender : function(ct, position){
39912         if(!this.el){
39913             this.defaultAutoCreate = {
39914                 tag: "textarea",
39915                 style:"width:300px;height:60px;",
39916                 autocomplete: "new-password"
39917             };
39918         }
39919         Roo.form.TextArea.superclass.onRender.call(this, ct, position);
39920         if(this.grow){
39921             this.textSizeEl = Roo.DomHelper.append(document.body, {
39922                 tag: "pre", cls: "x-form-grow-sizer"
39923             });
39924             if(this.preventScrollbars){
39925                 this.el.setStyle("overflow", "hidden");
39926             }
39927             this.el.setHeight(this.growMin);
39928         }
39929     },
39930
39931     onDestroy : function(){
39932         if(this.textSizeEl){
39933             this.textSizeEl.parentNode.removeChild(this.textSizeEl);
39934         }
39935         Roo.form.TextArea.superclass.onDestroy.call(this);
39936     },
39937
39938     // private
39939     onKeyUp : function(e){
39940         if(!e.isNavKeyPress() || e.getKey() == e.ENTER){
39941             this.autoSize();
39942         }
39943     },
39944
39945     /**
39946      * Automatically grows the field to accomodate the height of the text up to the maximum field height allowed.
39947      * This only takes effect if grow = true, and fires the autosize event if the height changes.
39948      */
39949     autoSize : function(){
39950         if(!this.grow || !this.textSizeEl){
39951             return;
39952         }
39953         var el = this.el;
39954         var v = el.dom.value;
39955         var ts = this.textSizeEl;
39956
39957         ts.innerHTML = '';
39958         ts.appendChild(document.createTextNode(v));
39959         v = ts.innerHTML;
39960
39961         Roo.fly(ts).setWidth(this.el.getWidth());
39962         if(v.length < 1){
39963             v = "&#160;&#160;";
39964         }else{
39965             if(Roo.isIE){
39966                 v = v.replace(/\n/g, '<p>&#160;</p>');
39967             }
39968             v += "&#160;\n&#160;";
39969         }
39970         ts.innerHTML = v;
39971         var h = Math.min(this.growMax, Math.max(ts.offsetHeight, this.growMin));
39972         if(h != this.lastHeight){
39973             this.lastHeight = h;
39974             this.el.setHeight(h);
39975             this.fireEvent("autosize", this, h);
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 /**
39991  * @class Roo.form.NumberField
39992  * @extends Roo.form.TextField
39993  * Numeric text field that provides automatic keystroke filtering and numeric validation.
39994  * @constructor
39995  * Creates a new NumberField
39996  * @param {Object} config Configuration options
39997  */
39998 Roo.form.NumberField = function(config){
39999     Roo.form.NumberField.superclass.constructor.call(this, config);
40000 };
40001
40002 Roo.extend(Roo.form.NumberField, Roo.form.TextField,  {
40003     /**
40004      * @cfg {String} fieldClass The default CSS class for the field (defaults to "x-form-field x-form-num-field")
40005      */
40006     fieldClass: "x-form-field x-form-num-field",
40007     /**
40008      * @cfg {Boolean} allowDecimals False to disallow decimal values (defaults to true)
40009      */
40010     allowDecimals : true,
40011     /**
40012      * @cfg {String} decimalSeparator Character(s) to allow as the decimal separator (defaults to '.')
40013      */
40014     decimalSeparator : ".",
40015     /**
40016      * @cfg {Number} decimalPrecision The maximum precision to display after the decimal separator (defaults to 2)
40017      */
40018     decimalPrecision : 2,
40019     /**
40020      * @cfg {Boolean} allowNegative False to prevent entering a negative sign (defaults to true)
40021      */
40022     allowNegative : true,
40023     /**
40024      * @cfg {Number} minValue The minimum allowed value (defaults to Number.NEGATIVE_INFINITY)
40025      */
40026     minValue : Number.NEGATIVE_INFINITY,
40027     /**
40028      * @cfg {Number} maxValue The maximum allowed value (defaults to Number.MAX_VALUE)
40029      */
40030     maxValue : Number.MAX_VALUE,
40031     /**
40032      * @cfg {String} minText Error text to display if the minimum value validation fails (defaults to "The minimum value for this field is {minValue}")
40033      */
40034     minText : "The minimum value for this field is {0}",
40035     /**
40036      * @cfg {String} maxText Error text to display if the maximum value validation fails (defaults to "The maximum value for this field is {maxValue}")
40037      */
40038     maxText : "The maximum value for this field is {0}",
40039     /**
40040      * @cfg {String} nanText Error text to display if the value is not a valid number.  For example, this can happen
40041      * if a valid character like '.' or '-' is left in the field with no number (defaults to "{value} is not a valid number")
40042      */
40043     nanText : "{0} is not a valid number",
40044
40045     // private
40046     initEvents : function(){
40047         Roo.form.NumberField.superclass.initEvents.call(this);
40048         var allowed = "0123456789";
40049         if(this.allowDecimals){
40050             allowed += this.decimalSeparator;
40051         }
40052         if(this.allowNegative){
40053             allowed += "-";
40054         }
40055         this.stripCharsRe = new RegExp('[^'+allowed+']', 'gi');
40056         var keyPress = function(e){
40057             var k = e.getKey();
40058             if(!Roo.isIE && (e.isSpecialKey() || k == e.BACKSPACE || k == e.DELETE)){
40059                 return;
40060             }
40061             var c = e.getCharCode();
40062             if(allowed.indexOf(String.fromCharCode(c)) === -1){
40063                 e.stopEvent();
40064             }
40065         };
40066         this.el.on("keypress", keyPress, this);
40067     },
40068
40069     // private
40070     validateValue : function(value){
40071         if(!Roo.form.NumberField.superclass.validateValue.call(this, value)){
40072             return false;
40073         }
40074         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
40075              return true;
40076         }
40077         var num = this.parseValue(value);
40078         if(isNaN(num)){
40079             this.markInvalid(String.format(this.nanText, value));
40080             return false;
40081         }
40082         if(num < this.minValue){
40083             this.markInvalid(String.format(this.minText, this.minValue));
40084             return false;
40085         }
40086         if(num > this.maxValue){
40087             this.markInvalid(String.format(this.maxText, this.maxValue));
40088             return false;
40089         }
40090         return true;
40091     },
40092
40093     getValue : function(){
40094         return this.fixPrecision(this.parseValue(Roo.form.NumberField.superclass.getValue.call(this)));
40095     },
40096
40097     // private
40098     parseValue : function(value){
40099         value = parseFloat(String(value).replace(this.decimalSeparator, "."));
40100         return isNaN(value) ? '' : value;
40101     },
40102
40103     // private
40104     fixPrecision : function(value){
40105         var nan = isNaN(value);
40106         if(!this.allowDecimals || this.decimalPrecision == -1 || nan || !value){
40107             return nan ? '' : value;
40108         }
40109         return parseFloat(value).toFixed(this.decimalPrecision);
40110     },
40111
40112     setValue : function(v){
40113         v = this.fixPrecision(v);
40114         Roo.form.NumberField.superclass.setValue.call(this, String(v).replace(".", this.decimalSeparator));
40115     },
40116
40117     // private
40118     decimalPrecisionFcn : function(v){
40119         return Math.floor(v);
40120     },
40121
40122     beforeBlur : function(){
40123         var v = this.parseValue(this.getRawValue());
40124         if(v){
40125             this.setValue(v);
40126         }
40127     }
40128 });/*
40129  * Based on:
40130  * Ext JS Library 1.1.1
40131  * Copyright(c) 2006-2007, Ext JS, LLC.
40132  *
40133  * Originally Released Under LGPL - original licence link has changed is not relivant.
40134  *
40135  * Fork - LGPL
40136  * <script type="text/javascript">
40137  */
40138  
40139 /**
40140  * @class Roo.form.DateField
40141  * @extends Roo.form.TriggerField
40142  * Provides a date input field with a {@link Roo.DatePicker} dropdown and automatic date validation.
40143 * @constructor
40144 * Create a new DateField
40145 * @param {Object} config
40146  */
40147 Roo.form.DateField = function(config){
40148     Roo.form.DateField.superclass.constructor.call(this, config);
40149     
40150       this.addEvents({
40151          
40152         /**
40153          * @event select
40154          * Fires when a date is selected
40155              * @param {Roo.form.DateField} combo This combo box
40156              * @param {Date} date The date selected
40157              */
40158         'select' : true
40159          
40160     });
40161     
40162     
40163     if(typeof this.minValue == "string") {
40164         this.minValue = this.parseDate(this.minValue);
40165     }
40166     if(typeof this.maxValue == "string") {
40167         this.maxValue = this.parseDate(this.maxValue);
40168     }
40169     this.ddMatch = null;
40170     if(this.disabledDates){
40171         var dd = this.disabledDates;
40172         var re = "(?:";
40173         for(var i = 0; i < dd.length; i++){
40174             re += dd[i];
40175             if(i != dd.length-1) {
40176                 re += "|";
40177             }
40178         }
40179         this.ddMatch = new RegExp(re + ")");
40180     }
40181 };
40182
40183 Roo.extend(Roo.form.DateField, Roo.form.TriggerField,  {
40184     /**
40185      * @cfg {String} format
40186      * The default date format string which can be overriden for localization support.  The format must be
40187      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
40188      */
40189     format : "m/d/y",
40190     /**
40191      * @cfg {String} altFormats
40192      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
40193      * format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
40194      */
40195     altFormats : "m/d/Y|m-d-y|m-d-Y|m/d|m-d|md|mdy|mdY|d",
40196     /**
40197      * @cfg {Array} disabledDays
40198      * An array of days to disable, 0 based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
40199      */
40200     disabledDays : null,
40201     /**
40202      * @cfg {String} disabledDaysText
40203      * The tooltip to display when the date falls on a disabled day (defaults to 'Disabled')
40204      */
40205     disabledDaysText : "Disabled",
40206     /**
40207      * @cfg {Array} disabledDates
40208      * An array of "dates" to disable, as strings. These strings will be used to build a dynamic regular
40209      * expression so they are very powerful. Some examples:
40210      * <ul>
40211      * <li>["03/08/2003", "09/16/2003"] would disable those exact dates</li>
40212      * <li>["03/08", "09/16"] would disable those days for every year</li>
40213      * <li>["^03/08"] would only match the beginning (useful if you are using short years)</li>
40214      * <li>["03/../2006"] would disable every day in March 2006</li>
40215      * <li>["^03"] would disable every day in every March</li>
40216      * </ul>
40217      * In order to support regular expressions, if you are using a date format that has "." in it, you will have to
40218      * escape the dot when restricting dates. For example: ["03\\.08\\.03"].
40219      */
40220     disabledDates : null,
40221     /**
40222      * @cfg {String} disabledDatesText
40223      * The tooltip text to display when the date falls on a disabled date (defaults to 'Disabled')
40224      */
40225     disabledDatesText : "Disabled",
40226     /**
40227      * @cfg {Date/String} minValue
40228      * The minimum allowed date. Can be either a Javascript date object or a string date in a
40229      * valid format (defaults to null).
40230      */
40231     minValue : null,
40232     /**
40233      * @cfg {Date/String} maxValue
40234      * The maximum allowed date. Can be either a Javascript date object or a string date in a
40235      * valid format (defaults to null).
40236      */
40237     maxValue : null,
40238     /**
40239      * @cfg {String} minText
40240      * The error text to display when the date in the cell is before minValue (defaults to
40241      * 'The date in this field must be after {minValue}').
40242      */
40243     minText : "The date in this field must be equal to or after {0}",
40244     /**
40245      * @cfg {String} maxText
40246      * The error text to display when the date in the cell is after maxValue (defaults to
40247      * 'The date in this field must be before {maxValue}').
40248      */
40249     maxText : "The date in this field must be equal to or before {0}",
40250     /**
40251      * @cfg {String} invalidText
40252      * The error text to display when the date in the field is invalid (defaults to
40253      * '{value} is not a valid date - it must be in the format {format}').
40254      */
40255     invalidText : "{0} is not a valid date - it must be in the format {1}",
40256     /**
40257      * @cfg {String} triggerClass
40258      * An additional CSS class used to style the trigger button.  The trigger will always get the
40259      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-date-trigger'
40260      * which displays a calendar icon).
40261      */
40262     triggerClass : 'x-form-date-trigger',
40263     
40264
40265     /**
40266      * @cfg {Boolean} useIso
40267      * if enabled, then the date field will use a hidden field to store the 
40268      * real value as iso formated date. default (false)
40269      */ 
40270     useIso : false,
40271     /**
40272      * @cfg {String/Object} autoCreate
40273      * A DomHelper element spec, or true for a default element spec (defaults to
40274      * {tag: "input", type: "text", size: "10", autocomplete: "off"})
40275      */ 
40276     // private
40277     defaultAutoCreate : {tag: "input", type: "text", size: "10", autocomplete: "off"},
40278     
40279     // private
40280     hiddenField: false,
40281     
40282     onRender : function(ct, position)
40283     {
40284         Roo.form.DateField.superclass.onRender.call(this, ct, position);
40285         if (this.useIso) {
40286             //this.el.dom.removeAttribute('name'); 
40287             Roo.log("Changing name?");
40288             this.el.dom.setAttribute('name', this.name + '____hidden___' ); 
40289             this.hiddenField = this.el.insertSibling({ tag:'input', type:'hidden', name: this.name },
40290                     'before', true);
40291             this.hiddenField.value = this.value ? this.formatDate(this.value, 'Y-m-d') : '';
40292             // prevent input submission
40293             this.hiddenName = this.name;
40294         }
40295             
40296             
40297     },
40298     
40299     // private
40300     validateValue : function(value)
40301     {
40302         value = this.formatDate(value);
40303         if(!Roo.form.DateField.superclass.validateValue.call(this, value)){
40304             Roo.log('super failed');
40305             return false;
40306         }
40307         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
40308              return true;
40309         }
40310         var svalue = value;
40311         value = this.parseDate(value);
40312         if(!value){
40313             Roo.log('parse date failed' + svalue);
40314             this.markInvalid(String.format(this.invalidText, svalue, this.format));
40315             return false;
40316         }
40317         var time = value.getTime();
40318         if(this.minValue && time < this.minValue.getTime()){
40319             this.markInvalid(String.format(this.minText, this.formatDate(this.minValue)));
40320             return false;
40321         }
40322         if(this.maxValue && time > this.maxValue.getTime()){
40323             this.markInvalid(String.format(this.maxText, this.formatDate(this.maxValue)));
40324             return false;
40325         }
40326         if(this.disabledDays){
40327             var day = value.getDay();
40328             for(var i = 0; i < this.disabledDays.length; i++) {
40329                 if(day === this.disabledDays[i]){
40330                     this.markInvalid(this.disabledDaysText);
40331                     return false;
40332                 }
40333             }
40334         }
40335         var fvalue = this.formatDate(value);
40336         if(this.ddMatch && this.ddMatch.test(fvalue)){
40337             this.markInvalid(String.format(this.disabledDatesText, fvalue));
40338             return false;
40339         }
40340         return true;
40341     },
40342
40343     // private
40344     // Provides logic to override the default TriggerField.validateBlur which just returns true
40345     validateBlur : function(){
40346         return !this.menu || !this.menu.isVisible();
40347     },
40348     
40349     getName: function()
40350     {
40351         // returns hidden if it's set..
40352         if (!this.rendered) {return ''};
40353         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
40354         
40355     },
40356
40357     /**
40358      * Returns the current date value of the date field.
40359      * @return {Date} The date value
40360      */
40361     getValue : function(){
40362         
40363         return  this.hiddenField ?
40364                 this.hiddenField.value :
40365                 this.parseDate(Roo.form.DateField.superclass.getValue.call(this)) || "";
40366     },
40367
40368     /**
40369      * Sets the value of the date field.  You can pass a date object or any string that can be parsed into a valid
40370      * date, using DateField.format as the date format, according to the same rules as {@link Date#parseDate}
40371      * (the default format used is "m/d/y").
40372      * <br />Usage:
40373      * <pre><code>
40374 //All of these calls set the same date value (May 4, 2006)
40375
40376 //Pass a date object:
40377 var dt = new Date('5/4/06');
40378 dateField.setValue(dt);
40379
40380 //Pass a date string (default format):
40381 dateField.setValue('5/4/06');
40382
40383 //Pass a date string (custom format):
40384 dateField.format = 'Y-m-d';
40385 dateField.setValue('2006-5-4');
40386 </code></pre>
40387      * @param {String/Date} date The date or valid date string
40388      */
40389     setValue : function(date){
40390         if (this.hiddenField) {
40391             this.hiddenField.value = this.formatDate(this.parseDate(date), 'Y-m-d');
40392         }
40393         Roo.form.DateField.superclass.setValue.call(this, this.formatDate(this.parseDate(date)));
40394         // make sure the value field is always stored as a date..
40395         this.value = this.parseDate(date);
40396         
40397         
40398     },
40399
40400     // private
40401     parseDate : function(value){
40402         if(!value || value instanceof Date){
40403             return value;
40404         }
40405         var v = Date.parseDate(value, this.format);
40406          if (!v && this.useIso) {
40407             v = Date.parseDate(value, 'Y-m-d');
40408         }
40409         if(!v && this.altFormats){
40410             if(!this.altFormatsArray){
40411                 this.altFormatsArray = this.altFormats.split("|");
40412             }
40413             for(var i = 0, len = this.altFormatsArray.length; i < len && !v; i++){
40414                 v = Date.parseDate(value, this.altFormatsArray[i]);
40415             }
40416         }
40417         return v;
40418     },
40419
40420     // private
40421     formatDate : function(date, fmt){
40422         return (!date || !(date instanceof Date)) ?
40423                date : date.dateFormat(fmt || this.format);
40424     },
40425
40426     // private
40427     menuListeners : {
40428         select: function(m, d){
40429             
40430             this.setValue(d);
40431             this.fireEvent('select', this, d);
40432         },
40433         show : function(){ // retain focus styling
40434             this.onFocus();
40435         },
40436         hide : function(){
40437             this.focus.defer(10, this);
40438             var ml = this.menuListeners;
40439             this.menu.un("select", ml.select,  this);
40440             this.menu.un("show", ml.show,  this);
40441             this.menu.un("hide", ml.hide,  this);
40442         }
40443     },
40444
40445     // private
40446     // Implements the default empty TriggerField.onTriggerClick function to display the DatePicker
40447     onTriggerClick : function(){
40448         if(this.disabled){
40449             return;
40450         }
40451         if(this.menu == null){
40452             this.menu = new Roo.menu.DateMenu();
40453         }
40454         Roo.apply(this.menu.picker,  {
40455             showClear: this.allowBlank,
40456             minDate : this.minValue,
40457             maxDate : this.maxValue,
40458             disabledDatesRE : this.ddMatch,
40459             disabledDatesText : this.disabledDatesText,
40460             disabledDays : this.disabledDays,
40461             disabledDaysText : this.disabledDaysText,
40462             format : this.useIso ? 'Y-m-d' : this.format,
40463             minText : String.format(this.minText, this.formatDate(this.minValue)),
40464             maxText : String.format(this.maxText, this.formatDate(this.maxValue))
40465         });
40466         this.menu.on(Roo.apply({}, this.menuListeners, {
40467             scope:this
40468         }));
40469         this.menu.picker.setValue(this.getValue() || new Date());
40470         this.menu.show(this.el, "tl-bl?");
40471     },
40472
40473     beforeBlur : function(){
40474         var v = this.parseDate(this.getRawValue());
40475         if(v){
40476             this.setValue(v);
40477         }
40478     },
40479
40480     /*@
40481      * overide
40482      * 
40483      */
40484     isDirty : function() {
40485         if(this.disabled) {
40486             return false;
40487         }
40488         
40489         if(typeof(this.startValue) === 'undefined'){
40490             return false;
40491         }
40492         
40493         return String(this.getValue()) !== String(this.startValue);
40494         
40495     }
40496 });/*
40497  * Based on:
40498  * Ext JS Library 1.1.1
40499  * Copyright(c) 2006-2007, Ext JS, LLC.
40500  *
40501  * Originally Released Under LGPL - original licence link has changed is not relivant.
40502  *
40503  * Fork - LGPL
40504  * <script type="text/javascript">
40505  */
40506  
40507 /**
40508  * @class Roo.form.MonthField
40509  * @extends Roo.form.TriggerField
40510  * Provides a date input field with a {@link Roo.DatePicker} dropdown and automatic date validation.
40511 * @constructor
40512 * Create a new MonthField
40513 * @param {Object} config
40514  */
40515 Roo.form.MonthField = function(config){
40516     
40517     Roo.form.MonthField.superclass.constructor.call(this, config);
40518     
40519       this.addEvents({
40520          
40521         /**
40522          * @event select
40523          * Fires when a date is selected
40524              * @param {Roo.form.MonthFieeld} combo This combo box
40525              * @param {Date} date The date selected
40526              */
40527         'select' : true
40528          
40529     });
40530     
40531     
40532     if(typeof this.minValue == "string") {
40533         this.minValue = this.parseDate(this.minValue);
40534     }
40535     if(typeof this.maxValue == "string") {
40536         this.maxValue = this.parseDate(this.maxValue);
40537     }
40538     this.ddMatch = null;
40539     if(this.disabledDates){
40540         var dd = this.disabledDates;
40541         var re = "(?:";
40542         for(var i = 0; i < dd.length; i++){
40543             re += dd[i];
40544             if(i != dd.length-1) {
40545                 re += "|";
40546             }
40547         }
40548         this.ddMatch = new RegExp(re + ")");
40549     }
40550 };
40551
40552 Roo.extend(Roo.form.MonthField, Roo.form.TriggerField,  {
40553     /**
40554      * @cfg {String} format
40555      * The default date format string which can be overriden for localization support.  The format must be
40556      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
40557      */
40558     format : "M Y",
40559     /**
40560      * @cfg {String} altFormats
40561      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
40562      * format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
40563      */
40564     altFormats : "M Y|m/Y|m-y|m-Y|my|mY",
40565     /**
40566      * @cfg {Array} disabledDays
40567      * An array of days to disable, 0 based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
40568      */
40569     disabledDays : [0,1,2,3,4,5,6],
40570     /**
40571      * @cfg {String} disabledDaysText
40572      * The tooltip to display when the date falls on a disabled day (defaults to 'Disabled')
40573      */
40574     disabledDaysText : "Disabled",
40575     /**
40576      * @cfg {Array} disabledDates
40577      * An array of "dates" to disable, as strings. These strings will be used to build a dynamic regular
40578      * expression so they are very powerful. Some examples:
40579      * <ul>
40580      * <li>["03/08/2003", "09/16/2003"] would disable those exact dates</li>
40581      * <li>["03/08", "09/16"] would disable those days for every year</li>
40582      * <li>["^03/08"] would only match the beginning (useful if you are using short years)</li>
40583      * <li>["03/../2006"] would disable every day in March 2006</li>
40584      * <li>["^03"] would disable every day in every March</li>
40585      * </ul>
40586      * In order to support regular expressions, if you are using a date format that has "." in it, you will have to
40587      * escape the dot when restricting dates. For example: ["03\\.08\\.03"].
40588      */
40589     disabledDates : null,
40590     /**
40591      * @cfg {String} disabledDatesText
40592      * The tooltip text to display when the date falls on a disabled date (defaults to 'Disabled')
40593      */
40594     disabledDatesText : "Disabled",
40595     /**
40596      * @cfg {Date/String} minValue
40597      * The minimum allowed date. Can be either a Javascript date object or a string date in a
40598      * valid format (defaults to null).
40599      */
40600     minValue : null,
40601     /**
40602      * @cfg {Date/String} maxValue
40603      * The maximum allowed date. Can be either a Javascript date object or a string date in a
40604      * valid format (defaults to null).
40605      */
40606     maxValue : null,
40607     /**
40608      * @cfg {String} minText
40609      * The error text to display when the date in the cell is before minValue (defaults to
40610      * 'The date in this field must be after {minValue}').
40611      */
40612     minText : "The date in this field must be equal to or after {0}",
40613     /**
40614      * @cfg {String} maxTextf
40615      * The error text to display when the date in the cell is after maxValue (defaults to
40616      * 'The date in this field must be before {maxValue}').
40617      */
40618     maxText : "The date in this field must be equal to or before {0}",
40619     /**
40620      * @cfg {String} invalidText
40621      * The error text to display when the date in the field is invalid (defaults to
40622      * '{value} is not a valid date - it must be in the format {format}').
40623      */
40624     invalidText : "{0} is not a valid date - it must be in the format {1}",
40625     /**
40626      * @cfg {String} triggerClass
40627      * An additional CSS class used to style the trigger button.  The trigger will always get the
40628      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-date-trigger'
40629      * which displays a calendar icon).
40630      */
40631     triggerClass : 'x-form-date-trigger',
40632     
40633
40634     /**
40635      * @cfg {Boolean} useIso
40636      * if enabled, then the date field will use a hidden field to store the 
40637      * real value as iso formated date. default (true)
40638      */ 
40639     useIso : true,
40640     /**
40641      * @cfg {String/Object} autoCreate
40642      * A DomHelper element spec, or true for a default element spec (defaults to
40643      * {tag: "input", type: "text", size: "10", autocomplete: "off"})
40644      */ 
40645     // private
40646     defaultAutoCreate : {tag: "input", type: "text", size: "10", autocomplete: "new-password"},
40647     
40648     // private
40649     hiddenField: false,
40650     
40651     hideMonthPicker : false,
40652     
40653     onRender : function(ct, position)
40654     {
40655         Roo.form.MonthField.superclass.onRender.call(this, ct, position);
40656         if (this.useIso) {
40657             this.el.dom.removeAttribute('name'); 
40658             this.hiddenField = this.el.insertSibling({ tag:'input', type:'hidden', name: this.name },
40659                     'before', true);
40660             this.hiddenField.value = this.value ? this.formatDate(this.value, 'Y-m-d') : '';
40661             // prevent input submission
40662             this.hiddenName = this.name;
40663         }
40664             
40665             
40666     },
40667     
40668     // private
40669     validateValue : function(value)
40670     {
40671         value = this.formatDate(value);
40672         if(!Roo.form.MonthField.superclass.validateValue.call(this, value)){
40673             return false;
40674         }
40675         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
40676              return true;
40677         }
40678         var svalue = value;
40679         value = this.parseDate(value);
40680         if(!value){
40681             this.markInvalid(String.format(this.invalidText, svalue, this.format));
40682             return false;
40683         }
40684         var time = value.getTime();
40685         if(this.minValue && time < this.minValue.getTime()){
40686             this.markInvalid(String.format(this.minText, this.formatDate(this.minValue)));
40687             return false;
40688         }
40689         if(this.maxValue && time > this.maxValue.getTime()){
40690             this.markInvalid(String.format(this.maxText, this.formatDate(this.maxValue)));
40691             return false;
40692         }
40693         /*if(this.disabledDays){
40694             var day = value.getDay();
40695             for(var i = 0; i < this.disabledDays.length; i++) {
40696                 if(day === this.disabledDays[i]){
40697                     this.markInvalid(this.disabledDaysText);
40698                     return false;
40699                 }
40700             }
40701         }
40702         */
40703         var fvalue = this.formatDate(value);
40704         /*if(this.ddMatch && this.ddMatch.test(fvalue)){
40705             this.markInvalid(String.format(this.disabledDatesText, fvalue));
40706             return false;
40707         }
40708         */
40709         return true;
40710     },
40711
40712     // private
40713     // Provides logic to override the default TriggerField.validateBlur which just returns true
40714     validateBlur : function(){
40715         return !this.menu || !this.menu.isVisible();
40716     },
40717
40718     /**
40719      * Returns the current date value of the date field.
40720      * @return {Date} The date value
40721      */
40722     getValue : function(){
40723         
40724         
40725         
40726         return  this.hiddenField ?
40727                 this.hiddenField.value :
40728                 this.parseDate(Roo.form.MonthField.superclass.getValue.call(this)) || "";
40729     },
40730
40731     /**
40732      * Sets the value of the date field.  You can pass a date object or any string that can be parsed into a valid
40733      * date, using MonthField.format as the date format, according to the same rules as {@link Date#parseDate}
40734      * (the default format used is "m/d/y").
40735      * <br />Usage:
40736      * <pre><code>
40737 //All of these calls set the same date value (May 4, 2006)
40738
40739 //Pass a date object:
40740 var dt = new Date('5/4/06');
40741 monthField.setValue(dt);
40742
40743 //Pass a date string (default format):
40744 monthField.setValue('5/4/06');
40745
40746 //Pass a date string (custom format):
40747 monthField.format = 'Y-m-d';
40748 monthField.setValue('2006-5-4');
40749 </code></pre>
40750      * @param {String/Date} date The date or valid date string
40751      */
40752     setValue : function(date){
40753         Roo.log('month setValue' + date);
40754         // can only be first of month..
40755         
40756         var val = this.parseDate(date);
40757         
40758         if (this.hiddenField) {
40759             this.hiddenField.value = this.formatDate(this.parseDate(date), 'Y-m-d');
40760         }
40761         Roo.form.MonthField.superclass.setValue.call(this, this.formatDate(this.parseDate(date)));
40762         this.value = this.parseDate(date);
40763     },
40764
40765     // private
40766     parseDate : function(value){
40767         if(!value || value instanceof Date){
40768             value = value ? Date.parseDate(value.format('Y-m') + '-01', 'Y-m-d') : null;
40769             return value;
40770         }
40771         var v = Date.parseDate(value, this.format);
40772         if (!v && this.useIso) {
40773             v = Date.parseDate(value, 'Y-m-d');
40774         }
40775         if (v) {
40776             // 
40777             v = Date.parseDate(v.format('Y-m') +'-01', 'Y-m-d');
40778         }
40779         
40780         
40781         if(!v && this.altFormats){
40782             if(!this.altFormatsArray){
40783                 this.altFormatsArray = this.altFormats.split("|");
40784             }
40785             for(var i = 0, len = this.altFormatsArray.length; i < len && !v; i++){
40786                 v = Date.parseDate(value, this.altFormatsArray[i]);
40787             }
40788         }
40789         return v;
40790     },
40791
40792     // private
40793     formatDate : function(date, fmt){
40794         return (!date || !(date instanceof Date)) ?
40795                date : date.dateFormat(fmt || this.format);
40796     },
40797
40798     // private
40799     menuListeners : {
40800         select: function(m, d){
40801             this.setValue(d);
40802             this.fireEvent('select', this, d);
40803         },
40804         show : function(){ // retain focus styling
40805             this.onFocus();
40806         },
40807         hide : function(){
40808             this.focus.defer(10, this);
40809             var ml = this.menuListeners;
40810             this.menu.un("select", ml.select,  this);
40811             this.menu.un("show", ml.show,  this);
40812             this.menu.un("hide", ml.hide,  this);
40813         }
40814     },
40815     // private
40816     // Implements the default empty TriggerField.onTriggerClick function to display the DatePicker
40817     onTriggerClick : function(){
40818         if(this.disabled){
40819             return;
40820         }
40821         if(this.menu == null){
40822             this.menu = new Roo.menu.DateMenu();
40823            
40824         }
40825         
40826         Roo.apply(this.menu.picker,  {
40827             
40828             showClear: this.allowBlank,
40829             minDate : this.minValue,
40830             maxDate : this.maxValue,
40831             disabledDatesRE : this.ddMatch,
40832             disabledDatesText : this.disabledDatesText,
40833             
40834             format : this.useIso ? 'Y-m-d' : this.format,
40835             minText : String.format(this.minText, this.formatDate(this.minValue)),
40836             maxText : String.format(this.maxText, this.formatDate(this.maxValue))
40837             
40838         });
40839          this.menu.on(Roo.apply({}, this.menuListeners, {
40840             scope:this
40841         }));
40842        
40843         
40844         var m = this.menu;
40845         var p = m.picker;
40846         
40847         // hide month picker get's called when we called by 'before hide';
40848         
40849         var ignorehide = true;
40850         p.hideMonthPicker  = function(disableAnim){
40851             if (ignorehide) {
40852                 return;
40853             }
40854              if(this.monthPicker){
40855                 Roo.log("hideMonthPicker called");
40856                 if(disableAnim === true){
40857                     this.monthPicker.hide();
40858                 }else{
40859                     this.monthPicker.slideOut('t', {duration:.2});
40860                     p.setValue(new Date(m.picker.mpSelYear, m.picker.mpSelMonth, 1));
40861                     p.fireEvent("select", this, this.value);
40862                     m.hide();
40863                 }
40864             }
40865         }
40866         
40867         Roo.log('picker set value');
40868         Roo.log(this.getValue());
40869         p.setValue(this.getValue() ? this.parseDate(this.getValue()) : new Date());
40870         m.show(this.el, 'tl-bl?');
40871         ignorehide  = false;
40872         // this will trigger hideMonthPicker..
40873         
40874         
40875         // hidden the day picker
40876         Roo.select('.x-date-picker table', true).first().dom.style.visibility = "hidden";
40877         
40878         
40879         
40880       
40881         
40882         p.showMonthPicker.defer(100, p);
40883     
40884         
40885        
40886     },
40887
40888     beforeBlur : function(){
40889         var v = this.parseDate(this.getRawValue());
40890         if(v){
40891             this.setValue(v);
40892         }
40893     }
40894
40895     /** @cfg {Boolean} grow @hide */
40896     /** @cfg {Number} growMin @hide */
40897     /** @cfg {Number} growMax @hide */
40898     /**
40899      * @hide
40900      * @method autoSize
40901      */
40902 });/*
40903  * Based on:
40904  * Ext JS Library 1.1.1
40905  * Copyright(c) 2006-2007, Ext JS, LLC.
40906  *
40907  * Originally Released Under LGPL - original licence link has changed is not relivant.
40908  *
40909  * Fork - LGPL
40910  * <script type="text/javascript">
40911  */
40912  
40913
40914 /**
40915  * @class Roo.form.ComboBox
40916  * @extends Roo.form.TriggerField
40917  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
40918  * @constructor
40919  * Create a new ComboBox.
40920  * @param {Object} config Configuration options
40921  */
40922 Roo.form.ComboBox = function(config){
40923     Roo.form.ComboBox.superclass.constructor.call(this, config);
40924     this.addEvents({
40925         /**
40926          * @event expand
40927          * Fires when the dropdown list is expanded
40928              * @param {Roo.form.ComboBox} combo This combo box
40929              */
40930         'expand' : true,
40931         /**
40932          * @event collapse
40933          * Fires when the dropdown list is collapsed
40934              * @param {Roo.form.ComboBox} combo This combo box
40935              */
40936         'collapse' : true,
40937         /**
40938          * @event beforeselect
40939          * Fires before a list item is selected. Return false to cancel the selection.
40940              * @param {Roo.form.ComboBox} combo This combo box
40941              * @param {Roo.data.Record} record The data record returned from the underlying store
40942              * @param {Number} index The index of the selected item in the dropdown list
40943              */
40944         'beforeselect' : true,
40945         /**
40946          * @event select
40947          * Fires when a list item is selected
40948              * @param {Roo.form.ComboBox} combo This combo box
40949              * @param {Roo.data.Record} record The data record returned from the underlying store (or false on clear)
40950              * @param {Number} index The index of the selected item in the dropdown list
40951              */
40952         'select' : true,
40953         /**
40954          * @event beforequery
40955          * Fires before all queries are processed. Return false to cancel the query or set cancel to true.
40956          * The event object passed has these properties:
40957              * @param {Roo.form.ComboBox} combo This combo box
40958              * @param {String} query The query
40959              * @param {Boolean} forceAll true to force "all" query
40960              * @param {Boolean} cancel true to cancel the query
40961              * @param {Object} e The query event object
40962              */
40963         'beforequery': true,
40964          /**
40965          * @event add
40966          * Fires when the 'add' icon is pressed (add a listener to enable add button)
40967              * @param {Roo.form.ComboBox} combo This combo box
40968              */
40969         'add' : true,
40970         /**
40971          * @event edit
40972          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
40973              * @param {Roo.form.ComboBox} combo This combo box
40974              * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
40975              */
40976         'edit' : true
40977         
40978         
40979     });
40980     if(this.transform){
40981         this.allowDomMove = false;
40982         var s = Roo.getDom(this.transform);
40983         if(!this.hiddenName){
40984             this.hiddenName = s.name;
40985         }
40986         if(!this.store){
40987             this.mode = 'local';
40988             var d = [], opts = s.options;
40989             for(var i = 0, len = opts.length;i < len; i++){
40990                 var o = opts[i];
40991                 var value = (Roo.isIE ? o.getAttributeNode('value').specified : o.hasAttribute('value')) ? o.value : o.text;
40992                 if(o.selected) {
40993                     this.value = value;
40994                 }
40995                 d.push([value, o.text]);
40996             }
40997             this.store = new Roo.data.SimpleStore({
40998                 'id': 0,
40999                 fields: ['value', 'text'],
41000                 data : d
41001             });
41002             this.valueField = 'value';
41003             this.displayField = 'text';
41004         }
41005         s.name = Roo.id(); // wipe out the name in case somewhere else they have a reference
41006         if(!this.lazyRender){
41007             this.target = true;
41008             this.el = Roo.DomHelper.insertBefore(s, this.autoCreate || this.defaultAutoCreate);
41009             s.parentNode.removeChild(s); // remove it
41010             this.render(this.el.parentNode);
41011         }else{
41012             s.parentNode.removeChild(s); // remove it
41013         }
41014
41015     }
41016     if (this.store) {
41017         this.store = Roo.factory(this.store, Roo.data);
41018     }
41019     
41020     this.selectedIndex = -1;
41021     if(this.mode == 'local'){
41022         if(config.queryDelay === undefined){
41023             this.queryDelay = 10;
41024         }
41025         if(config.minChars === undefined){
41026             this.minChars = 0;
41027         }
41028     }
41029 };
41030
41031 Roo.extend(Roo.form.ComboBox, Roo.form.TriggerField, {
41032     /**
41033      * @cfg {String/HTMLElement/Element} transform The id, DOM node or element of an existing select to convert to a ComboBox
41034      */
41035     /**
41036      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
41037      * rendering into an Roo.Editor, defaults to false)
41038      */
41039     /**
41040      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
41041      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
41042      */
41043     /**
41044      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
41045      */
41046     /**
41047      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
41048      * the dropdown list (defaults to undefined, with no header element)
41049      */
41050
41051      /**
41052      * @cfg {String/Roo.Template} tpl The template to use to render the output
41053      */
41054      
41055     // private
41056     defaultAutoCreate : {tag: "input", type: "text", size: "24", autocomplete: "off"},
41057     /**
41058      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
41059      */
41060     listWidth: undefined,
41061     /**
41062      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
41063      * mode = 'remote' or 'text' if mode = 'local')
41064      */
41065     displayField: undefined,
41066     /**
41067      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
41068      * mode = 'remote' or 'value' if mode = 'local'). 
41069      * Note: use of a valueField requires the user make a selection
41070      * in order for a value to be mapped.
41071      */
41072     valueField: undefined,
41073     
41074     
41075     /**
41076      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
41077      * field's data value (defaults to the underlying DOM element's name)
41078      */
41079     hiddenName: undefined,
41080     /**
41081      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
41082      */
41083     listClass: '',
41084     /**
41085      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
41086      */
41087     selectedClass: 'x-combo-selected',
41088     /**
41089      * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
41090      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-arrow-trigger'
41091      * which displays a downward arrow icon).
41092      */
41093     triggerClass : 'x-form-arrow-trigger',
41094     /**
41095      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
41096      */
41097     shadow:'sides',
41098     /**
41099      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
41100      * anchor positions (defaults to 'tl-bl')
41101      */
41102     listAlign: 'tl-bl?',
41103     /**
41104      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
41105      */
41106     maxHeight: 300,
41107     /**
41108      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
41109      * query specified by the allQuery config option (defaults to 'query')
41110      */
41111     triggerAction: 'query',
41112     /**
41113      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
41114      * (defaults to 4, does not apply if editable = false)
41115      */
41116     minChars : 4,
41117     /**
41118      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
41119      * delay (typeAheadDelay) if it matches a known value (defaults to false)
41120      */
41121     typeAhead: false,
41122     /**
41123      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
41124      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
41125      */
41126     queryDelay: 500,
41127     /**
41128      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
41129      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
41130      */
41131     pageSize: 0,
41132     /**
41133      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
41134      * when editable = true (defaults to false)
41135      */
41136     selectOnFocus:false,
41137     /**
41138      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
41139      */
41140     queryParam: 'query',
41141     /**
41142      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
41143      * when mode = 'remote' (defaults to 'Loading...')
41144      */
41145     loadingText: 'Loading...',
41146     /**
41147      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
41148      */
41149     resizable: false,
41150     /**
41151      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
41152      */
41153     handleHeight : 8,
41154     /**
41155      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
41156      * traditional select (defaults to true)
41157      */
41158     editable: true,
41159     /**
41160      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
41161      */
41162     allQuery: '',
41163     /**
41164      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
41165      */
41166     mode: 'remote',
41167     /**
41168      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
41169      * listWidth has a higher value)
41170      */
41171     minListWidth : 70,
41172     /**
41173      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
41174      * allow the user to set arbitrary text into the field (defaults to false)
41175      */
41176     forceSelection:false,
41177     /**
41178      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
41179      * if typeAhead = true (defaults to 250)
41180      */
41181     typeAheadDelay : 250,
41182     /**
41183      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
41184      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
41185      */
41186     valueNotFoundText : undefined,
41187     /**
41188      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
41189      */
41190     blockFocus : false,
41191     
41192     /**
41193      * @cfg {Boolean} disableClear Disable showing of clear button.
41194      */
41195     disableClear : false,
41196     /**
41197      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
41198      */
41199     alwaysQuery : false,
41200     
41201     //private
41202     addicon : false,
41203     editicon: false,
41204     
41205     // element that contains real text value.. (when hidden is used..)
41206      
41207     // private
41208     onRender : function(ct, position){
41209         Roo.form.ComboBox.superclass.onRender.call(this, ct, position);
41210         if(this.hiddenName){
41211             this.hiddenField = this.el.insertSibling({tag:'input', type:'hidden', name: this.hiddenName, id:  (this.hiddenId||this.hiddenName)},
41212                     'before', true);
41213             this.hiddenField.value =
41214                 this.hiddenValue !== undefined ? this.hiddenValue :
41215                 this.value !== undefined ? this.value : '';
41216
41217             // prevent input submission
41218             this.el.dom.removeAttribute('name');
41219              
41220              
41221         }
41222         if(Roo.isGecko){
41223             this.el.dom.setAttribute('autocomplete', 'off');
41224         }
41225
41226         var cls = 'x-combo-list';
41227
41228         this.list = new Roo.Layer({
41229             shadow: this.shadow, cls: [cls, this.listClass].join(' '), constrain:false
41230         });
41231
41232         var lw = this.listWidth || Math.max(this.wrap.getWidth(), this.minListWidth);
41233         this.list.setWidth(lw);
41234         this.list.swallowEvent('mousewheel');
41235         this.assetHeight = 0;
41236
41237         if(this.title){
41238             this.header = this.list.createChild({cls:cls+'-hd', html: this.title});
41239             this.assetHeight += this.header.getHeight();
41240         }
41241
41242         this.innerList = this.list.createChild({cls:cls+'-inner'});
41243         this.innerList.on('mouseover', this.onViewOver, this);
41244         this.innerList.on('mousemove', this.onViewMove, this);
41245         this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
41246         
41247         if(this.allowBlank && !this.pageSize && !this.disableClear){
41248             this.footer = this.list.createChild({cls:cls+'-ft'});
41249             this.pageTb = new Roo.Toolbar(this.footer);
41250            
41251         }
41252         if(this.pageSize){
41253             this.footer = this.list.createChild({cls:cls+'-ft'});
41254             this.pageTb = new Roo.PagingToolbar(this.footer, this.store,
41255                     {pageSize: this.pageSize});
41256             
41257         }
41258         
41259         if (this.pageTb && this.allowBlank && !this.disableClear) {
41260             var _this = this;
41261             this.pageTb.add(new Roo.Toolbar.Fill(), {
41262                 cls: 'x-btn-icon x-btn-clear',
41263                 text: '&#160;',
41264                 handler: function()
41265                 {
41266                     _this.collapse();
41267                     _this.clearValue();
41268                     _this.onSelect(false, -1);
41269                 }
41270             });
41271         }
41272         if (this.footer) {
41273             this.assetHeight += this.footer.getHeight();
41274         }
41275         
41276
41277         if(!this.tpl){
41278             this.tpl = '<div class="'+cls+'-item">{' + this.displayField + '}</div>';
41279         }
41280
41281         this.view = new Roo.View(this.innerList, this.tpl, {
41282             singleSelect:true, store: this.store, selectedClass: this.selectedClass
41283         });
41284
41285         this.view.on('click', this.onViewClick, this);
41286
41287         this.store.on('beforeload', this.onBeforeLoad, this);
41288         this.store.on('load', this.onLoad, this);
41289         this.store.on('loadexception', this.onLoadException, this);
41290
41291         if(this.resizable){
41292             this.resizer = new Roo.Resizable(this.list,  {
41293                pinned:true, handles:'se'
41294             });
41295             this.resizer.on('resize', function(r, w, h){
41296                 this.maxHeight = h-this.handleHeight-this.list.getFrameWidth('tb')-this.assetHeight;
41297                 this.listWidth = w;
41298                 this.innerList.setWidth(w - this.list.getFrameWidth('lr'));
41299                 this.restrictHeight();
41300             }, this);
41301             this[this.pageSize?'footer':'innerList'].setStyle('margin-bottom', this.handleHeight+'px');
41302         }
41303         if(!this.editable){
41304             this.editable = true;
41305             this.setEditable(false);
41306         }  
41307         
41308         
41309         if (typeof(this.events.add.listeners) != 'undefined') {
41310             
41311             this.addicon = this.wrap.createChild(
41312                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-add' });  
41313        
41314             this.addicon.on('click', function(e) {
41315                 this.fireEvent('add', this);
41316             }, this);
41317         }
41318         if (typeof(this.events.edit.listeners) != 'undefined') {
41319             
41320             this.editicon = this.wrap.createChild(
41321                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-edit' });  
41322             if (this.addicon) {
41323                 this.editicon.setStyle('margin-left', '40px');
41324             }
41325             this.editicon.on('click', function(e) {
41326                 
41327                 // we fire even  if inothing is selected..
41328                 this.fireEvent('edit', this, this.lastData );
41329                 
41330             }, this);
41331         }
41332         
41333         
41334         
41335     },
41336
41337     // private
41338     initEvents : function(){
41339         Roo.form.ComboBox.superclass.initEvents.call(this);
41340
41341         this.keyNav = new Roo.KeyNav(this.el, {
41342             "up" : function(e){
41343                 this.inKeyMode = true;
41344                 this.selectPrev();
41345             },
41346
41347             "down" : function(e){
41348                 if(!this.isExpanded()){
41349                     this.onTriggerClick();
41350                 }else{
41351                     this.inKeyMode = true;
41352                     this.selectNext();
41353                 }
41354             },
41355
41356             "enter" : function(e){
41357                 this.onViewClick();
41358                 //return true;
41359             },
41360
41361             "esc" : function(e){
41362                 this.collapse();
41363             },
41364
41365             "tab" : function(e){
41366                 this.onViewClick(false);
41367                 this.fireEvent("specialkey", this, e);
41368                 return true;
41369             },
41370
41371             scope : this,
41372
41373             doRelay : function(foo, bar, hname){
41374                 if(hname == 'down' || this.scope.isExpanded()){
41375                    return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
41376                 }
41377                 return true;
41378             },
41379
41380             forceKeyDown: true
41381         });
41382         this.queryDelay = Math.max(this.queryDelay || 10,
41383                 this.mode == 'local' ? 10 : 250);
41384         this.dqTask = new Roo.util.DelayedTask(this.initQuery, this);
41385         if(this.typeAhead){
41386             this.taTask = new Roo.util.DelayedTask(this.onTypeAhead, this);
41387         }
41388         if(this.editable !== false){
41389             this.el.on("keyup", this.onKeyUp, this);
41390         }
41391         if(this.forceSelection){
41392             this.on('blur', this.doForce, this);
41393         }
41394     },
41395
41396     onDestroy : function(){
41397         if(this.view){
41398             this.view.setStore(null);
41399             this.view.el.removeAllListeners();
41400             this.view.el.remove();
41401             this.view.purgeListeners();
41402         }
41403         if(this.list){
41404             this.list.destroy();
41405         }
41406         if(this.store){
41407             this.store.un('beforeload', this.onBeforeLoad, this);
41408             this.store.un('load', this.onLoad, this);
41409             this.store.un('loadexception', this.onLoadException, this);
41410         }
41411         Roo.form.ComboBox.superclass.onDestroy.call(this);
41412     },
41413
41414     // private
41415     fireKey : function(e){
41416         if(e.isNavKeyPress() && !this.list.isVisible()){
41417             this.fireEvent("specialkey", this, e);
41418         }
41419     },
41420
41421     // private
41422     onResize: function(w, h){
41423         Roo.form.ComboBox.superclass.onResize.apply(this, arguments);
41424         
41425         if(typeof w != 'number'){
41426             // we do not handle it!?!?
41427             return;
41428         }
41429         var tw = this.trigger.getWidth();
41430         tw += this.addicon ? this.addicon.getWidth() : 0;
41431         tw += this.editicon ? this.editicon.getWidth() : 0;
41432         var x = w - tw;
41433         this.el.setWidth( this.adjustWidth('input', x));
41434             
41435         this.trigger.setStyle('left', x+'px');
41436         
41437         if(this.list && this.listWidth === undefined){
41438             var lw = Math.max(x + this.trigger.getWidth(), this.minListWidth);
41439             this.list.setWidth(lw);
41440             this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
41441         }
41442         
41443     
41444         
41445     },
41446
41447     /**
41448      * Allow or prevent the user from directly editing the field text.  If false is passed,
41449      * the user will only be able to select from the items defined in the dropdown list.  This method
41450      * is the runtime equivalent of setting the 'editable' config option at config time.
41451      * @param {Boolean} value True to allow the user to directly edit the field text
41452      */
41453     setEditable : function(value){
41454         if(value == this.editable){
41455             return;
41456         }
41457         this.editable = value;
41458         if(!value){
41459             this.el.dom.setAttribute('readOnly', true);
41460             this.el.on('mousedown', this.onTriggerClick,  this);
41461             this.el.addClass('x-combo-noedit');
41462         }else{
41463             this.el.dom.setAttribute('readOnly', false);
41464             this.el.un('mousedown', this.onTriggerClick,  this);
41465             this.el.removeClass('x-combo-noedit');
41466         }
41467     },
41468
41469     // private
41470     onBeforeLoad : function(){
41471         if(!this.hasFocus){
41472             return;
41473         }
41474         this.innerList.update(this.loadingText ?
41475                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
41476         this.restrictHeight();
41477         this.selectedIndex = -1;
41478     },
41479
41480     // private
41481     onLoad : function(){
41482         if(!this.hasFocus){
41483             return;
41484         }
41485         if(this.store.getCount() > 0){
41486             this.expand();
41487             this.restrictHeight();
41488             if(this.lastQuery == this.allQuery){
41489                 if(this.editable){
41490                     this.el.dom.select();
41491                 }
41492                 if(!this.selectByValue(this.value, true)){
41493                     this.select(0, true);
41494                 }
41495             }else{
41496                 this.selectNext();
41497                 if(this.typeAhead && this.lastKey != Roo.EventObject.BACKSPACE && this.lastKey != Roo.EventObject.DELETE){
41498                     this.taTask.delay(this.typeAheadDelay);
41499                 }
41500             }
41501         }else{
41502             this.onEmptyResults();
41503         }
41504         //this.el.focus();
41505     },
41506     // private
41507     onLoadException : function()
41508     {
41509         this.collapse();
41510         Roo.log(this.store.reader.jsonData);
41511         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
41512             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
41513         }
41514         
41515         
41516     },
41517     // private
41518     onTypeAhead : function(){
41519         if(this.store.getCount() > 0){
41520             var r = this.store.getAt(0);
41521             var newValue = r.data[this.displayField];
41522             var len = newValue.length;
41523             var selStart = this.getRawValue().length;
41524             if(selStart != len){
41525                 this.setRawValue(newValue);
41526                 this.selectText(selStart, newValue.length);
41527             }
41528         }
41529     },
41530
41531     // private
41532     onSelect : function(record, index){
41533         if(this.fireEvent('beforeselect', this, record, index) !== false){
41534             this.setFromData(index > -1 ? record.data : false);
41535             this.collapse();
41536             this.fireEvent('select', this, record, index);
41537         }
41538     },
41539
41540     /**
41541      * Returns the currently selected field value or empty string if no value is set.
41542      * @return {String} value The selected value
41543      */
41544     getValue : function(){
41545         if(this.valueField){
41546             return typeof this.value != 'undefined' ? this.value : '';
41547         }
41548         return Roo.form.ComboBox.superclass.getValue.call(this);
41549     },
41550
41551     /**
41552      * Clears any text/value currently set in the field
41553      */
41554     clearValue : function(){
41555         if(this.hiddenField){
41556             this.hiddenField.value = '';
41557         }
41558         this.value = '';
41559         this.setRawValue('');
41560         this.lastSelectionText = '';
41561         
41562     },
41563
41564     /**
41565      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
41566      * will be displayed in the field.  If the value does not match the data value of an existing item,
41567      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
41568      * Otherwise the field will be blank (although the value will still be set).
41569      * @param {String} value The value to match
41570      */
41571     setValue : function(v){
41572         var text = v;
41573         if(this.valueField){
41574             var r = this.findRecord(this.valueField, v);
41575             if(r){
41576                 text = r.data[this.displayField];
41577             }else if(this.valueNotFoundText !== undefined){
41578                 text = this.valueNotFoundText;
41579             }
41580         }
41581         this.lastSelectionText = text;
41582         if(this.hiddenField){
41583             this.hiddenField.value = v;
41584         }
41585         Roo.form.ComboBox.superclass.setValue.call(this, text);
41586         this.value = v;
41587     },
41588     /**
41589      * @property {Object} the last set data for the element
41590      */
41591     
41592     lastData : false,
41593     /**
41594      * Sets the value of the field based on a object which is related to the record format for the store.
41595      * @param {Object} value the value to set as. or false on reset?
41596      */
41597     setFromData : function(o){
41598         var dv = ''; // display value
41599         var vv = ''; // value value..
41600         this.lastData = o;
41601         if (this.displayField) {
41602             dv = !o || typeof(o[this.displayField]) == 'undefined' ? '' : o[this.displayField];
41603         } else {
41604             // this is an error condition!!!
41605             Roo.log('no  displayField value set for '+ (this.name ? this.name : this.id));
41606         }
41607         
41608         if(this.valueField){
41609             vv = !o || typeof(o[this.valueField]) == 'undefined' ? dv : o[this.valueField];
41610         }
41611         if(this.hiddenField){
41612             this.hiddenField.value = vv;
41613             
41614             this.lastSelectionText = dv;
41615             Roo.form.ComboBox.superclass.setValue.call(this, dv);
41616             this.value = vv;
41617             return;
41618         }
41619         // no hidden field.. - we store the value in 'value', but still display
41620         // display field!!!!
41621         this.lastSelectionText = dv;
41622         Roo.form.ComboBox.superclass.setValue.call(this, dv);
41623         this.value = vv;
41624         
41625         
41626     },
41627     // private
41628     reset : function(){
41629         // overridden so that last data is reset..
41630         this.setValue(this.resetValue);
41631         this.originalValue = this.getValue();
41632         this.clearInvalid();
41633         this.lastData = false;
41634         if (this.view) {
41635             this.view.clearSelections();
41636         }
41637     },
41638     // private
41639     findRecord : function(prop, value){
41640         var record;
41641         if(this.store.getCount() > 0){
41642             this.store.each(function(r){
41643                 if(r.data[prop] == value){
41644                     record = r;
41645                     return false;
41646                 }
41647                 return true;
41648             });
41649         }
41650         return record;
41651     },
41652     
41653     getName: function()
41654     {
41655         // returns hidden if it's set..
41656         if (!this.rendered) {return ''};
41657         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
41658         
41659     },
41660     // private
41661     onViewMove : function(e, t){
41662         this.inKeyMode = false;
41663     },
41664
41665     // private
41666     onViewOver : function(e, t){
41667         if(this.inKeyMode){ // prevent key nav and mouse over conflicts
41668             return;
41669         }
41670         var item = this.view.findItemFromChild(t);
41671         if(item){
41672             var index = this.view.indexOf(item);
41673             this.select(index, false);
41674         }
41675     },
41676
41677     // private
41678     onViewClick : function(doFocus)
41679     {
41680         var index = this.view.getSelectedIndexes()[0];
41681         var r = this.store.getAt(index);
41682         if(r){
41683             this.onSelect(r, index);
41684         }
41685         if(doFocus !== false && !this.blockFocus){
41686             this.el.focus();
41687         }
41688     },
41689
41690     // private
41691     restrictHeight : function(){
41692         this.innerList.dom.style.height = '';
41693         var inner = this.innerList.dom;
41694         var h = Math.max(inner.clientHeight, inner.offsetHeight, inner.scrollHeight);
41695         this.innerList.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
41696         this.list.beginUpdate();
41697         this.list.setHeight(this.innerList.getHeight()+this.list.getFrameWidth('tb')+(this.resizable?this.handleHeight:0)+this.assetHeight);
41698         this.list.alignTo(this.el, this.listAlign);
41699         this.list.endUpdate();
41700     },
41701
41702     // private
41703     onEmptyResults : function(){
41704         this.collapse();
41705     },
41706
41707     /**
41708      * Returns true if the dropdown list is expanded, else false.
41709      */
41710     isExpanded : function(){
41711         return this.list.isVisible();
41712     },
41713
41714     /**
41715      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
41716      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
41717      * @param {String} value The data value of the item to select
41718      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
41719      * selected item if it is not currently in view (defaults to true)
41720      * @return {Boolean} True if the value matched an item in the list, else false
41721      */
41722     selectByValue : function(v, scrollIntoView){
41723         if(v !== undefined && v !== null){
41724             var r = this.findRecord(this.valueField || this.displayField, v);
41725             if(r){
41726                 this.select(this.store.indexOf(r), scrollIntoView);
41727                 return true;
41728             }
41729         }
41730         return false;
41731     },
41732
41733     /**
41734      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
41735      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
41736      * @param {Number} index The zero-based index of the list item to select
41737      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
41738      * selected item if it is not currently in view (defaults to true)
41739      */
41740     select : function(index, scrollIntoView){
41741         this.selectedIndex = index;
41742         this.view.select(index);
41743         if(scrollIntoView !== false){
41744             var el = this.view.getNode(index);
41745             if(el){
41746                 this.innerList.scrollChildIntoView(el, false);
41747             }
41748         }
41749     },
41750
41751     // private
41752     selectNext : function(){
41753         var ct = this.store.getCount();
41754         if(ct > 0){
41755             if(this.selectedIndex == -1){
41756                 this.select(0);
41757             }else if(this.selectedIndex < ct-1){
41758                 this.select(this.selectedIndex+1);
41759             }
41760         }
41761     },
41762
41763     // private
41764     selectPrev : function(){
41765         var ct = this.store.getCount();
41766         if(ct > 0){
41767             if(this.selectedIndex == -1){
41768                 this.select(0);
41769             }else if(this.selectedIndex != 0){
41770                 this.select(this.selectedIndex-1);
41771             }
41772         }
41773     },
41774
41775     // private
41776     onKeyUp : function(e){
41777         if(this.editable !== false && !e.isSpecialKey()){
41778             this.lastKey = e.getKey();
41779             this.dqTask.delay(this.queryDelay);
41780         }
41781     },
41782
41783     // private
41784     validateBlur : function(){
41785         return !this.list || !this.list.isVisible();   
41786     },
41787
41788     // private
41789     initQuery : function(){
41790         this.doQuery(this.getRawValue());
41791     },
41792
41793     // private
41794     doForce : function(){
41795         if(this.el.dom.value.length > 0){
41796             this.el.dom.value =
41797                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
41798              
41799         }
41800     },
41801
41802     /**
41803      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
41804      * query allowing the query action to be canceled if needed.
41805      * @param {String} query The SQL query to execute
41806      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
41807      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
41808      * saved in the current store (defaults to false)
41809      */
41810     doQuery : function(q, forceAll){
41811         if(q === undefined || q === null){
41812             q = '';
41813         }
41814         var qe = {
41815             query: q,
41816             forceAll: forceAll,
41817             combo: this,
41818             cancel:false
41819         };
41820         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
41821             return false;
41822         }
41823         q = qe.query;
41824         forceAll = qe.forceAll;
41825         if(forceAll === true || (q.length >= this.minChars)){
41826             if(this.lastQuery != q || this.alwaysQuery){
41827                 this.lastQuery = q;
41828                 if(this.mode == 'local'){
41829                     this.selectedIndex = -1;
41830                     if(forceAll){
41831                         this.store.clearFilter();
41832                     }else{
41833                         this.store.filter(this.displayField, q);
41834                     }
41835                     this.onLoad();
41836                 }else{
41837                     this.store.baseParams[this.queryParam] = q;
41838                     this.store.load({
41839                         params: this.getParams(q)
41840                     });
41841                     this.expand();
41842                 }
41843             }else{
41844                 this.selectedIndex = -1;
41845                 this.onLoad();   
41846             }
41847         }
41848     },
41849
41850     // private
41851     getParams : function(q){
41852         var p = {};
41853         //p[this.queryParam] = q;
41854         if(this.pageSize){
41855             p.start = 0;
41856             p.limit = this.pageSize;
41857         }
41858         return p;
41859     },
41860
41861     /**
41862      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
41863      */
41864     collapse : function(){
41865         if(!this.isExpanded()){
41866             return;
41867         }
41868         this.list.hide();
41869         Roo.get(document).un('mousedown', this.collapseIf, this);
41870         Roo.get(document).un('mousewheel', this.collapseIf, this);
41871         if (!this.editable) {
41872             Roo.get(document).un('keydown', this.listKeyPress, this);
41873         }
41874         this.fireEvent('collapse', this);
41875     },
41876
41877     // private
41878     collapseIf : function(e){
41879         if(!e.within(this.wrap) && !e.within(this.list)){
41880             this.collapse();
41881         }
41882     },
41883
41884     /**
41885      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
41886      */
41887     expand : function(){
41888         if(this.isExpanded() || !this.hasFocus){
41889             return;
41890         }
41891         this.list.alignTo(this.el, this.listAlign);
41892         this.list.show();
41893         Roo.get(document).on('mousedown', this.collapseIf, this);
41894         Roo.get(document).on('mousewheel', this.collapseIf, this);
41895         if (!this.editable) {
41896             Roo.get(document).on('keydown', this.listKeyPress, this);
41897         }
41898         
41899         this.fireEvent('expand', this);
41900     },
41901
41902     // private
41903     // Implements the default empty TriggerField.onTriggerClick function
41904     onTriggerClick : function(){
41905         if(this.disabled){
41906             return;
41907         }
41908         if(this.isExpanded()){
41909             this.collapse();
41910             if (!this.blockFocus) {
41911                 this.el.focus();
41912             }
41913             
41914         }else {
41915             this.hasFocus = true;
41916             if(this.triggerAction == 'all') {
41917                 this.doQuery(this.allQuery, true);
41918             } else {
41919                 this.doQuery(this.getRawValue());
41920             }
41921             if (!this.blockFocus) {
41922                 this.el.focus();
41923             }
41924         }
41925     },
41926     listKeyPress : function(e)
41927     {
41928         //Roo.log('listkeypress');
41929         // scroll to first matching element based on key pres..
41930         if (e.isSpecialKey()) {
41931             return false;
41932         }
41933         var k = String.fromCharCode(e.getKey()).toUpperCase();
41934         //Roo.log(k);
41935         var match  = false;
41936         var csel = this.view.getSelectedNodes();
41937         var cselitem = false;
41938         if (csel.length) {
41939             var ix = this.view.indexOf(csel[0]);
41940             cselitem  = this.store.getAt(ix);
41941             if (!cselitem.get(this.displayField) || cselitem.get(this.displayField).substring(0,1).toUpperCase() != k) {
41942                 cselitem = false;
41943             }
41944             
41945         }
41946         
41947         this.store.each(function(v) { 
41948             if (cselitem) {
41949                 // start at existing selection.
41950                 if (cselitem.id == v.id) {
41951                     cselitem = false;
41952                 }
41953                 return;
41954             }
41955                 
41956             if (v.get(this.displayField) && v.get(this.displayField).substring(0,1).toUpperCase() == k) {
41957                 match = this.store.indexOf(v);
41958                 return false;
41959             }
41960         }, this);
41961         
41962         if (match === false) {
41963             return true; // no more action?
41964         }
41965         // scroll to?
41966         this.view.select(match);
41967         var sn = Roo.get(this.view.getSelectedNodes()[0]);
41968         sn.scrollIntoView(sn.dom.parentNode, false);
41969     }
41970
41971     /** 
41972     * @cfg {Boolean} grow 
41973     * @hide 
41974     */
41975     /** 
41976     * @cfg {Number} growMin 
41977     * @hide 
41978     */
41979     /** 
41980     * @cfg {Number} growMax 
41981     * @hide 
41982     */
41983     /**
41984      * @hide
41985      * @method autoSize
41986      */
41987 });/*
41988  * Copyright(c) 2010-2012, Roo J Solutions Limited
41989  *
41990  * Licence LGPL
41991  *
41992  */
41993
41994 /**
41995  * @class Roo.form.ComboBoxArray
41996  * @extends Roo.form.TextField
41997  * A facebook style adder... for lists of email / people / countries  etc...
41998  * pick multiple items from a combo box, and shows each one.
41999  *
42000  *  Fred [x]  Brian [x]  [Pick another |v]
42001  *
42002  *
42003  *  For this to work: it needs various extra information
42004  *    - normal combo problay has
42005  *      name, hiddenName
42006  *    + displayField, valueField
42007  *
42008  *    For our purpose...
42009  *
42010  *
42011  *   If we change from 'extends' to wrapping...
42012  *   
42013  *  
42014  *
42015  
42016  
42017  * @constructor
42018  * Create a new ComboBoxArray.
42019  * @param {Object} config Configuration options
42020  */
42021  
42022
42023 Roo.form.ComboBoxArray = function(config)
42024 {
42025     this.addEvents({
42026         /**
42027          * @event beforeremove
42028          * Fires before remove the value from the list
42029              * @param {Roo.form.ComboBoxArray} _self This combo box array
42030              * @param {Roo.form.ComboBoxArray.Item} item removed item
42031              */
42032         'beforeremove' : true,
42033         /**
42034          * @event remove
42035          * Fires when remove the value from the list
42036              * @param {Roo.form.ComboBoxArray} _self This combo box array
42037              * @param {Roo.form.ComboBoxArray.Item} item removed item
42038              */
42039         'remove' : true
42040         
42041         
42042     });
42043     
42044     Roo.form.ComboBoxArray.superclass.constructor.call(this, config);
42045     
42046     this.items = new Roo.util.MixedCollection(false);
42047     
42048     // construct the child combo...
42049     
42050     
42051     
42052     
42053    
42054     
42055 }
42056
42057  
42058 Roo.extend(Roo.form.ComboBoxArray, Roo.form.TextField,
42059
42060     /**
42061      * @cfg {Roo.form.Combo} combo The combo box that is wrapped
42062      */
42063     
42064     lastData : false,
42065     
42066     // behavies liek a hiddne field
42067     inputType:      'hidden',
42068     /**
42069      * @cfg {Number} width The width of the box that displays the selected element
42070      */ 
42071     width:          300,
42072
42073     
42074     
42075     /**
42076      * @cfg {String} name    The name of the visable items on this form (eg. titles not ids)
42077      */
42078     name : false,
42079     /**
42080      * @cfg {String} hiddenName    The hidden name of the field, often contains an comma seperated list of names
42081      */
42082     hiddenName : false,
42083     
42084     
42085     // private the array of items that are displayed..
42086     items  : false,
42087     // private - the hidden field el.
42088     hiddenEl : false,
42089     // private - the filed el..
42090     el : false,
42091     
42092     //validateValue : function() { return true; }, // all values are ok!
42093     //onAddClick: function() { },
42094     
42095     onRender : function(ct, position) 
42096     {
42097         
42098         // create the standard hidden element
42099         //Roo.form.ComboBoxArray.superclass.onRender.call(this, ct, position);
42100         
42101         
42102         // give fake names to child combo;
42103         this.combo.hiddenName = this.hiddenName ? (this.hiddenName+'-subcombo') : this.hiddenName;
42104         this.combo.name = this.name? (this.name+'-subcombo') : this.name;
42105         
42106         this.combo = Roo.factory(this.combo, Roo.form);
42107         this.combo.onRender(ct, position);
42108         if (typeof(this.combo.width) != 'undefined') {
42109             this.combo.onResize(this.combo.width,0);
42110         }
42111         
42112         this.combo.initEvents();
42113         
42114         // assigned so form know we need to do this..
42115         this.store          = this.combo.store;
42116         this.valueField     = this.combo.valueField;
42117         this.displayField   = this.combo.displayField ;
42118         
42119         
42120         this.combo.wrap.addClass('x-cbarray-grp');
42121         
42122         var cbwrap = this.combo.wrap.createChild(
42123             {tag: 'div', cls: 'x-cbarray-cb'},
42124             this.combo.el.dom
42125         );
42126         
42127              
42128         this.hiddenEl = this.combo.wrap.createChild({
42129             tag: 'input',  type:'hidden' , name: this.hiddenName, value : ''
42130         });
42131         this.el = this.combo.wrap.createChild({
42132             tag: 'input',  type:'hidden' , name: this.name, value : ''
42133         });
42134          //   this.el.dom.removeAttribute("name");
42135         
42136         
42137         this.outerWrap = this.combo.wrap;
42138         this.wrap = cbwrap;
42139         
42140         this.outerWrap.setWidth(this.width);
42141         this.outerWrap.dom.removeChild(this.el.dom);
42142         
42143         this.wrap.dom.appendChild(this.el.dom);
42144         this.outerWrap.dom.removeChild(this.combo.trigger.dom);
42145         this.combo.wrap.dom.appendChild(this.combo.trigger.dom);
42146         
42147         this.combo.trigger.setStyle('position','relative');
42148         this.combo.trigger.setStyle('left', '0px');
42149         this.combo.trigger.setStyle('top', '2px');
42150         
42151         this.combo.el.setStyle('vertical-align', 'text-bottom');
42152         
42153         //this.trigger.setStyle('vertical-align', 'top');
42154         
42155         // this should use the code from combo really... on('add' ....)
42156         if (this.adder) {
42157             
42158         
42159             this.adder = this.outerWrap.createChild(
42160                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-adder', style: 'margin-left:2px'});  
42161             var _t = this;
42162             this.adder.on('click', function(e) {
42163                 _t.fireEvent('adderclick', this, e);
42164             }, _t);
42165         }
42166         //var _t = this;
42167         //this.adder.on('click', this.onAddClick, _t);
42168         
42169         
42170         this.combo.on('select', function(cb, rec, ix) {
42171             this.addItem(rec.data);
42172             
42173             cb.setValue('');
42174             cb.el.dom.value = '';
42175             //cb.lastData = rec.data;
42176             // add to list
42177             
42178         }, this);
42179         
42180         
42181     },
42182     
42183     
42184     getName: function()
42185     {
42186         // returns hidden if it's set..
42187         if (!this.rendered) {return ''};
42188         return  this.hiddenName ? this.hiddenName : this.name;
42189         
42190     },
42191     
42192     
42193     onResize: function(w, h){
42194         
42195         return;
42196         // not sure if this is needed..
42197         //this.combo.onResize(w,h);
42198         
42199         if(typeof w != 'number'){
42200             // we do not handle it!?!?
42201             return;
42202         }
42203         var tw = this.combo.trigger.getWidth();
42204         tw += this.addicon ? this.addicon.getWidth() : 0;
42205         tw += this.editicon ? this.editicon.getWidth() : 0;
42206         var x = w - tw;
42207         this.combo.el.setWidth( this.combo.adjustWidth('input', x));
42208             
42209         this.combo.trigger.setStyle('left', '0px');
42210         
42211         if(this.list && this.listWidth === undefined){
42212             var lw = Math.max(x + this.combo.trigger.getWidth(), this.combo.minListWidth);
42213             this.list.setWidth(lw);
42214             this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
42215         }
42216         
42217     
42218         
42219     },
42220     
42221     addItem: function(rec)
42222     {
42223         var valueField = this.combo.valueField;
42224         var displayField = this.combo.displayField;
42225         if (this.items.indexOfKey(rec[valueField]) > -1) {
42226             //console.log("GOT " + rec.data.id);
42227             return;
42228         }
42229         
42230         var x = new Roo.form.ComboBoxArray.Item({
42231             //id : rec[this.idField],
42232             data : rec,
42233             displayField : displayField ,
42234             tipField : displayField ,
42235             cb : this
42236         });
42237         // use the 
42238         this.items.add(rec[valueField],x);
42239         // add it before the element..
42240         this.updateHiddenEl();
42241         x.render(this.outerWrap, this.wrap.dom);
42242         // add the image handler..
42243     },
42244     
42245     updateHiddenEl : function()
42246     {
42247         this.validate();
42248         if (!this.hiddenEl) {
42249             return;
42250         }
42251         var ar = [];
42252         var idField = this.combo.valueField;
42253         
42254         this.items.each(function(f) {
42255             ar.push(f.data[idField]);
42256            
42257         });
42258         this.hiddenEl.dom.value = ar.join(',');
42259         this.validate();
42260     },
42261     
42262     reset : function()
42263     {
42264         this.items.clear();
42265         
42266         Roo.each(this.outerWrap.select('.x-cbarray-item', true).elements, function(el){
42267            el.remove();
42268         });
42269         
42270         this.el.dom.value = '';
42271         if (this.hiddenEl) {
42272             this.hiddenEl.dom.value = '';
42273         }
42274         
42275     },
42276     getValue: function()
42277     {
42278         return this.hiddenEl ? this.hiddenEl.dom.value : '';
42279     },
42280     setValue: function(v) // not a valid action - must use addItems..
42281     {
42282          
42283         this.reset();
42284         
42285         
42286         
42287         if (this.store.isLocal && (typeof(v) == 'string')) {
42288             // then we can use the store to find the values..
42289             // comma seperated at present.. this needs to allow JSON based encoding..
42290             this.hiddenEl.value  = v;
42291             var v_ar = [];
42292             Roo.each(v.split(','), function(k) {
42293                 Roo.log("CHECK " + this.valueField + ',' + k);
42294                 var li = this.store.query(this.valueField, k);
42295                 if (!li.length) {
42296                     return;
42297                 }
42298                 var add = {};
42299                 add[this.valueField] = k;
42300                 add[this.displayField] = li.item(0).data[this.displayField];
42301                 
42302                 this.addItem(add);
42303             }, this) 
42304              
42305         }
42306         if (typeof(v) == 'object' ) {
42307             // then let's assume it's an array of objects..
42308             Roo.each(v, function(l) {
42309                 this.addItem(l);
42310             }, this);
42311              
42312         }
42313         
42314         
42315     },
42316     setFromData: function(v)
42317     {
42318         // this recieves an object, if setValues is called.
42319         this.reset();
42320         this.el.dom.value = v[this.displayField];
42321         this.hiddenEl.dom.value = v[this.valueField];
42322         if (typeof(v[this.valueField]) != 'string' || !v[this.valueField].length) {
42323             return;
42324         }
42325         var kv = v[this.valueField];
42326         var dv = v[this.displayField];
42327         kv = typeof(kv) != 'string' ? '' : kv;
42328         dv = typeof(dv) != 'string' ? '' : dv;
42329         
42330         
42331         var keys = kv.split(',');
42332         var display = dv.split(',');
42333         for (var i = 0 ; i < keys.length; i++) {
42334             
42335             add = {};
42336             add[this.valueField] = keys[i];
42337             add[this.displayField] = display[i];
42338             this.addItem(add);
42339         }
42340       
42341         
42342     },
42343     
42344     /**
42345      * Validates the combox array value
42346      * @return {Boolean} True if the value is valid, else false
42347      */
42348     validate : function(){
42349         if(this.disabled || this.validateValue(this.processValue(this.getValue()))){
42350             this.clearInvalid();
42351             return true;
42352         }
42353         return false;
42354     },
42355     
42356     validateValue : function(value){
42357         return Roo.form.ComboBoxArray.superclass.validateValue.call(this, this.getValue());
42358         
42359     },
42360     
42361     /*@
42362      * overide
42363      * 
42364      */
42365     isDirty : function() {
42366         if(this.disabled) {
42367             return false;
42368         }
42369         
42370         try {
42371             var d = Roo.decode(String(this.originalValue));
42372         } catch (e) {
42373             return String(this.getValue()) !== String(this.originalValue);
42374         }
42375         
42376         var originalValue = [];
42377         
42378         for (var i = 0; i < d.length; i++){
42379             originalValue.push(d[i][this.valueField]);
42380         }
42381         
42382         return String(this.getValue()) !== String(originalValue.join(','));
42383         
42384     }
42385     
42386 });
42387
42388
42389
42390 /**
42391  * @class Roo.form.ComboBoxArray.Item
42392  * @extends Roo.BoxComponent
42393  * A selected item in the list
42394  *  Fred [x]  Brian [x]  [Pick another |v]
42395  * 
42396  * @constructor
42397  * Create a new item.
42398  * @param {Object} config Configuration options
42399  */
42400  
42401 Roo.form.ComboBoxArray.Item = function(config) {
42402     config.id = Roo.id();
42403     Roo.form.ComboBoxArray.Item.superclass.constructor.call(this, config);
42404 }
42405
42406 Roo.extend(Roo.form.ComboBoxArray.Item, Roo.BoxComponent, {
42407     data : {},
42408     cb: false,
42409     displayField : false,
42410     tipField : false,
42411     
42412     
42413     defaultAutoCreate : {
42414         tag: 'div',
42415         cls: 'x-cbarray-item',
42416         cn : [ 
42417             { tag: 'div' },
42418             {
42419                 tag: 'img',
42420                 width:16,
42421                 height : 16,
42422                 src : Roo.BLANK_IMAGE_URL ,
42423                 align: 'center'
42424             }
42425         ]
42426         
42427     },
42428     
42429  
42430     onRender : function(ct, position)
42431     {
42432         Roo.form.Field.superclass.onRender.call(this, ct, position);
42433         
42434         if(!this.el){
42435             var cfg = this.getAutoCreate();
42436             this.el = ct.createChild(cfg, position);
42437         }
42438         
42439         this.el.child('img').dom.setAttribute('src', Roo.BLANK_IMAGE_URL);
42440         
42441         this.el.child('div').dom.innerHTML = this.cb.renderer ? 
42442             this.cb.renderer(this.data) :
42443             String.format('{0}',this.data[this.displayField]);
42444         
42445             
42446         this.el.child('div').dom.setAttribute('qtip',
42447                         String.format('{0}',this.data[this.tipField])
42448         );
42449         
42450         this.el.child('img').on('click', this.remove, this);
42451         
42452     },
42453    
42454     remove : function()
42455     {
42456         if(this.cb.disabled){
42457             return;
42458         }
42459         
42460         if(false !== this.cb.fireEvent('beforeremove', this.cb, this)){
42461             this.cb.items.remove(this);
42462             this.el.child('img').un('click', this.remove, this);
42463             this.el.remove();
42464             this.cb.updateHiddenEl();
42465
42466             this.cb.fireEvent('remove', this.cb, this);
42467         }
42468         
42469     }
42470 });/*
42471  * Based on:
42472  * Ext JS Library 1.1.1
42473  * Copyright(c) 2006-2007, Ext JS, LLC.
42474  *
42475  * Originally Released Under LGPL - original licence link has changed is not relivant.
42476  *
42477  * Fork - LGPL
42478  * <script type="text/javascript">
42479  */
42480 /**
42481  * @class Roo.form.Checkbox
42482  * @extends Roo.form.Field
42483  * Single checkbox field.  Can be used as a direct replacement for traditional checkbox fields.
42484  * @constructor
42485  * Creates a new Checkbox
42486  * @param {Object} config Configuration options
42487  */
42488 Roo.form.Checkbox = function(config){
42489     Roo.form.Checkbox.superclass.constructor.call(this, config);
42490     this.addEvents({
42491         /**
42492          * @event check
42493          * Fires when the checkbox is checked or unchecked.
42494              * @param {Roo.form.Checkbox} this This checkbox
42495              * @param {Boolean} checked The new checked value
42496              */
42497         check : true
42498     });
42499 };
42500
42501 Roo.extend(Roo.form.Checkbox, Roo.form.Field,  {
42502     /**
42503      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
42504      */
42505     focusClass : undefined,
42506     /**
42507      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
42508      */
42509     fieldClass: "x-form-field",
42510     /**
42511      * @cfg {Boolean} checked True if the the checkbox should render already checked (defaults to false)
42512      */
42513     checked: false,
42514     /**
42515      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
42516      * {tag: "input", type: "checkbox", autocomplete: "off"})
42517      */
42518     defaultAutoCreate : { tag: "input", type: 'hidden', autocomplete: "off"},
42519     /**
42520      * @cfg {String} boxLabel The text that appears beside the checkbox
42521      */
42522     boxLabel : "",
42523     /**
42524      * @cfg {String} inputValue The value that should go into the generated input element's value attribute
42525      */  
42526     inputValue : '1',
42527     /**
42528      * @cfg {String} valueOff The value that should go into the generated input element's value when unchecked.
42529      */
42530      valueOff: '0', // value when not checked..
42531
42532     actionMode : 'viewEl', 
42533     //
42534     // private
42535     itemCls : 'x-menu-check-item x-form-item',
42536     groupClass : 'x-menu-group-item',
42537     inputType : 'hidden',
42538     
42539     
42540     inSetChecked: false, // check that we are not calling self...
42541     
42542     inputElement: false, // real input element?
42543     basedOn: false, // ????
42544     
42545     isFormField: true, // not sure where this is needed!!!!
42546
42547     onResize : function(){
42548         Roo.form.Checkbox.superclass.onResize.apply(this, arguments);
42549         if(!this.boxLabel){
42550             this.el.alignTo(this.wrap, 'c-c');
42551         }
42552     },
42553
42554     initEvents : function(){
42555         Roo.form.Checkbox.superclass.initEvents.call(this);
42556         this.el.on("click", this.onClick,  this);
42557         this.el.on("change", this.onClick,  this);
42558     },
42559
42560
42561     getResizeEl : function(){
42562         return this.wrap;
42563     },
42564
42565     getPositionEl : function(){
42566         return this.wrap;
42567     },
42568
42569     // private
42570     onRender : function(ct, position){
42571         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
42572         /*
42573         if(this.inputValue !== undefined){
42574             this.el.dom.value = this.inputValue;
42575         }
42576         */
42577         //this.wrap = this.el.wrap({cls: "x-form-check-wrap"});
42578         this.wrap = this.el.wrap({cls: 'x-menu-check-item '});
42579         var viewEl = this.wrap.createChild({ 
42580             tag: 'img', cls: 'x-menu-item-icon', style: 'margin: 0px;' ,src : Roo.BLANK_IMAGE_URL });
42581         this.viewEl = viewEl;   
42582         this.wrap.on('click', this.onClick,  this); 
42583         
42584         this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
42585         this.el.on('propertychange', this.setFromHidden,  this);  //ie
42586         
42587         
42588         
42589         if(this.boxLabel){
42590             this.wrap.createChild({tag: 'label', htmlFor: this.el.id, cls: 'x-form-cb-label', html: this.boxLabel});
42591         //    viewEl.on('click', this.onClick,  this); 
42592         }
42593         //if(this.checked){
42594             this.setChecked(this.checked);
42595         //}else{
42596             //this.checked = this.el.dom;
42597         //}
42598
42599     },
42600
42601     // private
42602     initValue : Roo.emptyFn,
42603
42604     /**
42605      * Returns the checked state of the checkbox.
42606      * @return {Boolean} True if checked, else false
42607      */
42608     getValue : function(){
42609         if(this.el){
42610             return String(this.el.dom.value) == String(this.inputValue ) ? this.inputValue : this.valueOff;
42611         }
42612         return this.valueOff;
42613         
42614     },
42615
42616         // private
42617     onClick : function(){ 
42618         if (this.disabled) {
42619             return;
42620         }
42621         this.setChecked(!this.checked);
42622
42623         //if(this.el.dom.checked != this.checked){
42624         //    this.setValue(this.el.dom.checked);
42625        // }
42626     },
42627
42628     /**
42629      * Sets the checked state of the checkbox.
42630      * On is always based on a string comparison between inputValue and the param.
42631      * @param {Boolean/String} value - the value to set 
42632      * @param {Boolean/String} suppressEvent - whether to suppress the checkchange event.
42633      */
42634     setValue : function(v,suppressEvent){
42635         
42636         
42637         //this.checked = (v === true || v === 'true' || v == '1' || String(v).toLowerCase() == 'on');
42638         //if(this.el && this.el.dom){
42639         //    this.el.dom.checked = this.checked;
42640         //    this.el.dom.defaultChecked = this.checked;
42641         //}
42642         this.setChecked(String(v) === String(this.inputValue), suppressEvent);
42643         //this.fireEvent("check", this, this.checked);
42644     },
42645     // private..
42646     setChecked : function(state,suppressEvent)
42647     {
42648         if (this.inSetChecked) {
42649             this.checked = state;
42650             return;
42651         }
42652         
42653     
42654         if(this.wrap){
42655             this.wrap[state ? 'addClass' : 'removeClass']('x-menu-item-checked');
42656         }
42657         this.checked = state;
42658         if(suppressEvent !== true){
42659             this.fireEvent('check', this, state);
42660         }
42661         this.inSetChecked = true;
42662         this.el.dom.value = state ? this.inputValue : this.valueOff;
42663         this.inSetChecked = false;
42664         
42665     },
42666     // handle setting of hidden value by some other method!!?!?
42667     setFromHidden: function()
42668     {
42669         if(!this.el){
42670             return;
42671         }
42672         //console.log("SET FROM HIDDEN");
42673         //alert('setFrom hidden');
42674         this.setValue(this.el.dom.value);
42675     },
42676     
42677     onDestroy : function()
42678     {
42679         if(this.viewEl){
42680             Roo.get(this.viewEl).remove();
42681         }
42682          
42683         Roo.form.Checkbox.superclass.onDestroy.call(this);
42684     },
42685     
42686     setBoxLabel : function(str)
42687     {
42688         this.wrap.select('.x-form-cb-label', true).first().dom.innerHTML = str;
42689     }
42690
42691 });/*
42692  * Based on:
42693  * Ext JS Library 1.1.1
42694  * Copyright(c) 2006-2007, Ext JS, LLC.
42695  *
42696  * Originally Released Under LGPL - original licence link has changed is not relivant.
42697  *
42698  * Fork - LGPL
42699  * <script type="text/javascript">
42700  */
42701  
42702 /**
42703  * @class Roo.form.Radio
42704  * @extends Roo.form.Checkbox
42705  * Single radio field.  Same as Checkbox, but provided as a convenience for automatically setting the input type.
42706  * Radio grouping is handled automatically by the browser if you give each radio in a group the same name.
42707  * @constructor
42708  * Creates a new Radio
42709  * @param {Object} config Configuration options
42710  */
42711 Roo.form.Radio = function(){
42712     Roo.form.Radio.superclass.constructor.apply(this, arguments);
42713 };
42714 Roo.extend(Roo.form.Radio, Roo.form.Checkbox, {
42715     inputType: 'radio',
42716
42717     /**
42718      * If this radio is part of a group, it will return the selected value
42719      * @return {String}
42720      */
42721     getGroupValue : function(){
42722         return this.el.up('form').child('input[name='+this.el.dom.name+']:checked', true).value;
42723     },
42724     
42725     
42726     onRender : function(ct, position){
42727         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
42728         
42729         if(this.inputValue !== undefined){
42730             this.el.dom.value = this.inputValue;
42731         }
42732          
42733         this.wrap = this.el.wrap({cls: "x-form-check-wrap"});
42734         //this.wrap = this.el.wrap({cls: 'x-menu-check-item '});
42735         //var viewEl = this.wrap.createChild({ 
42736         //    tag: 'img', cls: 'x-menu-item-icon', style: 'margin: 0px;' ,src : Roo.BLANK_IMAGE_URL });
42737         //this.viewEl = viewEl;   
42738         //this.wrap.on('click', this.onClick,  this); 
42739         
42740         //this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
42741         //this.el.on('propertychange', this.setFromHidden,  this);  //ie
42742         
42743         
42744         
42745         if(this.boxLabel){
42746             this.wrap.createChild({tag: 'label', htmlFor: this.el.id, cls: 'x-form-cb-label', html: this.boxLabel});
42747         //    viewEl.on('click', this.onClick,  this); 
42748         }
42749          if(this.checked){
42750             this.el.dom.checked =   'checked' ;
42751         }
42752          
42753     } 
42754     
42755     
42756 });//<script type="text/javascript">
42757
42758 /*
42759  * Based  Ext JS Library 1.1.1
42760  * Copyright(c) 2006-2007, Ext JS, LLC.
42761  * LGPL
42762  *
42763  */
42764  
42765 /**
42766  * @class Roo.HtmlEditorCore
42767  * @extends Roo.Component
42768  * Provides a the editing component for the HTML editors in Roo. (bootstrap and Roo.form)
42769  *
42770  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
42771  */
42772
42773 Roo.HtmlEditorCore = function(config){
42774     
42775     
42776     Roo.HtmlEditorCore.superclass.constructor.call(this, config);
42777     
42778     
42779     this.addEvents({
42780         /**
42781          * @event initialize
42782          * Fires when the editor is fully initialized (including the iframe)
42783          * @param {Roo.HtmlEditorCore} this
42784          */
42785         initialize: true,
42786         /**
42787          * @event activate
42788          * Fires when the editor is first receives the focus. Any insertion must wait
42789          * until after this event.
42790          * @param {Roo.HtmlEditorCore} this
42791          */
42792         activate: true,
42793          /**
42794          * @event beforesync
42795          * Fires before the textarea is updated with content from the editor iframe. Return false
42796          * to cancel the sync.
42797          * @param {Roo.HtmlEditorCore} this
42798          * @param {String} html
42799          */
42800         beforesync: true,
42801          /**
42802          * @event beforepush
42803          * Fires before the iframe editor is updated with content from the textarea. Return false
42804          * to cancel the push.
42805          * @param {Roo.HtmlEditorCore} this
42806          * @param {String} html
42807          */
42808         beforepush: true,
42809          /**
42810          * @event sync
42811          * Fires when the textarea is updated with content from the editor iframe.
42812          * @param {Roo.HtmlEditorCore} this
42813          * @param {String} html
42814          */
42815         sync: true,
42816          /**
42817          * @event push
42818          * Fires when the iframe editor is updated with content from the textarea.
42819          * @param {Roo.HtmlEditorCore} this
42820          * @param {String} html
42821          */
42822         push: true,
42823         
42824         /**
42825          * @event editorevent
42826          * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
42827          * @param {Roo.HtmlEditorCore} this
42828          */
42829         editorevent: true
42830         
42831     });
42832     
42833     // at this point this.owner is set, so we can start working out the whitelisted / blacklisted elements
42834     
42835     // defaults : white / black...
42836     this.applyBlacklists();
42837     
42838     
42839     
42840 };
42841
42842
42843 Roo.extend(Roo.HtmlEditorCore, Roo.Component,  {
42844
42845
42846      /**
42847      * @cfg {Roo.form.HtmlEditor|Roo.bootstrap.HtmlEditor} the owner field 
42848      */
42849     
42850     owner : false,
42851     
42852      /**
42853      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
42854      *                        Roo.resizable.
42855      */
42856     resizable : false,
42857      /**
42858      * @cfg {Number} height (in pixels)
42859      */   
42860     height: 300,
42861    /**
42862      * @cfg {Number} width (in pixels)
42863      */   
42864     width: 500,
42865     
42866     /**
42867      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
42868      * 
42869      */
42870     stylesheets: false,
42871     
42872     // id of frame..
42873     frameId: false,
42874     
42875     // private properties
42876     validationEvent : false,
42877     deferHeight: true,
42878     initialized : false,
42879     activated : false,
42880     sourceEditMode : false,
42881     onFocus : Roo.emptyFn,
42882     iframePad:3,
42883     hideMode:'offsets',
42884     
42885     clearUp: true,
42886     
42887     // blacklist + whitelisted elements..
42888     black: false,
42889     white: false,
42890      
42891     bodyCls : '',
42892
42893     /**
42894      * Protected method that will not generally be called directly. It
42895      * is called when the editor initializes the iframe with HTML contents. Override this method if you
42896      * want to change the initialization markup of the iframe (e.g. to add stylesheets).
42897      */
42898     getDocMarkup : function(){
42899         // body styles..
42900         var st = '';
42901         
42902         // inherit styels from page...?? 
42903         if (this.stylesheets === false) {
42904             
42905             Roo.get(document.head).select('style').each(function(node) {
42906                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
42907             });
42908             
42909             Roo.get(document.head).select('link').each(function(node) { 
42910                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
42911             });
42912             
42913         } else if (!this.stylesheets.length) {
42914                 // simple..
42915                 st = '<style type="text/css">' +
42916                     'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
42917                    '</style>';
42918         } else { 
42919             st = '<style type="text/css">' +
42920                     this.stylesheets +
42921                 '</style>';
42922         }
42923         
42924         st +=  '<style type="text/css">' +
42925             'IMG { cursor: pointer } ' +
42926         '</style>';
42927
42928         var cls = 'roo-htmleditor-body';
42929         
42930         if(this.bodyCls.length){
42931             cls += ' ' + this.bodyCls;
42932         }
42933         
42934         return '<html><head>' + st  +
42935             //<style type="text/css">' +
42936             //'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
42937             //'</style>' +
42938             ' </head><body class="' +  cls + '"></body></html>';
42939     },
42940
42941     // private
42942     onRender : function(ct, position)
42943     {
42944         var _t = this;
42945         //Roo.HtmlEditorCore.superclass.onRender.call(this, ct, position);
42946         this.el = this.owner.inputEl ? this.owner.inputEl() : this.owner.el;
42947         
42948         
42949         this.el.dom.style.border = '0 none';
42950         this.el.dom.setAttribute('tabIndex', -1);
42951         this.el.addClass('x-hidden hide');
42952         
42953         
42954         
42955         if(Roo.isIE){ // fix IE 1px bogus margin
42956             this.el.applyStyles('margin-top:-1px;margin-bottom:-1px;')
42957         }
42958        
42959         
42960         this.frameId = Roo.id();
42961         
42962          
42963         
42964         var iframe = this.owner.wrap.createChild({
42965             tag: 'iframe',
42966             cls: 'form-control', // bootstrap..
42967             id: this.frameId,
42968             name: this.frameId,
42969             frameBorder : 'no',
42970             'src' : Roo.SSL_SECURE_URL ? Roo.SSL_SECURE_URL  :  "javascript:false"
42971         }, this.el
42972         );
42973         
42974         
42975         this.iframe = iframe.dom;
42976
42977          this.assignDocWin();
42978         
42979         this.doc.designMode = 'on';
42980        
42981         this.doc.open();
42982         this.doc.write(this.getDocMarkup());
42983         this.doc.close();
42984
42985         
42986         var task = { // must defer to wait for browser to be ready
42987             run : function(){
42988                 //console.log("run task?" + this.doc.readyState);
42989                 this.assignDocWin();
42990                 if(this.doc.body || this.doc.readyState == 'complete'){
42991                     try {
42992                         this.doc.designMode="on";
42993                     } catch (e) {
42994                         return;
42995                     }
42996                     Roo.TaskMgr.stop(task);
42997                     this.initEditor.defer(10, this);
42998                 }
42999             },
43000             interval : 10,
43001             duration: 10000,
43002             scope: this
43003         };
43004         Roo.TaskMgr.start(task);
43005
43006     },
43007
43008     // private
43009     onResize : function(w, h)
43010     {
43011          Roo.log('resize: ' +w + ',' + h );
43012         //Roo.HtmlEditorCore.superclass.onResize.apply(this, arguments);
43013         if(!this.iframe){
43014             return;
43015         }
43016         if(typeof w == 'number'){
43017             
43018             this.iframe.style.width = w + 'px';
43019         }
43020         if(typeof h == 'number'){
43021             
43022             this.iframe.style.height = h + 'px';
43023             if(this.doc){
43024                 (this.doc.body || this.doc.documentElement).style.height = (h - (this.iframePad*2)) + 'px';
43025             }
43026         }
43027         
43028     },
43029
43030     /**
43031      * Toggles the editor between standard and source edit mode.
43032      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
43033      */
43034     toggleSourceEdit : function(sourceEditMode){
43035         
43036         this.sourceEditMode = sourceEditMode === true;
43037         
43038         if(this.sourceEditMode){
43039  
43040             Roo.get(this.iframe).addClass(['x-hidden','hide']);     //FIXME - what's the BS styles for these
43041             
43042         }else{
43043             Roo.get(this.iframe).removeClass(['x-hidden','hide']);
43044             //this.iframe.className = '';
43045             this.deferFocus();
43046         }
43047         //this.setSize(this.owner.wrap.getSize());
43048         //this.fireEvent('editmodechange', this, this.sourceEditMode);
43049     },
43050
43051     
43052   
43053
43054     /**
43055      * Protected method that will not generally be called directly. If you need/want
43056      * custom HTML cleanup, this is the method you should override.
43057      * @param {String} html The HTML to be cleaned
43058      * return {String} The cleaned HTML
43059      */
43060     cleanHtml : function(html){
43061         html = String(html);
43062         if(html.length > 5){
43063             if(Roo.isSafari){ // strip safari nonsense
43064                 html = html.replace(/\sclass="(?:Apple-style-span|khtml-block-placeholder)"/gi, '');
43065             }
43066         }
43067         if(html == '&nbsp;'){
43068             html = '';
43069         }
43070         return html;
43071     },
43072
43073     /**
43074      * HTML Editor -> Textarea
43075      * Protected method that will not generally be called directly. Syncs the contents
43076      * of the editor iframe with the textarea.
43077      */
43078     syncValue : function(){
43079         if(this.initialized){
43080             var bd = (this.doc.body || this.doc.documentElement);
43081             //this.cleanUpPaste(); -- this is done else where and causes havoc..
43082             var html = bd.innerHTML;
43083             if(Roo.isSafari){
43084                 var bs = bd.getAttribute('style'); // Safari puts text-align styles on the body element!
43085                 var m = bs ? bs.match(/text-align:(.*?);/i) : false;
43086                 if(m && m[1]){
43087                     html = '<div style="'+m[0]+'">' + html + '</div>';
43088                 }
43089             }
43090             html = this.cleanHtml(html);
43091             // fix up the special chars.. normaly like back quotes in word...
43092             // however we do not want to do this with chinese..
43093             html = html.replace(/([\x80-\uffff])/g, function (a, b) {
43094                 var cc = b.charCodeAt();
43095                 if (
43096                     (cc >= 0x4E00 && cc < 0xA000 ) ||
43097                     (cc >= 0x3400 && cc < 0x4E00 ) ||
43098                     (cc >= 0xf900 && cc < 0xfb00 )
43099                 ) {
43100                         return b;
43101                 }
43102                 return "&#"+cc+";" 
43103             });
43104             if(this.owner.fireEvent('beforesync', this, html) !== false){
43105                 this.el.dom.value = html;
43106                 this.owner.fireEvent('sync', this, html);
43107             }
43108         }
43109     },
43110
43111     /**
43112      * Protected method that will not generally be called directly. Pushes the value of the textarea
43113      * into the iframe editor.
43114      */
43115     pushValue : function(){
43116         if(this.initialized){
43117             var v = this.el.dom.value.trim();
43118             
43119 //            if(v.length < 1){
43120 //                v = '&#160;';
43121 //            }
43122             
43123             if(this.owner.fireEvent('beforepush', this, v) !== false){
43124                 var d = (this.doc.body || this.doc.documentElement);
43125                 d.innerHTML = v;
43126                 this.cleanUpPaste();
43127                 this.el.dom.value = d.innerHTML;
43128                 this.owner.fireEvent('push', this, v);
43129             }
43130         }
43131     },
43132
43133     // private
43134     deferFocus : function(){
43135         this.focus.defer(10, this);
43136     },
43137
43138     // doc'ed in Field
43139     focus : function(){
43140         if(this.win && !this.sourceEditMode){
43141             this.win.focus();
43142         }else{
43143             this.el.focus();
43144         }
43145     },
43146     
43147     assignDocWin: function()
43148     {
43149         var iframe = this.iframe;
43150         
43151          if(Roo.isIE){
43152             this.doc = iframe.contentWindow.document;
43153             this.win = iframe.contentWindow;
43154         } else {
43155 //            if (!Roo.get(this.frameId)) {
43156 //                return;
43157 //            }
43158 //            this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
43159 //            this.win = Roo.get(this.frameId).dom.contentWindow;
43160             
43161             if (!Roo.get(this.frameId) && !iframe.contentDocument) {
43162                 return;
43163             }
43164             
43165             this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
43166             this.win = (iframe.contentWindow || Roo.get(this.frameId).dom.contentWindow);
43167         }
43168     },
43169     
43170     // private
43171     initEditor : function(){
43172         //console.log("INIT EDITOR");
43173         this.assignDocWin();
43174         
43175         
43176         
43177         this.doc.designMode="on";
43178         this.doc.open();
43179         this.doc.write(this.getDocMarkup());
43180         this.doc.close();
43181         
43182         var dbody = (this.doc.body || this.doc.documentElement);
43183         //var ss = this.el.getStyles('font-size', 'font-family', 'background-image', 'background-repeat');
43184         // this copies styles from the containing element into thsi one..
43185         // not sure why we need all of this..
43186         //var ss = this.el.getStyles('font-size', 'background-image', 'background-repeat');
43187         
43188         //var ss = this.el.getStyles( 'background-image', 'background-repeat');
43189         //ss['background-attachment'] = 'fixed'; // w3c
43190         dbody.bgProperties = 'fixed'; // ie
43191         //Roo.DomHelper.applyStyles(dbody, ss);
43192         Roo.EventManager.on(this.doc, {
43193             //'mousedown': this.onEditorEvent,
43194             'mouseup': this.onEditorEvent,
43195             'dblclick': this.onEditorEvent,
43196             'click': this.onEditorEvent,
43197             'keyup': this.onEditorEvent,
43198             buffer:100,
43199             scope: this
43200         });
43201         if(Roo.isGecko){
43202             Roo.EventManager.on(this.doc, 'keypress', this.mozKeyPress, this);
43203         }
43204         if(Roo.isIE || Roo.isSafari || Roo.isOpera){
43205             Roo.EventManager.on(this.doc, 'keydown', this.fixKeys, this);
43206         }
43207         this.initialized = true;
43208
43209         this.owner.fireEvent('initialize', this);
43210         this.pushValue();
43211     },
43212
43213     // private
43214     onDestroy : function(){
43215         
43216         
43217         
43218         if(this.rendered){
43219             
43220             //for (var i =0; i < this.toolbars.length;i++) {
43221             //    // fixme - ask toolbars for heights?
43222             //    this.toolbars[i].onDestroy();
43223            // }
43224             
43225             //this.wrap.dom.innerHTML = '';
43226             //this.wrap.remove();
43227         }
43228     },
43229
43230     // private
43231     onFirstFocus : function(){
43232         
43233         this.assignDocWin();
43234         
43235         
43236         this.activated = true;
43237          
43238     
43239         if(Roo.isGecko){ // prevent silly gecko errors
43240             this.win.focus();
43241             var s = this.win.getSelection();
43242             if(!s.focusNode || s.focusNode.nodeType != 3){
43243                 var r = s.getRangeAt(0);
43244                 r.selectNodeContents((this.doc.body || this.doc.documentElement));
43245                 r.collapse(true);
43246                 this.deferFocus();
43247             }
43248             try{
43249                 this.execCmd('useCSS', true);
43250                 this.execCmd('styleWithCSS', false);
43251             }catch(e){}
43252         }
43253         this.owner.fireEvent('activate', this);
43254     },
43255
43256     // private
43257     adjustFont: function(btn){
43258         var adjust = btn.cmd == 'increasefontsize' ? 1 : -1;
43259         //if(Roo.isSafari){ // safari
43260         //    adjust *= 2;
43261        // }
43262         var v = parseInt(this.doc.queryCommandValue('FontSize')|| 3, 10);
43263         if(Roo.isSafari){ // safari
43264             var sm = { 10 : 1, 13: 2, 16:3, 18:4, 24: 5, 32:6, 48: 7 };
43265             v =  (v < 10) ? 10 : v;
43266             v =  (v > 48) ? 48 : v;
43267             v = typeof(sm[v]) == 'undefined' ? 1 : sm[v];
43268             
43269         }
43270         
43271         
43272         v = Math.max(1, v+adjust);
43273         
43274         this.execCmd('FontSize', v  );
43275     },
43276
43277     onEditorEvent : function(e)
43278     {
43279         this.owner.fireEvent('editorevent', this, e);
43280       //  this.updateToolbar();
43281         this.syncValue(); //we can not sync so often.. sync cleans, so this breaks stuff
43282     },
43283
43284     insertTag : function(tg)
43285     {
43286         // could be a bit smarter... -> wrap the current selected tRoo..
43287         if (tg.toLowerCase() == 'span' || tg.toLowerCase() == 'code') {
43288             
43289             range = this.createRange(this.getSelection());
43290             var wrappingNode = this.doc.createElement(tg.toLowerCase());
43291             wrappingNode.appendChild(range.extractContents());
43292             range.insertNode(wrappingNode);
43293
43294             return;
43295             
43296             
43297             
43298         }
43299         this.execCmd("formatblock",   tg);
43300         
43301     },
43302     
43303     insertText : function(txt)
43304     {
43305         
43306         
43307         var range = this.createRange();
43308         range.deleteContents();
43309                //alert(Sender.getAttribute('label'));
43310                
43311         range.insertNode(this.doc.createTextNode(txt));
43312     } ,
43313     
43314      
43315
43316     /**
43317      * Executes a Midas editor command on the editor document and performs necessary focus and
43318      * toolbar updates. <b>This should only be called after the editor is initialized.</b>
43319      * @param {String} cmd The Midas command
43320      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
43321      */
43322     relayCmd : function(cmd, value){
43323         this.win.focus();
43324         this.execCmd(cmd, value);
43325         this.owner.fireEvent('editorevent', this);
43326         //this.updateToolbar();
43327         this.owner.deferFocus();
43328     },
43329
43330     /**
43331      * Executes a Midas editor command directly on the editor document.
43332      * For visual commands, you should use {@link #relayCmd} instead.
43333      * <b>This should only be called after the editor is initialized.</b>
43334      * @param {String} cmd The Midas command
43335      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
43336      */
43337     execCmd : function(cmd, value){
43338         this.doc.execCommand(cmd, false, value === undefined ? null : value);
43339         this.syncValue();
43340     },
43341  
43342  
43343    
43344     /**
43345      * Inserts the passed text at the current cursor position. Note: the editor must be initialized and activated
43346      * to insert tRoo.
43347      * @param {String} text | dom node.. 
43348      */
43349     insertAtCursor : function(text)
43350     {
43351         
43352         if(!this.activated){
43353             return;
43354         }
43355         /*
43356         if(Roo.isIE){
43357             this.win.focus();
43358             var r = this.doc.selection.createRange();
43359             if(r){
43360                 r.collapse(true);
43361                 r.pasteHTML(text);
43362                 this.syncValue();
43363                 this.deferFocus();
43364             
43365             }
43366             return;
43367         }
43368         */
43369         if(Roo.isGecko || Roo.isOpera || Roo.isSafari){
43370             this.win.focus();
43371             
43372             
43373             // from jquery ui (MIT licenced)
43374             var range, node;
43375             var win = this.win;
43376             
43377             if (win.getSelection && win.getSelection().getRangeAt) {
43378                 range = win.getSelection().getRangeAt(0);
43379                 node = typeof(text) == 'string' ? range.createContextualFragment(text) : text;
43380                 range.insertNode(node);
43381             } else if (win.document.selection && win.document.selection.createRange) {
43382                 // no firefox support
43383                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
43384                 win.document.selection.createRange().pasteHTML(txt);
43385             } else {
43386                 // no firefox support
43387                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
43388                 this.execCmd('InsertHTML', txt);
43389             } 
43390             
43391             this.syncValue();
43392             
43393             this.deferFocus();
43394         }
43395     },
43396  // private
43397     mozKeyPress : function(e){
43398         if(e.ctrlKey){
43399             var c = e.getCharCode(), cmd;
43400           
43401             if(c > 0){
43402                 c = String.fromCharCode(c).toLowerCase();
43403                 switch(c){
43404                     case 'b':
43405                         cmd = 'bold';
43406                         break;
43407                     case 'i':
43408                         cmd = 'italic';
43409                         break;
43410                     
43411                     case 'u':
43412                         cmd = 'underline';
43413                         break;
43414                     
43415                     case 'v':
43416                         this.cleanUpPaste.defer(100, this);
43417                         return;
43418                         
43419                 }
43420                 if(cmd){
43421                     this.win.focus();
43422                     this.execCmd(cmd);
43423                     this.deferFocus();
43424                     e.preventDefault();
43425                 }
43426                 
43427             }
43428         }
43429     },
43430
43431     // private
43432     fixKeys : function(){ // load time branching for fastest keydown performance
43433         if(Roo.isIE){
43434             return function(e){
43435                 var k = e.getKey(), r;
43436                 if(k == e.TAB){
43437                     e.stopEvent();
43438                     r = this.doc.selection.createRange();
43439                     if(r){
43440                         r.collapse(true);
43441                         r.pasteHTML('&#160;&#160;&#160;&#160;');
43442                         this.deferFocus();
43443                     }
43444                     return;
43445                 }
43446                 
43447                 if(k == e.ENTER){
43448                     r = this.doc.selection.createRange();
43449                     if(r){
43450                         var target = r.parentElement();
43451                         if(!target || target.tagName.toLowerCase() != 'li'){
43452                             e.stopEvent();
43453                             r.pasteHTML('<br />');
43454                             r.collapse(false);
43455                             r.select();
43456                         }
43457                     }
43458                 }
43459                 if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
43460                     this.cleanUpPaste.defer(100, this);
43461                     return;
43462                 }
43463                 
43464                 
43465             };
43466         }else if(Roo.isOpera){
43467             return function(e){
43468                 var k = e.getKey();
43469                 if(k == e.TAB){
43470                     e.stopEvent();
43471                     this.win.focus();
43472                     this.execCmd('InsertHTML','&#160;&#160;&#160;&#160;');
43473                     this.deferFocus();
43474                 }
43475                 if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
43476                     this.cleanUpPaste.defer(100, this);
43477                     return;
43478                 }
43479                 
43480             };
43481         }else if(Roo.isSafari){
43482             return function(e){
43483                 var k = e.getKey();
43484                 
43485                 if(k == e.TAB){
43486                     e.stopEvent();
43487                     this.execCmd('InsertText','\t');
43488                     this.deferFocus();
43489                     return;
43490                 }
43491                if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
43492                     this.cleanUpPaste.defer(100, this);
43493                     return;
43494                 }
43495                 
43496              };
43497         }
43498     }(),
43499     
43500     getAllAncestors: function()
43501     {
43502         var p = this.getSelectedNode();
43503         var a = [];
43504         if (!p) {
43505             a.push(p); // push blank onto stack..
43506             p = this.getParentElement();
43507         }
43508         
43509         
43510         while (p && (p.nodeType == 1) && (p.tagName.toLowerCase() != 'body')) {
43511             a.push(p);
43512             p = p.parentNode;
43513         }
43514         a.push(this.doc.body);
43515         return a;
43516     },
43517     lastSel : false,
43518     lastSelNode : false,
43519     
43520     
43521     getSelection : function() 
43522     {
43523         this.assignDocWin();
43524         return Roo.isIE ? this.doc.selection : this.win.getSelection();
43525     },
43526     
43527     getSelectedNode: function() 
43528     {
43529         // this may only work on Gecko!!!
43530         
43531         // should we cache this!!!!
43532         
43533         
43534         
43535          
43536         var range = this.createRange(this.getSelection()).cloneRange();
43537         
43538         if (Roo.isIE) {
43539             var parent = range.parentElement();
43540             while (true) {
43541                 var testRange = range.duplicate();
43542                 testRange.moveToElementText(parent);
43543                 if (testRange.inRange(range)) {
43544                     break;
43545                 }
43546                 if ((parent.nodeType != 1) || (parent.tagName.toLowerCase() == 'body')) {
43547                     break;
43548                 }
43549                 parent = parent.parentElement;
43550             }
43551             return parent;
43552         }
43553         
43554         // is ancestor a text element.
43555         var ac =  range.commonAncestorContainer;
43556         if (ac.nodeType == 3) {
43557             ac = ac.parentNode;
43558         }
43559         
43560         var ar = ac.childNodes;
43561          
43562         var nodes = [];
43563         var other_nodes = [];
43564         var has_other_nodes = false;
43565         for (var i=0;i<ar.length;i++) {
43566             if ((ar[i].nodeType == 3) && (!ar[i].data.length)) { // empty text ? 
43567                 continue;
43568             }
43569             // fullly contained node.
43570             
43571             if (this.rangeIntersectsNode(range,ar[i]) && this.rangeCompareNode(range,ar[i]) == 3) {
43572                 nodes.push(ar[i]);
43573                 continue;
43574             }
43575             
43576             // probably selected..
43577             if ((ar[i].nodeType == 1) && this.rangeIntersectsNode(range,ar[i]) && (this.rangeCompareNode(range,ar[i]) > 0)) {
43578                 other_nodes.push(ar[i]);
43579                 continue;
43580             }
43581             // outer..
43582             if (!this.rangeIntersectsNode(range,ar[i])|| (this.rangeCompareNode(range,ar[i]) == 0))  {
43583                 continue;
43584             }
43585             
43586             
43587             has_other_nodes = true;
43588         }
43589         if (!nodes.length && other_nodes.length) {
43590             nodes= other_nodes;
43591         }
43592         if (has_other_nodes || !nodes.length || (nodes.length > 1)) {
43593             return false;
43594         }
43595         
43596         return nodes[0];
43597     },
43598     createRange: function(sel)
43599     {
43600         // this has strange effects when using with 
43601         // top toolbar - not sure if it's a great idea.
43602         //this.editor.contentWindow.focus();
43603         if (typeof sel != "undefined") {
43604             try {
43605                 return sel.getRangeAt ? sel.getRangeAt(0) : sel.createRange();
43606             } catch(e) {
43607                 return this.doc.createRange();
43608             }
43609         } else {
43610             return this.doc.createRange();
43611         }
43612     },
43613     getParentElement: function()
43614     {
43615         
43616         this.assignDocWin();
43617         var sel = Roo.isIE ? this.doc.selection : this.win.getSelection();
43618         
43619         var range = this.createRange(sel);
43620          
43621         try {
43622             var p = range.commonAncestorContainer;
43623             while (p.nodeType == 3) { // text node
43624                 p = p.parentNode;
43625             }
43626             return p;
43627         } catch (e) {
43628             return null;
43629         }
43630     
43631     },
43632     /***
43633      *
43634      * Range intersection.. the hard stuff...
43635      *  '-1' = before
43636      *  '0' = hits..
43637      *  '1' = after.
43638      *         [ -- selected range --- ]
43639      *   [fail]                        [fail]
43640      *
43641      *    basically..
43642      *      if end is before start or  hits it. fail.
43643      *      if start is after end or hits it fail.
43644      *
43645      *   if either hits (but other is outside. - then it's not 
43646      *   
43647      *    
43648      **/
43649     
43650     
43651     // @see http://www.thismuchiknow.co.uk/?p=64.
43652     rangeIntersectsNode : function(range, node)
43653     {
43654         var nodeRange = node.ownerDocument.createRange();
43655         try {
43656             nodeRange.selectNode(node);
43657         } catch (e) {
43658             nodeRange.selectNodeContents(node);
43659         }
43660     
43661         var rangeStartRange = range.cloneRange();
43662         rangeStartRange.collapse(true);
43663     
43664         var rangeEndRange = range.cloneRange();
43665         rangeEndRange.collapse(false);
43666     
43667         var nodeStartRange = nodeRange.cloneRange();
43668         nodeStartRange.collapse(true);
43669     
43670         var nodeEndRange = nodeRange.cloneRange();
43671         nodeEndRange.collapse(false);
43672     
43673         return rangeStartRange.compareBoundaryPoints(
43674                  Range.START_TO_START, nodeEndRange) == -1 &&
43675                rangeEndRange.compareBoundaryPoints(
43676                  Range.START_TO_START, nodeStartRange) == 1;
43677         
43678          
43679     },
43680     rangeCompareNode : function(range, node)
43681     {
43682         var nodeRange = node.ownerDocument.createRange();
43683         try {
43684             nodeRange.selectNode(node);
43685         } catch (e) {
43686             nodeRange.selectNodeContents(node);
43687         }
43688         
43689         
43690         range.collapse(true);
43691     
43692         nodeRange.collapse(true);
43693      
43694         var ss = range.compareBoundaryPoints( Range.START_TO_START, nodeRange);
43695         var ee = range.compareBoundaryPoints(  Range.END_TO_END, nodeRange);
43696          
43697         //Roo.log(node.tagName + ': ss='+ss +', ee='+ee)
43698         
43699         var nodeIsBefore   =  ss == 1;
43700         var nodeIsAfter    = ee == -1;
43701         
43702         if (nodeIsBefore && nodeIsAfter) {
43703             return 0; // outer
43704         }
43705         if (!nodeIsBefore && nodeIsAfter) {
43706             return 1; //right trailed.
43707         }
43708         
43709         if (nodeIsBefore && !nodeIsAfter) {
43710             return 2;  // left trailed.
43711         }
43712         // fully contined.
43713         return 3;
43714     },
43715
43716     // private? - in a new class?
43717     cleanUpPaste :  function()
43718     {
43719         // cleans up the whole document..
43720         Roo.log('cleanuppaste');
43721         
43722         this.cleanUpChildren(this.doc.body);
43723         var clean = this.cleanWordChars(this.doc.body.innerHTML);
43724         if (clean != this.doc.body.innerHTML) {
43725             this.doc.body.innerHTML = clean;
43726         }
43727         
43728     },
43729     
43730     cleanWordChars : function(input) {// change the chars to hex code
43731         var he = Roo.HtmlEditorCore;
43732         
43733         var output = input;
43734         Roo.each(he.swapCodes, function(sw) { 
43735             var swapper = new RegExp("\\u" + sw[0].toString(16), "g"); // hex codes
43736             
43737             output = output.replace(swapper, sw[1]);
43738         });
43739         
43740         return output;
43741     },
43742     
43743     
43744     cleanUpChildren : function (n)
43745     {
43746         if (!n.childNodes.length) {
43747             return;
43748         }
43749         for (var i = n.childNodes.length-1; i > -1 ; i--) {
43750            this.cleanUpChild(n.childNodes[i]);
43751         }
43752     },
43753     
43754     
43755         
43756     
43757     cleanUpChild : function (node)
43758     {
43759         var ed = this;
43760         //console.log(node);
43761         if (node.nodeName == "#text") {
43762             // clean up silly Windows -- stuff?
43763             return; 
43764         }
43765         if (node.nodeName == "#comment") {
43766             node.parentNode.removeChild(node);
43767             // clean up silly Windows -- stuff?
43768             return; 
43769         }
43770         var lcname = node.tagName.toLowerCase();
43771         // we ignore whitelists... ?? = not really the way to go, but we probably have not got a full
43772         // whitelist of tags..
43773         
43774         if (this.black.indexOf(lcname) > -1 && this.clearUp ) {
43775             // remove node.
43776             node.parentNode.removeChild(node);
43777             return;
43778             
43779         }
43780         
43781         var remove_keep_children= Roo.HtmlEditorCore.remove.indexOf(node.tagName.toLowerCase()) > -1;
43782         
43783         // remove <a name=....> as rendering on yahoo mailer is borked with this.
43784         // this will have to be flaged elsewhere - perhaps ablack=name... on the mailer..
43785         
43786         //if (node.tagName.toLowerCase() == 'a' && !node.hasAttribute('href')) {
43787         //    remove_keep_children = true;
43788         //}
43789         
43790         if (remove_keep_children) {
43791             this.cleanUpChildren(node);
43792             // inserts everything just before this node...
43793             while (node.childNodes.length) {
43794                 var cn = node.childNodes[0];
43795                 node.removeChild(cn);
43796                 node.parentNode.insertBefore(cn, node);
43797             }
43798             node.parentNode.removeChild(node);
43799             return;
43800         }
43801         
43802         if (!node.attributes || !node.attributes.length) {
43803             this.cleanUpChildren(node);
43804             return;
43805         }
43806         
43807         function cleanAttr(n,v)
43808         {
43809             
43810             if (v.match(/^\./) || v.match(/^\//)) {
43811                 return;
43812             }
43813             if (v.match(/^(http|https):\/\//) || v.match(/^mailto:/) || v.match(/^ftp:/)) {
43814                 return;
43815             }
43816             if (v.match(/^#/)) {
43817                 return;
43818             }
43819 //            Roo.log("(REMOVE TAG)"+ node.tagName +'.' + n + '=' + v);
43820             node.removeAttribute(n);
43821             
43822         }
43823         
43824         var cwhite = this.cwhite;
43825         var cblack = this.cblack;
43826             
43827         function cleanStyle(n,v)
43828         {
43829             if (v.match(/expression/)) { //XSS?? should we even bother..
43830                 node.removeAttribute(n);
43831                 return;
43832             }
43833             
43834             var parts = v.split(/;/);
43835             var clean = [];
43836             
43837             Roo.each(parts, function(p) {
43838                 p = p.replace(/^\s+/g,'').replace(/\s+$/g,'');
43839                 if (!p.length) {
43840                     return true;
43841                 }
43842                 var l = p.split(':').shift().replace(/\s+/g,'');
43843                 l = l.replace(/^\s+/g,'').replace(/\s+$/g,'');
43844                 
43845                 if ( cwhite.length && cblack.indexOf(l) > -1) {
43846 //                    Roo.log('(REMOVE CSS)' + node.tagName +'.' + n + ':'+l + '=' + v);
43847                     //node.removeAttribute(n);
43848                     return true;
43849                 }
43850                 //Roo.log()
43851                 // only allow 'c whitelisted system attributes'
43852                 if ( cwhite.length &&  cwhite.indexOf(l) < 0) {
43853 //                    Roo.log('(REMOVE CSS)' + node.tagName +'.' + n + ':'+l + '=' + v);
43854                     //node.removeAttribute(n);
43855                     return true;
43856                 }
43857                 
43858                 
43859                  
43860                 
43861                 clean.push(p);
43862                 return true;
43863             });
43864             if (clean.length) { 
43865                 node.setAttribute(n, clean.join(';'));
43866             } else {
43867                 node.removeAttribute(n);
43868             }
43869             
43870         }
43871         
43872         
43873         for (var i = node.attributes.length-1; i > -1 ; i--) {
43874             var a = node.attributes[i];
43875             //console.log(a);
43876             
43877             if (a.name.toLowerCase().substr(0,2)=='on')  {
43878                 node.removeAttribute(a.name);
43879                 continue;
43880             }
43881             if (Roo.HtmlEditorCore.ablack.indexOf(a.name.toLowerCase()) > -1) {
43882                 node.removeAttribute(a.name);
43883                 continue;
43884             }
43885             if (Roo.HtmlEditorCore.aclean.indexOf(a.name.toLowerCase()) > -1) {
43886                 cleanAttr(a.name,a.value); // fixme..
43887                 continue;
43888             }
43889             if (a.name == 'style') {
43890                 cleanStyle(a.name,a.value);
43891                 continue;
43892             }
43893             /// clean up MS crap..
43894             // tecnically this should be a list of valid class'es..
43895             
43896             
43897             if (a.name == 'class') {
43898                 if (a.value.match(/^Mso/)) {
43899                     node.className = '';
43900                 }
43901                 
43902                 if (a.value.match(/^body$/)) {
43903                     node.className = '';
43904                 }
43905                 continue;
43906             }
43907             
43908             // style cleanup!?
43909             // class cleanup?
43910             
43911         }
43912         
43913         
43914         this.cleanUpChildren(node);
43915         
43916         
43917     },
43918     
43919     /**
43920      * Clean up MS wordisms...
43921      */
43922     cleanWord : function(node)
43923     {
43924         
43925         
43926         if (!node) {
43927             this.cleanWord(this.doc.body);
43928             return;
43929         }
43930         if (node.nodeName == "#text") {
43931             // clean up silly Windows -- stuff?
43932             return; 
43933         }
43934         if (node.nodeName == "#comment") {
43935             node.parentNode.removeChild(node);
43936             // clean up silly Windows -- stuff?
43937             return; 
43938         }
43939         
43940         if (node.tagName.toLowerCase().match(/^(style|script|applet|embed|noframes|noscript)$/)) {
43941             node.parentNode.removeChild(node);
43942             return;
43943         }
43944         
43945         // remove - but keep children..
43946         if (node.tagName.toLowerCase().match(/^(meta|link|\\?xml:|st1:|o:|font)/)) {
43947             while (node.childNodes.length) {
43948                 var cn = node.childNodes[0];
43949                 node.removeChild(cn);
43950                 node.parentNode.insertBefore(cn, node);
43951             }
43952             node.parentNode.removeChild(node);
43953             this.iterateChildren(node, this.cleanWord);
43954             return;
43955         }
43956         // clean styles
43957         if (node.className.length) {
43958             
43959             var cn = node.className.split(/\W+/);
43960             var cna = [];
43961             Roo.each(cn, function(cls) {
43962                 if (cls.match(/Mso[a-zA-Z]+/)) {
43963                     return;
43964                 }
43965                 cna.push(cls);
43966             });
43967             node.className = cna.length ? cna.join(' ') : '';
43968             if (!cna.length) {
43969                 node.removeAttribute("class");
43970             }
43971         }
43972         
43973         if (node.hasAttribute("lang")) {
43974             node.removeAttribute("lang");
43975         }
43976         
43977         if (node.hasAttribute("style")) {
43978             
43979             var styles = node.getAttribute("style").split(";");
43980             var nstyle = [];
43981             Roo.each(styles, function(s) {
43982                 if (!s.match(/:/)) {
43983                     return;
43984                 }
43985                 var kv = s.split(":");
43986                 if (kv[0].match(/^(mso-|line|font|background|margin|padding|color)/)) {
43987                     return;
43988                 }
43989                 // what ever is left... we allow.
43990                 nstyle.push(s);
43991             });
43992             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
43993             if (!nstyle.length) {
43994                 node.removeAttribute('style');
43995             }
43996         }
43997         this.iterateChildren(node, this.cleanWord);
43998         
43999         
44000         
44001     },
44002     /**
44003      * iterateChildren of a Node, calling fn each time, using this as the scole..
44004      * @param {DomNode} node node to iterate children of.
44005      * @param {Function} fn method of this class to call on each item.
44006      */
44007     iterateChildren : function(node, fn)
44008     {
44009         if (!node.childNodes.length) {
44010                 return;
44011         }
44012         for (var i = node.childNodes.length-1; i > -1 ; i--) {
44013            fn.call(this, node.childNodes[i])
44014         }
44015     },
44016     
44017     
44018     /**
44019      * cleanTableWidths.
44020      *
44021      * Quite often pasting from word etc.. results in tables with column and widths.
44022      * This does not work well on fluid HTML layouts - like emails. - so this code should hunt an destroy them..
44023      *
44024      */
44025     cleanTableWidths : function(node)
44026     {
44027          
44028          
44029         if (!node) {
44030             this.cleanTableWidths(this.doc.body);
44031             return;
44032         }
44033         
44034         // ignore list...
44035         if (node.nodeName == "#text" || node.nodeName == "#comment") {
44036             return; 
44037         }
44038         Roo.log(node.tagName);
44039         if (!node.tagName.toLowerCase().match(/^(table|td|tr)$/)) {
44040             this.iterateChildren(node, this.cleanTableWidths);
44041             return;
44042         }
44043         if (node.hasAttribute('width')) {
44044             node.removeAttribute('width');
44045         }
44046         
44047          
44048         if (node.hasAttribute("style")) {
44049             // pretty basic...
44050             
44051             var styles = node.getAttribute("style").split(";");
44052             var nstyle = [];
44053             Roo.each(styles, function(s) {
44054                 if (!s.match(/:/)) {
44055                     return;
44056                 }
44057                 var kv = s.split(":");
44058                 if (kv[0].match(/^\s*(width|min-width)\s*$/)) {
44059                     return;
44060                 }
44061                 // what ever is left... we allow.
44062                 nstyle.push(s);
44063             });
44064             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
44065             if (!nstyle.length) {
44066                 node.removeAttribute('style');
44067             }
44068         }
44069         
44070         this.iterateChildren(node, this.cleanTableWidths);
44071         
44072         
44073     },
44074     
44075     
44076     
44077     
44078     domToHTML : function(currentElement, depth, nopadtext) {
44079         
44080         depth = depth || 0;
44081         nopadtext = nopadtext || false;
44082     
44083         if (!currentElement) {
44084             return this.domToHTML(this.doc.body);
44085         }
44086         
44087         //Roo.log(currentElement);
44088         var j;
44089         var allText = false;
44090         var nodeName = currentElement.nodeName;
44091         var tagName = Roo.util.Format.htmlEncode(currentElement.tagName);
44092         
44093         if  (nodeName == '#text') {
44094             
44095             return nopadtext ? currentElement.nodeValue : currentElement.nodeValue.trim();
44096         }
44097         
44098         
44099         var ret = '';
44100         if (nodeName != 'BODY') {
44101              
44102             var i = 0;
44103             // Prints the node tagName, such as <A>, <IMG>, etc
44104             if (tagName) {
44105                 var attr = [];
44106                 for(i = 0; i < currentElement.attributes.length;i++) {
44107                     // quoting?
44108                     var aname = currentElement.attributes.item(i).name;
44109                     if (!currentElement.attributes.item(i).value.length) {
44110                         continue;
44111                     }
44112                     attr.push(aname + '="' + Roo.util.Format.htmlEncode(currentElement.attributes.item(i).value) + '"' );
44113                 }
44114                 
44115                 ret = "<"+currentElement.tagName+ ( attr.length ? (' ' + attr.join(' ') ) : '') + ">";
44116             } 
44117             else {
44118                 
44119                 // eack
44120             }
44121         } else {
44122             tagName = false;
44123         }
44124         if (['IMG', 'BR', 'HR', 'INPUT'].indexOf(tagName) > -1) {
44125             return ret;
44126         }
44127         if (['PRE', 'TEXTAREA', 'TD', 'A', 'SPAN'].indexOf(tagName) > -1) { // or code?
44128             nopadtext = true;
44129         }
44130         
44131         
44132         // Traverse the tree
44133         i = 0;
44134         var currentElementChild = currentElement.childNodes.item(i);
44135         var allText = true;
44136         var innerHTML  = '';
44137         lastnode = '';
44138         while (currentElementChild) {
44139             // Formatting code (indent the tree so it looks nice on the screen)
44140             var nopad = nopadtext;
44141             if (lastnode == 'SPAN') {
44142                 nopad  = true;
44143             }
44144             // text
44145             if  (currentElementChild.nodeName == '#text') {
44146                 var toadd = Roo.util.Format.htmlEncode(currentElementChild.nodeValue);
44147                 toadd = nopadtext ? toadd : toadd.trim();
44148                 if (!nopad && toadd.length > 80) {
44149                     innerHTML  += "\n" + (new Array( depth + 1 )).join( "  "  );
44150                 }
44151                 innerHTML  += toadd;
44152                 
44153                 i++;
44154                 currentElementChild = currentElement.childNodes.item(i);
44155                 lastNode = '';
44156                 continue;
44157             }
44158             allText = false;
44159             
44160             innerHTML  += nopad ? '' : "\n" + (new Array( depth + 1 )).join( "  "  );
44161                 
44162             // Recursively traverse the tree structure of the child node
44163             innerHTML   += this.domToHTML(currentElementChild, depth+1, nopadtext);
44164             lastnode = currentElementChild.nodeName;
44165             i++;
44166             currentElementChild=currentElement.childNodes.item(i);
44167         }
44168         
44169         ret += innerHTML;
44170         
44171         if (!allText) {
44172                 // The remaining code is mostly for formatting the tree
44173             ret+= nopadtext ? '' : "\n" + (new Array( depth  )).join( "  "  );
44174         }
44175         
44176         
44177         if (tagName) {
44178             ret+= "</"+tagName+">";
44179         }
44180         return ret;
44181         
44182     },
44183         
44184     applyBlacklists : function()
44185     {
44186         var w = typeof(this.owner.white) != 'undefined' && this.owner.white ? this.owner.white  : [];
44187         var b = typeof(this.owner.black) != 'undefined' && this.owner.black ? this.owner.black :  [];
44188         
44189         this.white = [];
44190         this.black = [];
44191         Roo.each(Roo.HtmlEditorCore.white, function(tag) {
44192             if (b.indexOf(tag) > -1) {
44193                 return;
44194             }
44195             this.white.push(tag);
44196             
44197         }, this);
44198         
44199         Roo.each(w, function(tag) {
44200             if (b.indexOf(tag) > -1) {
44201                 return;
44202             }
44203             if (this.white.indexOf(tag) > -1) {
44204                 return;
44205             }
44206             this.white.push(tag);
44207             
44208         }, this);
44209         
44210         
44211         Roo.each(Roo.HtmlEditorCore.black, function(tag) {
44212             if (w.indexOf(tag) > -1) {
44213                 return;
44214             }
44215             this.black.push(tag);
44216             
44217         }, this);
44218         
44219         Roo.each(b, function(tag) {
44220             if (w.indexOf(tag) > -1) {
44221                 return;
44222             }
44223             if (this.black.indexOf(tag) > -1) {
44224                 return;
44225             }
44226             this.black.push(tag);
44227             
44228         }, this);
44229         
44230         
44231         w = typeof(this.owner.cwhite) != 'undefined' && this.owner.cwhite ? this.owner.cwhite  : [];
44232         b = typeof(this.owner.cblack) != 'undefined' && this.owner.cblack ? this.owner.cblack :  [];
44233         
44234         this.cwhite = [];
44235         this.cblack = [];
44236         Roo.each(Roo.HtmlEditorCore.cwhite, function(tag) {
44237             if (b.indexOf(tag) > -1) {
44238                 return;
44239             }
44240             this.cwhite.push(tag);
44241             
44242         }, this);
44243         
44244         Roo.each(w, function(tag) {
44245             if (b.indexOf(tag) > -1) {
44246                 return;
44247             }
44248             if (this.cwhite.indexOf(tag) > -1) {
44249                 return;
44250             }
44251             this.cwhite.push(tag);
44252             
44253         }, this);
44254         
44255         
44256         Roo.each(Roo.HtmlEditorCore.cblack, function(tag) {
44257             if (w.indexOf(tag) > -1) {
44258                 return;
44259             }
44260             this.cblack.push(tag);
44261             
44262         }, this);
44263         
44264         Roo.each(b, function(tag) {
44265             if (w.indexOf(tag) > -1) {
44266                 return;
44267             }
44268             if (this.cblack.indexOf(tag) > -1) {
44269                 return;
44270             }
44271             this.cblack.push(tag);
44272             
44273         }, this);
44274     },
44275     
44276     setStylesheets : function(stylesheets)
44277     {
44278         if(typeof(stylesheets) == 'string'){
44279             Roo.get(this.iframe.contentDocument.head).createChild({
44280                 tag : 'link',
44281                 rel : 'stylesheet',
44282                 type : 'text/css',
44283                 href : stylesheets
44284             });
44285             
44286             return;
44287         }
44288         var _this = this;
44289      
44290         Roo.each(stylesheets, function(s) {
44291             if(!s.length){
44292                 return;
44293             }
44294             
44295             Roo.get(_this.iframe.contentDocument.head).createChild({
44296                 tag : 'link',
44297                 rel : 'stylesheet',
44298                 type : 'text/css',
44299                 href : s
44300             });
44301         });
44302
44303         
44304     },
44305     
44306     removeStylesheets : function()
44307     {
44308         var _this = this;
44309         
44310         Roo.each(Roo.get(_this.iframe.contentDocument.head).select('link[rel=stylesheet]', true).elements, function(s){
44311             s.remove();
44312         });
44313     },
44314     
44315     setStyle : function(style)
44316     {
44317         Roo.get(this.iframe.contentDocument.head).createChild({
44318             tag : 'style',
44319             type : 'text/css',
44320             html : style
44321         });
44322
44323         return;
44324     }
44325     
44326     // hide stuff that is not compatible
44327     /**
44328      * @event blur
44329      * @hide
44330      */
44331     /**
44332      * @event change
44333      * @hide
44334      */
44335     /**
44336      * @event focus
44337      * @hide
44338      */
44339     /**
44340      * @event specialkey
44341      * @hide
44342      */
44343     /**
44344      * @cfg {String} fieldClass @hide
44345      */
44346     /**
44347      * @cfg {String} focusClass @hide
44348      */
44349     /**
44350      * @cfg {String} autoCreate @hide
44351      */
44352     /**
44353      * @cfg {String} inputType @hide
44354      */
44355     /**
44356      * @cfg {String} invalidClass @hide
44357      */
44358     /**
44359      * @cfg {String} invalidText @hide
44360      */
44361     /**
44362      * @cfg {String} msgFx @hide
44363      */
44364     /**
44365      * @cfg {String} validateOnBlur @hide
44366      */
44367 });
44368
44369 Roo.HtmlEditorCore.white = [
44370         'area', 'br', 'img', 'input', 'hr', 'wbr',
44371         
44372        'address', 'blockquote', 'center', 'dd',      'dir',       'div', 
44373        'dl',      'dt',         'h1',     'h2',      'h3',        'h4', 
44374        'h5',      'h6',         'hr',     'isindex', 'listing',   'marquee', 
44375        'menu',    'multicol',   'ol',     'p',       'plaintext', 'pre', 
44376        'table',   'ul',         'xmp', 
44377        
44378        'caption', 'col', 'colgroup', 'tbody', 'td', 'tfoot', 'th', 
44379       'thead',   'tr', 
44380      
44381       'dir', 'menu', 'ol', 'ul', 'dl',
44382        
44383       'embed',  'object'
44384 ];
44385
44386
44387 Roo.HtmlEditorCore.black = [
44388     //    'embed',  'object', // enable - backend responsiblity to clean thiese
44389         'applet', // 
44390         'base',   'basefont', 'bgsound', 'blink',  'body', 
44391         'frame',  'frameset', 'head',    'html',   'ilayer', 
44392         'iframe', 'layer',  'link',     'meta',    'object',   
44393         'script', 'style' ,'title',  'xml' // clean later..
44394 ];
44395 Roo.HtmlEditorCore.clean = [
44396     'script', 'style', 'title', 'xml'
44397 ];
44398 Roo.HtmlEditorCore.remove = [
44399     'font'
44400 ];
44401 // attributes..
44402
44403 Roo.HtmlEditorCore.ablack = [
44404     'on'
44405 ];
44406     
44407 Roo.HtmlEditorCore.aclean = [ 
44408     'action', 'background', 'codebase', 'dynsrc', 'href', 'lowsrc' 
44409 ];
44410
44411 // protocols..
44412 Roo.HtmlEditorCore.pwhite= [
44413         'http',  'https',  'mailto'
44414 ];
44415
44416 // white listed style attributes.
44417 Roo.HtmlEditorCore.cwhite= [
44418       //  'text-align', /// default is to allow most things..
44419       
44420          
44421 //        'font-size'//??
44422 ];
44423
44424 // black listed style attributes.
44425 Roo.HtmlEditorCore.cblack= [
44426       //  'font-size' -- this can be set by the project 
44427 ];
44428
44429
44430 Roo.HtmlEditorCore.swapCodes   =[ 
44431     [    8211, "--" ], 
44432     [    8212, "--" ], 
44433     [    8216,  "'" ],  
44434     [    8217, "'" ],  
44435     [    8220, '"' ],  
44436     [    8221, '"' ],  
44437     [    8226, "*" ],  
44438     [    8230, "..." ]
44439 ]; 
44440
44441     //<script type="text/javascript">
44442
44443 /*
44444  * Ext JS Library 1.1.1
44445  * Copyright(c) 2006-2007, Ext JS, LLC.
44446  * Licence LGPL
44447  * 
44448  */
44449  
44450  
44451 Roo.form.HtmlEditor = function(config){
44452     
44453     
44454     
44455     Roo.form.HtmlEditor.superclass.constructor.call(this, config);
44456     
44457     if (!this.toolbars) {
44458         this.toolbars = [];
44459     }
44460     this.editorcore = new Roo.HtmlEditorCore(Roo.apply({ owner : this} , config));
44461     
44462     
44463 };
44464
44465 /**
44466  * @class Roo.form.HtmlEditor
44467  * @extends Roo.form.Field
44468  * Provides a lightweight HTML Editor component.
44469  *
44470  * This has been tested on Fireforx / Chrome.. IE may not be so great..
44471  * 
44472  * <br><br><b>Note: The focus/blur and validation marking functionality inherited from Ext.form.Field is NOT
44473  * supported by this editor.</b><br/><br/>
44474  * An Editor is a sensitive component that can't be used in all spots standard fields can be used. Putting an Editor within
44475  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
44476  */
44477 Roo.extend(Roo.form.HtmlEditor, Roo.form.Field, {
44478     /**
44479      * @cfg {Boolean} clearUp
44480      */
44481     clearUp : true,
44482       /**
44483      * @cfg {Array} toolbars Array of toolbars. - defaults to just the Standard one
44484      */
44485     toolbars : false,
44486    
44487      /**
44488      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
44489      *                        Roo.resizable.
44490      */
44491     resizable : false,
44492      /**
44493      * @cfg {Number} height (in pixels)
44494      */   
44495     height: 300,
44496    /**
44497      * @cfg {Number} width (in pixels)
44498      */   
44499     width: 500,
44500     
44501     /**
44502      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
44503      * 
44504      */
44505     stylesheets: false,
44506     
44507     
44508      /**
44509      * @cfg {Array} blacklist of css styles style attributes (blacklist overrides whitelist)
44510      * 
44511      */
44512     cblack: false,
44513     /**
44514      * @cfg {Array} whitelist of css styles style attributes (blacklist overrides whitelist)
44515      * 
44516      */
44517     cwhite: false,
44518     
44519      /**
44520      * @cfg {Array} blacklist of html tags - in addition to standard blacklist.
44521      * 
44522      */
44523     black: false,
44524     /**
44525      * @cfg {Array} whitelist of html tags - in addition to statndard whitelist
44526      * 
44527      */
44528     white: false,
44529     
44530     // id of frame..
44531     frameId: false,
44532     
44533     // private properties
44534     validationEvent : false,
44535     deferHeight: true,
44536     initialized : false,
44537     activated : false,
44538     
44539     onFocus : Roo.emptyFn,
44540     iframePad:3,
44541     hideMode:'offsets',
44542     
44543     actionMode : 'container', // defaults to hiding it...
44544     
44545     defaultAutoCreate : { // modified by initCompnoent..
44546         tag: "textarea",
44547         style:"width:500px;height:300px;",
44548         autocomplete: "new-password"
44549     },
44550
44551     // private
44552     initComponent : function(){
44553         this.addEvents({
44554             /**
44555              * @event initialize
44556              * Fires when the editor is fully initialized (including the iframe)
44557              * @param {HtmlEditor} this
44558              */
44559             initialize: true,
44560             /**
44561              * @event activate
44562              * Fires when the editor is first receives the focus. Any insertion must wait
44563              * until after this event.
44564              * @param {HtmlEditor} this
44565              */
44566             activate: true,
44567              /**
44568              * @event beforesync
44569              * Fires before the textarea is updated with content from the editor iframe. Return false
44570              * to cancel the sync.
44571              * @param {HtmlEditor} this
44572              * @param {String} html
44573              */
44574             beforesync: true,
44575              /**
44576              * @event beforepush
44577              * Fires before the iframe editor is updated with content from the textarea. Return false
44578              * to cancel the push.
44579              * @param {HtmlEditor} this
44580              * @param {String} html
44581              */
44582             beforepush: true,
44583              /**
44584              * @event sync
44585              * Fires when the textarea is updated with content from the editor iframe.
44586              * @param {HtmlEditor} this
44587              * @param {String} html
44588              */
44589             sync: true,
44590              /**
44591              * @event push
44592              * Fires when the iframe editor is updated with content from the textarea.
44593              * @param {HtmlEditor} this
44594              * @param {String} html
44595              */
44596             push: true,
44597              /**
44598              * @event editmodechange
44599              * Fires when the editor switches edit modes
44600              * @param {HtmlEditor} this
44601              * @param {Boolean} sourceEdit True if source edit, false if standard editing.
44602              */
44603             editmodechange: true,
44604             /**
44605              * @event editorevent
44606              * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
44607              * @param {HtmlEditor} this
44608              */
44609             editorevent: true,
44610             /**
44611              * @event firstfocus
44612              * Fires when on first focus - needed by toolbars..
44613              * @param {HtmlEditor} this
44614              */
44615             firstfocus: true,
44616             /**
44617              * @event autosave
44618              * Auto save the htmlEditor value as a file into Events
44619              * @param {HtmlEditor} this
44620              */
44621             autosave: true,
44622             /**
44623              * @event savedpreview
44624              * preview the saved version of htmlEditor
44625              * @param {HtmlEditor} this
44626              */
44627             savedpreview: true,
44628             
44629             /**
44630             * @event stylesheetsclick
44631             * Fires when press the Sytlesheets button
44632             * @param {Roo.HtmlEditorCore} this
44633             */
44634             stylesheetsclick: true
44635         });
44636         this.defaultAutoCreate =  {
44637             tag: "textarea",
44638             style:'width: ' + this.width + 'px;height: ' + this.height + 'px;',
44639             autocomplete: "new-password"
44640         };
44641     },
44642
44643     /**
44644      * Protected method that will not generally be called directly. It
44645      * is called when the editor creates its toolbar. Override this method if you need to
44646      * add custom toolbar buttons.
44647      * @param {HtmlEditor} editor
44648      */
44649     createToolbar : function(editor){
44650         Roo.log("create toolbars");
44651         if (!editor.toolbars || !editor.toolbars.length) {
44652             editor.toolbars = [ new Roo.form.HtmlEditor.ToolbarStandard() ]; // can be empty?
44653         }
44654         
44655         for (var i =0 ; i < editor.toolbars.length;i++) {
44656             editor.toolbars[i] = Roo.factory(
44657                     typeof(editor.toolbars[i]) == 'string' ?
44658                         { xtype: editor.toolbars[i]} : editor.toolbars[i],
44659                 Roo.form.HtmlEditor);
44660             editor.toolbars[i].init(editor);
44661         }
44662          
44663         
44664     },
44665
44666      
44667     // private
44668     onRender : function(ct, position)
44669     {
44670         var _t = this;
44671         Roo.form.HtmlEditor.superclass.onRender.call(this, ct, position);
44672         
44673         this.wrap = this.el.wrap({
44674             cls:'x-html-editor-wrap', cn:{cls:'x-html-editor-tb'}
44675         });
44676         
44677         this.editorcore.onRender(ct, position);
44678          
44679         if (this.resizable) {
44680             this.resizeEl = new Roo.Resizable(this.wrap, {
44681                 pinned : true,
44682                 wrap: true,
44683                 dynamic : true,
44684                 minHeight : this.height,
44685                 height: this.height,
44686                 handles : this.resizable,
44687                 width: this.width,
44688                 listeners : {
44689                     resize : function(r, w, h) {
44690                         _t.onResize(w,h); // -something
44691                     }
44692                 }
44693             });
44694             
44695         }
44696         this.createToolbar(this);
44697        
44698         
44699         if(!this.width){
44700             this.setSize(this.wrap.getSize());
44701         }
44702         if (this.resizeEl) {
44703             this.resizeEl.resizeTo.defer(100, this.resizeEl,[ this.width,this.height ] );
44704             // should trigger onReize..
44705         }
44706         
44707         this.keyNav = new Roo.KeyNav(this.el, {
44708             
44709             "tab" : function(e){
44710                 e.preventDefault();
44711                 
44712                 var value = this.getValue();
44713                 
44714                 var start = this.el.dom.selectionStart;
44715                 var end = this.el.dom.selectionEnd;
44716                 
44717                 if(!e.shiftKey){
44718                     
44719                     this.setValue(value.substring(0, start) + "\t" + value.substring(end));
44720                     this.el.dom.setSelectionRange(end + 1, end + 1);
44721                     return;
44722                 }
44723                 
44724                 var f = value.substring(0, start).split("\t");
44725                 
44726                 if(f.pop().length != 0){
44727                     return;
44728                 }
44729                 
44730                 this.setValue(f.join("\t") + value.substring(end));
44731                 this.el.dom.setSelectionRange(start - 1, start - 1);
44732                 
44733             },
44734             
44735             "home" : function(e){
44736                 e.preventDefault();
44737                 
44738                 var curr = this.el.dom.selectionStart;
44739                 var lines = this.getValue().split("\n");
44740                 
44741                 if(!lines.length){
44742                     return;
44743                 }
44744                 
44745                 if(e.ctrlKey){
44746                     this.el.dom.setSelectionRange(0, 0);
44747                     return;
44748                 }
44749                 
44750                 var pos = 0;
44751                 
44752                 for (var i = 0; i < lines.length;i++) {
44753                     pos += lines[i].length;
44754                     
44755                     if(i != 0){
44756                         pos += 1;
44757                     }
44758                     
44759                     if(pos < curr){
44760                         continue;
44761                     }
44762                     
44763                     pos -= lines[i].length;
44764                     
44765                     break;
44766                 }
44767                 
44768                 if(!e.shiftKey){
44769                     this.el.dom.setSelectionRange(pos, pos);
44770                     return;
44771                 }
44772                 
44773                 this.el.dom.selectionStart = pos;
44774                 this.el.dom.selectionEnd = curr;
44775             },
44776             
44777             "end" : function(e){
44778                 e.preventDefault();
44779                 
44780                 var curr = this.el.dom.selectionStart;
44781                 var lines = this.getValue().split("\n");
44782                 
44783                 if(!lines.length){
44784                     return;
44785                 }
44786                 
44787                 if(e.ctrlKey){
44788                     this.el.dom.setSelectionRange(this.getValue().length, this.getValue().length);
44789                     return;
44790                 }
44791                 
44792                 var pos = 0;
44793                 
44794                 for (var i = 0; i < lines.length;i++) {
44795                     
44796                     pos += lines[i].length;
44797                     
44798                     if(i != 0){
44799                         pos += 1;
44800                     }
44801                     
44802                     if(pos < curr){
44803                         continue;
44804                     }
44805                     
44806                     break;
44807                 }
44808                 
44809                 if(!e.shiftKey){
44810                     this.el.dom.setSelectionRange(pos, pos);
44811                     return;
44812                 }
44813                 
44814                 this.el.dom.selectionStart = curr;
44815                 this.el.dom.selectionEnd = pos;
44816             },
44817
44818             scope : this,
44819
44820             doRelay : function(foo, bar, hname){
44821                 return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
44822             },
44823
44824             forceKeyDown: true
44825         });
44826         
44827 //        if(this.autosave && this.w){
44828 //            this.autoSaveFn = setInterval(this.autosave, 1000);
44829 //        }
44830     },
44831
44832     // private
44833     onResize : function(w, h)
44834     {
44835         Roo.form.HtmlEditor.superclass.onResize.apply(this, arguments);
44836         var ew = false;
44837         var eh = false;
44838         
44839         if(this.el ){
44840             if(typeof w == 'number'){
44841                 var aw = w - this.wrap.getFrameWidth('lr');
44842                 this.el.setWidth(this.adjustWidth('textarea', aw));
44843                 ew = aw;
44844             }
44845             if(typeof h == 'number'){
44846                 var tbh = 0;
44847                 for (var i =0; i < this.toolbars.length;i++) {
44848                     // fixme - ask toolbars for heights?
44849                     tbh += this.toolbars[i].tb.el.getHeight();
44850                     if (this.toolbars[i].footer) {
44851                         tbh += this.toolbars[i].footer.el.getHeight();
44852                     }
44853                 }
44854                 
44855                 
44856                 
44857                 
44858                 var ah = h - this.wrap.getFrameWidth('tb') - tbh;// this.tb.el.getHeight();
44859                 ah -= 5; // knock a few pixes off for look..
44860 //                Roo.log(ah);
44861                 this.el.setHeight(this.adjustWidth('textarea', ah));
44862                 var eh = ah;
44863             }
44864         }
44865         Roo.log('onResize:' + [w,h,ew,eh].join(',') );
44866         this.editorcore.onResize(ew,eh);
44867         
44868     },
44869
44870     /**
44871      * Toggles the editor between standard and source edit mode.
44872      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
44873      */
44874     toggleSourceEdit : function(sourceEditMode)
44875     {
44876         this.editorcore.toggleSourceEdit(sourceEditMode);
44877         
44878         if(this.editorcore.sourceEditMode){
44879             Roo.log('editor - showing textarea');
44880             
44881 //            Roo.log('in');
44882 //            Roo.log(this.syncValue());
44883             this.editorcore.syncValue();
44884             this.el.removeClass('x-hidden');
44885             this.el.dom.removeAttribute('tabIndex');
44886             this.el.focus();
44887             
44888             for (var i = 0; i < this.toolbars.length; i++) {
44889                 if(this.toolbars[i] instanceof Roo.form.HtmlEditor.ToolbarContext){
44890                     this.toolbars[i].tb.hide();
44891                     this.toolbars[i].footer.hide();
44892                 }
44893             }
44894             
44895         }else{
44896             Roo.log('editor - hiding textarea');
44897 //            Roo.log('out')
44898 //            Roo.log(this.pushValue()); 
44899             this.editorcore.pushValue();
44900             
44901             this.el.addClass('x-hidden');
44902             this.el.dom.setAttribute('tabIndex', -1);
44903             
44904             for (var i = 0; i < this.toolbars.length; i++) {
44905                 if(this.toolbars[i] instanceof Roo.form.HtmlEditor.ToolbarContext){
44906                     this.toolbars[i].tb.show();
44907                     this.toolbars[i].footer.show();
44908                 }
44909             }
44910             
44911             //this.deferFocus();
44912         }
44913         
44914         this.setSize(this.wrap.getSize());
44915         this.onResize(this.wrap.getSize().width, this.wrap.getSize().height);
44916         
44917         this.fireEvent('editmodechange', this, this.editorcore.sourceEditMode);
44918     },
44919  
44920     // private (for BoxComponent)
44921     adjustSize : Roo.BoxComponent.prototype.adjustSize,
44922
44923     // private (for BoxComponent)
44924     getResizeEl : function(){
44925         return this.wrap;
44926     },
44927
44928     // private (for BoxComponent)
44929     getPositionEl : function(){
44930         return this.wrap;
44931     },
44932
44933     // private
44934     initEvents : function(){
44935         this.originalValue = this.getValue();
44936     },
44937
44938     /**
44939      * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
44940      * @method
44941      */
44942     markInvalid : Roo.emptyFn,
44943     /**
44944      * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
44945      * @method
44946      */
44947     clearInvalid : Roo.emptyFn,
44948
44949     setValue : function(v){
44950         Roo.form.HtmlEditor.superclass.setValue.call(this, v);
44951         this.editorcore.pushValue();
44952     },
44953
44954      
44955     // private
44956     deferFocus : function(){
44957         this.focus.defer(10, this);
44958     },
44959
44960     // doc'ed in Field
44961     focus : function(){
44962         this.editorcore.focus();
44963         
44964     },
44965       
44966
44967     // private
44968     onDestroy : function(){
44969         
44970         
44971         
44972         if(this.rendered){
44973             
44974             for (var i =0; i < this.toolbars.length;i++) {
44975                 // fixme - ask toolbars for heights?
44976                 this.toolbars[i].onDestroy();
44977             }
44978             
44979             this.wrap.dom.innerHTML = '';
44980             this.wrap.remove();
44981         }
44982     },
44983
44984     // private
44985     onFirstFocus : function(){
44986         //Roo.log("onFirstFocus");
44987         this.editorcore.onFirstFocus();
44988          for (var i =0; i < this.toolbars.length;i++) {
44989             this.toolbars[i].onFirstFocus();
44990         }
44991         
44992     },
44993     
44994     // private
44995     syncValue : function()
44996     {
44997         this.editorcore.syncValue();
44998     },
44999     
45000     pushValue : function()
45001     {
45002         this.editorcore.pushValue();
45003     },
45004     
45005     setStylesheets : function(stylesheets)
45006     {
45007         this.editorcore.setStylesheets(stylesheets);
45008     },
45009     
45010     removeStylesheets : function()
45011     {
45012         this.editorcore.removeStylesheets();
45013     }
45014      
45015     
45016     // hide stuff that is not compatible
45017     /**
45018      * @event blur
45019      * @hide
45020      */
45021     /**
45022      * @event change
45023      * @hide
45024      */
45025     /**
45026      * @event focus
45027      * @hide
45028      */
45029     /**
45030      * @event specialkey
45031      * @hide
45032      */
45033     /**
45034      * @cfg {String} fieldClass @hide
45035      */
45036     /**
45037      * @cfg {String} focusClass @hide
45038      */
45039     /**
45040      * @cfg {String} autoCreate @hide
45041      */
45042     /**
45043      * @cfg {String} inputType @hide
45044      */
45045     /**
45046      * @cfg {String} invalidClass @hide
45047      */
45048     /**
45049      * @cfg {String} invalidText @hide
45050      */
45051     /**
45052      * @cfg {String} msgFx @hide
45053      */
45054     /**
45055      * @cfg {String} validateOnBlur @hide
45056      */
45057 });
45058  
45059     // <script type="text/javascript">
45060 /*
45061  * Based on
45062  * Ext JS Library 1.1.1
45063  * Copyright(c) 2006-2007, Ext JS, LLC.
45064  *  
45065  
45066  */
45067
45068 /**
45069  * @class Roo.form.HtmlEditorToolbar1
45070  * Basic Toolbar
45071  * 
45072  * Usage:
45073  *
45074  new Roo.form.HtmlEditor({
45075     ....
45076     toolbars : [
45077         new Roo.form.HtmlEditorToolbar1({
45078             disable : { fonts: 1 , format: 1, ..., ... , ...],
45079             btns : [ .... ]
45080         })
45081     }
45082      
45083  * 
45084  * @cfg {Object} disable List of elements to disable..
45085  * @cfg {Array} btns List of additional buttons.
45086  * 
45087  * 
45088  * NEEDS Extra CSS? 
45089  * .x-html-editor-tb .x-edit-none .x-btn-text { background: none; }
45090  */
45091  
45092 Roo.form.HtmlEditor.ToolbarStandard = function(config)
45093 {
45094     
45095     Roo.apply(this, config);
45096     
45097     // default disabled, based on 'good practice'..
45098     this.disable = this.disable || {};
45099     Roo.applyIf(this.disable, {
45100         fontSize : true,
45101         colors : true,
45102         specialElements : true
45103     });
45104     
45105     
45106     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
45107     // dont call parent... till later.
45108 }
45109
45110 Roo.apply(Roo.form.HtmlEditor.ToolbarStandard.prototype,  {
45111     
45112     tb: false,
45113     
45114     rendered: false,
45115     
45116     editor : false,
45117     editorcore : false,
45118     /**
45119      * @cfg {Object} disable  List of toolbar elements to disable
45120          
45121      */
45122     disable : false,
45123     
45124     
45125      /**
45126      * @cfg {String} createLinkText The default text for the create link prompt
45127      */
45128     createLinkText : 'Please enter the URL for the link:',
45129     /**
45130      * @cfg {String} defaultLinkValue The default value for the create link prompt (defaults to http:/ /)
45131      */
45132     defaultLinkValue : 'http:/'+'/',
45133    
45134     
45135       /**
45136      * @cfg {Array} fontFamilies An array of available font families
45137      */
45138     fontFamilies : [
45139         'Arial',
45140         'Courier New',
45141         'Tahoma',
45142         'Times New Roman',
45143         'Verdana'
45144     ],
45145     
45146     specialChars : [
45147            "&#169;",
45148           "&#174;",     
45149           "&#8482;",    
45150           "&#163;" ,    
45151          // "&#8212;",    
45152           "&#8230;",    
45153           "&#247;" ,    
45154         //  "&#225;" ,     ?? a acute?
45155            "&#8364;"    , //Euro
45156        //   "&#8220;"    ,
45157         //  "&#8221;"    ,
45158         //  "&#8226;"    ,
45159           "&#176;"  //   , // degrees
45160
45161          // "&#233;"     , // e ecute
45162          // "&#250;"     , // u ecute?
45163     ],
45164     
45165     specialElements : [
45166         {
45167             text: "Insert Table",
45168             xtype: 'MenuItem',
45169             xns : Roo.Menu,
45170             ihtml :  '<table><tr><td>Cell</td></tr></table>' 
45171                 
45172         },
45173         {    
45174             text: "Insert Image",
45175             xtype: 'MenuItem',
45176             xns : Roo.Menu,
45177             ihtml : '<img src="about:blank"/>'
45178             
45179         }
45180         
45181          
45182     ],
45183     
45184     
45185     inputElements : [ 
45186             "form", "input:text", "input:hidden", "input:checkbox", "input:radio", "input:password", 
45187             "input:submit", "input:button", "select", "textarea", "label" ],
45188     formats : [
45189         ["p"] ,  
45190         ["h1"],["h2"],["h3"],["h4"],["h5"],["h6"], 
45191         ["pre"],[ "code"], 
45192         ["abbr"],[ "acronym"],[ "address"],[ "cite"],[ "samp"],[ "var"],
45193         ['div'],['span']
45194     ],
45195     
45196     cleanStyles : [
45197         "font-size"
45198     ],
45199      /**
45200      * @cfg {String} defaultFont default font to use.
45201      */
45202     defaultFont: 'tahoma',
45203    
45204     fontSelect : false,
45205     
45206     
45207     formatCombo : false,
45208     
45209     init : function(editor)
45210     {
45211         this.editor = editor;
45212         this.editorcore = editor.editorcore ? editor.editorcore : editor;
45213         var editorcore = this.editorcore;
45214         
45215         var _t = this;
45216         
45217         var fid = editorcore.frameId;
45218         var etb = this;
45219         function btn(id, toggle, handler){
45220             var xid = fid + '-'+ id ;
45221             return {
45222                 id : xid,
45223                 cmd : id,
45224                 cls : 'x-btn-icon x-edit-'+id,
45225                 enableToggle:toggle !== false,
45226                 scope: _t, // was editor...
45227                 handler:handler||_t.relayBtnCmd,
45228                 clickEvent:'mousedown',
45229                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
45230                 tabIndex:-1
45231             };
45232         }
45233         
45234         
45235         
45236         var tb = new Roo.Toolbar(editor.wrap.dom.firstChild);
45237         this.tb = tb;
45238          // stop form submits
45239         tb.el.on('click', function(e){
45240             e.preventDefault(); // what does this do?
45241         });
45242
45243         if(!this.disable.font) { // && !Roo.isSafari){
45244             /* why no safari for fonts 
45245             editor.fontSelect = tb.el.createChild({
45246                 tag:'select',
45247                 tabIndex: -1,
45248                 cls:'x-font-select',
45249                 html: this.createFontOptions()
45250             });
45251             
45252             editor.fontSelect.on('change', function(){
45253                 var font = editor.fontSelect.dom.value;
45254                 editor.relayCmd('fontname', font);
45255                 editor.deferFocus();
45256             }, editor);
45257             
45258             tb.add(
45259                 editor.fontSelect.dom,
45260                 '-'
45261             );
45262             */
45263             
45264         };
45265         if(!this.disable.formats){
45266             this.formatCombo = new Roo.form.ComboBox({
45267                 store: new Roo.data.SimpleStore({
45268                     id : 'tag',
45269                     fields: ['tag'],
45270                     data : this.formats // from states.js
45271                 }),
45272                 blockFocus : true,
45273                 name : '',
45274                 //autoCreate : {tag: "div",  size: "20"},
45275                 displayField:'tag',
45276                 typeAhead: false,
45277                 mode: 'local',
45278                 editable : false,
45279                 triggerAction: 'all',
45280                 emptyText:'Add tag',
45281                 selectOnFocus:true,
45282                 width:135,
45283                 listeners : {
45284                     'select': function(c, r, i) {
45285                         editorcore.insertTag(r.get('tag'));
45286                         editor.focus();
45287                     }
45288                 }
45289
45290             });
45291             tb.addField(this.formatCombo);
45292             
45293         }
45294         
45295         if(!this.disable.format){
45296             tb.add(
45297                 btn('bold'),
45298                 btn('italic'),
45299                 btn('underline'),
45300                 btn('strikethrough')
45301             );
45302         };
45303         if(!this.disable.fontSize){
45304             tb.add(
45305                 '-',
45306                 
45307                 
45308                 btn('increasefontsize', false, editorcore.adjustFont),
45309                 btn('decreasefontsize', false, editorcore.adjustFont)
45310             );
45311         };
45312         
45313         
45314         if(!this.disable.colors){
45315             tb.add(
45316                 '-', {
45317                     id:editorcore.frameId +'-forecolor',
45318                     cls:'x-btn-icon x-edit-forecolor',
45319                     clickEvent:'mousedown',
45320                     tooltip: this.buttonTips['forecolor'] || undefined,
45321                     tabIndex:-1,
45322                     menu : new Roo.menu.ColorMenu({
45323                         allowReselect: true,
45324                         focus: Roo.emptyFn,
45325                         value:'000000',
45326                         plain:true,
45327                         selectHandler: function(cp, color){
45328                             editorcore.execCmd('forecolor', Roo.isSafari || Roo.isIE ? '#'+color : color);
45329                             editor.deferFocus();
45330                         },
45331                         scope: editorcore,
45332                         clickEvent:'mousedown'
45333                     })
45334                 }, {
45335                     id:editorcore.frameId +'backcolor',
45336                     cls:'x-btn-icon x-edit-backcolor',
45337                     clickEvent:'mousedown',
45338                     tooltip: this.buttonTips['backcolor'] || undefined,
45339                     tabIndex:-1,
45340                     menu : new Roo.menu.ColorMenu({
45341                         focus: Roo.emptyFn,
45342                         value:'FFFFFF',
45343                         plain:true,
45344                         allowReselect: true,
45345                         selectHandler: function(cp, color){
45346                             if(Roo.isGecko){
45347                                 editorcore.execCmd('useCSS', false);
45348                                 editorcore.execCmd('hilitecolor', color);
45349                                 editorcore.execCmd('useCSS', true);
45350                                 editor.deferFocus();
45351                             }else{
45352                                 editorcore.execCmd(Roo.isOpera ? 'hilitecolor' : 'backcolor', 
45353                                     Roo.isSafari || Roo.isIE ? '#'+color : color);
45354                                 editor.deferFocus();
45355                             }
45356                         },
45357                         scope:editorcore,
45358                         clickEvent:'mousedown'
45359                     })
45360                 }
45361             );
45362         };
45363         // now add all the items...
45364         
45365
45366         if(!this.disable.alignments){
45367             tb.add(
45368                 '-',
45369                 btn('justifyleft'),
45370                 btn('justifycenter'),
45371                 btn('justifyright')
45372             );
45373         };
45374
45375         //if(!Roo.isSafari){
45376             if(!this.disable.links){
45377                 tb.add(
45378                     '-',
45379                     btn('createlink', false, this.createLink)    /// MOVE TO HERE?!!?!?!?!
45380                 );
45381             };
45382
45383             if(!this.disable.lists){
45384                 tb.add(
45385                     '-',
45386                     btn('insertorderedlist'),
45387                     btn('insertunorderedlist')
45388                 );
45389             }
45390             if(!this.disable.sourceEdit){
45391                 tb.add(
45392                     '-',
45393                     btn('sourceedit', true, function(btn){
45394                         this.toggleSourceEdit(btn.pressed);
45395                     })
45396                 );
45397             }
45398         //}
45399         
45400         var smenu = { };
45401         // special menu.. - needs to be tidied up..
45402         if (!this.disable.special) {
45403             smenu = {
45404                 text: "&#169;",
45405                 cls: 'x-edit-none',
45406                 
45407                 menu : {
45408                     items : []
45409                 }
45410             };
45411             for (var i =0; i < this.specialChars.length; i++) {
45412                 smenu.menu.items.push({
45413                     
45414                     html: this.specialChars[i],
45415                     handler: function(a,b) {
45416                         editorcore.insertAtCursor(String.fromCharCode(a.html.replace('&#','').replace(';', '')));
45417                         //editor.insertAtCursor(a.html);
45418                         
45419                     },
45420                     tabIndex:-1
45421                 });
45422             }
45423             
45424             
45425             tb.add(smenu);
45426             
45427             
45428         }
45429         
45430         var cmenu = { };
45431         if (!this.disable.cleanStyles) {
45432             cmenu = {
45433                 cls: 'x-btn-icon x-btn-clear',
45434                 
45435                 menu : {
45436                     items : []
45437                 }
45438             };
45439             for (var i =0; i < this.cleanStyles.length; i++) {
45440                 cmenu.menu.items.push({
45441                     actiontype : this.cleanStyles[i],
45442                     html: 'Remove ' + this.cleanStyles[i],
45443                     handler: function(a,b) {
45444 //                        Roo.log(a);
45445 //                        Roo.log(b);
45446                         var c = Roo.get(editorcore.doc.body);
45447                         c.select('[style]').each(function(s) {
45448                             s.dom.style.removeProperty(a.actiontype);
45449                         });
45450                         editorcore.syncValue();
45451                     },
45452                     tabIndex:-1
45453                 });
45454             }
45455              cmenu.menu.items.push({
45456                 actiontype : 'tablewidths',
45457                 html: 'Remove Table Widths',
45458                 handler: function(a,b) {
45459                     editorcore.cleanTableWidths();
45460                     editorcore.syncValue();
45461                 },
45462                 tabIndex:-1
45463             });
45464             cmenu.menu.items.push({
45465                 actiontype : 'word',
45466                 html: 'Remove MS Word Formating',
45467                 handler: function(a,b) {
45468                     editorcore.cleanWord();
45469                     editorcore.syncValue();
45470                 },
45471                 tabIndex:-1
45472             });
45473             
45474             cmenu.menu.items.push({
45475                 actiontype : 'all',
45476                 html: 'Remove All Styles',
45477                 handler: function(a,b) {
45478                     
45479                     var c = Roo.get(editorcore.doc.body);
45480                     c.select('[style]').each(function(s) {
45481                         s.dom.removeAttribute('style');
45482                     });
45483                     editorcore.syncValue();
45484                 },
45485                 tabIndex:-1
45486             });
45487             
45488             cmenu.menu.items.push({
45489                 actiontype : 'all',
45490                 html: 'Remove All CSS Classes',
45491                 handler: function(a,b) {
45492                     
45493                     var c = Roo.get(editorcore.doc.body);
45494                     c.select('[class]').each(function(s) {
45495                         s.dom.className = '';
45496                     });
45497                     editorcore.syncValue();
45498                 },
45499                 tabIndex:-1
45500             });
45501             
45502              cmenu.menu.items.push({
45503                 actiontype : 'tidy',
45504                 html: 'Tidy HTML Source',
45505                 handler: function(a,b) {
45506                     editorcore.doc.body.innerHTML = editorcore.domToHTML();
45507                     editorcore.syncValue();
45508                 },
45509                 tabIndex:-1
45510             });
45511             
45512             
45513             tb.add(cmenu);
45514         }
45515          
45516         if (!this.disable.specialElements) {
45517             var semenu = {
45518                 text: "Other;",
45519                 cls: 'x-edit-none',
45520                 menu : {
45521                     items : []
45522                 }
45523             };
45524             for (var i =0; i < this.specialElements.length; i++) {
45525                 semenu.menu.items.push(
45526                     Roo.apply({ 
45527                         handler: function(a,b) {
45528                             editor.insertAtCursor(this.ihtml);
45529                         }
45530                     }, this.specialElements[i])
45531                 );
45532                     
45533             }
45534             
45535             tb.add(semenu);
45536             
45537             
45538         }
45539          
45540         
45541         if (this.btns) {
45542             for(var i =0; i< this.btns.length;i++) {
45543                 var b = Roo.factory(this.btns[i],Roo.form);
45544                 b.cls =  'x-edit-none';
45545                 
45546                 if(typeof(this.btns[i].cls) != 'undefined' && this.btns[i].cls.indexOf('x-init-enable') !== -1){
45547                     b.cls += ' x-init-enable';
45548                 }
45549                 
45550                 b.scope = editorcore;
45551                 tb.add(b);
45552             }
45553         
45554         }
45555         
45556         
45557         
45558         // disable everything...
45559         
45560         this.tb.items.each(function(item){
45561             
45562            if(
45563                 item.id != editorcore.frameId+ '-sourceedit' && 
45564                 (typeof(item.cls) != 'undefined' && item.cls.indexOf('x-init-enable') === -1)
45565             ){
45566                 
45567                 item.disable();
45568             }
45569         });
45570         this.rendered = true;
45571         
45572         // the all the btns;
45573         editor.on('editorevent', this.updateToolbar, this);
45574         // other toolbars need to implement this..
45575         //editor.on('editmodechange', this.updateToolbar, this);
45576     },
45577     
45578     
45579     relayBtnCmd : function(btn) {
45580         this.editorcore.relayCmd(btn.cmd);
45581     },
45582     // private used internally
45583     createLink : function(){
45584         Roo.log("create link?");
45585         var url = prompt(this.createLinkText, this.defaultLinkValue);
45586         if(url && url != 'http:/'+'/'){
45587             this.editorcore.relayCmd('createlink', url);
45588         }
45589     },
45590
45591     
45592     /**
45593      * Protected method that will not generally be called directly. It triggers
45594      * a toolbar update by reading the markup state of the current selection in the editor.
45595      */
45596     updateToolbar: function(){
45597
45598         if(!this.editorcore.activated){
45599             this.editor.onFirstFocus();
45600             return;
45601         }
45602
45603         var btns = this.tb.items.map, 
45604             doc = this.editorcore.doc,
45605             frameId = this.editorcore.frameId;
45606
45607         if(!this.disable.font && !Roo.isSafari){
45608             /*
45609             var name = (doc.queryCommandValue('FontName')||this.editor.defaultFont).toLowerCase();
45610             if(name != this.fontSelect.dom.value){
45611                 this.fontSelect.dom.value = name;
45612             }
45613             */
45614         }
45615         if(!this.disable.format){
45616             btns[frameId + '-bold'].toggle(doc.queryCommandState('bold'));
45617             btns[frameId + '-italic'].toggle(doc.queryCommandState('italic'));
45618             btns[frameId + '-underline'].toggle(doc.queryCommandState('underline'));
45619             btns[frameId + '-strikethrough'].toggle(doc.queryCommandState('strikethrough'));
45620         }
45621         if(!this.disable.alignments){
45622             btns[frameId + '-justifyleft'].toggle(doc.queryCommandState('justifyleft'));
45623             btns[frameId + '-justifycenter'].toggle(doc.queryCommandState('justifycenter'));
45624             btns[frameId + '-justifyright'].toggle(doc.queryCommandState('justifyright'));
45625         }
45626         if(!Roo.isSafari && !this.disable.lists){
45627             btns[frameId + '-insertorderedlist'].toggle(doc.queryCommandState('insertorderedlist'));
45628             btns[frameId + '-insertunorderedlist'].toggle(doc.queryCommandState('insertunorderedlist'));
45629         }
45630         
45631         var ans = this.editorcore.getAllAncestors();
45632         if (this.formatCombo) {
45633             
45634             
45635             var store = this.formatCombo.store;
45636             this.formatCombo.setValue("");
45637             for (var i =0; i < ans.length;i++) {
45638                 if (ans[i] && store.query('tag',ans[i].tagName.toLowerCase(), false).length) {
45639                     // select it..
45640                     this.formatCombo.setValue(ans[i].tagName.toLowerCase());
45641                     break;
45642                 }
45643             }
45644         }
45645         
45646         
45647         
45648         // hides menus... - so this cant be on a menu...
45649         Roo.menu.MenuMgr.hideAll();
45650
45651         //this.editorsyncValue();
45652     },
45653    
45654     
45655     createFontOptions : function(){
45656         var buf = [], fs = this.fontFamilies, ff, lc;
45657         
45658         
45659         
45660         for(var i = 0, len = fs.length; i< len; i++){
45661             ff = fs[i];
45662             lc = ff.toLowerCase();
45663             buf.push(
45664                 '<option value="',lc,'" style="font-family:',ff,';"',
45665                     (this.defaultFont == lc ? ' selected="true">' : '>'),
45666                     ff,
45667                 '</option>'
45668             );
45669         }
45670         return buf.join('');
45671     },
45672     
45673     toggleSourceEdit : function(sourceEditMode){
45674         
45675         Roo.log("toolbar toogle");
45676         if(sourceEditMode === undefined){
45677             sourceEditMode = !this.sourceEditMode;
45678         }
45679         this.sourceEditMode = sourceEditMode === true;
45680         var btn = this.tb.items.get(this.editorcore.frameId +'-sourceedit');
45681         // just toggle the button?
45682         if(btn.pressed !== this.sourceEditMode){
45683             btn.toggle(this.sourceEditMode);
45684             return;
45685         }
45686         
45687         if(sourceEditMode){
45688             Roo.log("disabling buttons");
45689             this.tb.items.each(function(item){
45690                 if(item.cmd != 'sourceedit' && (typeof(item.cls) != 'undefined' && item.cls.indexOf('x-init-enable') === -1)){
45691                     item.disable();
45692                 }
45693             });
45694           
45695         }else{
45696             Roo.log("enabling buttons");
45697             if(this.editorcore.initialized){
45698                 this.tb.items.each(function(item){
45699                     item.enable();
45700                 });
45701             }
45702             
45703         }
45704         Roo.log("calling toggole on editor");
45705         // tell the editor that it's been pressed..
45706         this.editor.toggleSourceEdit(sourceEditMode);
45707        
45708     },
45709      /**
45710      * Object collection of toolbar tooltips for the buttons in the editor. The key
45711      * is the command id associated with that button and the value is a valid QuickTips object.
45712      * For example:
45713 <pre><code>
45714 {
45715     bold : {
45716         title: 'Bold (Ctrl+B)',
45717         text: 'Make the selected text bold.',
45718         cls: 'x-html-editor-tip'
45719     },
45720     italic : {
45721         title: 'Italic (Ctrl+I)',
45722         text: 'Make the selected text italic.',
45723         cls: 'x-html-editor-tip'
45724     },
45725     ...
45726 </code></pre>
45727     * @type Object
45728      */
45729     buttonTips : {
45730         bold : {
45731             title: 'Bold (Ctrl+B)',
45732             text: 'Make the selected text bold.',
45733             cls: 'x-html-editor-tip'
45734         },
45735         italic : {
45736             title: 'Italic (Ctrl+I)',
45737             text: 'Make the selected text italic.',
45738             cls: 'x-html-editor-tip'
45739         },
45740         underline : {
45741             title: 'Underline (Ctrl+U)',
45742             text: 'Underline the selected text.',
45743             cls: 'x-html-editor-tip'
45744         },
45745         strikethrough : {
45746             title: 'Strikethrough',
45747             text: 'Strikethrough the selected text.',
45748             cls: 'x-html-editor-tip'
45749         },
45750         increasefontsize : {
45751             title: 'Grow Text',
45752             text: 'Increase the font size.',
45753             cls: 'x-html-editor-tip'
45754         },
45755         decreasefontsize : {
45756             title: 'Shrink Text',
45757             text: 'Decrease the font size.',
45758             cls: 'x-html-editor-tip'
45759         },
45760         backcolor : {
45761             title: 'Text Highlight Color',
45762             text: 'Change the background color of the selected text.',
45763             cls: 'x-html-editor-tip'
45764         },
45765         forecolor : {
45766             title: 'Font Color',
45767             text: 'Change the color of the selected text.',
45768             cls: 'x-html-editor-tip'
45769         },
45770         justifyleft : {
45771             title: 'Align Text Left',
45772             text: 'Align text to the left.',
45773             cls: 'x-html-editor-tip'
45774         },
45775         justifycenter : {
45776             title: 'Center Text',
45777             text: 'Center text in the editor.',
45778             cls: 'x-html-editor-tip'
45779         },
45780         justifyright : {
45781             title: 'Align Text Right',
45782             text: 'Align text to the right.',
45783             cls: 'x-html-editor-tip'
45784         },
45785         insertunorderedlist : {
45786             title: 'Bullet List',
45787             text: 'Start a bulleted list.',
45788             cls: 'x-html-editor-tip'
45789         },
45790         insertorderedlist : {
45791             title: 'Numbered List',
45792             text: 'Start a numbered list.',
45793             cls: 'x-html-editor-tip'
45794         },
45795         createlink : {
45796             title: 'Hyperlink',
45797             text: 'Make the selected text a hyperlink.',
45798             cls: 'x-html-editor-tip'
45799         },
45800         sourceedit : {
45801             title: 'Source Edit',
45802             text: 'Switch to source editing mode.',
45803             cls: 'x-html-editor-tip'
45804         }
45805     },
45806     // private
45807     onDestroy : function(){
45808         if(this.rendered){
45809             
45810             this.tb.items.each(function(item){
45811                 if(item.menu){
45812                     item.menu.removeAll();
45813                     if(item.menu.el){
45814                         item.menu.el.destroy();
45815                     }
45816                 }
45817                 item.destroy();
45818             });
45819              
45820         }
45821     },
45822     onFirstFocus: function() {
45823         this.tb.items.each(function(item){
45824            item.enable();
45825         });
45826     }
45827 });
45828
45829
45830
45831
45832 // <script type="text/javascript">
45833 /*
45834  * Based on
45835  * Ext JS Library 1.1.1
45836  * Copyright(c) 2006-2007, Ext JS, LLC.
45837  *  
45838  
45839  */
45840
45841  
45842 /**
45843  * @class Roo.form.HtmlEditor.ToolbarContext
45844  * Context Toolbar
45845  * 
45846  * Usage:
45847  *
45848  new Roo.form.HtmlEditor({
45849     ....
45850     toolbars : [
45851         { xtype: 'ToolbarStandard', styles : {} }
45852         { xtype: 'ToolbarContext', disable : {} }
45853     ]
45854 })
45855
45856      
45857  * 
45858  * @config : {Object} disable List of elements to disable.. (not done yet.)
45859  * @config : {Object} styles  Map of styles available.
45860  * 
45861  */
45862
45863 Roo.form.HtmlEditor.ToolbarContext = function(config)
45864 {
45865     
45866     Roo.apply(this, config);
45867     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
45868     // dont call parent... till later.
45869     this.styles = this.styles || {};
45870 }
45871
45872  
45873
45874 Roo.form.HtmlEditor.ToolbarContext.types = {
45875     'IMG' : {
45876         width : {
45877             title: "Width",
45878             width: 40
45879         },
45880         height:  {
45881             title: "Height",
45882             width: 40
45883         },
45884         align: {
45885             title: "Align",
45886             opts : [ [""],[ "left"],[ "right"],[ "center"],[ "top"]],
45887             width : 80
45888             
45889         },
45890         border: {
45891             title: "Border",
45892             width: 40
45893         },
45894         alt: {
45895             title: "Alt",
45896             width: 120
45897         },
45898         src : {
45899             title: "Src",
45900             width: 220
45901         }
45902         
45903     },
45904     'A' : {
45905         name : {
45906             title: "Name",
45907             width: 50
45908         },
45909         target:  {
45910             title: "Target",
45911             width: 120
45912         },
45913         href:  {
45914             title: "Href",
45915             width: 220
45916         } // border?
45917         
45918     },
45919     'TABLE' : {
45920         rows : {
45921             title: "Rows",
45922             width: 20
45923         },
45924         cols : {
45925             title: "Cols",
45926             width: 20
45927         },
45928         width : {
45929             title: "Width",
45930             width: 40
45931         },
45932         height : {
45933             title: "Height",
45934             width: 40
45935         },
45936         border : {
45937             title: "Border",
45938             width: 20
45939         }
45940     },
45941     'TD' : {
45942         width : {
45943             title: "Width",
45944             width: 40
45945         },
45946         height : {
45947             title: "Height",
45948             width: 40
45949         },   
45950         align: {
45951             title: "Align",
45952             opts : [[""],[ "left"],[ "center"],[ "right"],[ "justify"],[ "char"]],
45953             width: 80
45954         },
45955         valign: {
45956             title: "Valign",
45957             opts : [[""],[ "top"],[ "middle"],[ "bottom"],[ "baseline"]],
45958             width: 80
45959         },
45960         colspan: {
45961             title: "Colspan",
45962             width: 20
45963             
45964         },
45965          'font-family'  : {
45966             title : "Font",
45967             style : 'fontFamily',
45968             displayField: 'display',
45969             optname : 'font-family',
45970             width: 140
45971         }
45972     },
45973     'INPUT' : {
45974         name : {
45975             title: "name",
45976             width: 120
45977         },
45978         value : {
45979             title: "Value",
45980             width: 120
45981         },
45982         width : {
45983             title: "Width",
45984             width: 40
45985         }
45986     },
45987     'LABEL' : {
45988         'for' : {
45989             title: "For",
45990             width: 120
45991         }
45992     },
45993     'TEXTAREA' : {
45994           name : {
45995             title: "name",
45996             width: 120
45997         },
45998         rows : {
45999             title: "Rows",
46000             width: 20
46001         },
46002         cols : {
46003             title: "Cols",
46004             width: 20
46005         }
46006     },
46007     'SELECT' : {
46008         name : {
46009             title: "name",
46010             width: 120
46011         },
46012         selectoptions : {
46013             title: "Options",
46014             width: 200
46015         }
46016     },
46017     
46018     // should we really allow this??
46019     // should this just be 
46020     'BODY' : {
46021         title : {
46022             title: "Title",
46023             width: 200,
46024             disabled : true
46025         }
46026     },
46027     'SPAN' : {
46028         'font-family'  : {
46029             title : "Font",
46030             style : 'fontFamily',
46031             displayField: 'display',
46032             optname : 'font-family',
46033             width: 140
46034         }
46035     },
46036     'DIV' : {
46037         'font-family'  : {
46038             title : "Font",
46039             style : 'fontFamily',
46040             displayField: 'display',
46041             optname : 'font-family',
46042             width: 140
46043         }
46044     },
46045      'P' : {
46046         'font-family'  : {
46047             title : "Font",
46048             style : 'fontFamily',
46049             displayField: 'display',
46050             optname : 'font-family',
46051             width: 140
46052         }
46053     },
46054     
46055     '*' : {
46056         // empty..
46057     }
46058
46059 };
46060
46061 // this should be configurable.. - you can either set it up using stores, or modify options somehwere..
46062 Roo.form.HtmlEditor.ToolbarContext.stores = false;
46063
46064 Roo.form.HtmlEditor.ToolbarContext.options = {
46065         'font-family'  : [ 
46066                 [ 'Helvetica,Arial,sans-serif', 'Helvetica'],
46067                 [ 'Courier New', 'Courier New'],
46068                 [ 'Tahoma', 'Tahoma'],
46069                 [ 'Times New Roman,serif', 'Times'],
46070                 [ 'Verdana','Verdana' ]
46071         ]
46072 };
46073
46074 // fixme - these need to be configurable..
46075  
46076
46077 //Roo.form.HtmlEditor.ToolbarContext.types
46078
46079
46080 Roo.apply(Roo.form.HtmlEditor.ToolbarContext.prototype,  {
46081     
46082     tb: false,
46083     
46084     rendered: false,
46085     
46086     editor : false,
46087     editorcore : false,
46088     /**
46089      * @cfg {Object} disable  List of toolbar elements to disable
46090          
46091      */
46092     disable : false,
46093     /**
46094      * @cfg {Object} styles List of styles 
46095      *    eg. { '*' : [ 'headline' ] , 'TD' : [ 'underline', 'double-underline' ] } 
46096      *
46097      * These must be defined in the page, so they get rendered correctly..
46098      * .headline { }
46099      * TD.underline { }
46100      * 
46101      */
46102     styles : false,
46103     
46104     options: false,
46105     
46106     toolbars : false,
46107     
46108     init : function(editor)
46109     {
46110         this.editor = editor;
46111         this.editorcore = editor.editorcore ? editor.editorcore : editor;
46112         var editorcore = this.editorcore;
46113         
46114         var fid = editorcore.frameId;
46115         var etb = this;
46116         function btn(id, toggle, handler){
46117             var xid = fid + '-'+ id ;
46118             return {
46119                 id : xid,
46120                 cmd : id,
46121                 cls : 'x-btn-icon x-edit-'+id,
46122                 enableToggle:toggle !== false,
46123                 scope: editorcore, // was editor...
46124                 handler:handler||editorcore.relayBtnCmd,
46125                 clickEvent:'mousedown',
46126                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
46127                 tabIndex:-1
46128             };
46129         }
46130         // create a new element.
46131         var wdiv = editor.wrap.createChild({
46132                 tag: 'div'
46133             }, editor.wrap.dom.firstChild.nextSibling, true);
46134         
46135         // can we do this more than once??
46136         
46137          // stop form submits
46138       
46139  
46140         // disable everything...
46141         var ty= Roo.form.HtmlEditor.ToolbarContext.types;
46142         this.toolbars = {};
46143            
46144         for (var i in  ty) {
46145           
46146             this.toolbars[i] = this.buildToolbar(ty[i],i);
46147         }
46148         this.tb = this.toolbars.BODY;
46149         this.tb.el.show();
46150         this.buildFooter();
46151         this.footer.show();
46152         editor.on('hide', function( ) { this.footer.hide() }, this);
46153         editor.on('show', function( ) { this.footer.show() }, this);
46154         
46155          
46156         this.rendered = true;
46157         
46158         // the all the btns;
46159         editor.on('editorevent', this.updateToolbar, this);
46160         // other toolbars need to implement this..
46161         //editor.on('editmodechange', this.updateToolbar, this);
46162     },
46163     
46164     
46165     
46166     /**
46167      * Protected method that will not generally be called directly. It triggers
46168      * a toolbar update by reading the markup state of the current selection in the editor.
46169      *
46170      * Note you can force an update by calling on('editorevent', scope, false)
46171      */
46172     updateToolbar: function(editor,ev,sel){
46173
46174         //Roo.log(ev);
46175         // capture mouse up - this is handy for selecting images..
46176         // perhaps should go somewhere else...
46177         if(!this.editorcore.activated){
46178              this.editor.onFirstFocus();
46179             return;
46180         }
46181         
46182         
46183         
46184         // http://developer.yahoo.com/yui/docs/simple-editor.js.html
46185         // selectNode - might want to handle IE?
46186         if (ev &&
46187             (ev.type == 'mouseup' || ev.type == 'click' ) &&
46188             ev.target && ev.target.tagName == 'IMG') {
46189             // they have click on an image...
46190             // let's see if we can change the selection...
46191             sel = ev.target;
46192          
46193               var nodeRange = sel.ownerDocument.createRange();
46194             try {
46195                 nodeRange.selectNode(sel);
46196             } catch (e) {
46197                 nodeRange.selectNodeContents(sel);
46198             }
46199             //nodeRange.collapse(true);
46200             var s = this.editorcore.win.getSelection();
46201             s.removeAllRanges();
46202             s.addRange(nodeRange);
46203         }  
46204         
46205       
46206         var updateFooter = sel ? false : true;
46207         
46208         
46209         var ans = this.editorcore.getAllAncestors();
46210         
46211         // pick
46212         var ty= Roo.form.HtmlEditor.ToolbarContext.types;
46213         
46214         if (!sel) { 
46215             sel = ans.length ? (ans[0] ?  ans[0]  : ans[1]) : this.editorcore.doc.body;
46216             sel = sel ? sel : this.editorcore.doc.body;
46217             sel = sel.tagName.length ? sel : this.editorcore.doc.body;
46218             
46219         }
46220         // pick a menu that exists..
46221         var tn = sel.tagName.toUpperCase();
46222         //sel = typeof(ty[tn]) != 'undefined' ? sel : this.editor.doc.body;
46223         
46224         tn = sel.tagName.toUpperCase();
46225         
46226         var lastSel = this.tb.selectedNode;
46227         
46228         this.tb.selectedNode = sel;
46229         
46230         // if current menu does not match..
46231         
46232         if ((this.tb.name != tn) || (lastSel != this.tb.selectedNode) || ev === false) {
46233                 
46234             this.tb.el.hide();
46235             ///console.log("show: " + tn);
46236             this.tb =  typeof(ty[tn]) != 'undefined' ? this.toolbars[tn] : this.toolbars['*'];
46237             this.tb.el.show();
46238             // update name
46239             this.tb.items.first().el.innerHTML = tn + ':&nbsp;';
46240             
46241             
46242             // update attributes
46243             if (this.tb.fields) {
46244                 this.tb.fields.each(function(e) {
46245                     if (e.stylename) {
46246                         e.setValue(sel.style[e.stylename]);
46247                         return;
46248                     } 
46249                    e.setValue(sel.getAttribute(e.attrname));
46250                 });
46251             }
46252             
46253             var hasStyles = false;
46254             for(var i in this.styles) {
46255                 hasStyles = true;
46256                 break;
46257             }
46258             
46259             // update styles
46260             if (hasStyles) { 
46261                 var st = this.tb.fields.item(0);
46262                 
46263                 st.store.removeAll();
46264                
46265                 
46266                 var cn = sel.className.split(/\s+/);
46267                 
46268                 var avs = [];
46269                 if (this.styles['*']) {
46270                     
46271                     Roo.each(this.styles['*'], function(v) {
46272                         avs.push( [ v , cn.indexOf(v) > -1 ? 1 : 0 ] );         
46273                     });
46274                 }
46275                 if (this.styles[tn]) { 
46276                     Roo.each(this.styles[tn], function(v) {
46277                         avs.push( [ v , cn.indexOf(v) > -1 ? 1 : 0 ] );         
46278                     });
46279                 }
46280                 
46281                 st.store.loadData(avs);
46282                 st.collapse();
46283                 st.setValue(cn);
46284             }
46285             // flag our selected Node.
46286             this.tb.selectedNode = sel;
46287            
46288            
46289             Roo.menu.MenuMgr.hideAll();
46290
46291         }
46292         
46293         if (!updateFooter) {
46294             //this.footDisp.dom.innerHTML = ''; 
46295             return;
46296         }
46297         // update the footer
46298         //
46299         var html = '';
46300         
46301         this.footerEls = ans.reverse();
46302         Roo.each(this.footerEls, function(a,i) {
46303             if (!a) { return; }
46304             html += html.length ? ' &gt; '  :  '';
46305             
46306             html += '<span class="x-ed-loc-' + i + '">' + a.tagName + '</span>';
46307             
46308         });
46309        
46310         // 
46311         var sz = this.footDisp.up('td').getSize();
46312         this.footDisp.dom.style.width = (sz.width -10) + 'px';
46313         this.footDisp.dom.style.marginLeft = '5px';
46314         
46315         this.footDisp.dom.style.overflow = 'hidden';
46316         
46317         this.footDisp.dom.innerHTML = html;
46318             
46319         //this.editorsyncValue();
46320     },
46321      
46322     
46323    
46324        
46325     // private
46326     onDestroy : function(){
46327         if(this.rendered){
46328             
46329             this.tb.items.each(function(item){
46330                 if(item.menu){
46331                     item.menu.removeAll();
46332                     if(item.menu.el){
46333                         item.menu.el.destroy();
46334                     }
46335                 }
46336                 item.destroy();
46337             });
46338              
46339         }
46340     },
46341     onFirstFocus: function() {
46342         // need to do this for all the toolbars..
46343         this.tb.items.each(function(item){
46344            item.enable();
46345         });
46346     },
46347     buildToolbar: function(tlist, nm)
46348     {
46349         var editor = this.editor;
46350         var editorcore = this.editorcore;
46351          // create a new element.
46352         var wdiv = editor.wrap.createChild({
46353                 tag: 'div'
46354             }, editor.wrap.dom.firstChild.nextSibling, true);
46355         
46356        
46357         var tb = new Roo.Toolbar(wdiv);
46358         // add the name..
46359         
46360         tb.add(nm+ ":&nbsp;");
46361         
46362         var styles = [];
46363         for(var i in this.styles) {
46364             styles.push(i);
46365         }
46366         
46367         // styles...
46368         if (styles && styles.length) {
46369             
46370             // this needs a multi-select checkbox...
46371             tb.addField( new Roo.form.ComboBox({
46372                 store: new Roo.data.SimpleStore({
46373                     id : 'val',
46374                     fields: ['val', 'selected'],
46375                     data : [] 
46376                 }),
46377                 name : '-roo-edit-className',
46378                 attrname : 'className',
46379                 displayField: 'val',
46380                 typeAhead: false,
46381                 mode: 'local',
46382                 editable : false,
46383                 triggerAction: 'all',
46384                 emptyText:'Select Style',
46385                 selectOnFocus:true,
46386                 width: 130,
46387                 listeners : {
46388                     'select': function(c, r, i) {
46389                         // initial support only for on class per el..
46390                         tb.selectedNode.className =  r ? r.get('val') : '';
46391                         editorcore.syncValue();
46392                     }
46393                 }
46394     
46395             }));
46396         }
46397         
46398         var tbc = Roo.form.HtmlEditor.ToolbarContext;
46399         var tbops = tbc.options;
46400         
46401         for (var i in tlist) {
46402             
46403             var item = tlist[i];
46404             tb.add(item.title + ":&nbsp;");
46405             
46406             
46407             //optname == used so you can configure the options available..
46408             var opts = item.opts ? item.opts : false;
46409             if (item.optname) {
46410                 opts = tbops[item.optname];
46411            
46412             }
46413             
46414             if (opts) {
46415                 // opts == pulldown..
46416                 tb.addField( new Roo.form.ComboBox({
46417                     store:   typeof(tbc.stores[i]) != 'undefined' ?  Roo.factory(tbc.stores[i],Roo.data) : new Roo.data.SimpleStore({
46418                         id : 'val',
46419                         fields: ['val', 'display'],
46420                         data : opts  
46421                     }),
46422                     name : '-roo-edit-' + i,
46423                     attrname : i,
46424                     stylename : item.style ? item.style : false,
46425                     displayField: item.displayField ? item.displayField : 'val',
46426                     valueField :  'val',
46427                     typeAhead: false,
46428                     mode: typeof(tbc.stores[i]) != 'undefined'  ? 'remote' : 'local',
46429                     editable : false,
46430                     triggerAction: 'all',
46431                     emptyText:'Select',
46432                     selectOnFocus:true,
46433                     width: item.width ? item.width  : 130,
46434                     listeners : {
46435                         'select': function(c, r, i) {
46436                             if (c.stylename) {
46437                                 tb.selectedNode.style[c.stylename] =  r.get('val');
46438                                 return;
46439                             }
46440                             tb.selectedNode.setAttribute(c.attrname, r.get('val'));
46441                         }
46442                     }
46443
46444                 }));
46445                 continue;
46446                     
46447                  
46448                 
46449                 tb.addField( new Roo.form.TextField({
46450                     name: i,
46451                     width: 100,
46452                     //allowBlank:false,
46453                     value: ''
46454                 }));
46455                 continue;
46456             }
46457             tb.addField( new Roo.form.TextField({
46458                 name: '-roo-edit-' + i,
46459                 attrname : i,
46460                 
46461                 width: item.width,
46462                 //allowBlank:true,
46463                 value: '',
46464                 listeners: {
46465                     'change' : function(f, nv, ov) {
46466                         tb.selectedNode.setAttribute(f.attrname, nv);
46467                         editorcore.syncValue();
46468                     }
46469                 }
46470             }));
46471              
46472         }
46473         
46474         var _this = this;
46475         
46476         if(nm == 'BODY'){
46477             tb.addSeparator();
46478         
46479             tb.addButton( {
46480                 text: 'Stylesheets',
46481
46482                 listeners : {
46483                     click : function ()
46484                     {
46485                         _this.editor.fireEvent('stylesheetsclick', _this.editor);
46486                     }
46487                 }
46488             });
46489         }
46490         
46491         tb.addFill();
46492         tb.addButton( {
46493             text: 'Remove Tag',
46494     
46495             listeners : {
46496                 click : function ()
46497                 {
46498                     // remove
46499                     // undo does not work.
46500                      
46501                     var sn = tb.selectedNode;
46502                     
46503                     var pn = sn.parentNode;
46504                     
46505                     var stn =  sn.childNodes[0];
46506                     var en = sn.childNodes[sn.childNodes.length - 1 ];
46507                     while (sn.childNodes.length) {
46508                         var node = sn.childNodes[0];
46509                         sn.removeChild(node);
46510                         //Roo.log(node);
46511                         pn.insertBefore(node, sn);
46512                         
46513                     }
46514                     pn.removeChild(sn);
46515                     var range = editorcore.createRange();
46516         
46517                     range.setStart(stn,0);
46518                     range.setEnd(en,0); //????
46519                     //range.selectNode(sel);
46520                     
46521                     
46522                     var selection = editorcore.getSelection();
46523                     selection.removeAllRanges();
46524                     selection.addRange(range);
46525                     
46526                     
46527                     
46528                     //_this.updateToolbar(null, null, pn);
46529                     _this.updateToolbar(null, null, null);
46530                     _this.footDisp.dom.innerHTML = ''; 
46531                 }
46532             }
46533             
46534                     
46535                 
46536             
46537         });
46538         
46539         
46540         tb.el.on('click', function(e){
46541             e.preventDefault(); // what does this do?
46542         });
46543         tb.el.setVisibilityMode( Roo.Element.DISPLAY);
46544         tb.el.hide();
46545         tb.name = nm;
46546         // dont need to disable them... as they will get hidden
46547         return tb;
46548          
46549         
46550     },
46551     buildFooter : function()
46552     {
46553         
46554         var fel = this.editor.wrap.createChild();
46555         this.footer = new Roo.Toolbar(fel);
46556         // toolbar has scrolly on left / right?
46557         var footDisp= new Roo.Toolbar.Fill();
46558         var _t = this;
46559         this.footer.add(
46560             {
46561                 text : '&lt;',
46562                 xtype: 'Button',
46563                 handler : function() {
46564                     _t.footDisp.scrollTo('left',0,true)
46565                 }
46566             }
46567         );
46568         this.footer.add( footDisp );
46569         this.footer.add( 
46570             {
46571                 text : '&gt;',
46572                 xtype: 'Button',
46573                 handler : function() {
46574                     // no animation..
46575                     _t.footDisp.select('span').last().scrollIntoView(_t.footDisp,true);
46576                 }
46577             }
46578         );
46579         var fel = Roo.get(footDisp.el);
46580         fel.addClass('x-editor-context');
46581         this.footDispWrap = fel; 
46582         this.footDispWrap.overflow  = 'hidden';
46583         
46584         this.footDisp = fel.createChild();
46585         this.footDispWrap.on('click', this.onContextClick, this)
46586         
46587         
46588     },
46589     onContextClick : function (ev,dom)
46590     {
46591         ev.preventDefault();
46592         var  cn = dom.className;
46593         //Roo.log(cn);
46594         if (!cn.match(/x-ed-loc-/)) {
46595             return;
46596         }
46597         var n = cn.split('-').pop();
46598         var ans = this.footerEls;
46599         var sel = ans[n];
46600         
46601          // pick
46602         var range = this.editorcore.createRange();
46603         
46604         range.selectNodeContents(sel);
46605         //range.selectNode(sel);
46606         
46607         
46608         var selection = this.editorcore.getSelection();
46609         selection.removeAllRanges();
46610         selection.addRange(range);
46611         
46612         
46613         
46614         this.updateToolbar(null, null, sel);
46615         
46616         
46617     }
46618     
46619     
46620     
46621     
46622     
46623 });
46624
46625
46626
46627
46628
46629 /*
46630  * Based on:
46631  * Ext JS Library 1.1.1
46632  * Copyright(c) 2006-2007, Ext JS, LLC.
46633  *
46634  * Originally Released Under LGPL - original licence link has changed is not relivant.
46635  *
46636  * Fork - LGPL
46637  * <script type="text/javascript">
46638  */
46639  
46640 /**
46641  * @class Roo.form.BasicForm
46642  * @extends Roo.util.Observable
46643  * Supplies the functionality to do "actions" on forms and initialize Roo.form.Field types on existing markup.
46644  * @constructor
46645  * @param {String/HTMLElement/Roo.Element} el The form element or its id
46646  * @param {Object} config Configuration options
46647  */
46648 Roo.form.BasicForm = function(el, config){
46649     this.allItems = [];
46650     this.childForms = [];
46651     Roo.apply(this, config);
46652     /*
46653      * The Roo.form.Field items in this form.
46654      * @type MixedCollection
46655      */
46656      
46657      
46658     this.items = new Roo.util.MixedCollection(false, function(o){
46659         return o.id || (o.id = Roo.id());
46660     });
46661     this.addEvents({
46662         /**
46663          * @event beforeaction
46664          * Fires before any action is performed. Return false to cancel the action.
46665          * @param {Form} this
46666          * @param {Action} action The action to be performed
46667          */
46668         beforeaction: true,
46669         /**
46670          * @event actionfailed
46671          * Fires when an action fails.
46672          * @param {Form} this
46673          * @param {Action} action The action that failed
46674          */
46675         actionfailed : true,
46676         /**
46677          * @event actioncomplete
46678          * Fires when an action is completed.
46679          * @param {Form} this
46680          * @param {Action} action The action that completed
46681          */
46682         actioncomplete : true
46683     });
46684     if(el){
46685         this.initEl(el);
46686     }
46687     Roo.form.BasicForm.superclass.constructor.call(this);
46688 };
46689
46690 Roo.extend(Roo.form.BasicForm, Roo.util.Observable, {
46691     /**
46692      * @cfg {String} method
46693      * The request method to use (GET or POST) for form actions if one isn't supplied in the action options.
46694      */
46695     /**
46696      * @cfg {DataReader} reader
46697      * An Roo.data.DataReader (e.g. {@link Roo.data.XmlReader}) to be used to read data when executing "load" actions.
46698      * This is optional as there is built-in support for processing JSON.
46699      */
46700     /**
46701      * @cfg {DataReader} errorReader
46702      * An Roo.data.DataReader (e.g. {@link Roo.data.XmlReader}) to be used to read data when reading validation errors on "submit" actions.
46703      * This is completely optional as there is built-in support for processing JSON.
46704      */
46705     /**
46706      * @cfg {String} url
46707      * The URL to use for form actions if one isn't supplied in the action options.
46708      */
46709     /**
46710      * @cfg {Boolean} fileUpload
46711      * Set to true if this form is a file upload.
46712      */
46713      
46714     /**
46715      * @cfg {Object} baseParams
46716      * Parameters to pass with all requests. e.g. baseParams: {id: '123', foo: 'bar'}.
46717      */
46718      /**
46719      
46720     /**
46721      * @cfg {Number} timeout Timeout for form actions in seconds (default is 30 seconds).
46722      */
46723     timeout: 30,
46724
46725     // private
46726     activeAction : null,
46727
46728     /**
46729      * @cfg {Boolean} trackResetOnLoad If set to true, form.reset() resets to the last loaded
46730      * or setValues() data instead of when the form was first created.
46731      */
46732     trackResetOnLoad : false,
46733     
46734     
46735     /**
46736      * childForms - used for multi-tab forms
46737      * @type {Array}
46738      */
46739     childForms : false,
46740     
46741     /**
46742      * allItems - full list of fields.
46743      * @type {Array}
46744      */
46745     allItems : false,
46746     
46747     /**
46748      * By default wait messages are displayed with Roo.MessageBox.wait. You can target a specific
46749      * element by passing it or its id or mask the form itself by passing in true.
46750      * @type Mixed
46751      */
46752     waitMsgTarget : false,
46753
46754     // private
46755     initEl : function(el){
46756         this.el = Roo.get(el);
46757         this.id = this.el.id || Roo.id();
46758         this.el.on('submit', this.onSubmit, this);
46759         this.el.addClass('x-form');
46760     },
46761
46762     // private
46763     onSubmit : function(e){
46764         e.stopEvent();
46765     },
46766
46767     /**
46768      * Returns true if client-side validation on the form is successful.
46769      * @return Boolean
46770      */
46771     isValid : function(){
46772         var valid = true;
46773         this.items.each(function(f){
46774            if(!f.validate()){
46775                valid = false;
46776            }
46777         });
46778         return valid;
46779     },
46780
46781     /**
46782      * DEPRICATED Returns true if any fields in this form have changed since their original load. 
46783      * @return Boolean
46784      */
46785     isDirty : function(){
46786         var dirty = false;
46787         this.items.each(function(f){
46788            if(f.isDirty()){
46789                dirty = true;
46790                return false;
46791            }
46792         });
46793         return dirty;
46794     },
46795     
46796     /**
46797      * Returns true if any fields in this form have changed since their original load. (New version)
46798      * @return Boolean
46799      */
46800     
46801     hasChanged : function()
46802     {
46803         var dirty = false;
46804         this.items.each(function(f){
46805            if(f.hasChanged()){
46806                dirty = true;
46807                return false;
46808            }
46809         });
46810         return dirty;
46811         
46812     },
46813     /**
46814      * Resets all hasChanged to 'false' -
46815      * The old 'isDirty' used 'original value..' however this breaks reset() and a few other things.
46816      * So hasChanged storage is only to be used for this purpose
46817      * @return Boolean
46818      */
46819     resetHasChanged : function()
46820     {
46821         this.items.each(function(f){
46822            f.resetHasChanged();
46823         });
46824         
46825     },
46826     
46827     
46828     /**
46829      * Performs a predefined action (submit or load) or custom actions you define on this form.
46830      * @param {String} actionName The name of the action type
46831      * @param {Object} options (optional) The options to pass to the action.  All of the config options listed
46832      * below are supported by both the submit and load actions unless otherwise noted (custom actions could also
46833      * accept other config options):
46834      * <pre>
46835 Property          Type             Description
46836 ----------------  ---------------  ----------------------------------------------------------------------------------
46837 url               String           The url for the action (defaults to the form's url)
46838 method            String           The form method to use (defaults to the form's method, or POST if not defined)
46839 params            String/Object    The params to pass (defaults to the form's baseParams, or none if not defined)
46840 clientValidation  Boolean          Applies to submit only.  Pass true to call form.isValid() prior to posting to
46841                                    validate the form on the client (defaults to false)
46842      * </pre>
46843      * @return {BasicForm} this
46844      */
46845     doAction : function(action, options){
46846         if(typeof action == 'string'){
46847             action = new Roo.form.Action.ACTION_TYPES[action](this, options);
46848         }
46849         if(this.fireEvent('beforeaction', this, action) !== false){
46850             this.beforeAction(action);
46851             action.run.defer(100, action);
46852         }
46853         return this;
46854     },
46855
46856     /**
46857      * Shortcut to do a submit action.
46858      * @param {Object} options The options to pass to the action (see {@link #doAction} for details)
46859      * @return {BasicForm} this
46860      */
46861     submit : function(options){
46862         this.doAction('submit', options);
46863         return this;
46864     },
46865
46866     /**
46867      * Shortcut to do a load action.
46868      * @param {Object} options The options to pass to the action (see {@link #doAction} for details)
46869      * @return {BasicForm} this
46870      */
46871     load : function(options){
46872         this.doAction('load', options);
46873         return this;
46874     },
46875
46876     /**
46877      * Persists the values in this form into the passed Roo.data.Record object in a beginEdit/endEdit block.
46878      * @param {Record} record The record to edit
46879      * @return {BasicForm} this
46880      */
46881     updateRecord : function(record){
46882         record.beginEdit();
46883         var fs = record.fields;
46884         fs.each(function(f){
46885             var field = this.findField(f.name);
46886             if(field){
46887                 record.set(f.name, field.getValue());
46888             }
46889         }, this);
46890         record.endEdit();
46891         return this;
46892     },
46893
46894     /**
46895      * Loads an Roo.data.Record into this form.
46896      * @param {Record} record The record to load
46897      * @return {BasicForm} this
46898      */
46899     loadRecord : function(record){
46900         this.setValues(record.data);
46901         return this;
46902     },
46903
46904     // private
46905     beforeAction : function(action){
46906         var o = action.options;
46907         
46908        
46909         if(this.waitMsgTarget === true){
46910             this.el.mask(o.waitMsg || "Sending", 'x-mask-loading');
46911         }else if(this.waitMsgTarget){
46912             this.waitMsgTarget = Roo.get(this.waitMsgTarget);
46913             this.waitMsgTarget.mask(o.waitMsg || "Sending", 'x-mask-loading');
46914         }else {
46915             Roo.MessageBox.wait(o.waitMsg || "Sending", o.waitTitle || this.waitTitle || 'Please Wait...');
46916         }
46917          
46918     },
46919
46920     // private
46921     afterAction : function(action, success){
46922         this.activeAction = null;
46923         var o = action.options;
46924         
46925         if(this.waitMsgTarget === true){
46926             this.el.unmask();
46927         }else if(this.waitMsgTarget){
46928             this.waitMsgTarget.unmask();
46929         }else{
46930             Roo.MessageBox.updateProgress(1);
46931             Roo.MessageBox.hide();
46932         }
46933          
46934         if(success){
46935             if(o.reset){
46936                 this.reset();
46937             }
46938             Roo.callback(o.success, o.scope, [this, action]);
46939             this.fireEvent('actioncomplete', this, action);
46940             
46941         }else{
46942             
46943             // failure condition..
46944             // we have a scenario where updates need confirming.
46945             // eg. if a locking scenario exists..
46946             // we look for { errors : { needs_confirm : true }} in the response.
46947             if (
46948                 (typeof(action.result) != 'undefined')  &&
46949                 (typeof(action.result.errors) != 'undefined')  &&
46950                 (typeof(action.result.errors.needs_confirm) != 'undefined')
46951            ){
46952                 var _t = this;
46953                 Roo.MessageBox.confirm(
46954                     "Change requires confirmation",
46955                     action.result.errorMsg,
46956                     function(r) {
46957                         if (r != 'yes') {
46958                             return;
46959                         }
46960                         _t.doAction('submit', { params :  { _submit_confirmed : 1 } }  );
46961                     }
46962                     
46963                 );
46964                 
46965                 
46966                 
46967                 return;
46968             }
46969             
46970             Roo.callback(o.failure, o.scope, [this, action]);
46971             // show an error message if no failed handler is set..
46972             if (!this.hasListener('actionfailed')) {
46973                 Roo.MessageBox.alert("Error",
46974                     (typeof(action.result) != 'undefined' && typeof(action.result.errorMsg) != 'undefined') ?
46975                         action.result.errorMsg :
46976                         "Saving Failed, please check your entries or try again"
46977                 );
46978             }
46979             
46980             this.fireEvent('actionfailed', this, action);
46981         }
46982         
46983     },
46984
46985     /**
46986      * Find a Roo.form.Field in this form by id, dataIndex, name or hiddenName
46987      * @param {String} id The value to search for
46988      * @return Field
46989      */
46990     findField : function(id){
46991         var field = this.items.get(id);
46992         if(!field){
46993             this.items.each(function(f){
46994                 if(f.isFormField && (f.dataIndex == id || f.id == id || f.getName() == id)){
46995                     field = f;
46996                     return false;
46997                 }
46998             });
46999         }
47000         return field || null;
47001     },
47002
47003     /**
47004      * Add a secondary form to this one, 
47005      * Used to provide tabbed forms. One form is primary, with hidden values 
47006      * which mirror the elements from the other forms.
47007      * 
47008      * @param {Roo.form.Form} form to add.
47009      * 
47010      */
47011     addForm : function(form)
47012     {
47013        
47014         if (this.childForms.indexOf(form) > -1) {
47015             // already added..
47016             return;
47017         }
47018         this.childForms.push(form);
47019         var n = '';
47020         Roo.each(form.allItems, function (fe) {
47021             
47022             n = typeof(fe.getName) == 'undefined' ? fe.name : fe.getName();
47023             if (this.findField(n)) { // already added..
47024                 return;
47025             }
47026             var add = new Roo.form.Hidden({
47027                 name : n
47028             });
47029             add.render(this.el);
47030             
47031             this.add( add );
47032         }, this);
47033         
47034     },
47035     /**
47036      * Mark fields in this form invalid in bulk.
47037      * @param {Array/Object} errors Either an array in the form [{id:'fieldId', msg:'The message'},...] or an object hash of {id: msg, id2: msg2}
47038      * @return {BasicForm} this
47039      */
47040     markInvalid : function(errors){
47041         if(errors instanceof Array){
47042             for(var i = 0, len = errors.length; i < len; i++){
47043                 var fieldError = errors[i];
47044                 var f = this.findField(fieldError.id);
47045                 if(f){
47046                     f.markInvalid(fieldError.msg);
47047                 }
47048             }
47049         }else{
47050             var field, id;
47051             for(id in errors){
47052                 if(typeof errors[id] != 'function' && (field = this.findField(id))){
47053                     field.markInvalid(errors[id]);
47054                 }
47055             }
47056         }
47057         Roo.each(this.childForms || [], function (f) {
47058             f.markInvalid(errors);
47059         });
47060         
47061         return this;
47062     },
47063
47064     /**
47065      * Set values for fields in this form in bulk.
47066      * @param {Array/Object} values Either an array in the form [{id:'fieldId', value:'foo'},...] or an object hash of {id: value, id2: value2}
47067      * @return {BasicForm} this
47068      */
47069     setValues : function(values){
47070         if(values instanceof Array){ // array of objects
47071             for(var i = 0, len = values.length; i < len; i++){
47072                 var v = values[i];
47073                 var f = this.findField(v.id);
47074                 if(f){
47075                     f.setValue(v.value);
47076                     if(this.trackResetOnLoad){
47077                         f.originalValue = f.getValue();
47078                     }
47079                 }
47080             }
47081         }else{ // object hash
47082             var field, id;
47083             for(id in values){
47084                 if(typeof values[id] != 'function' && (field = this.findField(id))){
47085                     
47086                     if (field.setFromData && 
47087                         field.valueField && 
47088                         field.displayField &&
47089                         // combos' with local stores can 
47090                         // be queried via setValue()
47091                         // to set their value..
47092                         (field.store && !field.store.isLocal)
47093                         ) {
47094                         // it's a combo
47095                         var sd = { };
47096                         sd[field.valueField] = typeof(values[field.hiddenName]) == 'undefined' ? '' : values[field.hiddenName];
47097                         sd[field.displayField] = typeof(values[field.name]) == 'undefined' ? '' : values[field.name];
47098                         field.setFromData(sd);
47099                         
47100                     } else {
47101                         field.setValue(values[id]);
47102                     }
47103                     
47104                     
47105                     if(this.trackResetOnLoad){
47106                         field.originalValue = field.getValue();
47107                     }
47108                 }
47109             }
47110         }
47111         this.resetHasChanged();
47112         
47113         
47114         Roo.each(this.childForms || [], function (f) {
47115             f.setValues(values);
47116             f.resetHasChanged();
47117         });
47118                 
47119         return this;
47120     },
47121
47122     /**
47123      * Returns the fields in this form as an object with key/value pairs. If multiple fields exist with the same name
47124      * they are returned as an array.
47125      * @param {Boolean} asString
47126      * @return {Object}
47127      */
47128     getValues : function(asString){
47129         if (this.childForms) {
47130             // copy values from the child forms
47131             Roo.each(this.childForms, function (f) {
47132                 this.setValues(f.getValues());
47133             }, this);
47134         }
47135         
47136         
47137         
47138         var fs = Roo.lib.Ajax.serializeForm(this.el.dom);
47139         if(asString === true){
47140             return fs;
47141         }
47142         return Roo.urlDecode(fs);
47143     },
47144     
47145     /**
47146      * Returns the fields in this form as an object with key/value pairs. 
47147      * This differs from getValues as it calls getValue on each child item, rather than using dom data.
47148      * @return {Object}
47149      */
47150     getFieldValues : function(with_hidden)
47151     {
47152         if (this.childForms) {
47153             // copy values from the child forms
47154             // should this call getFieldValues - probably not as we do not currently copy
47155             // hidden fields when we generate..
47156             Roo.each(this.childForms, function (f) {
47157                 this.setValues(f.getValues());
47158             }, this);
47159         }
47160         
47161         var ret = {};
47162         this.items.each(function(f){
47163             if (!f.getName()) {
47164                 return;
47165             }
47166             var v = f.getValue();
47167             if (f.inputType =='radio') {
47168                 if (typeof(ret[f.getName()]) == 'undefined') {
47169                     ret[f.getName()] = ''; // empty..
47170                 }
47171                 
47172                 if (!f.el.dom.checked) {
47173                     return;
47174                     
47175                 }
47176                 v = f.el.dom.value;
47177                 
47178             }
47179             
47180             // not sure if this supported any more..
47181             if ((typeof(v) == 'object') && f.getRawValue) {
47182                 v = f.getRawValue() ; // dates..
47183             }
47184             // combo boxes where name != hiddenName...
47185             if (f.name != f.getName()) {
47186                 ret[f.name] = f.getRawValue();
47187             }
47188             ret[f.getName()] = v;
47189         });
47190         
47191         return ret;
47192     },
47193
47194     /**
47195      * Clears all invalid messages in this form.
47196      * @return {BasicForm} this
47197      */
47198     clearInvalid : function(){
47199         this.items.each(function(f){
47200            f.clearInvalid();
47201         });
47202         
47203         Roo.each(this.childForms || [], function (f) {
47204             f.clearInvalid();
47205         });
47206         
47207         
47208         return this;
47209     },
47210
47211     /**
47212      * Resets this form.
47213      * @return {BasicForm} this
47214      */
47215     reset : function(){
47216         this.items.each(function(f){
47217             f.reset();
47218         });
47219         
47220         Roo.each(this.childForms || [], function (f) {
47221             f.reset();
47222         });
47223         this.resetHasChanged();
47224         
47225         return this;
47226     },
47227
47228     /**
47229      * Add Roo.form components to this form.
47230      * @param {Field} field1
47231      * @param {Field} field2 (optional)
47232      * @param {Field} etc (optional)
47233      * @return {BasicForm} this
47234      */
47235     add : function(){
47236         this.items.addAll(Array.prototype.slice.call(arguments, 0));
47237         return this;
47238     },
47239
47240
47241     /**
47242      * Removes a field from the items collection (does NOT remove its markup).
47243      * @param {Field} field
47244      * @return {BasicForm} this
47245      */
47246     remove : function(field){
47247         this.items.remove(field);
47248         return this;
47249     },
47250
47251     /**
47252      * Looks at the fields in this form, checks them for an id attribute,
47253      * and calls applyTo on the existing dom element with that id.
47254      * @return {BasicForm} this
47255      */
47256     render : function(){
47257         this.items.each(function(f){
47258             if(f.isFormField && !f.rendered && document.getElementById(f.id)){ // if the element exists
47259                 f.applyTo(f.id);
47260             }
47261         });
47262         return this;
47263     },
47264
47265     /**
47266      * Calls {@link Ext#apply} for all fields in this form with the passed object.
47267      * @param {Object} values
47268      * @return {BasicForm} this
47269      */
47270     applyToFields : function(o){
47271         this.items.each(function(f){
47272            Roo.apply(f, o);
47273         });
47274         return this;
47275     },
47276
47277     /**
47278      * Calls {@link Ext#applyIf} for all field in this form with the passed object.
47279      * @param {Object} values
47280      * @return {BasicForm} this
47281      */
47282     applyIfToFields : function(o){
47283         this.items.each(function(f){
47284            Roo.applyIf(f, o);
47285         });
47286         return this;
47287     }
47288 });
47289
47290 // back compat
47291 Roo.BasicForm = Roo.form.BasicForm;/*
47292  * Based on:
47293  * Ext JS Library 1.1.1
47294  * Copyright(c) 2006-2007, Ext JS, LLC.
47295  *
47296  * Originally Released Under LGPL - original licence link has changed is not relivant.
47297  *
47298  * Fork - LGPL
47299  * <script type="text/javascript">
47300  */
47301
47302 /**
47303  * @class Roo.form.Form
47304  * @extends Roo.form.BasicForm
47305  * Adds the ability to dynamically render forms with JavaScript to {@link Roo.form.BasicForm}.
47306  * @constructor
47307  * @param {Object} config Configuration options
47308  */
47309 Roo.form.Form = function(config){
47310     var xitems =  [];
47311     if (config.items) {
47312         xitems = config.items;
47313         delete config.items;
47314     }
47315    
47316     
47317     Roo.form.Form.superclass.constructor.call(this, null, config);
47318     this.url = this.url || this.action;
47319     if(!this.root){
47320         this.root = new Roo.form.Layout(Roo.applyIf({
47321             id: Roo.id()
47322         }, config));
47323     }
47324     this.active = this.root;
47325     /**
47326      * Array of all the buttons that have been added to this form via {@link addButton}
47327      * @type Array
47328      */
47329     this.buttons = [];
47330     this.allItems = [];
47331     this.addEvents({
47332         /**
47333          * @event clientvalidation
47334          * If the monitorValid config option is true, this event fires repetitively to notify of valid state
47335          * @param {Form} this
47336          * @param {Boolean} valid true if the form has passed client-side validation
47337          */
47338         clientvalidation: true,
47339         /**
47340          * @event rendered
47341          * Fires when the form is rendered
47342          * @param {Roo.form.Form} form
47343          */
47344         rendered : true
47345     });
47346     
47347     if (this.progressUrl) {
47348             // push a hidden field onto the list of fields..
47349             this.addxtype( {
47350                     xns: Roo.form, 
47351                     xtype : 'Hidden', 
47352                     name : 'UPLOAD_IDENTIFIER' 
47353             });
47354         }
47355         
47356     
47357     Roo.each(xitems, this.addxtype, this);
47358     
47359     
47360     
47361 };
47362
47363 Roo.extend(Roo.form.Form, Roo.form.BasicForm, {
47364     /**
47365      * @cfg {Number} labelWidth The width of labels. This property cascades to child containers.
47366      */
47367     /**
47368      * @cfg {String} itemCls A css class to apply to the x-form-item of fields. This property cascades to child containers.
47369      */
47370     /**
47371      * @cfg {String} buttonAlign Valid values are "left," "center" and "right" (defaults to "center")
47372      */
47373     buttonAlign:'center',
47374
47375     /**
47376      * @cfg {Number} minButtonWidth Minimum width of all buttons in pixels (defaults to 75)
47377      */
47378     minButtonWidth:75,
47379
47380     /**
47381      * @cfg {String} labelAlign Valid values are "left," "top" and "right" (defaults to "left").
47382      * This property cascades to child containers if not set.
47383      */
47384     labelAlign:'left',
47385
47386     /**
47387      * @cfg {Boolean} monitorValid If true the form monitors its valid state <b>client-side</b> and
47388      * fires a looping event with that state. This is required to bind buttons to the valid
47389      * state using the config value formBind:true on the button.
47390      */
47391     monitorValid : false,
47392
47393     /**
47394      * @cfg {Number} monitorPoll The milliseconds to poll valid state, ignored if monitorValid is not true (defaults to 200)
47395      */
47396     monitorPoll : 200,
47397     
47398     /**
47399      * @cfg {String} progressUrl - Url to return progress data 
47400      */
47401     
47402     progressUrl : false,
47403   
47404     /**
47405      * Opens a new {@link Roo.form.Column} container in the layout stack. If fields are passed after the config, the
47406      * fields are added and the column is closed. If no fields are passed the column remains open
47407      * until end() is called.
47408      * @param {Object} config The config to pass to the column
47409      * @param {Field} field1 (optional)
47410      * @param {Field} field2 (optional)
47411      * @param {Field} etc (optional)
47412      * @return Column The column container object
47413      */
47414     column : function(c){
47415         var col = new Roo.form.Column(c);
47416         this.start(col);
47417         if(arguments.length > 1){ // duplicate code required because of Opera
47418             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
47419             this.end();
47420         }
47421         return col;
47422     },
47423
47424     /**
47425      * Opens a new {@link Roo.form.FieldSet} container in the layout stack. If fields are passed after the config, the
47426      * fields are added and the fieldset is closed. If no fields are passed the fieldset remains open
47427      * until end() is called.
47428      * @param {Object} config The config to pass to the fieldset
47429      * @param {Field} field1 (optional)
47430      * @param {Field} field2 (optional)
47431      * @param {Field} etc (optional)
47432      * @return FieldSet The fieldset container object
47433      */
47434     fieldset : function(c){
47435         var fs = new Roo.form.FieldSet(c);
47436         this.start(fs);
47437         if(arguments.length > 1){ // duplicate code required because of Opera
47438             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
47439             this.end();
47440         }
47441         return fs;
47442     },
47443
47444     /**
47445      * Opens a new {@link Roo.form.Layout} container in the layout stack. If fields are passed after the config, the
47446      * fields are added and the container is closed. If no fields are passed the container remains open
47447      * until end() is called.
47448      * @param {Object} config The config to pass to the Layout
47449      * @param {Field} field1 (optional)
47450      * @param {Field} field2 (optional)
47451      * @param {Field} etc (optional)
47452      * @return Layout The container object
47453      */
47454     container : function(c){
47455         var l = new Roo.form.Layout(c);
47456         this.start(l);
47457         if(arguments.length > 1){ // duplicate code required because of Opera
47458             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
47459             this.end();
47460         }
47461         return l;
47462     },
47463
47464     /**
47465      * Opens the passed container in the layout stack. The container can be any {@link Roo.form.Layout} or subclass.
47466      * @param {Object} container A Roo.form.Layout or subclass of Layout
47467      * @return {Form} this
47468      */
47469     start : function(c){
47470         // cascade label info
47471         Roo.applyIf(c, {'labelAlign': this.active.labelAlign, 'labelWidth': this.active.labelWidth, 'itemCls': this.active.itemCls});
47472         this.active.stack.push(c);
47473         c.ownerCt = this.active;
47474         this.active = c;
47475         return this;
47476     },
47477
47478     /**
47479      * Closes the current open container
47480      * @return {Form} this
47481      */
47482     end : function(){
47483         if(this.active == this.root){
47484             return this;
47485         }
47486         this.active = this.active.ownerCt;
47487         return this;
47488     },
47489
47490     /**
47491      * Add Roo.form components to the current open container (e.g. column, fieldset, etc.).  Fields added via this method
47492      * can also be passed with an additional property of fieldLabel, which if supplied, will provide the text to display
47493      * as the label of the field.
47494      * @param {Field} field1
47495      * @param {Field} field2 (optional)
47496      * @param {Field} etc. (optional)
47497      * @return {Form} this
47498      */
47499     add : function(){
47500         this.active.stack.push.apply(this.active.stack, arguments);
47501         this.allItems.push.apply(this.allItems,arguments);
47502         var r = [];
47503         for(var i = 0, a = arguments, len = a.length; i < len; i++) {
47504             if(a[i].isFormField){
47505                 r.push(a[i]);
47506             }
47507         }
47508         if(r.length > 0){
47509             Roo.form.Form.superclass.add.apply(this, r);
47510         }
47511         return this;
47512     },
47513     
47514
47515     
47516     
47517     
47518      /**
47519      * Find any element that has been added to a form, using it's ID or name
47520      * This can include framesets, columns etc. along with regular fields..
47521      * @param {String} id - id or name to find.
47522      
47523      * @return {Element} e - or false if nothing found.
47524      */
47525     findbyId : function(id)
47526     {
47527         var ret = false;
47528         if (!id) {
47529             return ret;
47530         }
47531         Roo.each(this.allItems, function(f){
47532             if (f.id == id || f.name == id ){
47533                 ret = f;
47534                 return false;
47535             }
47536         });
47537         return ret;
47538     },
47539
47540     
47541     
47542     /**
47543      * Render this form into the passed container. This should only be called once!
47544      * @param {String/HTMLElement/Element} container The element this component should be rendered into
47545      * @return {Form} this
47546      */
47547     render : function(ct)
47548     {
47549         
47550         
47551         
47552         ct = Roo.get(ct);
47553         var o = this.autoCreate || {
47554             tag: 'form',
47555             method : this.method || 'POST',
47556             id : this.id || Roo.id()
47557         };
47558         this.initEl(ct.createChild(o));
47559
47560         this.root.render(this.el);
47561         
47562        
47563              
47564         this.items.each(function(f){
47565             f.render('x-form-el-'+f.id);
47566         });
47567
47568         if(this.buttons.length > 0){
47569             // tables are required to maintain order and for correct IE layout
47570             var tb = this.el.createChild({cls:'x-form-btns-ct', cn: {
47571                 cls:"x-form-btns x-form-btns-"+this.buttonAlign,
47572                 html:'<table cellspacing="0"><tbody><tr></tr></tbody></table><div class="x-clear"></div>'
47573             }}, null, true);
47574             var tr = tb.getElementsByTagName('tr')[0];
47575             for(var i = 0, len = this.buttons.length; i < len; i++) {
47576                 var b = this.buttons[i];
47577                 var td = document.createElement('td');
47578                 td.className = 'x-form-btn-td';
47579                 b.render(tr.appendChild(td));
47580             }
47581         }
47582         if(this.monitorValid){ // initialize after render
47583             this.startMonitoring();
47584         }
47585         this.fireEvent('rendered', this);
47586         return this;
47587     },
47588
47589     /**
47590      * Adds a button to the footer of the form - this <b>must</b> be called before the form is rendered.
47591      * @param {String/Object} config A string becomes the button text, an object can either be a Button config
47592      * object or a valid Roo.DomHelper element config
47593      * @param {Function} handler The function called when the button is clicked
47594      * @param {Object} scope (optional) The scope of the handler function
47595      * @return {Roo.Button}
47596      */
47597     addButton : function(config, handler, scope){
47598         var bc = {
47599             handler: handler,
47600             scope: scope,
47601             minWidth: this.minButtonWidth,
47602             hideParent:true
47603         };
47604         if(typeof config == "string"){
47605             bc.text = config;
47606         }else{
47607             Roo.apply(bc, config);
47608         }
47609         var btn = new Roo.Button(null, bc);
47610         this.buttons.push(btn);
47611         return btn;
47612     },
47613
47614      /**
47615      * Adds a series of form elements (using the xtype property as the factory method.
47616      * Valid xtypes are:  TextField, TextArea .... Button, Layout, FieldSet, Column, (and 'end' to close a block)
47617      * @param {Object} config 
47618      */
47619     
47620     addxtype : function()
47621     {
47622         var ar = Array.prototype.slice.call(arguments, 0);
47623         var ret = false;
47624         for(var i = 0; i < ar.length; i++) {
47625             if (!ar[i]) {
47626                 continue; // skip -- if this happends something invalid got sent, we 
47627                 // should ignore it, as basically that interface element will not show up
47628                 // and that should be pretty obvious!!
47629             }
47630             
47631             if (Roo.form[ar[i].xtype]) {
47632                 ar[i].form = this;
47633                 var fe = Roo.factory(ar[i], Roo.form);
47634                 if (!ret) {
47635                     ret = fe;
47636                 }
47637                 fe.form = this;
47638                 if (fe.store) {
47639                     fe.store.form = this;
47640                 }
47641                 if (fe.isLayout) {  
47642                          
47643                     this.start(fe);
47644                     this.allItems.push(fe);
47645                     if (fe.items && fe.addxtype) {
47646                         fe.addxtype.apply(fe, fe.items);
47647                         delete fe.items;
47648                     }
47649                      this.end();
47650                     continue;
47651                 }
47652                 
47653                 
47654                  
47655                 this.add(fe);
47656               //  console.log('adding ' + ar[i].xtype);
47657             }
47658             if (ar[i].xtype == 'Button') {  
47659                 //console.log('adding button');
47660                 //console.log(ar[i]);
47661                 this.addButton(ar[i]);
47662                 this.allItems.push(fe);
47663                 continue;
47664             }
47665             
47666             if (ar[i].xtype == 'end') { // so we can add fieldsets... / layout etc.
47667                 alert('end is not supported on xtype any more, use items');
47668             //    this.end();
47669             //    //console.log('adding end');
47670             }
47671             
47672         }
47673         return ret;
47674     },
47675     
47676     /**
47677      * Starts monitoring of the valid state of this form. Usually this is done by passing the config
47678      * option "monitorValid"
47679      */
47680     startMonitoring : function(){
47681         if(!this.bound){
47682             this.bound = true;
47683             Roo.TaskMgr.start({
47684                 run : this.bindHandler,
47685                 interval : this.monitorPoll || 200,
47686                 scope: this
47687             });
47688         }
47689     },
47690
47691     /**
47692      * Stops monitoring of the valid state of this form
47693      */
47694     stopMonitoring : function(){
47695         this.bound = false;
47696     },
47697
47698     // private
47699     bindHandler : function(){
47700         if(!this.bound){
47701             return false; // stops binding
47702         }
47703         var valid = true;
47704         this.items.each(function(f){
47705             if(!f.isValid(true)){
47706                 valid = false;
47707                 return false;
47708             }
47709         });
47710         for(var i = 0, len = this.buttons.length; i < len; i++){
47711             var btn = this.buttons[i];
47712             if(btn.formBind === true && btn.disabled === valid){
47713                 btn.setDisabled(!valid);
47714             }
47715         }
47716         this.fireEvent('clientvalidation', this, valid);
47717     }
47718     
47719     
47720     
47721     
47722     
47723     
47724     
47725     
47726 });
47727
47728
47729 // back compat
47730 Roo.Form = Roo.form.Form;
47731 /*
47732  * Based on:
47733  * Ext JS Library 1.1.1
47734  * Copyright(c) 2006-2007, Ext JS, LLC.
47735  *
47736  * Originally Released Under LGPL - original licence link has changed is not relivant.
47737  *
47738  * Fork - LGPL
47739  * <script type="text/javascript">
47740  */
47741
47742 // as we use this in bootstrap.
47743 Roo.namespace('Roo.form');
47744  /**
47745  * @class Roo.form.Action
47746  * Internal Class used to handle form actions
47747  * @constructor
47748  * @param {Roo.form.BasicForm} el The form element or its id
47749  * @param {Object} config Configuration options
47750  */
47751
47752  
47753  
47754 // define the action interface
47755 Roo.form.Action = function(form, options){
47756     this.form = form;
47757     this.options = options || {};
47758 };
47759 /**
47760  * Client Validation Failed
47761  * @const 
47762  */
47763 Roo.form.Action.CLIENT_INVALID = 'client';
47764 /**
47765  * Server Validation Failed
47766  * @const 
47767  */
47768 Roo.form.Action.SERVER_INVALID = 'server';
47769  /**
47770  * Connect to Server Failed
47771  * @const 
47772  */
47773 Roo.form.Action.CONNECT_FAILURE = 'connect';
47774 /**
47775  * Reading Data from Server Failed
47776  * @const 
47777  */
47778 Roo.form.Action.LOAD_FAILURE = 'load';
47779
47780 Roo.form.Action.prototype = {
47781     type : 'default',
47782     failureType : undefined,
47783     response : undefined,
47784     result : undefined,
47785
47786     // interface method
47787     run : function(options){
47788
47789     },
47790
47791     // interface method
47792     success : function(response){
47793
47794     },
47795
47796     // interface method
47797     handleResponse : function(response){
47798
47799     },
47800
47801     // default connection failure
47802     failure : function(response){
47803         
47804         this.response = response;
47805         this.failureType = Roo.form.Action.CONNECT_FAILURE;
47806         this.form.afterAction(this, false);
47807     },
47808
47809     processResponse : function(response){
47810         this.response = response;
47811         if(!response.responseText){
47812             return true;
47813         }
47814         this.result = this.handleResponse(response);
47815         return this.result;
47816     },
47817
47818     // utility functions used internally
47819     getUrl : function(appendParams){
47820         var url = this.options.url || this.form.url || this.form.el.dom.action;
47821         if(appendParams){
47822             var p = this.getParams();
47823             if(p){
47824                 url += (url.indexOf('?') != -1 ? '&' : '?') + p;
47825             }
47826         }
47827         return url;
47828     },
47829
47830     getMethod : function(){
47831         return (this.options.method || this.form.method || this.form.el.dom.method || 'POST').toUpperCase();
47832     },
47833
47834     getParams : function(){
47835         var bp = this.form.baseParams;
47836         var p = this.options.params;
47837         if(p){
47838             if(typeof p == "object"){
47839                 p = Roo.urlEncode(Roo.applyIf(p, bp));
47840             }else if(typeof p == 'string' && bp){
47841                 p += '&' + Roo.urlEncode(bp);
47842             }
47843         }else if(bp){
47844             p = Roo.urlEncode(bp);
47845         }
47846         return p;
47847     },
47848
47849     createCallback : function(){
47850         return {
47851             success: this.success,
47852             failure: this.failure,
47853             scope: this,
47854             timeout: (this.form.timeout*1000),
47855             upload: this.form.fileUpload ? this.success : undefined
47856         };
47857     }
47858 };
47859
47860 Roo.form.Action.Submit = function(form, options){
47861     Roo.form.Action.Submit.superclass.constructor.call(this, form, options);
47862 };
47863
47864 Roo.extend(Roo.form.Action.Submit, Roo.form.Action, {
47865     type : 'submit',
47866
47867     haveProgress : false,
47868     uploadComplete : false,
47869     
47870     // uploadProgress indicator.
47871     uploadProgress : function()
47872     {
47873         if (!this.form.progressUrl) {
47874             return;
47875         }
47876         
47877         if (!this.haveProgress) {
47878             Roo.MessageBox.progress("Uploading", "Uploading");
47879         }
47880         if (this.uploadComplete) {
47881            Roo.MessageBox.hide();
47882            return;
47883         }
47884         
47885         this.haveProgress = true;
47886    
47887         var uid = this.form.findField('UPLOAD_IDENTIFIER').getValue();
47888         
47889         var c = new Roo.data.Connection();
47890         c.request({
47891             url : this.form.progressUrl,
47892             params: {
47893                 id : uid
47894             },
47895             method: 'GET',
47896             success : function(req){
47897                //console.log(data);
47898                 var rdata = false;
47899                 var edata;
47900                 try  {
47901                    rdata = Roo.decode(req.responseText)
47902                 } catch (e) {
47903                     Roo.log("Invalid data from server..");
47904                     Roo.log(edata);
47905                     return;
47906                 }
47907                 if (!rdata || !rdata.success) {
47908                     Roo.log(rdata);
47909                     Roo.MessageBox.alert(Roo.encode(rdata));
47910                     return;
47911                 }
47912                 var data = rdata.data;
47913                 
47914                 if (this.uploadComplete) {
47915                    Roo.MessageBox.hide();
47916                    return;
47917                 }
47918                    
47919                 if (data){
47920                     Roo.MessageBox.updateProgress(data.bytes_uploaded/data.bytes_total,
47921                        Math.floor((data.bytes_total - data.bytes_uploaded)/1000) + 'k remaining'
47922                     );
47923                 }
47924                 this.uploadProgress.defer(2000,this);
47925             },
47926        
47927             failure: function(data) {
47928                 Roo.log('progress url failed ');
47929                 Roo.log(data);
47930             },
47931             scope : this
47932         });
47933            
47934     },
47935     
47936     
47937     run : function()
47938     {
47939         // run get Values on the form, so it syncs any secondary forms.
47940         this.form.getValues();
47941         
47942         var o = this.options;
47943         var method = this.getMethod();
47944         var isPost = method == 'POST';
47945         if(o.clientValidation === false || this.form.isValid()){
47946             
47947             if (this.form.progressUrl) {
47948                 this.form.findField('UPLOAD_IDENTIFIER').setValue(
47949                     (new Date() * 1) + '' + Math.random());
47950                     
47951             } 
47952             
47953             
47954             Roo.Ajax.request(Roo.apply(this.createCallback(), {
47955                 form:this.form.el.dom,
47956                 url:this.getUrl(!isPost),
47957                 method: method,
47958                 params:isPost ? this.getParams() : null,
47959                 isUpload: this.form.fileUpload
47960             }));
47961             
47962             this.uploadProgress();
47963
47964         }else if (o.clientValidation !== false){ // client validation failed
47965             this.failureType = Roo.form.Action.CLIENT_INVALID;
47966             this.form.afterAction(this, false);
47967         }
47968     },
47969
47970     success : function(response)
47971     {
47972         this.uploadComplete= true;
47973         if (this.haveProgress) {
47974             Roo.MessageBox.hide();
47975         }
47976         
47977         
47978         var result = this.processResponse(response);
47979         if(result === true || result.success){
47980             this.form.afterAction(this, true);
47981             return;
47982         }
47983         if(result.errors){
47984             this.form.markInvalid(result.errors);
47985             this.failureType = Roo.form.Action.SERVER_INVALID;
47986         }
47987         this.form.afterAction(this, false);
47988     },
47989     failure : function(response)
47990     {
47991         this.uploadComplete= true;
47992         if (this.haveProgress) {
47993             Roo.MessageBox.hide();
47994         }
47995         
47996         this.response = response;
47997         this.failureType = Roo.form.Action.CONNECT_FAILURE;
47998         this.form.afterAction(this, false);
47999     },
48000     
48001     handleResponse : function(response){
48002         if(this.form.errorReader){
48003             var rs = this.form.errorReader.read(response);
48004             var errors = [];
48005             if(rs.records){
48006                 for(var i = 0, len = rs.records.length; i < len; i++) {
48007                     var r = rs.records[i];
48008                     errors[i] = r.data;
48009                 }
48010             }
48011             if(errors.length < 1){
48012                 errors = null;
48013             }
48014             return {
48015                 success : rs.success,
48016                 errors : errors
48017             };
48018         }
48019         var ret = false;
48020         try {
48021             ret = Roo.decode(response.responseText);
48022         } catch (e) {
48023             ret = {
48024                 success: false,
48025                 errorMsg: "Failed to read server message: " + (response ? response.responseText : ' - no message'),
48026                 errors : []
48027             };
48028         }
48029         return ret;
48030         
48031     }
48032 });
48033
48034
48035 Roo.form.Action.Load = function(form, options){
48036     Roo.form.Action.Load.superclass.constructor.call(this, form, options);
48037     this.reader = this.form.reader;
48038 };
48039
48040 Roo.extend(Roo.form.Action.Load, Roo.form.Action, {
48041     type : 'load',
48042
48043     run : function(){
48044         
48045         Roo.Ajax.request(Roo.apply(
48046                 this.createCallback(), {
48047                     method:this.getMethod(),
48048                     url:this.getUrl(false),
48049                     params:this.getParams()
48050         }));
48051     },
48052
48053     success : function(response){
48054         
48055         var result = this.processResponse(response);
48056         if(result === true || !result.success || !result.data){
48057             this.failureType = Roo.form.Action.LOAD_FAILURE;
48058             this.form.afterAction(this, false);
48059             return;
48060         }
48061         this.form.clearInvalid();
48062         this.form.setValues(result.data);
48063         this.form.afterAction(this, true);
48064     },
48065
48066     handleResponse : function(response){
48067         if(this.form.reader){
48068             var rs = this.form.reader.read(response);
48069             var data = rs.records && rs.records[0] ? rs.records[0].data : null;
48070             return {
48071                 success : rs.success,
48072                 data : data
48073             };
48074         }
48075         return Roo.decode(response.responseText);
48076     }
48077 });
48078
48079 Roo.form.Action.ACTION_TYPES = {
48080     'load' : Roo.form.Action.Load,
48081     'submit' : Roo.form.Action.Submit
48082 };/*
48083  * Based on:
48084  * Ext JS Library 1.1.1
48085  * Copyright(c) 2006-2007, Ext JS, LLC.
48086  *
48087  * Originally Released Under LGPL - original licence link has changed is not relivant.
48088  *
48089  * Fork - LGPL
48090  * <script type="text/javascript">
48091  */
48092  
48093 /**
48094  * @class Roo.form.Layout
48095  * @extends Roo.Component
48096  * Creates a container for layout and rendering of fields in an {@link Roo.form.Form}.
48097  * @constructor
48098  * @param {Object} config Configuration options
48099  */
48100 Roo.form.Layout = function(config){
48101     var xitems = [];
48102     if (config.items) {
48103         xitems = config.items;
48104         delete config.items;
48105     }
48106     Roo.form.Layout.superclass.constructor.call(this, config);
48107     this.stack = [];
48108     Roo.each(xitems, this.addxtype, this);
48109      
48110 };
48111
48112 Roo.extend(Roo.form.Layout, Roo.Component, {
48113     /**
48114      * @cfg {String/Object} autoCreate
48115      * A DomHelper element spec used to autocreate the layout (defaults to {tag: 'div', cls: 'x-form-ct'})
48116      */
48117     /**
48118      * @cfg {String/Object/Function} style
48119      * A style specification string, e.g. "width:100px", or object in the form {width:"100px"}, or
48120      * a function which returns such a specification.
48121      */
48122     /**
48123      * @cfg {String} labelAlign
48124      * Valid values are "left," "top" and "right" (defaults to "left")
48125      */
48126     /**
48127      * @cfg {Number} labelWidth
48128      * Fixed width in pixels of all field labels (defaults to undefined)
48129      */
48130     /**
48131      * @cfg {Boolean} clear
48132      * True to add a clearing element at the end of this layout, equivalent to CSS clear: both (defaults to true)
48133      */
48134     clear : true,
48135     /**
48136      * @cfg {String} labelSeparator
48137      * The separator to use after field labels (defaults to ':')
48138      */
48139     labelSeparator : ':',
48140     /**
48141      * @cfg {Boolean} hideLabels
48142      * True to suppress the display of field labels in this layout (defaults to false)
48143      */
48144     hideLabels : false,
48145
48146     // private
48147     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct'},
48148     
48149     isLayout : true,
48150     
48151     // private
48152     onRender : function(ct, position){
48153         if(this.el){ // from markup
48154             this.el = Roo.get(this.el);
48155         }else {  // generate
48156             var cfg = this.getAutoCreate();
48157             this.el = ct.createChild(cfg, position);
48158         }
48159         if(this.style){
48160             this.el.applyStyles(this.style);
48161         }
48162         if(this.labelAlign){
48163             this.el.addClass('x-form-label-'+this.labelAlign);
48164         }
48165         if(this.hideLabels){
48166             this.labelStyle = "display:none";
48167             this.elementStyle = "padding-left:0;";
48168         }else{
48169             if(typeof this.labelWidth == 'number'){
48170                 this.labelStyle = "width:"+this.labelWidth+"px;";
48171                 this.elementStyle = "padding-left:"+((this.labelWidth+(typeof this.labelPad == 'number' ? this.labelPad : 5))+'px')+";";
48172             }
48173             if(this.labelAlign == 'top'){
48174                 this.labelStyle = "width:auto;";
48175                 this.elementStyle = "padding-left:0;";
48176             }
48177         }
48178         var stack = this.stack;
48179         var slen = stack.length;
48180         if(slen > 0){
48181             if(!this.fieldTpl){
48182                 var t = new Roo.Template(
48183                     '<div class="x-form-item {5}">',
48184                         '<label for="{0}" style="{2}">{1}{4}</label>',
48185                         '<div class="x-form-element" id="x-form-el-{0}" style="{3}">',
48186                         '</div>',
48187                     '</div><div class="x-form-clear-left"></div>'
48188                 );
48189                 t.disableFormats = true;
48190                 t.compile();
48191                 Roo.form.Layout.prototype.fieldTpl = t;
48192             }
48193             for(var i = 0; i < slen; i++) {
48194                 if(stack[i].isFormField){
48195                     this.renderField(stack[i]);
48196                 }else{
48197                     this.renderComponent(stack[i]);
48198                 }
48199             }
48200         }
48201         if(this.clear){
48202             this.el.createChild({cls:'x-form-clear'});
48203         }
48204     },
48205
48206     // private
48207     renderField : function(f){
48208         f.fieldEl = Roo.get(this.fieldTpl.append(this.el, [
48209                f.id, //0
48210                f.fieldLabel, //1
48211                f.labelStyle||this.labelStyle||'', //2
48212                this.elementStyle||'', //3
48213                typeof f.labelSeparator == 'undefined' ? this.labelSeparator : f.labelSeparator, //4
48214                f.itemCls||this.itemCls||''  //5
48215        ], true).getPrevSibling());
48216     },
48217
48218     // private
48219     renderComponent : function(c){
48220         c.render(c.isLayout ? this.el : this.el.createChild());    
48221     },
48222     /**
48223      * Adds a object form elements (using the xtype property as the factory method.)
48224      * Valid xtypes are:  TextField, TextArea .... Button, Layout, FieldSet, Column
48225      * @param {Object} config 
48226      */
48227     addxtype : function(o)
48228     {
48229         // create the lement.
48230         o.form = this.form;
48231         var fe = Roo.factory(o, Roo.form);
48232         this.form.allItems.push(fe);
48233         this.stack.push(fe);
48234         
48235         if (fe.isFormField) {
48236             this.form.items.add(fe);
48237         }
48238          
48239         return fe;
48240     }
48241 });
48242
48243 /**
48244  * @class Roo.form.Column
48245  * @extends Roo.form.Layout
48246  * Creates a column container for layout and rendering of fields in an {@link Roo.form.Form}.
48247  * @constructor
48248  * @param {Object} config Configuration options
48249  */
48250 Roo.form.Column = function(config){
48251     Roo.form.Column.superclass.constructor.call(this, config);
48252 };
48253
48254 Roo.extend(Roo.form.Column, Roo.form.Layout, {
48255     /**
48256      * @cfg {Number/String} width
48257      * The fixed width of the column in pixels or CSS value (defaults to "auto")
48258      */
48259     /**
48260      * @cfg {String/Object} autoCreate
48261      * A DomHelper element spec used to autocreate the column (defaults to {tag: 'div', cls: 'x-form-ct x-form-column'})
48262      */
48263
48264     // private
48265     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct x-form-column'},
48266
48267     // private
48268     onRender : function(ct, position){
48269         Roo.form.Column.superclass.onRender.call(this, ct, position);
48270         if(this.width){
48271             this.el.setWidth(this.width);
48272         }
48273     }
48274 });
48275
48276
48277 /**
48278  * @class Roo.form.Row
48279  * @extends Roo.form.Layout
48280  * Creates a row container for layout and rendering of fields in an {@link Roo.form.Form}.
48281  * @constructor
48282  * @param {Object} config Configuration options
48283  */
48284
48285  
48286 Roo.form.Row = function(config){
48287     Roo.form.Row.superclass.constructor.call(this, config);
48288 };
48289  
48290 Roo.extend(Roo.form.Row, Roo.form.Layout, {
48291       /**
48292      * @cfg {Number/String} width
48293      * The fixed width of the column in pixels or CSS value (defaults to "auto")
48294      */
48295     /**
48296      * @cfg {Number/String} height
48297      * The fixed height of the column in pixels or CSS value (defaults to "auto")
48298      */
48299     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct x-form-row'},
48300     
48301     padWidth : 20,
48302     // private
48303     onRender : function(ct, position){
48304         //console.log('row render');
48305         if(!this.rowTpl){
48306             var t = new Roo.Template(
48307                 '<div class="x-form-item {5}" style="float:left;width:{6}px">',
48308                     '<label for="{0}" style="{2}">{1}{4}</label>',
48309                     '<div class="x-form-element" id="x-form-el-{0}" style="{3}">',
48310                     '</div>',
48311                 '</div>'
48312             );
48313             t.disableFormats = true;
48314             t.compile();
48315             Roo.form.Layout.prototype.rowTpl = t;
48316         }
48317         this.fieldTpl = this.rowTpl;
48318         
48319         //console.log('lw' + this.labelWidth +', la:' + this.labelAlign);
48320         var labelWidth = 100;
48321         
48322         if ((this.labelAlign != 'top')) {
48323             if (typeof this.labelWidth == 'number') {
48324                 labelWidth = this.labelWidth
48325             }
48326             this.padWidth =  20 + labelWidth;
48327             
48328         }
48329         
48330         Roo.form.Column.superclass.onRender.call(this, ct, position);
48331         if(this.width){
48332             this.el.setWidth(this.width);
48333         }
48334         if(this.height){
48335             this.el.setHeight(this.height);
48336         }
48337     },
48338     
48339     // private
48340     renderField : function(f){
48341         f.fieldEl = this.fieldTpl.append(this.el, [
48342                f.id, f.fieldLabel,
48343                f.labelStyle||this.labelStyle||'',
48344                this.elementStyle||'',
48345                typeof f.labelSeparator == 'undefined' ? this.labelSeparator : f.labelSeparator,
48346                f.itemCls||this.itemCls||'',
48347                f.width ? f.width + this.padWidth : 160 + this.padWidth
48348        ],true);
48349     }
48350 });
48351  
48352
48353 /**
48354  * @class Roo.form.FieldSet
48355  * @extends Roo.form.Layout
48356  * Creates a fieldset container for layout and rendering of fields in an {@link Roo.form.Form}.
48357  * @constructor
48358  * @param {Object} config Configuration options
48359  */
48360 Roo.form.FieldSet = function(config){
48361     Roo.form.FieldSet.superclass.constructor.call(this, config);
48362 };
48363
48364 Roo.extend(Roo.form.FieldSet, Roo.form.Layout, {
48365     /**
48366      * @cfg {String} legend
48367      * The text to display as the legend for the FieldSet (defaults to '')
48368      */
48369     /**
48370      * @cfg {String/Object} autoCreate
48371      * A DomHelper element spec used to autocreate the fieldset (defaults to {tag: 'fieldset', cn: {tag:'legend'}})
48372      */
48373
48374     // private
48375     defaultAutoCreate : {tag: 'fieldset', cn: {tag:'legend'}},
48376
48377     // private
48378     onRender : function(ct, position){
48379         Roo.form.FieldSet.superclass.onRender.call(this, ct, position);
48380         if(this.legend){
48381             this.setLegend(this.legend);
48382         }
48383     },
48384
48385     // private
48386     setLegend : function(text){
48387         if(this.rendered){
48388             this.el.child('legend').update(text);
48389         }
48390     }
48391 });/*
48392  * Based on:
48393  * Ext JS Library 1.1.1
48394  * Copyright(c) 2006-2007, Ext JS, LLC.
48395  *
48396  * Originally Released Under LGPL - original licence link has changed is not relivant.
48397  *
48398  * Fork - LGPL
48399  * <script type="text/javascript">
48400  */
48401 /**
48402  * @class Roo.form.VTypes
48403  * Overridable validation definitions. The validations provided are basic and intended to be easily customizable and extended.
48404  * @singleton
48405  */
48406 Roo.form.VTypes = function(){
48407     // closure these in so they are only created once.
48408     var alpha = /^[a-zA-Z_]+$/;
48409     var alphanum = /^[a-zA-Z0-9_]+$/;
48410     var email = /^([\w]+)(.[\w]+)*@([\w-]+\.){1,5}([A-Za-z]){2,24}$/;
48411     var url = /(((https?)|(ftp)):\/\/([\-\w]+\.)+\w{2,3}(\/[%\-\w]+(\.\w{2,})?)*(([\w\-\.\?\\\/+@&#;`~=%!]*)(\.\w{2,})?)*\/?)/i;
48412
48413     // All these messages and functions are configurable
48414     return {
48415         /**
48416          * The function used to validate email addresses
48417          * @param {String} value The email address
48418          */
48419         'email' : function(v){
48420             return email.test(v);
48421         },
48422         /**
48423          * The error text to display when the email validation function returns false
48424          * @type String
48425          */
48426         'emailText' : 'This field should be an e-mail address in the format "user@domain.com"',
48427         /**
48428          * The keystroke filter mask to be applied on email input
48429          * @type RegExp
48430          */
48431         'emailMask' : /[a-z0-9_\.\-@]/i,
48432
48433         /**
48434          * The function used to validate URLs
48435          * @param {String} value The URL
48436          */
48437         'url' : function(v){
48438             return url.test(v);
48439         },
48440         /**
48441          * The error text to display when the url validation function returns false
48442          * @type String
48443          */
48444         'urlText' : 'This field should be a URL in the format "http:/'+'/www.domain.com"',
48445         
48446         /**
48447          * The function used to validate alpha values
48448          * @param {String} value The value
48449          */
48450         'alpha' : function(v){
48451             return alpha.test(v);
48452         },
48453         /**
48454          * The error text to display when the alpha validation function returns false
48455          * @type String
48456          */
48457         'alphaText' : 'This field should only contain letters and _',
48458         /**
48459          * The keystroke filter mask to be applied on alpha input
48460          * @type RegExp
48461          */
48462         'alphaMask' : /[a-z_]/i,
48463
48464         /**
48465          * The function used to validate alphanumeric values
48466          * @param {String} value The value
48467          */
48468         'alphanum' : function(v){
48469             return alphanum.test(v);
48470         },
48471         /**
48472          * The error text to display when the alphanumeric validation function returns false
48473          * @type String
48474          */
48475         'alphanumText' : 'This field should only contain letters, numbers and _',
48476         /**
48477          * The keystroke filter mask to be applied on alphanumeric input
48478          * @type RegExp
48479          */
48480         'alphanumMask' : /[a-z0-9_]/i
48481     };
48482 }();//<script type="text/javascript">
48483
48484 /**
48485  * @class Roo.form.FCKeditor
48486  * @extends Roo.form.TextArea
48487  * Wrapper around the FCKEditor http://www.fckeditor.net
48488  * @constructor
48489  * Creates a new FCKeditor
48490  * @param {Object} config Configuration options
48491  */
48492 Roo.form.FCKeditor = function(config){
48493     Roo.form.FCKeditor.superclass.constructor.call(this, config);
48494     this.addEvents({
48495          /**
48496          * @event editorinit
48497          * Fired when the editor is initialized - you can add extra handlers here..
48498          * @param {FCKeditor} this
48499          * @param {Object} the FCK object.
48500          */
48501         editorinit : true
48502     });
48503     
48504     
48505 };
48506 Roo.form.FCKeditor.editors = { };
48507 Roo.extend(Roo.form.FCKeditor, Roo.form.TextArea,
48508 {
48509     //defaultAutoCreate : {
48510     //    tag : "textarea",style   : "width:100px;height:60px;" ,autocomplete    : "off"
48511     //},
48512     // private
48513     /**
48514      * @cfg {Object} fck options - see fck manual for details.
48515      */
48516     fckconfig : false,
48517     
48518     /**
48519      * @cfg {Object} fck toolbar set (Basic or Default)
48520      */
48521     toolbarSet : 'Basic',
48522     /**
48523      * @cfg {Object} fck BasePath
48524      */ 
48525     basePath : '/fckeditor/',
48526     
48527     
48528     frame : false,
48529     
48530     value : '',
48531     
48532    
48533     onRender : function(ct, position)
48534     {
48535         if(!this.el){
48536             this.defaultAutoCreate = {
48537                 tag: "textarea",
48538                 style:"width:300px;height:60px;",
48539                 autocomplete: "new-password"
48540             };
48541         }
48542         Roo.form.FCKeditor.superclass.onRender.call(this, ct, position);
48543         /*
48544         if(this.grow){
48545             this.textSizeEl = Roo.DomHelper.append(document.body, {tag: "pre", cls: "x-form-grow-sizer"});
48546             if(this.preventScrollbars){
48547                 this.el.setStyle("overflow", "hidden");
48548             }
48549             this.el.setHeight(this.growMin);
48550         }
48551         */
48552         //console.log('onrender' + this.getId() );
48553         Roo.form.FCKeditor.editors[this.getId()] = this;
48554          
48555
48556         this.replaceTextarea() ;
48557         
48558     },
48559     
48560     getEditor : function() {
48561         return this.fckEditor;
48562     },
48563     /**
48564      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
48565      * @param {Mixed} value The value to set
48566      */
48567     
48568     
48569     setValue : function(value)
48570     {
48571         //console.log('setValue: ' + value);
48572         
48573         if(typeof(value) == 'undefined') { // not sure why this is happending...
48574             return;
48575         }
48576         Roo.form.FCKeditor.superclass.setValue.apply(this,[value]);
48577         
48578         //if(!this.el || !this.getEditor()) {
48579         //    this.value = value;
48580             //this.setValue.defer(100,this,[value]);    
48581         //    return;
48582         //} 
48583         
48584         if(!this.getEditor()) {
48585             return;
48586         }
48587         
48588         this.getEditor().SetData(value);
48589         
48590         //
48591
48592     },
48593
48594     /**
48595      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
48596      * @return {Mixed} value The field value
48597      */
48598     getValue : function()
48599     {
48600         
48601         if (this.frame && this.frame.dom.style.display == 'none') {
48602             return Roo.form.FCKeditor.superclass.getValue.call(this);
48603         }
48604         
48605         if(!this.el || !this.getEditor()) {
48606            
48607            // this.getValue.defer(100,this); 
48608             return this.value;
48609         }
48610        
48611         
48612         var value=this.getEditor().GetData();
48613         Roo.form.FCKeditor.superclass.setValue.apply(this,[value]);
48614         return Roo.form.FCKeditor.superclass.getValue.call(this);
48615         
48616
48617     },
48618
48619     /**
48620      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
48621      * @return {Mixed} value The field value
48622      */
48623     getRawValue : function()
48624     {
48625         if (this.frame && this.frame.dom.style.display == 'none') {
48626             return Roo.form.FCKeditor.superclass.getRawValue.call(this);
48627         }
48628         
48629         if(!this.el || !this.getEditor()) {
48630             //this.getRawValue.defer(100,this); 
48631             return this.value;
48632             return;
48633         }
48634         
48635         
48636         
48637         var value=this.getEditor().GetData();
48638         Roo.form.FCKeditor.superclass.setRawValue.apply(this,[value]);
48639         return Roo.form.FCKeditor.superclass.getRawValue.call(this);
48640          
48641     },
48642     
48643     setSize : function(w,h) {
48644         
48645         
48646         
48647         //if (this.frame && this.frame.dom.style.display == 'none') {
48648         //    Roo.form.FCKeditor.superclass.setSize.apply(this, [w, h]);
48649         //    return;
48650         //}
48651         //if(!this.el || !this.getEditor()) {
48652         //    this.setSize.defer(100,this, [w,h]); 
48653         //    return;
48654         //}
48655         
48656         
48657         
48658         Roo.form.FCKeditor.superclass.setSize.apply(this, [w, h]);
48659         
48660         this.frame.dom.setAttribute('width', w);
48661         this.frame.dom.setAttribute('height', h);
48662         this.frame.setSize(w,h);
48663         
48664     },
48665     
48666     toggleSourceEdit : function(value) {
48667         
48668       
48669          
48670         this.el.dom.style.display = value ? '' : 'none';
48671         this.frame.dom.style.display = value ?  'none' : '';
48672         
48673     },
48674     
48675     
48676     focus: function(tag)
48677     {
48678         if (this.frame.dom.style.display == 'none') {
48679             return Roo.form.FCKeditor.superclass.focus.call(this);
48680         }
48681         if(!this.el || !this.getEditor()) {
48682             this.focus.defer(100,this, [tag]); 
48683             return;
48684         }
48685         
48686         
48687         
48688         
48689         var tgs = this.getEditor().EditorDocument.getElementsByTagName(tag);
48690         this.getEditor().Focus();
48691         if (tgs.length) {
48692             if (!this.getEditor().Selection.GetSelection()) {
48693                 this.focus.defer(100,this, [tag]); 
48694                 return;
48695             }
48696             
48697             
48698             var r = this.getEditor().EditorDocument.createRange();
48699             r.setStart(tgs[0],0);
48700             r.setEnd(tgs[0],0);
48701             this.getEditor().Selection.GetSelection().removeAllRanges();
48702             this.getEditor().Selection.GetSelection().addRange(r);
48703             this.getEditor().Focus();
48704         }
48705         
48706     },
48707     
48708     
48709     
48710     replaceTextarea : function()
48711     {
48712         if ( document.getElementById( this.getId() + '___Frame' ) ) {
48713             return ;
48714         }
48715         //if ( !this.checkBrowser || this._isCompatibleBrowser() )
48716         //{
48717             // We must check the elements firstly using the Id and then the name.
48718         var oTextarea = document.getElementById( this.getId() );
48719         
48720         var colElementsByName = document.getElementsByName( this.getId() ) ;
48721          
48722         oTextarea.style.display = 'none' ;
48723
48724         if ( oTextarea.tabIndex ) {            
48725             this.TabIndex = oTextarea.tabIndex ;
48726         }
48727         
48728         this._insertHtmlBefore( this._getConfigHtml(), oTextarea ) ;
48729         this._insertHtmlBefore( this._getIFrameHtml(), oTextarea ) ;
48730         this.frame = Roo.get(this.getId() + '___Frame')
48731     },
48732     
48733     _getConfigHtml : function()
48734     {
48735         var sConfig = '' ;
48736
48737         for ( var o in this.fckconfig ) {
48738             sConfig += sConfig.length > 0  ? '&amp;' : '';
48739             sConfig += encodeURIComponent( o ) + '=' + encodeURIComponent( this.fckconfig[o] ) ;
48740         }
48741
48742         return '<input type="hidden" id="' + this.getId() + '___Config" value="' + sConfig + '" style="display:none" />' ;
48743     },
48744     
48745     
48746     _getIFrameHtml : function()
48747     {
48748         var sFile = 'fckeditor.html' ;
48749         /* no idea what this is about..
48750         try
48751         {
48752             if ( (/fcksource=true/i).test( window.top.location.search ) )
48753                 sFile = 'fckeditor.original.html' ;
48754         }
48755         catch (e) { 
48756         */
48757
48758         var sLink = this.basePath + 'editor/' + sFile + '?InstanceName=' + encodeURIComponent( this.getId() ) ;
48759         sLink += this.toolbarSet ? ( '&amp;Toolbar=' + this.toolbarSet)  : '';
48760         
48761         
48762         var html = '<iframe id="' + this.getId() +
48763             '___Frame" src="' + sLink +
48764             '" width="' + this.width +
48765             '" height="' + this.height + '"' +
48766             (this.tabIndex ?  ' tabindex="' + this.tabIndex + '"' :'' ) +
48767             ' frameborder="0" scrolling="no"></iframe>' ;
48768
48769         return html ;
48770     },
48771     
48772     _insertHtmlBefore : function( html, element )
48773     {
48774         if ( element.insertAdjacentHTML )       {
48775             // IE
48776             element.insertAdjacentHTML( 'beforeBegin', html ) ;
48777         } else { // Gecko
48778             var oRange = document.createRange() ;
48779             oRange.setStartBefore( element ) ;
48780             var oFragment = oRange.createContextualFragment( html );
48781             element.parentNode.insertBefore( oFragment, element ) ;
48782         }
48783     }
48784     
48785     
48786   
48787     
48788     
48789     
48790     
48791
48792 });
48793
48794 //Roo.reg('fckeditor', Roo.form.FCKeditor);
48795
48796 function FCKeditor_OnComplete(editorInstance){
48797     var f = Roo.form.FCKeditor.editors[editorInstance.Name];
48798     f.fckEditor = editorInstance;
48799     //console.log("loaded");
48800     f.fireEvent('editorinit', f, editorInstance);
48801
48802   
48803
48804  
48805
48806
48807
48808
48809
48810
48811
48812
48813
48814
48815
48816
48817
48818
48819
48820 //<script type="text/javascript">
48821 /**
48822  * @class Roo.form.GridField
48823  * @extends Roo.form.Field
48824  * Embed a grid (or editable grid into a form)
48825  * STATUS ALPHA
48826  * 
48827  * This embeds a grid in a form, the value of the field should be the json encoded array of rows
48828  * it needs 
48829  * xgrid.store = Roo.data.Store
48830  * xgrid.store.proxy = Roo.data.MemoryProxy (data = [] )
48831  * xgrid.store.reader = Roo.data.JsonReader 
48832  * 
48833  * 
48834  * @constructor
48835  * Creates a new GridField
48836  * @param {Object} config Configuration options
48837  */
48838 Roo.form.GridField = function(config){
48839     Roo.form.GridField.superclass.constructor.call(this, config);
48840      
48841 };
48842
48843 Roo.extend(Roo.form.GridField, Roo.form.Field,  {
48844     /**
48845      * @cfg {Number} width  - used to restrict width of grid..
48846      */
48847     width : 100,
48848     /**
48849      * @cfg {Number} height - used to restrict height of grid..
48850      */
48851     height : 50,
48852      /**
48853      * @cfg {Object} xgrid (xtype'd description of grid) { xtype : 'Grid', dataSource: .... }
48854          * 
48855          *}
48856      */
48857     xgrid : false, 
48858     /**
48859      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
48860      * {tag: "input", type: "checkbox", autocomplete: "off"})
48861      */
48862    // defaultAutoCreate : { tag: 'div' },
48863     defaultAutoCreate : { tag: 'input', type: 'hidden', autocomplete: 'new-password'},
48864     /**
48865      * @cfg {String} addTitle Text to include for adding a title.
48866      */
48867     addTitle : false,
48868     //
48869     onResize : function(){
48870         Roo.form.Field.superclass.onResize.apply(this, arguments);
48871     },
48872
48873     initEvents : function(){
48874         // Roo.form.Checkbox.superclass.initEvents.call(this);
48875         // has no events...
48876        
48877     },
48878
48879
48880     getResizeEl : function(){
48881         return this.wrap;
48882     },
48883
48884     getPositionEl : function(){
48885         return this.wrap;
48886     },
48887
48888     // private
48889     onRender : function(ct, position){
48890         
48891         this.style = this.style || 'overflow: hidden; border:1px solid #c3daf9;';
48892         var style = this.style;
48893         delete this.style;
48894         
48895         Roo.form.GridField.superclass.onRender.call(this, ct, position);
48896         this.wrap = this.el.wrap({cls: ''}); // not sure why ive done thsi...
48897         this.viewEl = this.wrap.createChild({ tag: 'div' });
48898         if (style) {
48899             this.viewEl.applyStyles(style);
48900         }
48901         if (this.width) {
48902             this.viewEl.setWidth(this.width);
48903         }
48904         if (this.height) {
48905             this.viewEl.setHeight(this.height);
48906         }
48907         //if(this.inputValue !== undefined){
48908         //this.setValue(this.value);
48909         
48910         
48911         this.grid = new Roo.grid[this.xgrid.xtype](this.viewEl, this.xgrid);
48912         
48913         
48914         this.grid.render();
48915         this.grid.getDataSource().on('remove', this.refreshValue, this);
48916         this.grid.getDataSource().on('update', this.refreshValue, this);
48917         this.grid.on('afteredit', this.refreshValue, this);
48918  
48919     },
48920      
48921     
48922     /**
48923      * Sets the value of the item. 
48924      * @param {String} either an object  or a string..
48925      */
48926     setValue : function(v){
48927         //this.value = v;
48928         v = v || []; // empty set..
48929         // this does not seem smart - it really only affects memoryproxy grids..
48930         if (this.grid && this.grid.getDataSource() && typeof(v) != 'undefined') {
48931             var ds = this.grid.getDataSource();
48932             // assumes a json reader..
48933             var data = {}
48934             data[ds.reader.meta.root ] =  typeof(v) == 'string' ? Roo.decode(v) : v;
48935             ds.loadData( data);
48936         }
48937         // clear selection so it does not get stale.
48938         if (this.grid.sm) { 
48939             this.grid.sm.clearSelections();
48940         }
48941         
48942         Roo.form.GridField.superclass.setValue.call(this, v);
48943         this.refreshValue();
48944         // should load data in the grid really....
48945     },
48946     
48947     // private
48948     refreshValue: function() {
48949          var val = [];
48950         this.grid.getDataSource().each(function(r) {
48951             val.push(r.data);
48952         });
48953         this.el.dom.value = Roo.encode(val);
48954     }
48955     
48956      
48957     
48958     
48959 });/*
48960  * Based on:
48961  * Ext JS Library 1.1.1
48962  * Copyright(c) 2006-2007, Ext JS, LLC.
48963  *
48964  * Originally Released Under LGPL - original licence link has changed is not relivant.
48965  *
48966  * Fork - LGPL
48967  * <script type="text/javascript">
48968  */
48969 /**
48970  * @class Roo.form.DisplayField
48971  * @extends Roo.form.Field
48972  * A generic Field to display non-editable data.
48973  * @cfg {Boolean} closable (true|false) default false
48974  * @constructor
48975  * Creates a new Display Field item.
48976  * @param {Object} config Configuration options
48977  */
48978 Roo.form.DisplayField = function(config){
48979     Roo.form.DisplayField.superclass.constructor.call(this, config);
48980     
48981     this.addEvents({
48982         /**
48983          * @event close
48984          * Fires after the click the close btn
48985              * @param {Roo.form.DisplayField} this
48986              */
48987         close : true
48988     });
48989 };
48990
48991 Roo.extend(Roo.form.DisplayField, Roo.form.TextField,  {
48992     inputType:      'hidden',
48993     allowBlank:     true,
48994     readOnly:         true,
48995     
48996  
48997     /**
48998      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
48999      */
49000     focusClass : undefined,
49001     /**
49002      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
49003      */
49004     fieldClass: 'x-form-field',
49005     
49006      /**
49007      * @cfg {Function} valueRenderer The renderer for the field (so you can reformat output). should return raw HTML
49008      */
49009     valueRenderer: undefined,
49010     
49011     width: 100,
49012     /**
49013      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
49014      * {tag: "input", type: "checkbox", autocomplete: "off"})
49015      */
49016      
49017  //   defaultAutoCreate : { tag: 'input', type: 'hidden', autocomplete: 'off'},
49018  
49019     closable : false,
49020     
49021     onResize : function(){
49022         Roo.form.DisplayField.superclass.onResize.apply(this, arguments);
49023         
49024     },
49025
49026     initEvents : function(){
49027         // Roo.form.Checkbox.superclass.initEvents.call(this);
49028         // has no events...
49029         
49030         if(this.closable){
49031             this.closeEl.on('click', this.onClose, this);
49032         }
49033        
49034     },
49035
49036
49037     getResizeEl : function(){
49038         return this.wrap;
49039     },
49040
49041     getPositionEl : function(){
49042         return this.wrap;
49043     },
49044
49045     // private
49046     onRender : function(ct, position){
49047         
49048         Roo.form.DisplayField.superclass.onRender.call(this, ct, position);
49049         //if(this.inputValue !== undefined){
49050         this.wrap = this.el.wrap();
49051         
49052         this.viewEl = this.wrap.createChild({ tag: 'div', cls: 'x-form-displayfield'});
49053         
49054         if(this.closable){
49055             this.closeEl = this.wrap.createChild({ tag: 'div', cls: 'x-dlg-close'});
49056         }
49057         
49058         if (this.bodyStyle) {
49059             this.viewEl.applyStyles(this.bodyStyle);
49060         }
49061         //this.viewEl.setStyle('padding', '2px');
49062         
49063         this.setValue(this.value);
49064         
49065     },
49066 /*
49067     // private
49068     initValue : Roo.emptyFn,
49069
49070   */
49071
49072         // private
49073     onClick : function(){
49074         
49075     },
49076
49077     /**
49078      * Sets the checked state of the checkbox.
49079      * @param {Boolean/String} checked True, 'true', '1', or 'on' to check the checkbox, any other value will uncheck it.
49080      */
49081     setValue : function(v){
49082         this.value = v;
49083         var html = this.valueRenderer ?  this.valueRenderer(v) : String.format('{0}', v);
49084         // this might be called before we have a dom element..
49085         if (!this.viewEl) {
49086             return;
49087         }
49088         this.viewEl.dom.innerHTML = html;
49089         Roo.form.DisplayField.superclass.setValue.call(this, v);
49090
49091     },
49092     
49093     onClose : function(e)
49094     {
49095         e.preventDefault();
49096         
49097         this.fireEvent('close', this);
49098     }
49099 });/*
49100  * 
49101  * Licence- LGPL
49102  * 
49103  */
49104
49105 /**
49106  * @class Roo.form.DayPicker
49107  * @extends Roo.form.Field
49108  * A Day picker show [M] [T] [W] ....
49109  * @constructor
49110  * Creates a new Day Picker
49111  * @param {Object} config Configuration options
49112  */
49113 Roo.form.DayPicker= function(config){
49114     Roo.form.DayPicker.superclass.constructor.call(this, config);
49115      
49116 };
49117
49118 Roo.extend(Roo.form.DayPicker, Roo.form.Field,  {
49119     /**
49120      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
49121      */
49122     focusClass : undefined,
49123     /**
49124      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
49125      */
49126     fieldClass: "x-form-field",
49127    
49128     /**
49129      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
49130      * {tag: "input", type: "checkbox", autocomplete: "off"})
49131      */
49132     defaultAutoCreate : { tag: "input", type: 'hidden', autocomplete: "new-password"},
49133     
49134    
49135     actionMode : 'viewEl', 
49136     //
49137     // private
49138  
49139     inputType : 'hidden',
49140     
49141      
49142     inputElement: false, // real input element?
49143     basedOn: false, // ????
49144     
49145     isFormField: true, // not sure where this is needed!!!!
49146
49147     onResize : function(){
49148         Roo.form.Checkbox.superclass.onResize.apply(this, arguments);
49149         if(!this.boxLabel){
49150             this.el.alignTo(this.wrap, 'c-c');
49151         }
49152     },
49153
49154     initEvents : function(){
49155         Roo.form.Checkbox.superclass.initEvents.call(this);
49156         this.el.on("click", this.onClick,  this);
49157         this.el.on("change", this.onClick,  this);
49158     },
49159
49160
49161     getResizeEl : function(){
49162         return this.wrap;
49163     },
49164
49165     getPositionEl : function(){
49166         return this.wrap;
49167     },
49168
49169     
49170     // private
49171     onRender : function(ct, position){
49172         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
49173        
49174         this.wrap = this.el.wrap({cls: 'x-form-daypick-item '});
49175         
49176         var r1 = '<table><tr>';
49177         var r2 = '<tr class="x-form-daypick-icons">';
49178         for (var i=0; i < 7; i++) {
49179             r1+= '<td><div>' + Date.dayNames[i].substring(0,3) + '</div></td>';
49180             r2+= '<td><img class="x-menu-item-icon" src="' + Roo.BLANK_IMAGE_URL  +'"></td>';
49181         }
49182         
49183         var viewEl = this.wrap.createChild( r1 + '</tr>' + r2 + '</tr></table>');
49184         viewEl.select('img').on('click', this.onClick, this);
49185         this.viewEl = viewEl;   
49186         
49187         
49188         // this will not work on Chrome!!!
49189         this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
49190         this.el.on('propertychange', this.setFromHidden,  this);  //ie
49191         
49192         
49193           
49194
49195     },
49196
49197     // private
49198     initValue : Roo.emptyFn,
49199
49200     /**
49201      * Returns the checked state of the checkbox.
49202      * @return {Boolean} True if checked, else false
49203      */
49204     getValue : function(){
49205         return this.el.dom.value;
49206         
49207     },
49208
49209         // private
49210     onClick : function(e){ 
49211         //this.setChecked(!this.checked);
49212         Roo.get(e.target).toggleClass('x-menu-item-checked');
49213         this.refreshValue();
49214         //if(this.el.dom.checked != this.checked){
49215         //    this.setValue(this.el.dom.checked);
49216        // }
49217     },
49218     
49219     // private
49220     refreshValue : function()
49221     {
49222         var val = '';
49223         this.viewEl.select('img',true).each(function(e,i,n)  {
49224             val += e.is(".x-menu-item-checked") ? String(n) : '';
49225         });
49226         this.setValue(val, true);
49227     },
49228
49229     /**
49230      * Sets the checked state of the checkbox.
49231      * On is always based on a string comparison between inputValue and the param.
49232      * @param {Boolean/String} value - the value to set 
49233      * @param {Boolean/String} suppressEvent - whether to suppress the checkchange event.
49234      */
49235     setValue : function(v,suppressEvent){
49236         if (!this.el.dom) {
49237             return;
49238         }
49239         var old = this.el.dom.value ;
49240         this.el.dom.value = v;
49241         if (suppressEvent) {
49242             return ;
49243         }
49244          
49245         // update display..
49246         this.viewEl.select('img',true).each(function(e,i,n)  {
49247             
49248             var on = e.is(".x-menu-item-checked");
49249             var newv = v.indexOf(String(n)) > -1;
49250             if (on != newv) {
49251                 e.toggleClass('x-menu-item-checked');
49252             }
49253             
49254         });
49255         
49256         
49257         this.fireEvent('change', this, v, old);
49258         
49259         
49260     },
49261    
49262     // handle setting of hidden value by some other method!!?!?
49263     setFromHidden: function()
49264     {
49265         if(!this.el){
49266             return;
49267         }
49268         //console.log("SET FROM HIDDEN");
49269         //alert('setFrom hidden');
49270         this.setValue(this.el.dom.value);
49271     },
49272     
49273     onDestroy : function()
49274     {
49275         if(this.viewEl){
49276             Roo.get(this.viewEl).remove();
49277         }
49278          
49279         Roo.form.DayPicker.superclass.onDestroy.call(this);
49280     }
49281
49282 });/*
49283  * RooJS Library 1.1.1
49284  * Copyright(c) 2008-2011  Alan Knowles
49285  *
49286  * License - LGPL
49287  */
49288  
49289
49290 /**
49291  * @class Roo.form.ComboCheck
49292  * @extends Roo.form.ComboBox
49293  * A combobox for multiple select items.
49294  *
49295  * FIXME - could do with a reset button..
49296  * 
49297  * @constructor
49298  * Create a new ComboCheck
49299  * @param {Object} config Configuration options
49300  */
49301 Roo.form.ComboCheck = function(config){
49302     Roo.form.ComboCheck.superclass.constructor.call(this, config);
49303     // should verify some data...
49304     // like
49305     // hiddenName = required..
49306     // displayField = required
49307     // valudField == required
49308     var req= [ 'hiddenName', 'displayField', 'valueField' ];
49309     var _t = this;
49310     Roo.each(req, function(e) {
49311         if ((typeof(_t[e]) == 'undefined' ) || !_t[e].length) {
49312             throw "Roo.form.ComboCheck : missing value for: " + e;
49313         }
49314     });
49315     
49316     
49317 };
49318
49319 Roo.extend(Roo.form.ComboCheck, Roo.form.ComboBox, {
49320      
49321      
49322     editable : false,
49323      
49324     selectedClass: 'x-menu-item-checked', 
49325     
49326     // private
49327     onRender : function(ct, position){
49328         var _t = this;
49329         
49330         
49331         
49332         if(!this.tpl){
49333             var cls = 'x-combo-list';
49334
49335             
49336             this.tpl =  new Roo.Template({
49337                 html :  '<div class="'+cls+'-item x-menu-check-item">' +
49338                    '<img class="x-menu-item-icon" style="margin: 0px;" src="' + Roo.BLANK_IMAGE_URL + '">' + 
49339                    '<span>{' + this.displayField + '}</span>' +
49340                     '</div>' 
49341                 
49342             });
49343         }
49344  
49345         
49346         Roo.form.ComboCheck.superclass.onRender.call(this, ct, position);
49347         this.view.singleSelect = false;
49348         this.view.multiSelect = true;
49349         this.view.toggleSelect = true;
49350         this.pageTb.add(new Roo.Toolbar.Fill(), {
49351             
49352             text: 'Done',
49353             handler: function()
49354             {
49355                 _t.collapse();
49356             }
49357         });
49358     },
49359     
49360     onViewOver : function(e, t){
49361         // do nothing...
49362         return;
49363         
49364     },
49365     
49366     onViewClick : function(doFocus,index){
49367         return;
49368         
49369     },
49370     select: function () {
49371         //Roo.log("SELECT CALLED");
49372     },
49373      
49374     selectByValue : function(xv, scrollIntoView){
49375         var ar = this.getValueArray();
49376         var sels = [];
49377         
49378         Roo.each(ar, function(v) {
49379             if(v === undefined || v === null){
49380                 return;
49381             }
49382             var r = this.findRecord(this.valueField, v);
49383             if(r){
49384                 sels.push(this.store.indexOf(r))
49385                 
49386             }
49387         },this);
49388         this.view.select(sels);
49389         return false;
49390     },
49391     
49392     
49393     
49394     onSelect : function(record, index){
49395        // Roo.log("onselect Called");
49396        // this is only called by the clear button now..
49397         this.view.clearSelections();
49398         this.setValue('[]');
49399         if (this.value != this.valueBefore) {
49400             this.fireEvent('change', this, this.value, this.valueBefore);
49401             this.valueBefore = this.value;
49402         }
49403     },
49404     getValueArray : function()
49405     {
49406         var ar = [] ;
49407         
49408         try {
49409             //Roo.log(this.value);
49410             if (typeof(this.value) == 'undefined') {
49411                 return [];
49412             }
49413             var ar = Roo.decode(this.value);
49414             return  ar instanceof Array ? ar : []; //?? valid?
49415             
49416         } catch(e) {
49417             Roo.log(e + "\nRoo.form.ComboCheck:getValueArray  invalid data:" + this.getValue());
49418             return [];
49419         }
49420          
49421     },
49422     expand : function ()
49423     {
49424         
49425         Roo.form.ComboCheck.superclass.expand.call(this);
49426         this.valueBefore = typeof(this.value) == 'undefined' ? '' : this.value;
49427         //this.valueBefore = typeof(this.valueBefore) == 'undefined' ? '' : this.valueBefore;
49428         
49429
49430     },
49431     
49432     collapse : function(){
49433         Roo.form.ComboCheck.superclass.collapse.call(this);
49434         var sl = this.view.getSelectedIndexes();
49435         var st = this.store;
49436         var nv = [];
49437         var tv = [];
49438         var r;
49439         Roo.each(sl, function(i) {
49440             r = st.getAt(i);
49441             nv.push(r.get(this.valueField));
49442         },this);
49443         this.setValue(Roo.encode(nv));
49444         if (this.value != this.valueBefore) {
49445
49446             this.fireEvent('change', this, this.value, this.valueBefore);
49447             this.valueBefore = this.value;
49448         }
49449         
49450     },
49451     
49452     setValue : function(v){
49453         // Roo.log(v);
49454         this.value = v;
49455         
49456         var vals = this.getValueArray();
49457         var tv = [];
49458         Roo.each(vals, function(k) {
49459             var r = this.findRecord(this.valueField, k);
49460             if(r){
49461                 tv.push(r.data[this.displayField]);
49462             }else if(this.valueNotFoundText !== undefined){
49463                 tv.push( this.valueNotFoundText );
49464             }
49465         },this);
49466        // Roo.log(tv);
49467         
49468         Roo.form.ComboBox.superclass.setValue.call(this, tv.join(', '));
49469         this.hiddenField.value = v;
49470         this.value = v;
49471     }
49472     
49473 });/*
49474  * Based on:
49475  * Ext JS Library 1.1.1
49476  * Copyright(c) 2006-2007, Ext JS, LLC.
49477  *
49478  * Originally Released Under LGPL - original licence link has changed is not relivant.
49479  *
49480  * Fork - LGPL
49481  * <script type="text/javascript">
49482  */
49483  
49484 /**
49485  * @class Roo.form.Signature
49486  * @extends Roo.form.Field
49487  * Signature field.  
49488  * @constructor
49489  * 
49490  * @param {Object} config Configuration options
49491  */
49492
49493 Roo.form.Signature = function(config){
49494     Roo.form.Signature.superclass.constructor.call(this, config);
49495     
49496     this.addEvents({// not in used??
49497          /**
49498          * @event confirm
49499          * Fires when the 'confirm' icon is pressed (add a listener to enable add button)
49500              * @param {Roo.form.Signature} combo This combo box
49501              */
49502         'confirm' : true,
49503         /**
49504          * @event reset
49505          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
49506              * @param {Roo.form.ComboBox} combo This combo box
49507              * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
49508              */
49509         'reset' : true
49510     });
49511 };
49512
49513 Roo.extend(Roo.form.Signature, Roo.form.Field,  {
49514     /**
49515      * @cfg {Object} labels Label to use when rendering a form.
49516      * defaults to 
49517      * labels : { 
49518      *      clear : "Clear",
49519      *      confirm : "Confirm"
49520      *  }
49521      */
49522     labels : { 
49523         clear : "Clear",
49524         confirm : "Confirm"
49525     },
49526     /**
49527      * @cfg {Number} width The signature panel width (defaults to 300)
49528      */
49529     width: 300,
49530     /**
49531      * @cfg {Number} height The signature panel height (defaults to 100)
49532      */
49533     height : 100,
49534     /**
49535      * @cfg {Boolean} allowBlank False to validate that the value length > 0 (defaults to false)
49536      */
49537     allowBlank : false,
49538     
49539     //private
49540     // {Object} signPanel The signature SVG panel element (defaults to {})
49541     signPanel : {},
49542     // {Boolean} isMouseDown False to validate that the mouse down event (defaults to false)
49543     isMouseDown : false,
49544     // {Boolean} isConfirmed validate the signature is confirmed or not for submitting form (defaults to false)
49545     isConfirmed : false,
49546     // {String} signatureTmp SVG mapping string (defaults to empty string)
49547     signatureTmp : '',
49548     
49549     
49550     defaultAutoCreate : { // modified by initCompnoent..
49551         tag: "input",
49552         type:"hidden"
49553     },
49554
49555     // private
49556     onRender : function(ct, position){
49557         
49558         Roo.form.Signature.superclass.onRender.call(this, ct, position);
49559         
49560         this.wrap = this.el.wrap({
49561             cls:'x-form-signature-wrap', style : 'width: ' + this.width + 'px', cn:{cls:'x-form-signature'}
49562         });
49563         
49564         this.createToolbar(this);
49565         this.signPanel = this.wrap.createChild({
49566                 tag: 'div',
49567                 style: 'width: ' + this.width + 'px; height: ' + this.height + 'px; border: 0;'
49568             }, this.el
49569         );
49570             
49571         this.svgID = Roo.id();
49572         this.svgEl = this.signPanel.createChild({
49573               xmlns : 'http://www.w3.org/2000/svg',
49574               tag : 'svg',
49575               id : this.svgID + "-svg",
49576               width: this.width,
49577               height: this.height,
49578               viewBox: '0 0 '+this.width+' '+this.height,
49579               cn : [
49580                 {
49581                     tag: "rect",
49582                     id: this.svgID + "-svg-r",
49583                     width: this.width,
49584                     height: this.height,
49585                     fill: "#ffa"
49586                 },
49587                 {
49588                     tag: "line",
49589                     id: this.svgID + "-svg-l",
49590                     x1: "0", // start
49591                     y1: (this.height*0.8), // start set the line in 80% of height
49592                     x2: this.width, // end
49593                     y2: (this.height*0.8), // end set the line in 80% of height
49594                     'stroke': "#666",
49595                     'stroke-width': "1",
49596                     'stroke-dasharray': "3",
49597                     'shape-rendering': "crispEdges",
49598                     'pointer-events': "none"
49599                 },
49600                 {
49601                     tag: "path",
49602                     id: this.svgID + "-svg-p",
49603                     'stroke': "navy",
49604                     'stroke-width': "3",
49605                     'fill': "none",
49606                     'pointer-events': 'none'
49607                 }
49608               ]
49609         });
49610         this.createSVG();
49611         this.svgBox = this.svgEl.dom.getScreenCTM();
49612     },
49613     createSVG : function(){ 
49614         var svg = this.signPanel;
49615         var r = svg.select('#'+ this.svgID + '-svg-r', true).first().dom;
49616         var t = this;
49617
49618         r.addEventListener('mousedown', function(e) { return t.down(e); }, false);
49619         r.addEventListener('mousemove', function(e) { return t.move(e); }, false);
49620         r.addEventListener('mouseup', function(e) { return t.up(e); }, false);
49621         r.addEventListener('mouseout', function(e) { return t.up(e); }, false);
49622         r.addEventListener('touchstart', function(e) { return t.down(e); }, false);
49623         r.addEventListener('touchmove', function(e) { return t.move(e); }, false);
49624         r.addEventListener('touchend', function(e) { return t.up(e); }, false);
49625         
49626     },
49627     isTouchEvent : function(e){
49628         return e.type.match(/^touch/);
49629     },
49630     getCoords : function (e) {
49631         var pt    = this.svgEl.dom.createSVGPoint();
49632         pt.x = e.clientX; 
49633         pt.y = e.clientY;
49634         if (this.isTouchEvent(e)) {
49635             pt.x =  e.targetTouches[0].clientX;
49636             pt.y = e.targetTouches[0].clientY;
49637         }
49638         var a = this.svgEl.dom.getScreenCTM();
49639         var b = a.inverse();
49640         var mx = pt.matrixTransform(b);
49641         return mx.x + ',' + mx.y;
49642     },
49643     //mouse event headler 
49644     down : function (e) {
49645         this.signatureTmp += 'M' + this.getCoords(e) + ' ';
49646         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr('d', this.signatureTmp);
49647         
49648         this.isMouseDown = true;
49649         
49650         e.preventDefault();
49651     },
49652     move : function (e) {
49653         if (this.isMouseDown) {
49654             this.signatureTmp += 'L' + this.getCoords(e) + ' ';
49655             this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', this.signatureTmp);
49656         }
49657         
49658         e.preventDefault();
49659     },
49660     up : function (e) {
49661         this.isMouseDown = false;
49662         var sp = this.signatureTmp.split(' ');
49663         
49664         if(sp.length > 1){
49665             if(!sp[sp.length-2].match(/^L/)){
49666                 sp.pop();
49667                 sp.pop();
49668                 sp.push("");
49669                 this.signatureTmp = sp.join(" ");
49670             }
49671         }
49672         if(this.getValue() != this.signatureTmp){
49673             this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
49674             this.isConfirmed = false;
49675         }
49676         e.preventDefault();
49677     },
49678     
49679     /**
49680      * Protected method that will not generally be called directly. It
49681      * is called when the editor creates its toolbar. Override this method if you need to
49682      * add custom toolbar buttons.
49683      * @param {HtmlEditor} editor
49684      */
49685     createToolbar : function(editor){
49686          function btn(id, toggle, handler){
49687             var xid = fid + '-'+ id ;
49688             return {
49689                 id : xid,
49690                 cmd : id,
49691                 cls : 'x-btn-icon x-edit-'+id,
49692                 enableToggle:toggle !== false,
49693                 scope: editor, // was editor...
49694                 handler:handler||editor.relayBtnCmd,
49695                 clickEvent:'mousedown',
49696                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
49697                 tabIndex:-1
49698             };
49699         }
49700         
49701         
49702         var tb = new Roo.Toolbar(editor.wrap.dom.firstChild);
49703         this.tb = tb;
49704         this.tb.add(
49705            {
49706                 cls : ' x-signature-btn x-signature-'+id,
49707                 scope: editor, // was editor...
49708                 handler: this.reset,
49709                 clickEvent:'mousedown',
49710                 text: this.labels.clear
49711             },
49712             {
49713                  xtype : 'Fill',
49714                  xns: Roo.Toolbar
49715             }, 
49716             {
49717                 cls : '  x-signature-btn x-signature-'+id,
49718                 scope: editor, // was editor...
49719                 handler: this.confirmHandler,
49720                 clickEvent:'mousedown',
49721                 text: this.labels.confirm
49722             }
49723         );
49724     
49725     },
49726     //public
49727     /**
49728      * when user is clicked confirm then show this image.....
49729      * 
49730      * @return {String} Image Data URI
49731      */
49732     getImageDataURI : function(){
49733         var svg = this.svgEl.dom.parentNode.innerHTML;
49734         var src = 'data:image/svg+xml;base64,'+window.btoa(svg);
49735         return src; 
49736     },
49737     /**
49738      * 
49739      * @return {Boolean} this.isConfirmed
49740      */
49741     getConfirmed : function(){
49742         return this.isConfirmed;
49743     },
49744     /**
49745      * 
49746      * @return {Number} this.width
49747      */
49748     getWidth : function(){
49749         return this.width;
49750     },
49751     /**
49752      * 
49753      * @return {Number} this.height
49754      */
49755     getHeight : function(){
49756         return this.height;
49757     },
49758     // private
49759     getSignature : function(){
49760         return this.signatureTmp;
49761     },
49762     // private
49763     reset : function(){
49764         this.signatureTmp = '';
49765         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
49766         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', '');
49767         this.isConfirmed = false;
49768         Roo.form.Signature.superclass.reset.call(this);
49769     },
49770     setSignature : function(s){
49771         this.signatureTmp = s;
49772         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
49773         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', s);
49774         this.setValue(s);
49775         this.isConfirmed = false;
49776         Roo.form.Signature.superclass.reset.call(this);
49777     }, 
49778     test : function(){
49779 //        Roo.log(this.signPanel.dom.contentWindow.up())
49780     },
49781     //private
49782     setConfirmed : function(){
49783         
49784         
49785         
49786 //        Roo.log(Roo.get(this.signPanel.dom.contentWindow.r).attr('fill', '#cfc'));
49787     },
49788     // private
49789     confirmHandler : function(){
49790         if(!this.getSignature()){
49791             return;
49792         }
49793         
49794         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#cfc');
49795         this.setValue(this.getSignature());
49796         this.isConfirmed = true;
49797         
49798         this.fireEvent('confirm', this);
49799     },
49800     // private
49801     // Subclasses should provide the validation implementation by overriding this
49802     validateValue : function(value){
49803         if(this.allowBlank){
49804             return true;
49805         }
49806         
49807         if(this.isConfirmed){
49808             return true;
49809         }
49810         return false;
49811     }
49812 });/*
49813  * Based on:
49814  * Ext JS Library 1.1.1
49815  * Copyright(c) 2006-2007, Ext JS, LLC.
49816  *
49817  * Originally Released Under LGPL - original licence link has changed is not relivant.
49818  *
49819  * Fork - LGPL
49820  * <script type="text/javascript">
49821  */
49822  
49823
49824 /**
49825  * @class Roo.form.ComboBox
49826  * @extends Roo.form.TriggerField
49827  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
49828  * @constructor
49829  * Create a new ComboBox.
49830  * @param {Object} config Configuration options
49831  */
49832 Roo.form.Select = function(config){
49833     Roo.form.Select.superclass.constructor.call(this, config);
49834      
49835 };
49836
49837 Roo.extend(Roo.form.Select , Roo.form.ComboBox, {
49838     /**
49839      * @cfg {String/HTMLElement/Element} transform The id, DOM node or element of an existing select to convert to a ComboBox
49840      */
49841     /**
49842      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
49843      * rendering into an Roo.Editor, defaults to false)
49844      */
49845     /**
49846      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
49847      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
49848      */
49849     /**
49850      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
49851      */
49852     /**
49853      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
49854      * the dropdown list (defaults to undefined, with no header element)
49855      */
49856
49857      /**
49858      * @cfg {String/Roo.Template} tpl The template to use to render the output
49859      */
49860      
49861     // private
49862     defaultAutoCreate : {tag: "select"  },
49863     /**
49864      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
49865      */
49866     listWidth: undefined,
49867     /**
49868      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
49869      * mode = 'remote' or 'text' if mode = 'local')
49870      */
49871     displayField: undefined,
49872     /**
49873      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
49874      * mode = 'remote' or 'value' if mode = 'local'). 
49875      * Note: use of a valueField requires the user make a selection
49876      * in order for a value to be mapped.
49877      */
49878     valueField: undefined,
49879     
49880     
49881     /**
49882      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
49883      * field's data value (defaults to the underlying DOM element's name)
49884      */
49885     hiddenName: undefined,
49886     /**
49887      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
49888      */
49889     listClass: '',
49890     /**
49891      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
49892      */
49893     selectedClass: 'x-combo-selected',
49894     /**
49895      * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
49896      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-arrow-trigger'
49897      * which displays a downward arrow icon).
49898      */
49899     triggerClass : 'x-form-arrow-trigger',
49900     /**
49901      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
49902      */
49903     shadow:'sides',
49904     /**
49905      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
49906      * anchor positions (defaults to 'tl-bl')
49907      */
49908     listAlign: 'tl-bl?',
49909     /**
49910      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
49911      */
49912     maxHeight: 300,
49913     /**
49914      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
49915      * query specified by the allQuery config option (defaults to 'query')
49916      */
49917     triggerAction: 'query',
49918     /**
49919      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
49920      * (defaults to 4, does not apply if editable = false)
49921      */
49922     minChars : 4,
49923     /**
49924      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
49925      * delay (typeAheadDelay) if it matches a known value (defaults to false)
49926      */
49927     typeAhead: false,
49928     /**
49929      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
49930      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
49931      */
49932     queryDelay: 500,
49933     /**
49934      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
49935      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
49936      */
49937     pageSize: 0,
49938     /**
49939      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
49940      * when editable = true (defaults to false)
49941      */
49942     selectOnFocus:false,
49943     /**
49944      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
49945      */
49946     queryParam: 'query',
49947     /**
49948      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
49949      * when mode = 'remote' (defaults to 'Loading...')
49950      */
49951     loadingText: 'Loading...',
49952     /**
49953      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
49954      */
49955     resizable: false,
49956     /**
49957      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
49958      */
49959     handleHeight : 8,
49960     /**
49961      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
49962      * traditional select (defaults to true)
49963      */
49964     editable: true,
49965     /**
49966      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
49967      */
49968     allQuery: '',
49969     /**
49970      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
49971      */
49972     mode: 'remote',
49973     /**
49974      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
49975      * listWidth has a higher value)
49976      */
49977     minListWidth : 70,
49978     /**
49979      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
49980      * allow the user to set arbitrary text into the field (defaults to false)
49981      */
49982     forceSelection:false,
49983     /**
49984      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
49985      * if typeAhead = true (defaults to 250)
49986      */
49987     typeAheadDelay : 250,
49988     /**
49989      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
49990      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
49991      */
49992     valueNotFoundText : undefined,
49993     
49994     /**
49995      * @cfg {String} defaultValue The value displayed after loading the store.
49996      */
49997     defaultValue: '',
49998     
49999     /**
50000      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
50001      */
50002     blockFocus : false,
50003     
50004     /**
50005      * @cfg {Boolean} disableClear Disable showing of clear button.
50006      */
50007     disableClear : false,
50008     /**
50009      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
50010      */
50011     alwaysQuery : false,
50012     
50013     //private
50014     addicon : false,
50015     editicon: false,
50016     
50017     // element that contains real text value.. (when hidden is used..)
50018      
50019     // private
50020     onRender : function(ct, position){
50021         Roo.form.Field.prototype.onRender.call(this, ct, position);
50022         
50023         if(this.store){
50024             this.store.on('beforeload', this.onBeforeLoad, this);
50025             this.store.on('load', this.onLoad, this);
50026             this.store.on('loadexception', this.onLoadException, this);
50027             this.store.load({});
50028         }
50029         
50030         
50031         
50032     },
50033
50034     // private
50035     initEvents : function(){
50036         //Roo.form.ComboBox.superclass.initEvents.call(this);
50037  
50038     },
50039
50040     onDestroy : function(){
50041        
50042         if(this.store){
50043             this.store.un('beforeload', this.onBeforeLoad, this);
50044             this.store.un('load', this.onLoad, this);
50045             this.store.un('loadexception', this.onLoadException, this);
50046         }
50047         //Roo.form.ComboBox.superclass.onDestroy.call(this);
50048     },
50049
50050     // private
50051     fireKey : function(e){
50052         if(e.isNavKeyPress() && !this.list.isVisible()){
50053             this.fireEvent("specialkey", this, e);
50054         }
50055     },
50056
50057     // private
50058     onResize: function(w, h){
50059         
50060         return; 
50061     
50062         
50063     },
50064
50065     /**
50066      * Allow or prevent the user from directly editing the field text.  If false is passed,
50067      * the user will only be able to select from the items defined in the dropdown list.  This method
50068      * is the runtime equivalent of setting the 'editable' config option at config time.
50069      * @param {Boolean} value True to allow the user to directly edit the field text
50070      */
50071     setEditable : function(value){
50072          
50073     },
50074
50075     // private
50076     onBeforeLoad : function(){
50077         
50078         Roo.log("Select before load");
50079         return;
50080     
50081         this.innerList.update(this.loadingText ?
50082                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
50083         //this.restrictHeight();
50084         this.selectedIndex = -1;
50085     },
50086
50087     // private
50088     onLoad : function(){
50089
50090     
50091         var dom = this.el.dom;
50092         dom.innerHTML = '';
50093          var od = dom.ownerDocument;
50094          
50095         if (this.emptyText) {
50096             var op = od.createElement('option');
50097             op.setAttribute('value', '');
50098             op.innerHTML = String.format('{0}', this.emptyText);
50099             dom.appendChild(op);
50100         }
50101         if(this.store.getCount() > 0){
50102            
50103             var vf = this.valueField;
50104             var df = this.displayField;
50105             this.store.data.each(function(r) {
50106                 // which colmsn to use... testing - cdoe / title..
50107                 var op = od.createElement('option');
50108                 op.setAttribute('value', r.data[vf]);
50109                 op.innerHTML = String.format('{0}', r.data[df]);
50110                 dom.appendChild(op);
50111             });
50112             if (typeof(this.defaultValue != 'undefined')) {
50113                 this.setValue(this.defaultValue);
50114             }
50115             
50116              
50117         }else{
50118             //this.onEmptyResults();
50119         }
50120         //this.el.focus();
50121     },
50122     // private
50123     onLoadException : function()
50124     {
50125         dom.innerHTML = '';
50126             
50127         Roo.log("Select on load exception");
50128         return;
50129     
50130         this.collapse();
50131         Roo.log(this.store.reader.jsonData);
50132         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
50133             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
50134         }
50135         
50136         
50137     },
50138     // private
50139     onTypeAhead : function(){
50140          
50141     },
50142
50143     // private
50144     onSelect : function(record, index){
50145         Roo.log('on select?');
50146         return;
50147         if(this.fireEvent('beforeselect', this, record, index) !== false){
50148             this.setFromData(index > -1 ? record.data : false);
50149             this.collapse();
50150             this.fireEvent('select', this, record, index);
50151         }
50152     },
50153
50154     /**
50155      * Returns the currently selected field value or empty string if no value is set.
50156      * @return {String} value The selected value
50157      */
50158     getValue : function(){
50159         var dom = this.el.dom;
50160         this.value = dom.options[dom.selectedIndex].value;
50161         return this.value;
50162         
50163     },
50164
50165     /**
50166      * Clears any text/value currently set in the field
50167      */
50168     clearValue : function(){
50169         this.value = '';
50170         this.el.dom.selectedIndex = this.emptyText ? 0 : -1;
50171         
50172     },
50173
50174     /**
50175      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
50176      * will be displayed in the field.  If the value does not match the data value of an existing item,
50177      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
50178      * Otherwise the field will be blank (although the value will still be set).
50179      * @param {String} value The value to match
50180      */
50181     setValue : function(v){
50182         var d = this.el.dom;
50183         for (var i =0; i < d.options.length;i++) {
50184             if (v == d.options[i].value) {
50185                 d.selectedIndex = i;
50186                 this.value = v;
50187                 return;
50188             }
50189         }
50190         this.clearValue();
50191     },
50192     /**
50193      * @property {Object} the last set data for the element
50194      */
50195     
50196     lastData : false,
50197     /**
50198      * Sets the value of the field based on a object which is related to the record format for the store.
50199      * @param {Object} value the value to set as. or false on reset?
50200      */
50201     setFromData : function(o){
50202         Roo.log('setfrom data?');
50203          
50204         
50205         
50206     },
50207     // private
50208     reset : function(){
50209         this.clearValue();
50210     },
50211     // private
50212     findRecord : function(prop, value){
50213         
50214         return false;
50215     
50216         var record;
50217         if(this.store.getCount() > 0){
50218             this.store.each(function(r){
50219                 if(r.data[prop] == value){
50220                     record = r;
50221                     return false;
50222                 }
50223                 return true;
50224             });
50225         }
50226         return record;
50227     },
50228     
50229     getName: function()
50230     {
50231         // returns hidden if it's set..
50232         if (!this.rendered) {return ''};
50233         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
50234         
50235     },
50236      
50237
50238     
50239
50240     // private
50241     onEmptyResults : function(){
50242         Roo.log('empty results');
50243         //this.collapse();
50244     },
50245
50246     /**
50247      * Returns true if the dropdown list is expanded, else false.
50248      */
50249     isExpanded : function(){
50250         return false;
50251     },
50252
50253     /**
50254      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
50255      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
50256      * @param {String} value The data value of the item to select
50257      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
50258      * selected item if it is not currently in view (defaults to true)
50259      * @return {Boolean} True if the value matched an item in the list, else false
50260      */
50261     selectByValue : function(v, scrollIntoView){
50262         Roo.log('select By Value');
50263         return false;
50264     
50265         if(v !== undefined && v !== null){
50266             var r = this.findRecord(this.valueField || this.displayField, v);
50267             if(r){
50268                 this.select(this.store.indexOf(r), scrollIntoView);
50269                 return true;
50270             }
50271         }
50272         return false;
50273     },
50274
50275     /**
50276      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
50277      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
50278      * @param {Number} index The zero-based index of the list item to select
50279      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
50280      * selected item if it is not currently in view (defaults to true)
50281      */
50282     select : function(index, scrollIntoView){
50283         Roo.log('select ');
50284         return  ;
50285         
50286         this.selectedIndex = index;
50287         this.view.select(index);
50288         if(scrollIntoView !== false){
50289             var el = this.view.getNode(index);
50290             if(el){
50291                 this.innerList.scrollChildIntoView(el, false);
50292             }
50293         }
50294     },
50295
50296       
50297
50298     // private
50299     validateBlur : function(){
50300         
50301         return;
50302         
50303     },
50304
50305     // private
50306     initQuery : function(){
50307         this.doQuery(this.getRawValue());
50308     },
50309
50310     // private
50311     doForce : function(){
50312         if(this.el.dom.value.length > 0){
50313             this.el.dom.value =
50314                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
50315              
50316         }
50317     },
50318
50319     /**
50320      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
50321      * query allowing the query action to be canceled if needed.
50322      * @param {String} query The SQL query to execute
50323      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
50324      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
50325      * saved in the current store (defaults to false)
50326      */
50327     doQuery : function(q, forceAll){
50328         
50329         Roo.log('doQuery?');
50330         if(q === undefined || q === null){
50331             q = '';
50332         }
50333         var qe = {
50334             query: q,
50335             forceAll: forceAll,
50336             combo: this,
50337             cancel:false
50338         };
50339         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
50340             return false;
50341         }
50342         q = qe.query;
50343         forceAll = qe.forceAll;
50344         if(forceAll === true || (q.length >= this.minChars)){
50345             if(this.lastQuery != q || this.alwaysQuery){
50346                 this.lastQuery = q;
50347                 if(this.mode == 'local'){
50348                     this.selectedIndex = -1;
50349                     if(forceAll){
50350                         this.store.clearFilter();
50351                     }else{
50352                         this.store.filter(this.displayField, q);
50353                     }
50354                     this.onLoad();
50355                 }else{
50356                     this.store.baseParams[this.queryParam] = q;
50357                     this.store.load({
50358                         params: this.getParams(q)
50359                     });
50360                     this.expand();
50361                 }
50362             }else{
50363                 this.selectedIndex = -1;
50364                 this.onLoad();   
50365             }
50366         }
50367     },
50368
50369     // private
50370     getParams : function(q){
50371         var p = {};
50372         //p[this.queryParam] = q;
50373         if(this.pageSize){
50374             p.start = 0;
50375             p.limit = this.pageSize;
50376         }
50377         return p;
50378     },
50379
50380     /**
50381      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
50382      */
50383     collapse : function(){
50384         
50385     },
50386
50387     // private
50388     collapseIf : function(e){
50389         
50390     },
50391
50392     /**
50393      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
50394      */
50395     expand : function(){
50396         
50397     } ,
50398
50399     // private
50400      
50401
50402     /** 
50403     * @cfg {Boolean} grow 
50404     * @hide 
50405     */
50406     /** 
50407     * @cfg {Number} growMin 
50408     * @hide 
50409     */
50410     /** 
50411     * @cfg {Number} growMax 
50412     * @hide 
50413     */
50414     /**
50415      * @hide
50416      * @method autoSize
50417      */
50418     
50419     setWidth : function()
50420     {
50421         
50422     },
50423     getResizeEl : function(){
50424         return this.el;
50425     }
50426 });//<script type="text/javasscript">
50427  
50428
50429 /**
50430  * @class Roo.DDView
50431  * A DnD enabled version of Roo.View.
50432  * @param {Element/String} container The Element in which to create the View.
50433  * @param {String} tpl The template string used to create the markup for each element of the View
50434  * @param {Object} config The configuration properties. These include all the config options of
50435  * {@link Roo.View} plus some specific to this class.<br>
50436  * <p>
50437  * Drag/drop is implemented by adding {@link Roo.data.Record}s to the target DDView. If copying is
50438  * not being performed, the original {@link Roo.data.Record} is removed from the source DDView.<br>
50439  * <p>
50440  * The following extra CSS rules are needed to provide insertion point highlighting:<pre><code>
50441 .x-view-drag-insert-above {
50442         border-top:1px dotted #3366cc;
50443 }
50444 .x-view-drag-insert-below {
50445         border-bottom:1px dotted #3366cc;
50446 }
50447 </code></pre>
50448  * 
50449  */
50450  
50451 Roo.DDView = function(container, tpl, config) {
50452     Roo.DDView.superclass.constructor.apply(this, arguments);
50453     this.getEl().setStyle("outline", "0px none");
50454     this.getEl().unselectable();
50455     if (this.dragGroup) {
50456                 this.setDraggable(this.dragGroup.split(","));
50457     }
50458     if (this.dropGroup) {
50459                 this.setDroppable(this.dropGroup.split(","));
50460     }
50461     if (this.deletable) {
50462         this.setDeletable();
50463     }
50464     this.isDirtyFlag = false;
50465         this.addEvents({
50466                 "drop" : true
50467         });
50468 };
50469
50470 Roo.extend(Roo.DDView, Roo.View, {
50471 /**     @cfg {String/Array} dragGroup The ddgroup name(s) for the View's DragZone. */
50472 /**     @cfg {String/Array} dropGroup The ddgroup name(s) for the View's DropZone. */
50473 /**     @cfg {Boolean} copy Causes drag operations to copy nodes rather than move. */
50474 /**     @cfg {Boolean} allowCopy Causes ctrl/drag operations to copy nodes rather than move. */
50475
50476         isFormField: true,
50477
50478         reset: Roo.emptyFn,
50479         
50480         clearInvalid: Roo.form.Field.prototype.clearInvalid,
50481
50482         validate: function() {
50483                 return true;
50484         },
50485         
50486         destroy: function() {
50487                 this.purgeListeners();
50488                 this.getEl.removeAllListeners();
50489                 this.getEl().remove();
50490                 if (this.dragZone) {
50491                         if (this.dragZone.destroy) {
50492                                 this.dragZone.destroy();
50493                         }
50494                 }
50495                 if (this.dropZone) {
50496                         if (this.dropZone.destroy) {
50497                                 this.dropZone.destroy();
50498                         }
50499                 }
50500         },
50501
50502 /**     Allows this class to be an Roo.form.Field so it can be found using {@link Roo.form.BasicForm#findField}. */
50503         getName: function() {
50504                 return this.name;
50505         },
50506
50507 /**     Loads the View from a JSON string representing the Records to put into the Store. */
50508         setValue: function(v) {
50509                 if (!this.store) {
50510                         throw "DDView.setValue(). DDView must be constructed with a valid Store";
50511                 }
50512                 var data = {};
50513                 data[this.store.reader.meta.root] = v ? [].concat(v) : [];
50514                 this.store.proxy = new Roo.data.MemoryProxy(data);
50515                 this.store.load();
50516         },
50517
50518 /**     @return {String} a parenthesised list of the ids of the Records in the View. */
50519         getValue: function() {
50520                 var result = '(';
50521                 this.store.each(function(rec) {
50522                         result += rec.id + ',';
50523                 });
50524                 return result.substr(0, result.length - 1) + ')';
50525         },
50526         
50527         getIds: function() {
50528                 var i = 0, result = new Array(this.store.getCount());
50529                 this.store.each(function(rec) {
50530                         result[i++] = rec.id;
50531                 });
50532                 return result;
50533         },
50534         
50535         isDirty: function() {
50536                 return this.isDirtyFlag;
50537         },
50538
50539 /**
50540  *      Part of the Roo.dd.DropZone interface. If no target node is found, the
50541  *      whole Element becomes the target, and this causes the drop gesture to append.
50542  */
50543     getTargetFromEvent : function(e) {
50544                 var target = e.getTarget();
50545                 while ((target !== null) && (target.parentNode != this.el.dom)) {
50546                 target = target.parentNode;
50547                 }
50548                 if (!target) {
50549                         target = this.el.dom.lastChild || this.el.dom;
50550                 }
50551                 return target;
50552     },
50553
50554 /**
50555  *      Create the drag data which consists of an object which has the property "ddel" as
50556  *      the drag proxy element. 
50557  */
50558     getDragData : function(e) {
50559         var target = this.findItemFromChild(e.getTarget());
50560                 if(target) {
50561                         this.handleSelection(e);
50562                         var selNodes = this.getSelectedNodes();
50563             var dragData = {
50564                 source: this,
50565                 copy: this.copy || (this.allowCopy && e.ctrlKey),
50566                 nodes: selNodes,
50567                 records: []
50568                         };
50569                         var selectedIndices = this.getSelectedIndexes();
50570                         for (var i = 0; i < selectedIndices.length; i++) {
50571                                 dragData.records.push(this.store.getAt(selectedIndices[i]));
50572                         }
50573                         if (selNodes.length == 1) {
50574                                 dragData.ddel = target.cloneNode(true); // the div element
50575                         } else {
50576                                 var div = document.createElement('div'); // create the multi element drag "ghost"
50577                                 div.className = 'multi-proxy';
50578                                 for (var i = 0, len = selNodes.length; i < len; i++) {
50579                                         div.appendChild(selNodes[i].cloneNode(true));
50580                                 }
50581                                 dragData.ddel = div;
50582                         }
50583             //console.log(dragData)
50584             //console.log(dragData.ddel.innerHTML)
50585                         return dragData;
50586                 }
50587         //console.log('nodragData')
50588                 return false;
50589     },
50590     
50591 /**     Specify to which ddGroup items in this DDView may be dragged. */
50592     setDraggable: function(ddGroup) {
50593         if (ddGroup instanceof Array) {
50594                 Roo.each(ddGroup, this.setDraggable, this);
50595                 return;
50596         }
50597         if (this.dragZone) {
50598                 this.dragZone.addToGroup(ddGroup);
50599         } else {
50600                         this.dragZone = new Roo.dd.DragZone(this.getEl(), {
50601                                 containerScroll: true,
50602                                 ddGroup: ddGroup 
50603
50604                         });
50605 //                      Draggability implies selection. DragZone's mousedown selects the element.
50606                         if (!this.multiSelect) { this.singleSelect = true; }
50607
50608 //                      Wire the DragZone's handlers up to methods in *this*
50609                         this.dragZone.getDragData = this.getDragData.createDelegate(this);
50610                 }
50611     },
50612
50613 /**     Specify from which ddGroup this DDView accepts drops. */
50614     setDroppable: function(ddGroup) {
50615         if (ddGroup instanceof Array) {
50616                 Roo.each(ddGroup, this.setDroppable, this);
50617                 return;
50618         }
50619         if (this.dropZone) {
50620                 this.dropZone.addToGroup(ddGroup);
50621         } else {
50622                         this.dropZone = new Roo.dd.DropZone(this.getEl(), {
50623                                 containerScroll: true,
50624                                 ddGroup: ddGroup
50625                         });
50626
50627 //                      Wire the DropZone's handlers up to methods in *this*
50628                         this.dropZone.getTargetFromEvent = this.getTargetFromEvent.createDelegate(this);
50629                         this.dropZone.onNodeEnter = this.onNodeEnter.createDelegate(this);
50630                         this.dropZone.onNodeOver = this.onNodeOver.createDelegate(this);
50631                         this.dropZone.onNodeOut = this.onNodeOut.createDelegate(this);
50632                         this.dropZone.onNodeDrop = this.onNodeDrop.createDelegate(this);
50633                 }
50634     },
50635
50636 /**     Decide whether to drop above or below a View node. */
50637     getDropPoint : function(e, n, dd){
50638         if (n == this.el.dom) { return "above"; }
50639                 var t = Roo.lib.Dom.getY(n), b = t + n.offsetHeight;
50640                 var c = t + (b - t) / 2;
50641                 var y = Roo.lib.Event.getPageY(e);
50642                 if(y <= c) {
50643                         return "above";
50644                 }else{
50645                         return "below";
50646                 }
50647     },
50648
50649     onNodeEnter : function(n, dd, e, data){
50650                 return false;
50651     },
50652     
50653     onNodeOver : function(n, dd, e, data){
50654                 var pt = this.getDropPoint(e, n, dd);
50655                 // set the insert point style on the target node
50656                 var dragElClass = this.dropNotAllowed;
50657                 if (pt) {
50658                         var targetElClass;
50659                         if (pt == "above"){
50660                                 dragElClass = n.previousSibling ? "x-tree-drop-ok-between" : "x-tree-drop-ok-above";
50661                                 targetElClass = "x-view-drag-insert-above";
50662                         } else {
50663                                 dragElClass = n.nextSibling ? "x-tree-drop-ok-between" : "x-tree-drop-ok-below";
50664                                 targetElClass = "x-view-drag-insert-below";
50665                         }
50666                         if (this.lastInsertClass != targetElClass){
50667                                 Roo.fly(n).replaceClass(this.lastInsertClass, targetElClass);
50668                                 this.lastInsertClass = targetElClass;
50669                         }
50670                 }
50671                 return dragElClass;
50672         },
50673
50674     onNodeOut : function(n, dd, e, data){
50675                 this.removeDropIndicators(n);
50676     },
50677
50678     onNodeDrop : function(n, dd, e, data){
50679         if (this.fireEvent("drop", this, n, dd, e, data) === false) {
50680                 return false;
50681         }
50682         var pt = this.getDropPoint(e, n, dd);
50683                 var insertAt = (n == this.el.dom) ? this.nodes.length : n.nodeIndex;
50684                 if (pt == "below") { insertAt++; }
50685                 for (var i = 0; i < data.records.length; i++) {
50686                         var r = data.records[i];
50687                         var dup = this.store.getById(r.id);
50688                         if (dup && (dd != this.dragZone)) {
50689                                 Roo.fly(this.getNode(this.store.indexOf(dup))).frame("red", 1);
50690                         } else {
50691                                 if (data.copy) {
50692                                         this.store.insert(insertAt++, r.copy());
50693                                 } else {
50694                                         data.source.isDirtyFlag = true;
50695                                         r.store.remove(r);
50696                                         this.store.insert(insertAt++, r);
50697                                 }
50698                                 this.isDirtyFlag = true;
50699                         }
50700                 }
50701                 this.dragZone.cachedTarget = null;
50702                 return true;
50703     },
50704
50705     removeDropIndicators : function(n){
50706                 if(n){
50707                         Roo.fly(n).removeClass([
50708                                 "x-view-drag-insert-above",
50709                                 "x-view-drag-insert-below"]);
50710                         this.lastInsertClass = "_noclass";
50711                 }
50712     },
50713
50714 /**
50715  *      Utility method. Add a delete option to the DDView's context menu.
50716  *      @param {String} imageUrl The URL of the "delete" icon image.
50717  */
50718         setDeletable: function(imageUrl) {
50719                 if (!this.singleSelect && !this.multiSelect) {
50720                         this.singleSelect = true;
50721                 }
50722                 var c = this.getContextMenu();
50723                 this.contextMenu.on("itemclick", function(item) {
50724                         switch (item.id) {
50725                                 case "delete":
50726                                         this.remove(this.getSelectedIndexes());
50727                                         break;
50728                         }
50729                 }, this);
50730                 this.contextMenu.add({
50731                         icon: imageUrl,
50732                         id: "delete",
50733                         text: 'Delete'
50734                 });
50735         },
50736         
50737 /**     Return the context menu for this DDView. */
50738         getContextMenu: function() {
50739                 if (!this.contextMenu) {
50740 //                      Create the View's context menu
50741                         this.contextMenu = new Roo.menu.Menu({
50742                                 id: this.id + "-contextmenu"
50743                         });
50744                         this.el.on("contextmenu", this.showContextMenu, this);
50745                 }
50746                 return this.contextMenu;
50747         },
50748         
50749         disableContextMenu: function() {
50750                 if (this.contextMenu) {
50751                         this.el.un("contextmenu", this.showContextMenu, this);
50752                 }
50753         },
50754
50755         showContextMenu: function(e, item) {
50756         item = this.findItemFromChild(e.getTarget());
50757                 if (item) {
50758                         e.stopEvent();
50759                         this.select(this.getNode(item), this.multiSelect && e.ctrlKey, true);
50760                         this.contextMenu.showAt(e.getXY());
50761             }
50762     },
50763
50764 /**
50765  *      Remove {@link Roo.data.Record}s at the specified indices.
50766  *      @param {Array/Number} selectedIndices The index (or Array of indices) of Records to remove.
50767  */
50768     remove: function(selectedIndices) {
50769                 selectedIndices = [].concat(selectedIndices);
50770                 for (var i = 0; i < selectedIndices.length; i++) {
50771                         var rec = this.store.getAt(selectedIndices[i]);
50772                         this.store.remove(rec);
50773                 }
50774     },
50775
50776 /**
50777  *      Double click fires the event, but also, if this is draggable, and there is only one other
50778  *      related DropZone, it transfers the selected node.
50779  */
50780     onDblClick : function(e){
50781         var item = this.findItemFromChild(e.getTarget());
50782         if(item){
50783             if (this.fireEvent("dblclick", this, this.indexOf(item), item, e) === false) {
50784                 return false;
50785             }
50786             if (this.dragGroup) {
50787                     var targets = Roo.dd.DragDropMgr.getRelated(this.dragZone, true);
50788                     while (targets.indexOf(this.dropZone) > -1) {
50789                             targets.remove(this.dropZone);
50790                                 }
50791                     if (targets.length == 1) {
50792                                         this.dragZone.cachedTarget = null;
50793                         var el = Roo.get(targets[0].getEl());
50794                         var box = el.getBox(true);
50795                         targets[0].onNodeDrop(el.dom, {
50796                                 target: el.dom,
50797                                 xy: [box.x, box.y + box.height - 1]
50798                         }, null, this.getDragData(e));
50799                     }
50800                 }
50801         }
50802     },
50803     
50804     handleSelection: function(e) {
50805                 this.dragZone.cachedTarget = null;
50806         var item = this.findItemFromChild(e.getTarget());
50807         if (!item) {
50808                 this.clearSelections(true);
50809                 return;
50810         }
50811                 if (item && (this.multiSelect || this.singleSelect)){
50812                         if(this.multiSelect && e.shiftKey && (!e.ctrlKey) && this.lastSelection){
50813                                 this.select(this.getNodes(this.indexOf(this.lastSelection), item.nodeIndex), false);
50814                         }else if (this.isSelected(this.getNode(item)) && e.ctrlKey){
50815                                 this.unselect(item);
50816                         } else {
50817                                 this.select(item, this.multiSelect && e.ctrlKey);
50818                                 this.lastSelection = item;
50819                         }
50820                 }
50821     },
50822
50823     onItemClick : function(item, index, e){
50824                 if(this.fireEvent("beforeclick", this, index, item, e) === false){
50825                         return false;
50826                 }
50827                 return true;
50828     },
50829
50830     unselect : function(nodeInfo, suppressEvent){
50831                 var node = this.getNode(nodeInfo);
50832                 if(node && this.isSelected(node)){
50833                         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
50834                                 Roo.fly(node).removeClass(this.selectedClass);
50835                                 this.selections.remove(node);
50836                                 if(!suppressEvent){
50837                                         this.fireEvent("selectionchange", this, this.selections);
50838                                 }
50839                         }
50840                 }
50841     }
50842 });
50843 /*
50844  * Based on:
50845  * Ext JS Library 1.1.1
50846  * Copyright(c) 2006-2007, Ext JS, LLC.
50847  *
50848  * Originally Released Under LGPL - original licence link has changed is not relivant.
50849  *
50850  * Fork - LGPL
50851  * <script type="text/javascript">
50852  */
50853  
50854 /**
50855  * @class Roo.LayoutManager
50856  * @extends Roo.util.Observable
50857  * Base class for layout managers.
50858  */
50859 Roo.LayoutManager = function(container, config){
50860     Roo.LayoutManager.superclass.constructor.call(this);
50861     this.el = Roo.get(container);
50862     // ie scrollbar fix
50863     if(this.el.dom == document.body && Roo.isIE && !config.allowScroll){
50864         document.body.scroll = "no";
50865     }else if(this.el.dom != document.body && this.el.getStyle('position') == 'static'){
50866         this.el.position('relative');
50867     }
50868     this.id = this.el.id;
50869     this.el.addClass("x-layout-container");
50870     /** false to disable window resize monitoring @type Boolean */
50871     this.monitorWindowResize = true;
50872     this.regions = {};
50873     this.addEvents({
50874         /**
50875          * @event layout
50876          * Fires when a layout is performed. 
50877          * @param {Roo.LayoutManager} this
50878          */
50879         "layout" : true,
50880         /**
50881          * @event regionresized
50882          * Fires when the user resizes a region. 
50883          * @param {Roo.LayoutRegion} region The resized region
50884          * @param {Number} newSize The new size (width for east/west, height for north/south)
50885          */
50886         "regionresized" : true,
50887         /**
50888          * @event regioncollapsed
50889          * Fires when a region is collapsed. 
50890          * @param {Roo.LayoutRegion} region The collapsed region
50891          */
50892         "regioncollapsed" : true,
50893         /**
50894          * @event regionexpanded
50895          * Fires when a region is expanded.  
50896          * @param {Roo.LayoutRegion} region The expanded region
50897          */
50898         "regionexpanded" : true
50899     });
50900     this.updating = false;
50901     Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
50902 };
50903
50904 Roo.extend(Roo.LayoutManager, Roo.util.Observable, {
50905     /**
50906      * Returns true if this layout is currently being updated
50907      * @return {Boolean}
50908      */
50909     isUpdating : function(){
50910         return this.updating; 
50911     },
50912     
50913     /**
50914      * Suspend the LayoutManager from doing auto-layouts while
50915      * making multiple add or remove calls
50916      */
50917     beginUpdate : function(){
50918         this.updating = true;    
50919     },
50920     
50921     /**
50922      * Restore auto-layouts and optionally disable the manager from performing a layout
50923      * @param {Boolean} noLayout true to disable a layout update 
50924      */
50925     endUpdate : function(noLayout){
50926         this.updating = false;
50927         if(!noLayout){
50928             this.layout();
50929         }    
50930     },
50931     
50932     layout: function(){
50933         
50934     },
50935     
50936     onRegionResized : function(region, newSize){
50937         this.fireEvent("regionresized", region, newSize);
50938         this.layout();
50939     },
50940     
50941     onRegionCollapsed : function(region){
50942         this.fireEvent("regioncollapsed", region);
50943     },
50944     
50945     onRegionExpanded : function(region){
50946         this.fireEvent("regionexpanded", region);
50947     },
50948         
50949     /**
50950      * Returns the size of the current view. This method normalizes document.body and element embedded layouts and
50951      * performs box-model adjustments.
50952      * @return {Object} The size as an object {width: (the width), height: (the height)}
50953      */
50954     getViewSize : function(){
50955         var size;
50956         if(this.el.dom != document.body){
50957             size = this.el.getSize();
50958         }else{
50959             size = {width: Roo.lib.Dom.getViewWidth(), height: Roo.lib.Dom.getViewHeight()};
50960         }
50961         size.width -= this.el.getBorderWidth("lr")-this.el.getPadding("lr");
50962         size.height -= this.el.getBorderWidth("tb")-this.el.getPadding("tb");
50963         return size;
50964     },
50965     
50966     /**
50967      * Returns the Element this layout is bound to.
50968      * @return {Roo.Element}
50969      */
50970     getEl : function(){
50971         return this.el;
50972     },
50973     
50974     /**
50975      * Returns the specified region.
50976      * @param {String} target The region key ('center', 'north', 'south', 'east' or 'west')
50977      * @return {Roo.LayoutRegion}
50978      */
50979     getRegion : function(target){
50980         return this.regions[target.toLowerCase()];
50981     },
50982     
50983     onWindowResize : function(){
50984         if(this.monitorWindowResize){
50985             this.layout();
50986         }
50987     }
50988 });/*
50989  * Based on:
50990  * Ext JS Library 1.1.1
50991  * Copyright(c) 2006-2007, Ext JS, LLC.
50992  *
50993  * Originally Released Under LGPL - original licence link has changed is not relivant.
50994  *
50995  * Fork - LGPL
50996  * <script type="text/javascript">
50997  */
50998 /**
50999  * @class Roo.BorderLayout
51000  * @extends Roo.LayoutManager
51001  * This class represents a common layout manager used in desktop applications. For screenshots and more details,
51002  * please see: <br><br>
51003  * <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>
51004  * <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>
51005  * Example:
51006  <pre><code>
51007  var layout = new Roo.BorderLayout(document.body, {
51008     north: {
51009         initialSize: 25,
51010         titlebar: false
51011     },
51012     west: {
51013         split:true,
51014         initialSize: 200,
51015         minSize: 175,
51016         maxSize: 400,
51017         titlebar: true,
51018         collapsible: true
51019     },
51020     east: {
51021         split:true,
51022         initialSize: 202,
51023         minSize: 175,
51024         maxSize: 400,
51025         titlebar: true,
51026         collapsible: true
51027     },
51028     south: {
51029         split:true,
51030         initialSize: 100,
51031         minSize: 100,
51032         maxSize: 200,
51033         titlebar: true,
51034         collapsible: true
51035     },
51036     center: {
51037         titlebar: true,
51038         autoScroll:true,
51039         resizeTabs: true,
51040         minTabWidth: 50,
51041         preferredTabWidth: 150
51042     }
51043 });
51044
51045 // shorthand
51046 var CP = Roo.ContentPanel;
51047
51048 layout.beginUpdate();
51049 layout.add("north", new CP("north", "North"));
51050 layout.add("south", new CP("south", {title: "South", closable: true}));
51051 layout.add("west", new CP("west", {title: "West"}));
51052 layout.add("east", new CP("autoTabs", {title: "Auto Tabs", closable: true}));
51053 layout.add("center", new CP("center1", {title: "Close Me", closable: true}));
51054 layout.add("center", new CP("center2", {title: "Center Panel", closable: false}));
51055 layout.getRegion("center").showPanel("center1");
51056 layout.endUpdate();
51057 </code></pre>
51058
51059 <b>The container the layout is rendered into can be either the body element or any other element.
51060 If it is not the body element, the container needs to either be an absolute positioned element,
51061 or you will need to add "position:relative" to the css of the container.  You will also need to specify
51062 the container size if it is not the body element.</b>
51063
51064 * @constructor
51065 * Create a new BorderLayout
51066 * @param {String/HTMLElement/Element} container The container this layout is bound to
51067 * @param {Object} config Configuration options
51068  */
51069 Roo.BorderLayout = function(container, config){
51070     config = config || {};
51071     Roo.BorderLayout.superclass.constructor.call(this, container, config);
51072     this.factory = config.factory || Roo.BorderLayout.RegionFactory;
51073     for(var i = 0, len = this.factory.validRegions.length; i < len; i++) {
51074         var target = this.factory.validRegions[i];
51075         if(config[target]){
51076             this.addRegion(target, config[target]);
51077         }
51078     }
51079 };
51080
51081 Roo.extend(Roo.BorderLayout, Roo.LayoutManager, {
51082     /**
51083      * Creates and adds a new region if it doesn't already exist.
51084      * @param {String} target The target region key (north, south, east, west or center).
51085      * @param {Object} config The regions config object
51086      * @return {BorderLayoutRegion} The new region
51087      */
51088     addRegion : function(target, config){
51089         if(!this.regions[target]){
51090             var r = this.factory.create(target, this, config);
51091             this.bindRegion(target, r);
51092         }
51093         return this.regions[target];
51094     },
51095
51096     // private (kinda)
51097     bindRegion : function(name, r){
51098         this.regions[name] = r;
51099         r.on("visibilitychange", this.layout, this);
51100         r.on("paneladded", this.layout, this);
51101         r.on("panelremoved", this.layout, this);
51102         r.on("invalidated", this.layout, this);
51103         r.on("resized", this.onRegionResized, this);
51104         r.on("collapsed", this.onRegionCollapsed, this);
51105         r.on("expanded", this.onRegionExpanded, this);
51106     },
51107
51108     /**
51109      * Performs a layout update.
51110      */
51111     layout : function(){
51112         if(this.updating) {
51113             return;
51114         }
51115         var size = this.getViewSize();
51116         var w = size.width;
51117         var h = size.height;
51118         var centerW = w;
51119         var centerH = h;
51120         var centerY = 0;
51121         var centerX = 0;
51122         //var x = 0, y = 0;
51123
51124         var rs = this.regions;
51125         var north = rs["north"];
51126         var south = rs["south"]; 
51127         var west = rs["west"];
51128         var east = rs["east"];
51129         var center = rs["center"];
51130         //if(this.hideOnLayout){ // not supported anymore
51131             //c.el.setStyle("display", "none");
51132         //}
51133         if(north && north.isVisible()){
51134             var b = north.getBox();
51135             var m = north.getMargins();
51136             b.width = w - (m.left+m.right);
51137             b.x = m.left;
51138             b.y = m.top;
51139             centerY = b.height + b.y + m.bottom;
51140             centerH -= centerY;
51141             north.updateBox(this.safeBox(b));
51142         }
51143         if(south && south.isVisible()){
51144             var b = south.getBox();
51145             var m = south.getMargins();
51146             b.width = w - (m.left+m.right);
51147             b.x = m.left;
51148             var totalHeight = (b.height + m.top + m.bottom);
51149             b.y = h - totalHeight + m.top;
51150             centerH -= totalHeight;
51151             south.updateBox(this.safeBox(b));
51152         }
51153         if(west && west.isVisible()){
51154             var b = west.getBox();
51155             var m = west.getMargins();
51156             b.height = centerH - (m.top+m.bottom);
51157             b.x = m.left;
51158             b.y = centerY + m.top;
51159             var totalWidth = (b.width + m.left + m.right);
51160             centerX += totalWidth;
51161             centerW -= totalWidth;
51162             west.updateBox(this.safeBox(b));
51163         }
51164         if(east && east.isVisible()){
51165             var b = east.getBox();
51166             var m = east.getMargins();
51167             b.height = centerH - (m.top+m.bottom);
51168             var totalWidth = (b.width + m.left + m.right);
51169             b.x = w - totalWidth + m.left;
51170             b.y = centerY + m.top;
51171             centerW -= totalWidth;
51172             east.updateBox(this.safeBox(b));
51173         }
51174         if(center){
51175             var m = center.getMargins();
51176             var centerBox = {
51177                 x: centerX + m.left,
51178                 y: centerY + m.top,
51179                 width: centerW - (m.left+m.right),
51180                 height: centerH - (m.top+m.bottom)
51181             };
51182             //if(this.hideOnLayout){
51183                 //center.el.setStyle("display", "block");
51184             //}
51185             center.updateBox(this.safeBox(centerBox));
51186         }
51187         this.el.repaint();
51188         this.fireEvent("layout", this);
51189     },
51190
51191     // private
51192     safeBox : function(box){
51193         box.width = Math.max(0, box.width);
51194         box.height = Math.max(0, box.height);
51195         return box;
51196     },
51197
51198     /**
51199      * Adds a ContentPanel (or subclass) to this layout.
51200      * @param {String} target The target region key (north, south, east, west or center).
51201      * @param {Roo.ContentPanel} panel The panel to add
51202      * @return {Roo.ContentPanel} The added panel
51203      */
51204     add : function(target, panel){
51205          
51206         target = target.toLowerCase();
51207         return this.regions[target].add(panel);
51208     },
51209
51210     /**
51211      * Remove a ContentPanel (or subclass) to this layout.
51212      * @param {String} target The target region key (north, south, east, west or center).
51213      * @param {Number/String/Roo.ContentPanel} panel The index, id or panel to remove
51214      * @return {Roo.ContentPanel} The removed panel
51215      */
51216     remove : function(target, panel){
51217         target = target.toLowerCase();
51218         return this.regions[target].remove(panel);
51219     },
51220
51221     /**
51222      * Searches all regions for a panel with the specified id
51223      * @param {String} panelId
51224      * @return {Roo.ContentPanel} The panel or null if it wasn't found
51225      */
51226     findPanel : function(panelId){
51227         var rs = this.regions;
51228         for(var target in rs){
51229             if(typeof rs[target] != "function"){
51230                 var p = rs[target].getPanel(panelId);
51231                 if(p){
51232                     return p;
51233                 }
51234             }
51235         }
51236         return null;
51237     },
51238
51239     /**
51240      * Searches all regions for a panel with the specified id and activates (shows) it.
51241      * @param {String/ContentPanel} panelId The panels id or the panel itself
51242      * @return {Roo.ContentPanel} The shown panel or null
51243      */
51244     showPanel : function(panelId) {
51245       var rs = this.regions;
51246       for(var target in rs){
51247          var r = rs[target];
51248          if(typeof r != "function"){
51249             if(r.hasPanel(panelId)){
51250                return r.showPanel(panelId);
51251             }
51252          }
51253       }
51254       return null;
51255    },
51256
51257    /**
51258      * Restores this layout's state using Roo.state.Manager or the state provided by the passed provider.
51259      * @param {Roo.state.Provider} provider (optional) An alternate state provider
51260      */
51261     restoreState : function(provider){
51262         if(!provider){
51263             provider = Roo.state.Manager;
51264         }
51265         var sm = new Roo.LayoutStateManager();
51266         sm.init(this, provider);
51267     },
51268
51269     /**
51270      * Adds a batch of multiple ContentPanels dynamically by passing a special regions config object.  This config
51271      * object should contain properties for each region to add ContentPanels to, and each property's value should be
51272      * a valid ContentPanel config object.  Example:
51273      * <pre><code>
51274 // Create the main layout
51275 var layout = new Roo.BorderLayout('main-ct', {
51276     west: {
51277         split:true,
51278         minSize: 175,
51279         titlebar: true
51280     },
51281     center: {
51282         title:'Components'
51283     }
51284 }, 'main-ct');
51285
51286 // Create and add multiple ContentPanels at once via configs
51287 layout.batchAdd({
51288    west: {
51289        id: 'source-files',
51290        autoCreate:true,
51291        title:'Ext Source Files',
51292        autoScroll:true,
51293        fitToFrame:true
51294    },
51295    center : {
51296        el: cview,
51297        autoScroll:true,
51298        fitToFrame:true,
51299        toolbar: tb,
51300        resizeEl:'cbody'
51301    }
51302 });
51303 </code></pre>
51304      * @param {Object} regions An object containing ContentPanel configs by region name
51305      */
51306     batchAdd : function(regions){
51307         this.beginUpdate();
51308         for(var rname in regions){
51309             var lr = this.regions[rname];
51310             if(lr){
51311                 this.addTypedPanels(lr, regions[rname]);
51312             }
51313         }
51314         this.endUpdate();
51315     },
51316
51317     // private
51318     addTypedPanels : function(lr, ps){
51319         if(typeof ps == 'string'){
51320             lr.add(new Roo.ContentPanel(ps));
51321         }
51322         else if(ps instanceof Array){
51323             for(var i =0, len = ps.length; i < len; i++){
51324                 this.addTypedPanels(lr, ps[i]);
51325             }
51326         }
51327         else if(!ps.events){ // raw config?
51328             var el = ps.el;
51329             delete ps.el; // prevent conflict
51330             lr.add(new Roo.ContentPanel(el || Roo.id(), ps));
51331         }
51332         else {  // panel object assumed!
51333             lr.add(ps);
51334         }
51335     },
51336     /**
51337      * Adds a xtype elements to the layout.
51338      * <pre><code>
51339
51340 layout.addxtype({
51341        xtype : 'ContentPanel',
51342        region: 'west',
51343        items: [ .... ]
51344    }
51345 );
51346
51347 layout.addxtype({
51348         xtype : 'NestedLayoutPanel',
51349         region: 'west',
51350         layout: {
51351            center: { },
51352            west: { }   
51353         },
51354         items : [ ... list of content panels or nested layout panels.. ]
51355    }
51356 );
51357 </code></pre>
51358      * @param {Object} cfg Xtype definition of item to add.
51359      */
51360     addxtype : function(cfg)
51361     {
51362         // basically accepts a pannel...
51363         // can accept a layout region..!?!?
51364         //Roo.log('Roo.BorderLayout add ' + cfg.xtype)
51365         
51366         if (!cfg.xtype.match(/Panel$/)) {
51367             return false;
51368         }
51369         var ret = false;
51370         
51371         if (typeof(cfg.region) == 'undefined') {
51372             Roo.log("Failed to add Panel, region was not set");
51373             Roo.log(cfg);
51374             return false;
51375         }
51376         var region = cfg.region;
51377         delete cfg.region;
51378         
51379           
51380         var xitems = [];
51381         if (cfg.items) {
51382             xitems = cfg.items;
51383             delete cfg.items;
51384         }
51385         var nb = false;
51386         
51387         switch(cfg.xtype) 
51388         {
51389             case 'ContentPanel':  // ContentPanel (el, cfg)
51390             case 'ScrollPanel':  // ContentPanel (el, cfg)
51391             case 'ViewPanel': 
51392                 if(cfg.autoCreate) {
51393                     ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
51394                 } else {
51395                     var el = this.el.createChild();
51396                     ret = new Roo[cfg.xtype](el, cfg); // new panel!!!!!
51397                 }
51398                 
51399                 this.add(region, ret);
51400                 break;
51401             
51402             
51403             case 'TreePanel': // our new panel!
51404                 cfg.el = this.el.createChild();
51405                 ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
51406                 this.add(region, ret);
51407                 break;
51408             
51409             case 'NestedLayoutPanel': 
51410                 // create a new Layout (which is  a Border Layout...
51411                 var el = this.el.createChild();
51412                 var clayout = cfg.layout;
51413                 delete cfg.layout;
51414                 clayout.items   = clayout.items  || [];
51415                 // replace this exitems with the clayout ones..
51416                 xitems = clayout.items;
51417                  
51418                 
51419                 if (region == 'center' && this.active && this.getRegion('center').panels.length < 1) {
51420                     cfg.background = false;
51421                 }
51422                 var layout = new Roo.BorderLayout(el, clayout);
51423                 
51424                 ret = new Roo[cfg.xtype](layout, cfg); // new panel!!!!!
51425                 //console.log('adding nested layout panel '  + cfg.toSource());
51426                 this.add(region, ret);
51427                 nb = {}; /// find first...
51428                 break;
51429                 
51430             case 'GridPanel': 
51431             
51432                 // needs grid and region
51433                 
51434                 //var el = this.getRegion(region).el.createChild();
51435                 var el = this.el.createChild();
51436                 // create the grid first...
51437                 
51438                 var grid = new Roo.grid[cfg.grid.xtype](el, cfg.grid);
51439                 delete cfg.grid;
51440                 if (region == 'center' && this.active ) {
51441                     cfg.background = false;
51442                 }
51443                 ret = new Roo[cfg.xtype](grid, cfg); // new panel!!!!!
51444                 
51445                 this.add(region, ret);
51446                 if (cfg.background) {
51447                     ret.on('activate', function(gp) {
51448                         if (!gp.grid.rendered) {
51449                             gp.grid.render();
51450                         }
51451                     });
51452                 } else {
51453                     grid.render();
51454                 }
51455                 break;
51456            
51457            
51458            
51459                 
51460                 
51461                 
51462             default:
51463                 if (typeof(Roo[cfg.xtype]) != 'undefined') {
51464                     
51465                     ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
51466                     this.add(region, ret);
51467                 } else {
51468                 
51469                     alert("Can not add '" + cfg.xtype + "' to BorderLayout");
51470                     return null;
51471                 }
51472                 
51473              // GridPanel (grid, cfg)
51474             
51475         }
51476         this.beginUpdate();
51477         // add children..
51478         var region = '';
51479         var abn = {};
51480         Roo.each(xitems, function(i)  {
51481             region = nb && i.region ? i.region : false;
51482             
51483             var add = ret.addxtype(i);
51484            
51485             if (region) {
51486                 nb[region] = nb[region] == undefined ? 0 : nb[region]+1;
51487                 if (!i.background) {
51488                     abn[region] = nb[region] ;
51489                 }
51490             }
51491             
51492         });
51493         this.endUpdate();
51494
51495         // make the last non-background panel active..
51496         //if (nb) { Roo.log(abn); }
51497         if (nb) {
51498             
51499             for(var r in abn) {
51500                 region = this.getRegion(r);
51501                 if (region) {
51502                     // tried using nb[r], but it does not work..
51503                      
51504                     region.showPanel(abn[r]);
51505                    
51506                 }
51507             }
51508         }
51509         return ret;
51510         
51511     }
51512 });
51513
51514 /**
51515  * Shortcut for creating a new BorderLayout object and adding one or more ContentPanels to it in a single step, handling
51516  * the beginUpdate and endUpdate calls internally.  The key to this method is the <b>panels</b> property that can be
51517  * provided with each region config, which allows you to add ContentPanel configs in addition to the region configs
51518  * during creation.  The following code is equivalent to the constructor-based example at the beginning of this class:
51519  * <pre><code>
51520 // shorthand
51521 var CP = Roo.ContentPanel;
51522
51523 var layout = Roo.BorderLayout.create({
51524     north: {
51525         initialSize: 25,
51526         titlebar: false,
51527         panels: [new CP("north", "North")]
51528     },
51529     west: {
51530         split:true,
51531         initialSize: 200,
51532         minSize: 175,
51533         maxSize: 400,
51534         titlebar: true,
51535         collapsible: true,
51536         panels: [new CP("west", {title: "West"})]
51537     },
51538     east: {
51539         split:true,
51540         initialSize: 202,
51541         minSize: 175,
51542         maxSize: 400,
51543         titlebar: true,
51544         collapsible: true,
51545         panels: [new CP("autoTabs", {title: "Auto Tabs", closable: true})]
51546     },
51547     south: {
51548         split:true,
51549         initialSize: 100,
51550         minSize: 100,
51551         maxSize: 200,
51552         titlebar: true,
51553         collapsible: true,
51554         panels: [new CP("south", {title: "South", closable: true})]
51555     },
51556     center: {
51557         titlebar: true,
51558         autoScroll:true,
51559         resizeTabs: true,
51560         minTabWidth: 50,
51561         preferredTabWidth: 150,
51562         panels: [
51563             new CP("center1", {title: "Close Me", closable: true}),
51564             new CP("center2", {title: "Center Panel", closable: false})
51565         ]
51566     }
51567 }, document.body);
51568
51569 layout.getRegion("center").showPanel("center1");
51570 </code></pre>
51571  * @param config
51572  * @param targetEl
51573  */
51574 Roo.BorderLayout.create = function(config, targetEl){
51575     var layout = new Roo.BorderLayout(targetEl || document.body, config);
51576     layout.beginUpdate();
51577     var regions = Roo.BorderLayout.RegionFactory.validRegions;
51578     for(var j = 0, jlen = regions.length; j < jlen; j++){
51579         var lr = regions[j];
51580         if(layout.regions[lr] && config[lr].panels){
51581             var r = layout.regions[lr];
51582             var ps = config[lr].panels;
51583             layout.addTypedPanels(r, ps);
51584         }
51585     }
51586     layout.endUpdate();
51587     return layout;
51588 };
51589
51590 // private
51591 Roo.BorderLayout.RegionFactory = {
51592     // private
51593     validRegions : ["north","south","east","west","center"],
51594
51595     // private
51596     create : function(target, mgr, config){
51597         target = target.toLowerCase();
51598         if(config.lightweight || config.basic){
51599             return new Roo.BasicLayoutRegion(mgr, config, target);
51600         }
51601         switch(target){
51602             case "north":
51603                 return new Roo.NorthLayoutRegion(mgr, config);
51604             case "south":
51605                 return new Roo.SouthLayoutRegion(mgr, config);
51606             case "east":
51607                 return new Roo.EastLayoutRegion(mgr, config);
51608             case "west":
51609                 return new Roo.WestLayoutRegion(mgr, config);
51610             case "center":
51611                 return new Roo.CenterLayoutRegion(mgr, config);
51612         }
51613         throw 'Layout region "'+target+'" not supported.';
51614     }
51615 };/*
51616  * Based on:
51617  * Ext JS Library 1.1.1
51618  * Copyright(c) 2006-2007, Ext JS, LLC.
51619  *
51620  * Originally Released Under LGPL - original licence link has changed is not relivant.
51621  *
51622  * Fork - LGPL
51623  * <script type="text/javascript">
51624  */
51625  
51626 /**
51627  * @class Roo.BasicLayoutRegion
51628  * @extends Roo.util.Observable
51629  * This class represents a lightweight region in a layout manager. This region does not move dom nodes
51630  * and does not have a titlebar, tabs or any other features. All it does is size and position 
51631  * panels. To create a BasicLayoutRegion, add lightweight:true or basic:true to your regions config.
51632  */
51633 Roo.BasicLayoutRegion = function(mgr, config, pos, skipConfig){
51634     this.mgr = mgr;
51635     this.position  = pos;
51636     this.events = {
51637         /**
51638          * @scope Roo.BasicLayoutRegion
51639          */
51640         
51641         /**
51642          * @event beforeremove
51643          * Fires before a panel is removed (or closed). To cancel the removal set "e.cancel = true" on the event argument.
51644          * @param {Roo.LayoutRegion} this
51645          * @param {Roo.ContentPanel} panel The panel
51646          * @param {Object} e The cancel event object
51647          */
51648         "beforeremove" : true,
51649         /**
51650          * @event invalidated
51651          * Fires when the layout for this region is changed.
51652          * @param {Roo.LayoutRegion} this
51653          */
51654         "invalidated" : true,
51655         /**
51656          * @event visibilitychange
51657          * Fires when this region is shown or hidden 
51658          * @param {Roo.LayoutRegion} this
51659          * @param {Boolean} visibility true or false
51660          */
51661         "visibilitychange" : true,
51662         /**
51663          * @event paneladded
51664          * Fires when a panel is added. 
51665          * @param {Roo.LayoutRegion} this
51666          * @param {Roo.ContentPanel} panel The panel
51667          */
51668         "paneladded" : true,
51669         /**
51670          * @event panelremoved
51671          * Fires when a panel is removed. 
51672          * @param {Roo.LayoutRegion} this
51673          * @param {Roo.ContentPanel} panel The panel
51674          */
51675         "panelremoved" : true,
51676         /**
51677          * @event beforecollapse
51678          * Fires when this region before collapse.
51679          * @param {Roo.LayoutRegion} this
51680          */
51681         "beforecollapse" : true,
51682         /**
51683          * @event collapsed
51684          * Fires when this region is collapsed.
51685          * @param {Roo.LayoutRegion} this
51686          */
51687         "collapsed" : true,
51688         /**
51689          * @event expanded
51690          * Fires when this region is expanded.
51691          * @param {Roo.LayoutRegion} this
51692          */
51693         "expanded" : true,
51694         /**
51695          * @event slideshow
51696          * Fires when this region is slid into view.
51697          * @param {Roo.LayoutRegion} this
51698          */
51699         "slideshow" : true,
51700         /**
51701          * @event slidehide
51702          * Fires when this region slides out of view. 
51703          * @param {Roo.LayoutRegion} this
51704          */
51705         "slidehide" : true,
51706         /**
51707          * @event panelactivated
51708          * Fires when a panel is activated. 
51709          * @param {Roo.LayoutRegion} this
51710          * @param {Roo.ContentPanel} panel The activated panel
51711          */
51712         "panelactivated" : true,
51713         /**
51714          * @event resized
51715          * Fires when the user resizes this region. 
51716          * @param {Roo.LayoutRegion} this
51717          * @param {Number} newSize The new size (width for east/west, height for north/south)
51718          */
51719         "resized" : true
51720     };
51721     /** A collection of panels in this region. @type Roo.util.MixedCollection */
51722     this.panels = new Roo.util.MixedCollection();
51723     this.panels.getKey = this.getPanelId.createDelegate(this);
51724     this.box = null;
51725     this.activePanel = null;
51726     // ensure listeners are added...
51727     
51728     if (config.listeners || config.events) {
51729         Roo.BasicLayoutRegion.superclass.constructor.call(this, {
51730             listeners : config.listeners || {},
51731             events : config.events || {}
51732         });
51733     }
51734     
51735     if(skipConfig !== true){
51736         this.applyConfig(config);
51737     }
51738 };
51739
51740 Roo.extend(Roo.BasicLayoutRegion, Roo.util.Observable, {
51741     getPanelId : function(p){
51742         return p.getId();
51743     },
51744     
51745     applyConfig : function(config){
51746         this.margins = config.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
51747         this.config = config;
51748         
51749     },
51750     
51751     /**
51752      * Resizes the region to the specified size. For vertical regions (west, east) this adjusts 
51753      * the width, for horizontal (north, south) the height.
51754      * @param {Number} newSize The new width or height
51755      */
51756     resizeTo : function(newSize){
51757         var el = this.el ? this.el :
51758                  (this.activePanel ? this.activePanel.getEl() : null);
51759         if(el){
51760             switch(this.position){
51761                 case "east":
51762                 case "west":
51763                     el.setWidth(newSize);
51764                     this.fireEvent("resized", this, newSize);
51765                 break;
51766                 case "north":
51767                 case "south":
51768                     el.setHeight(newSize);
51769                     this.fireEvent("resized", this, newSize);
51770                 break;                
51771             }
51772         }
51773     },
51774     
51775     getBox : function(){
51776         return this.activePanel ? this.activePanel.getEl().getBox(false, true) : null;
51777     },
51778     
51779     getMargins : function(){
51780         return this.margins;
51781     },
51782     
51783     updateBox : function(box){
51784         this.box = box;
51785         var el = this.activePanel.getEl();
51786         el.dom.style.left = box.x + "px";
51787         el.dom.style.top = box.y + "px";
51788         this.activePanel.setSize(box.width, box.height);
51789     },
51790     
51791     /**
51792      * Returns the container element for this region.
51793      * @return {Roo.Element}
51794      */
51795     getEl : function(){
51796         return this.activePanel;
51797     },
51798     
51799     /**
51800      * Returns true if this region is currently visible.
51801      * @return {Boolean}
51802      */
51803     isVisible : function(){
51804         return this.activePanel ? true : false;
51805     },
51806     
51807     setActivePanel : function(panel){
51808         panel = this.getPanel(panel);
51809         if(this.activePanel && this.activePanel != panel){
51810             this.activePanel.setActiveState(false);
51811             this.activePanel.getEl().setLeftTop(-10000,-10000);
51812         }
51813         this.activePanel = panel;
51814         panel.setActiveState(true);
51815         if(this.box){
51816             panel.setSize(this.box.width, this.box.height);
51817         }
51818         this.fireEvent("panelactivated", this, panel);
51819         this.fireEvent("invalidated");
51820     },
51821     
51822     /**
51823      * Show the specified panel.
51824      * @param {Number/String/ContentPanel} panelId The panels index, id or the panel itself
51825      * @return {Roo.ContentPanel} The shown panel or null
51826      */
51827     showPanel : function(panel){
51828         if(panel = this.getPanel(panel)){
51829             this.setActivePanel(panel);
51830         }
51831         return panel;
51832     },
51833     
51834     /**
51835      * Get the active panel for this region.
51836      * @return {Roo.ContentPanel} The active panel or null
51837      */
51838     getActivePanel : function(){
51839         return this.activePanel;
51840     },
51841     
51842     /**
51843      * Add the passed ContentPanel(s)
51844      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
51845      * @return {Roo.ContentPanel} The panel added (if only one was added)
51846      */
51847     add : function(panel){
51848         if(arguments.length > 1){
51849             for(var i = 0, len = arguments.length; i < len; i++) {
51850                 this.add(arguments[i]);
51851             }
51852             return null;
51853         }
51854         if(this.hasPanel(panel)){
51855             this.showPanel(panel);
51856             return panel;
51857         }
51858         var el = panel.getEl();
51859         if(el.dom.parentNode != this.mgr.el.dom){
51860             this.mgr.el.dom.appendChild(el.dom);
51861         }
51862         if(panel.setRegion){
51863             panel.setRegion(this);
51864         }
51865         this.panels.add(panel);
51866         el.setStyle("position", "absolute");
51867         if(!panel.background){
51868             this.setActivePanel(panel);
51869             if(this.config.initialSize && this.panels.getCount()==1){
51870                 this.resizeTo(this.config.initialSize);
51871             }
51872         }
51873         this.fireEvent("paneladded", this, panel);
51874         return panel;
51875     },
51876     
51877     /**
51878      * Returns true if the panel is in this region.
51879      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
51880      * @return {Boolean}
51881      */
51882     hasPanel : function(panel){
51883         if(typeof panel == "object"){ // must be panel obj
51884             panel = panel.getId();
51885         }
51886         return this.getPanel(panel) ? true : false;
51887     },
51888     
51889     /**
51890      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
51891      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
51892      * @param {Boolean} preservePanel Overrides the config preservePanel option
51893      * @return {Roo.ContentPanel} The panel that was removed
51894      */
51895     remove : function(panel, preservePanel){
51896         panel = this.getPanel(panel);
51897         if(!panel){
51898             return null;
51899         }
51900         var e = {};
51901         this.fireEvent("beforeremove", this, panel, e);
51902         if(e.cancel === true){
51903             return null;
51904         }
51905         var panelId = panel.getId();
51906         this.panels.removeKey(panelId);
51907         return panel;
51908     },
51909     
51910     /**
51911      * Returns the panel specified or null if it's not in this region.
51912      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
51913      * @return {Roo.ContentPanel}
51914      */
51915     getPanel : function(id){
51916         if(typeof id == "object"){ // must be panel obj
51917             return id;
51918         }
51919         return this.panels.get(id);
51920     },
51921     
51922     /**
51923      * Returns this regions position (north/south/east/west/center).
51924      * @return {String} 
51925      */
51926     getPosition: function(){
51927         return this.position;    
51928     }
51929 });/*
51930  * Based on:
51931  * Ext JS Library 1.1.1
51932  * Copyright(c) 2006-2007, Ext JS, LLC.
51933  *
51934  * Originally Released Under LGPL - original licence link has changed is not relivant.
51935  *
51936  * Fork - LGPL
51937  * <script type="text/javascript">
51938  */
51939  
51940 /**
51941  * @class Roo.LayoutRegion
51942  * @extends Roo.BasicLayoutRegion
51943  * This class represents a region in a layout manager.
51944  * @cfg {Boolean}   collapsible     False to disable collapsing (defaults to true)
51945  * @cfg {Boolean}   collapsed       True to set the initial display to collapsed (defaults to false)
51946  * @cfg {Boolean}   floatable       False to disable floating (defaults to true)
51947  * @cfg {Object}    margins         Margins for the element (defaults to {top: 0, left: 0, right:0, bottom: 0})
51948  * @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})
51949  * @cfg {String}    tabPosition     (top|bottom) "top" or "bottom" (defaults to "bottom")
51950  * @cfg {String}    collapsedTitle  Optional string message to display in the collapsed block of a north or south region
51951  * @cfg {Boolean}   alwaysShowTabs  True to always display tabs even when there is only 1 panel (defaults to false)
51952  * @cfg {Boolean}   autoScroll      True to enable overflow scrolling (defaults to false)
51953  * @cfg {Boolean}   titlebar        True to display a title bar (defaults to true)
51954  * @cfg {String}    title           The title for the region (overrides panel titles)
51955  * @cfg {Boolean}   animate         True to animate expand/collapse (defaults to false)
51956  * @cfg {Boolean}   autoHide        False to disable auto hiding when the mouse leaves the "floated" region (defaults to true)
51957  * @cfg {Boolean}   preservePanels  True to preserve removed panels so they can be readded later (defaults to false)
51958  * @cfg {Boolean}   closeOnTab      True to place the close icon on the tabs instead of the region titlebar (defaults to false)
51959  * @cfg {Boolean}   hideTabs        True to hide the tab strip (defaults to false)
51960  * @cfg {Boolean}   resizeTabs      True to enable automatic tab resizing. This will resize the tabs so they are all the same size and fit within
51961  *                      the space available, similar to FireFox 1.5 tabs (defaults to false)
51962  * @cfg {Number}    minTabWidth     The minimum tab width (defaults to 40)
51963  * @cfg {Number}    preferredTabWidth The preferred tab width (defaults to 150)
51964  * @cfg {Boolean}   showPin         True to show a pin button
51965  * @cfg {Boolean}   hidden          True to start the region hidden (defaults to false)
51966  * @cfg {Boolean}   hideWhenEmpty   True to hide the region when it has no panels
51967  * @cfg {Boolean}   disableTabTips  True to disable tab tooltips
51968  * @cfg {Number}    width           For East/West panels
51969  * @cfg {Number}    height          For North/South panels
51970  * @cfg {Boolean}   split           To show the splitter
51971  * @cfg {Boolean}   toolbar         xtype configuration for a toolbar - shows on right of tabbar
51972  */
51973 Roo.LayoutRegion = function(mgr, config, pos){
51974     Roo.LayoutRegion.superclass.constructor.call(this, mgr, config, pos, true);
51975     var dh = Roo.DomHelper;
51976     /** This region's container element 
51977     * @type Roo.Element */
51978     this.el = dh.append(mgr.el.dom, {tag: "div", cls: "x-layout-panel x-layout-panel-" + this.position}, true);
51979     /** This region's title element 
51980     * @type Roo.Element */
51981
51982     this.titleEl = dh.append(this.el.dom, {tag: "div", unselectable: "on", cls: "x-unselectable x-layout-panel-hd x-layout-title-"+this.position, children:[
51983         {tag: "span", cls: "x-unselectable x-layout-panel-hd-text", unselectable: "on", html: "&#160;"},
51984         {tag: "div", cls: "x-unselectable x-layout-panel-hd-tools", unselectable: "on"}
51985     ]}, true);
51986     this.titleEl.enableDisplayMode();
51987     /** This region's title text element 
51988     * @type HTMLElement */
51989     this.titleTextEl = this.titleEl.dom.firstChild;
51990     this.tools = Roo.get(this.titleEl.dom.childNodes[1], true);
51991     this.closeBtn = this.createTool(this.tools.dom, "x-layout-close");
51992     this.closeBtn.enableDisplayMode();
51993     this.closeBtn.on("click", this.closeClicked, this);
51994     this.closeBtn.hide();
51995
51996     this.createBody(config);
51997     this.visible = true;
51998     this.collapsed = false;
51999
52000     if(config.hideWhenEmpty){
52001         this.hide();
52002         this.on("paneladded", this.validateVisibility, this);
52003         this.on("panelremoved", this.validateVisibility, this);
52004     }
52005     this.applyConfig(config);
52006 };
52007
52008 Roo.extend(Roo.LayoutRegion, Roo.BasicLayoutRegion, {
52009
52010     createBody : function(){
52011         /** This region's body element 
52012         * @type Roo.Element */
52013         this.bodyEl = this.el.createChild({tag: "div", cls: "x-layout-panel-body"});
52014     },
52015
52016     applyConfig : function(c){
52017         if(c.collapsible && this.position != "center" && !this.collapsedEl){
52018             var dh = Roo.DomHelper;
52019             if(c.titlebar !== false){
52020                 this.collapseBtn = this.createTool(this.tools.dom, "x-layout-collapse-"+this.position);
52021                 this.collapseBtn.on("click", this.collapse, this);
52022                 this.collapseBtn.enableDisplayMode();
52023
52024                 if(c.showPin === true || this.showPin){
52025                     this.stickBtn = this.createTool(this.tools.dom, "x-layout-stick");
52026                     this.stickBtn.enableDisplayMode();
52027                     this.stickBtn.on("click", this.expand, this);
52028                     this.stickBtn.hide();
52029                 }
52030             }
52031             /** This region's collapsed element
52032             * @type Roo.Element */
52033             this.collapsedEl = dh.append(this.mgr.el.dom, {cls: "x-layout-collapsed x-layout-collapsed-"+this.position, children:[
52034                 {cls: "x-layout-collapsed-tools", children:[{cls: "x-layout-ctools-inner"}]}
52035             ]}, true);
52036             if(c.floatable !== false){
52037                this.collapsedEl.addClassOnOver("x-layout-collapsed-over");
52038                this.collapsedEl.on("click", this.collapseClick, this);
52039             }
52040
52041             if(c.collapsedTitle && (this.position == "north" || this.position== "south")) {
52042                 this.collapsedTitleTextEl = dh.append(this.collapsedEl.dom, {tag: "div", cls: "x-unselectable x-layout-panel-hd-text",
52043                    id: "message", unselectable: "on", style:{"float":"left"}});
52044                this.collapsedTitleTextEl.innerHTML = c.collapsedTitle;
52045              }
52046             this.expandBtn = this.createTool(this.collapsedEl.dom.firstChild.firstChild, "x-layout-expand-"+this.position);
52047             this.expandBtn.on("click", this.expand, this);
52048         }
52049         if(this.collapseBtn){
52050             this.collapseBtn.setVisible(c.collapsible == true);
52051         }
52052         this.cmargins = c.cmargins || this.cmargins ||
52053                          (this.position == "west" || this.position == "east" ?
52054                              {top: 0, left: 2, right:2, bottom: 0} :
52055                              {top: 2, left: 0, right:0, bottom: 2});
52056         this.margins = c.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
52057         this.bottomTabs = c.tabPosition != "top";
52058         this.autoScroll = c.autoScroll || false;
52059         if(this.autoScroll){
52060             this.bodyEl.setStyle("overflow", "auto");
52061         }else{
52062             this.bodyEl.setStyle("overflow", "hidden");
52063         }
52064         //if(c.titlebar !== false){
52065             if((!c.titlebar && !c.title) || c.titlebar === false){
52066                 this.titleEl.hide();
52067             }else{
52068                 this.titleEl.show();
52069                 if(c.title){
52070                     this.titleTextEl.innerHTML = c.title;
52071                 }
52072             }
52073         //}
52074         this.duration = c.duration || .30;
52075         this.slideDuration = c.slideDuration || .45;
52076         this.config = c;
52077         if(c.collapsed){
52078             this.collapse(true);
52079         }
52080         if(c.hidden){
52081             this.hide();
52082         }
52083     },
52084     /**
52085      * Returns true if this region is currently visible.
52086      * @return {Boolean}
52087      */
52088     isVisible : function(){
52089         return this.visible;
52090     },
52091
52092     /**
52093      * Updates the title for collapsed north/south regions (used with {@link #collapsedTitle} config option)
52094      * @param {String} title (optional) The title text (accepts HTML markup, defaults to the numeric character reference for a non-breaking space, "&amp;#160;")
52095      */
52096     setCollapsedTitle : function(title){
52097         title = title || "&#160;";
52098         if(this.collapsedTitleTextEl){
52099             this.collapsedTitleTextEl.innerHTML = title;
52100         }
52101     },
52102
52103     getBox : function(){
52104         var b;
52105         if(!this.collapsed){
52106             b = this.el.getBox(false, true);
52107         }else{
52108             b = this.collapsedEl.getBox(false, true);
52109         }
52110         return b;
52111     },
52112
52113     getMargins : function(){
52114         return this.collapsed ? this.cmargins : this.margins;
52115     },
52116
52117     highlight : function(){
52118         this.el.addClass("x-layout-panel-dragover");
52119     },
52120
52121     unhighlight : function(){
52122         this.el.removeClass("x-layout-panel-dragover");
52123     },
52124
52125     updateBox : function(box){
52126         this.box = box;
52127         if(!this.collapsed){
52128             this.el.dom.style.left = box.x + "px";
52129             this.el.dom.style.top = box.y + "px";
52130             this.updateBody(box.width, box.height);
52131         }else{
52132             this.collapsedEl.dom.style.left = box.x + "px";
52133             this.collapsedEl.dom.style.top = box.y + "px";
52134             this.collapsedEl.setSize(box.width, box.height);
52135         }
52136         if(this.tabs){
52137             this.tabs.autoSizeTabs();
52138         }
52139     },
52140
52141     updateBody : function(w, h){
52142         if(w !== null){
52143             this.el.setWidth(w);
52144             w -= this.el.getBorderWidth("rl");
52145             if(this.config.adjustments){
52146                 w += this.config.adjustments[0];
52147             }
52148         }
52149         if(h !== null){
52150             this.el.setHeight(h);
52151             h = this.titleEl && this.titleEl.isDisplayed() ? h - (this.titleEl.getHeight()||0) : h;
52152             h -= this.el.getBorderWidth("tb");
52153             if(this.config.adjustments){
52154                 h += this.config.adjustments[1];
52155             }
52156             this.bodyEl.setHeight(h);
52157             if(this.tabs){
52158                 h = this.tabs.syncHeight(h);
52159             }
52160         }
52161         if(this.panelSize){
52162             w = w !== null ? w : this.panelSize.width;
52163             h = h !== null ? h : this.panelSize.height;
52164         }
52165         if(this.activePanel){
52166             var el = this.activePanel.getEl();
52167             w = w !== null ? w : el.getWidth();
52168             h = h !== null ? h : el.getHeight();
52169             this.panelSize = {width: w, height: h};
52170             this.activePanel.setSize(w, h);
52171         }
52172         if(Roo.isIE && this.tabs){
52173             this.tabs.el.repaint();
52174         }
52175     },
52176
52177     /**
52178      * Returns the container element for this region.
52179      * @return {Roo.Element}
52180      */
52181     getEl : function(){
52182         return this.el;
52183     },
52184
52185     /**
52186      * Hides this region.
52187      */
52188     hide : function(){
52189         if(!this.collapsed){
52190             this.el.dom.style.left = "-2000px";
52191             this.el.hide();
52192         }else{
52193             this.collapsedEl.dom.style.left = "-2000px";
52194             this.collapsedEl.hide();
52195         }
52196         this.visible = false;
52197         this.fireEvent("visibilitychange", this, false);
52198     },
52199
52200     /**
52201      * Shows this region if it was previously hidden.
52202      */
52203     show : function(){
52204         if(!this.collapsed){
52205             this.el.show();
52206         }else{
52207             this.collapsedEl.show();
52208         }
52209         this.visible = true;
52210         this.fireEvent("visibilitychange", this, true);
52211     },
52212
52213     closeClicked : function(){
52214         if(this.activePanel){
52215             this.remove(this.activePanel);
52216         }
52217     },
52218
52219     collapseClick : function(e){
52220         if(this.isSlid){
52221            e.stopPropagation();
52222            this.slideIn();
52223         }else{
52224            e.stopPropagation();
52225            this.slideOut();
52226         }
52227     },
52228
52229     /**
52230      * Collapses this region.
52231      * @param {Boolean} skipAnim (optional) true to collapse the element without animation (if animate is true)
52232      */
52233     collapse : function(skipAnim, skipCheck = false){
52234         if(this.collapsed) {
52235             return;
52236         }
52237         
52238         if(skipCheck || this.fireEvent("beforecollapse", this) != false){
52239             
52240             this.collapsed = true;
52241             if(this.split){
52242                 this.split.el.hide();
52243             }
52244             if(this.config.animate && skipAnim !== true){
52245                 this.fireEvent("invalidated", this);
52246                 this.animateCollapse();
52247             }else{
52248                 this.el.setLocation(-20000,-20000);
52249                 this.el.hide();
52250                 this.collapsedEl.show();
52251                 this.fireEvent("collapsed", this);
52252                 this.fireEvent("invalidated", this);
52253             }
52254         }
52255         
52256     },
52257
52258     animateCollapse : function(){
52259         // overridden
52260     },
52261
52262     /**
52263      * Expands this region if it was previously collapsed.
52264      * @param {Roo.EventObject} e The event that triggered the expand (or null if calling manually)
52265      * @param {Boolean} skipAnim (optional) true to expand the element without animation (if animate is true)
52266      */
52267     expand : function(e, skipAnim){
52268         if(e) {
52269             e.stopPropagation();
52270         }
52271         if(!this.collapsed || this.el.hasActiveFx()) {
52272             return;
52273         }
52274         if(this.isSlid){
52275             this.afterSlideIn();
52276             skipAnim = true;
52277         }
52278         this.collapsed = false;
52279         if(this.config.animate && skipAnim !== true){
52280             this.animateExpand();
52281         }else{
52282             this.el.show();
52283             if(this.split){
52284                 this.split.el.show();
52285             }
52286             this.collapsedEl.setLocation(-2000,-2000);
52287             this.collapsedEl.hide();
52288             this.fireEvent("invalidated", this);
52289             this.fireEvent("expanded", this);
52290         }
52291     },
52292
52293     animateExpand : function(){
52294         // overridden
52295     },
52296
52297     initTabs : function()
52298     {
52299         this.bodyEl.setStyle("overflow", "hidden");
52300         var ts = new Roo.TabPanel(
52301                 this.bodyEl.dom,
52302                 {
52303                     tabPosition: this.bottomTabs ? 'bottom' : 'top',
52304                     disableTooltips: this.config.disableTabTips,
52305                     toolbar : this.config.toolbar
52306                 }
52307         );
52308         if(this.config.hideTabs){
52309             ts.stripWrap.setDisplayed(false);
52310         }
52311         this.tabs = ts;
52312         ts.resizeTabs = this.config.resizeTabs === true;
52313         ts.minTabWidth = this.config.minTabWidth || 40;
52314         ts.maxTabWidth = this.config.maxTabWidth || 250;
52315         ts.preferredTabWidth = this.config.preferredTabWidth || 150;
52316         ts.monitorResize = false;
52317         ts.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
52318         ts.bodyEl.addClass('x-layout-tabs-body');
52319         this.panels.each(this.initPanelAsTab, this);
52320     },
52321
52322     initPanelAsTab : function(panel){
52323         var ti = this.tabs.addTab(panel.getEl().id, panel.getTitle(), null,
52324                     this.config.closeOnTab && panel.isClosable());
52325         if(panel.tabTip !== undefined){
52326             ti.setTooltip(panel.tabTip);
52327         }
52328         ti.on("activate", function(){
52329               this.setActivePanel(panel);
52330         }, this);
52331         if(this.config.closeOnTab){
52332             ti.on("beforeclose", function(t, e){
52333                 e.cancel = true;
52334                 this.remove(panel);
52335             }, this);
52336         }
52337         return ti;
52338     },
52339
52340     updatePanelTitle : function(panel, title){
52341         if(this.activePanel == panel){
52342             this.updateTitle(title);
52343         }
52344         if(this.tabs){
52345             var ti = this.tabs.getTab(panel.getEl().id);
52346             ti.setText(title);
52347             if(panel.tabTip !== undefined){
52348                 ti.setTooltip(panel.tabTip);
52349             }
52350         }
52351     },
52352
52353     updateTitle : function(title){
52354         if(this.titleTextEl && !this.config.title){
52355             this.titleTextEl.innerHTML = (typeof title != "undefined" && title.length > 0 ? title : "&#160;");
52356         }
52357     },
52358
52359     setActivePanel : function(panel){
52360         panel = this.getPanel(panel);
52361         if(this.activePanel && this.activePanel != panel){
52362             this.activePanel.setActiveState(false);
52363         }
52364         this.activePanel = panel;
52365         panel.setActiveState(true);
52366         if(this.panelSize){
52367             panel.setSize(this.panelSize.width, this.panelSize.height);
52368         }
52369         if(this.closeBtn){
52370             this.closeBtn.setVisible(!this.config.closeOnTab && !this.isSlid && panel.isClosable());
52371         }
52372         this.updateTitle(panel.getTitle());
52373         if(this.tabs){
52374             this.fireEvent("invalidated", this);
52375         }
52376         this.fireEvent("panelactivated", this, panel);
52377     },
52378
52379     /**
52380      * Shows the specified panel.
52381      * @param {Number/String/ContentPanel} panelId The panel's index, id or the panel itself
52382      * @return {Roo.ContentPanel} The shown panel, or null if a panel could not be found from panelId
52383      */
52384     showPanel : function(panel)
52385     {
52386         panel = this.getPanel(panel);
52387         if(panel){
52388             if(this.tabs){
52389                 var tab = this.tabs.getTab(panel.getEl().id);
52390                 if(tab.isHidden()){
52391                     this.tabs.unhideTab(tab.id);
52392                 }
52393                 tab.activate();
52394             }else{
52395                 this.setActivePanel(panel);
52396             }
52397         }
52398         return panel;
52399     },
52400
52401     /**
52402      * Get the active panel for this region.
52403      * @return {Roo.ContentPanel} The active panel or null
52404      */
52405     getActivePanel : function(){
52406         return this.activePanel;
52407     },
52408
52409     validateVisibility : function(){
52410         if(this.panels.getCount() < 1){
52411             this.updateTitle("&#160;");
52412             this.closeBtn.hide();
52413             this.hide();
52414         }else{
52415             if(!this.isVisible()){
52416                 this.show();
52417             }
52418         }
52419     },
52420
52421     /**
52422      * Adds the passed ContentPanel(s) to this region.
52423      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
52424      * @return {Roo.ContentPanel} The panel added (if only one was added; null otherwise)
52425      */
52426     add : function(panel){
52427         if(arguments.length > 1){
52428             for(var i = 0, len = arguments.length; i < len; i++) {
52429                 this.add(arguments[i]);
52430             }
52431             return null;
52432         }
52433         if(this.hasPanel(panel)){
52434             this.showPanel(panel);
52435             return panel;
52436         }
52437         panel.setRegion(this);
52438         this.panels.add(panel);
52439         if(this.panels.getCount() == 1 && !this.config.alwaysShowTabs){
52440             this.bodyEl.dom.appendChild(panel.getEl().dom);
52441             if(panel.background !== true){
52442                 this.setActivePanel(panel);
52443             }
52444             this.fireEvent("paneladded", this, panel);
52445             return panel;
52446         }
52447         if(!this.tabs){
52448             this.initTabs();
52449         }else{
52450             this.initPanelAsTab(panel);
52451         }
52452         if(panel.background !== true){
52453             this.tabs.activate(panel.getEl().id);
52454         }
52455         this.fireEvent("paneladded", this, panel);
52456         return panel;
52457     },
52458
52459     /**
52460      * Hides the tab for the specified panel.
52461      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
52462      */
52463     hidePanel : function(panel){
52464         if(this.tabs && (panel = this.getPanel(panel))){
52465             this.tabs.hideTab(panel.getEl().id);
52466         }
52467     },
52468
52469     /**
52470      * Unhides the tab for a previously hidden panel.
52471      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
52472      */
52473     unhidePanel : function(panel){
52474         if(this.tabs && (panel = this.getPanel(panel))){
52475             this.tabs.unhideTab(panel.getEl().id);
52476         }
52477     },
52478
52479     clearPanels : function(){
52480         while(this.panels.getCount() > 0){
52481              this.remove(this.panels.first());
52482         }
52483     },
52484
52485     /**
52486      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
52487      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
52488      * @param {Boolean} preservePanel Overrides the config preservePanel option
52489      * @return {Roo.ContentPanel} The panel that was removed
52490      */
52491     remove : function(panel, preservePanel){
52492         panel = this.getPanel(panel);
52493         if(!panel){
52494             return null;
52495         }
52496         var e = {};
52497         this.fireEvent("beforeremove", this, panel, e);
52498         if(e.cancel === true){
52499             return null;
52500         }
52501         preservePanel = (typeof preservePanel != "undefined" ? preservePanel : (this.config.preservePanels === true || panel.preserve === true));
52502         var panelId = panel.getId();
52503         this.panels.removeKey(panelId);
52504         if(preservePanel){
52505             document.body.appendChild(panel.getEl().dom);
52506         }
52507         if(this.tabs){
52508             this.tabs.removeTab(panel.getEl().id);
52509         }else if (!preservePanel){
52510             this.bodyEl.dom.removeChild(panel.getEl().dom);
52511         }
52512         if(this.panels.getCount() == 1 && this.tabs && !this.config.alwaysShowTabs){
52513             var p = this.panels.first();
52514             var tempEl = document.createElement("div"); // temp holder to keep IE from deleting the node
52515             tempEl.appendChild(p.getEl().dom);
52516             this.bodyEl.update("");
52517             this.bodyEl.dom.appendChild(p.getEl().dom);
52518             tempEl = null;
52519             this.updateTitle(p.getTitle());
52520             this.tabs = null;
52521             this.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
52522             this.setActivePanel(p);
52523         }
52524         panel.setRegion(null);
52525         if(this.activePanel == panel){
52526             this.activePanel = null;
52527         }
52528         if(this.config.autoDestroy !== false && preservePanel !== true){
52529             try{panel.destroy();}catch(e){}
52530         }
52531         this.fireEvent("panelremoved", this, panel);
52532         return panel;
52533     },
52534
52535     /**
52536      * Returns the TabPanel component used by this region
52537      * @return {Roo.TabPanel}
52538      */
52539     getTabs : function(){
52540         return this.tabs;
52541     },
52542
52543     createTool : function(parentEl, className){
52544         var btn = Roo.DomHelper.append(parentEl, {tag: "div", cls: "x-layout-tools-button",
52545             children: [{tag: "div", cls: "x-layout-tools-button-inner " + className, html: "&#160;"}]}, true);
52546         btn.addClassOnOver("x-layout-tools-button-over");
52547         return btn;
52548     }
52549 });/*
52550  * Based on:
52551  * Ext JS Library 1.1.1
52552  * Copyright(c) 2006-2007, Ext JS, LLC.
52553  *
52554  * Originally Released Under LGPL - original licence link has changed is not relivant.
52555  *
52556  * Fork - LGPL
52557  * <script type="text/javascript">
52558  */
52559  
52560
52561
52562 /**
52563  * @class Roo.SplitLayoutRegion
52564  * @extends Roo.LayoutRegion
52565  * Adds a splitbar and other (private) useful functionality to a {@link Roo.LayoutRegion}.
52566  */
52567 Roo.SplitLayoutRegion = function(mgr, config, pos, cursor){
52568     this.cursor = cursor;
52569     Roo.SplitLayoutRegion.superclass.constructor.call(this, mgr, config, pos);
52570 };
52571
52572 Roo.extend(Roo.SplitLayoutRegion, Roo.LayoutRegion, {
52573     splitTip : "Drag to resize.",
52574     collapsibleSplitTip : "Drag to resize. Double click to hide.",
52575     useSplitTips : false,
52576
52577     applyConfig : function(config){
52578         Roo.SplitLayoutRegion.superclass.applyConfig.call(this, config);
52579         if(config.split){
52580             if(!this.split){
52581                 var splitEl = Roo.DomHelper.append(this.mgr.el.dom, 
52582                         {tag: "div", id: this.el.id + "-split", cls: "x-layout-split x-layout-split-"+this.position, html: "&#160;"});
52583                 /** The SplitBar for this region 
52584                 * @type Roo.SplitBar */
52585                 this.split = new Roo.SplitBar(splitEl, this.el, this.orientation);
52586                 this.split.on("moved", this.onSplitMove, this);
52587                 this.split.useShim = config.useShim === true;
52588                 this.split.getMaximumSize = this[this.position == 'north' || this.position == 'south' ? 'getVMaxSize' : 'getHMaxSize'].createDelegate(this);
52589                 if(this.useSplitTips){
52590                     this.split.el.dom.title = config.collapsible ? this.collapsibleSplitTip : this.splitTip;
52591                 }
52592                 if(config.collapsible){
52593                     this.split.el.on("dblclick", this.collapse,  this);
52594                 }
52595             }
52596             if(typeof config.minSize != "undefined"){
52597                 this.split.minSize = config.minSize;
52598             }
52599             if(typeof config.maxSize != "undefined"){
52600                 this.split.maxSize = config.maxSize;
52601             }
52602             if(config.hideWhenEmpty || config.hidden || config.collapsed){
52603                 this.hideSplitter();
52604             }
52605         }
52606     },
52607
52608     getHMaxSize : function(){
52609          var cmax = this.config.maxSize || 10000;
52610          var center = this.mgr.getRegion("center");
52611          return Math.min(cmax, (this.el.getWidth()+center.getEl().getWidth())-center.getMinWidth());
52612     },
52613
52614     getVMaxSize : function(){
52615          var cmax = this.config.maxSize || 10000;
52616          var center = this.mgr.getRegion("center");
52617          return Math.min(cmax, (this.el.getHeight()+center.getEl().getHeight())-center.getMinHeight());
52618     },
52619
52620     onSplitMove : function(split, newSize){
52621         this.fireEvent("resized", this, newSize);
52622     },
52623     
52624     /** 
52625      * Returns the {@link Roo.SplitBar} for this region.
52626      * @return {Roo.SplitBar}
52627      */
52628     getSplitBar : function(){
52629         return this.split;
52630     },
52631     
52632     hide : function(){
52633         this.hideSplitter();
52634         Roo.SplitLayoutRegion.superclass.hide.call(this);
52635     },
52636
52637     hideSplitter : function(){
52638         if(this.split){
52639             this.split.el.setLocation(-2000,-2000);
52640             this.split.el.hide();
52641         }
52642     },
52643
52644     show : function(){
52645         if(this.split){
52646             this.split.el.show();
52647         }
52648         Roo.SplitLayoutRegion.superclass.show.call(this);
52649     },
52650     
52651     beforeSlide: function(){
52652         if(Roo.isGecko){// firefox overflow auto bug workaround
52653             this.bodyEl.clip();
52654             if(this.tabs) {
52655                 this.tabs.bodyEl.clip();
52656             }
52657             if(this.activePanel){
52658                 this.activePanel.getEl().clip();
52659                 
52660                 if(this.activePanel.beforeSlide){
52661                     this.activePanel.beforeSlide();
52662                 }
52663             }
52664         }
52665     },
52666     
52667     afterSlide : function(){
52668         if(Roo.isGecko){// firefox overflow auto bug workaround
52669             this.bodyEl.unclip();
52670             if(this.tabs) {
52671                 this.tabs.bodyEl.unclip();
52672             }
52673             if(this.activePanel){
52674                 this.activePanel.getEl().unclip();
52675                 if(this.activePanel.afterSlide){
52676                     this.activePanel.afterSlide();
52677                 }
52678             }
52679         }
52680     },
52681
52682     initAutoHide : function(){
52683         if(this.autoHide !== false){
52684             if(!this.autoHideHd){
52685                 var st = new Roo.util.DelayedTask(this.slideIn, this);
52686                 this.autoHideHd = {
52687                     "mouseout": function(e){
52688                         if(!e.within(this.el, true)){
52689                             st.delay(500);
52690                         }
52691                     },
52692                     "mouseover" : function(e){
52693                         st.cancel();
52694                     },
52695                     scope : this
52696                 };
52697             }
52698             this.el.on(this.autoHideHd);
52699         }
52700     },
52701
52702     clearAutoHide : function(){
52703         if(this.autoHide !== false){
52704             this.el.un("mouseout", this.autoHideHd.mouseout);
52705             this.el.un("mouseover", this.autoHideHd.mouseover);
52706         }
52707     },
52708
52709     clearMonitor : function(){
52710         Roo.get(document).un("click", this.slideInIf, this);
52711     },
52712
52713     // these names are backwards but not changed for compat
52714     slideOut : function(){
52715         if(this.isSlid || this.el.hasActiveFx()){
52716             return;
52717         }
52718         this.isSlid = true;
52719         if(this.collapseBtn){
52720             this.collapseBtn.hide();
52721         }
52722         this.closeBtnState = this.closeBtn.getStyle('display');
52723         this.closeBtn.hide();
52724         if(this.stickBtn){
52725             this.stickBtn.show();
52726         }
52727         this.el.show();
52728         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor());
52729         this.beforeSlide();
52730         this.el.setStyle("z-index", 10001);
52731         this.el.slideIn(this.getSlideAnchor(), {
52732             callback: function(){
52733                 this.afterSlide();
52734                 this.initAutoHide();
52735                 Roo.get(document).on("click", this.slideInIf, this);
52736                 this.fireEvent("slideshow", this);
52737             },
52738             scope: this,
52739             block: true
52740         });
52741     },
52742
52743     afterSlideIn : function(){
52744         this.clearAutoHide();
52745         this.isSlid = false;
52746         this.clearMonitor();
52747         this.el.setStyle("z-index", "");
52748         if(this.collapseBtn){
52749             this.collapseBtn.show();
52750         }
52751         this.closeBtn.setStyle('display', this.closeBtnState);
52752         if(this.stickBtn){
52753             this.stickBtn.hide();
52754         }
52755         this.fireEvent("slidehide", this);
52756     },
52757
52758     slideIn : function(cb){
52759         if(!this.isSlid || this.el.hasActiveFx()){
52760             Roo.callback(cb);
52761             return;
52762         }
52763         this.isSlid = false;
52764         this.beforeSlide();
52765         this.el.slideOut(this.getSlideAnchor(), {
52766             callback: function(){
52767                 this.el.setLeftTop(-10000, -10000);
52768                 this.afterSlide();
52769                 this.afterSlideIn();
52770                 Roo.callback(cb);
52771             },
52772             scope: this,
52773             block: true
52774         });
52775     },
52776     
52777     slideInIf : function(e){
52778         if(!e.within(this.el)){
52779             this.slideIn();
52780         }
52781     },
52782
52783     animateCollapse : function(){
52784         this.beforeSlide();
52785         this.el.setStyle("z-index", 20000);
52786         var anchor = this.getSlideAnchor();
52787         this.el.slideOut(anchor, {
52788             callback : function(){
52789                 this.el.setStyle("z-index", "");
52790                 this.collapsedEl.slideIn(anchor, {duration:.3});
52791                 this.afterSlide();
52792                 this.el.setLocation(-10000,-10000);
52793                 this.el.hide();
52794                 this.fireEvent("collapsed", this);
52795             },
52796             scope: this,
52797             block: true
52798         });
52799     },
52800
52801     animateExpand : function(){
52802         this.beforeSlide();
52803         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor(), this.getExpandAdj());
52804         this.el.setStyle("z-index", 20000);
52805         this.collapsedEl.hide({
52806             duration:.1
52807         });
52808         this.el.slideIn(this.getSlideAnchor(), {
52809             callback : function(){
52810                 this.el.setStyle("z-index", "");
52811                 this.afterSlide();
52812                 if(this.split){
52813                     this.split.el.show();
52814                 }
52815                 this.fireEvent("invalidated", this);
52816                 this.fireEvent("expanded", this);
52817             },
52818             scope: this,
52819             block: true
52820         });
52821     },
52822
52823     anchors : {
52824         "west" : "left",
52825         "east" : "right",
52826         "north" : "top",
52827         "south" : "bottom"
52828     },
52829
52830     sanchors : {
52831         "west" : "l",
52832         "east" : "r",
52833         "north" : "t",
52834         "south" : "b"
52835     },
52836
52837     canchors : {
52838         "west" : "tl-tr",
52839         "east" : "tr-tl",
52840         "north" : "tl-bl",
52841         "south" : "bl-tl"
52842     },
52843
52844     getAnchor : function(){
52845         return this.anchors[this.position];
52846     },
52847
52848     getCollapseAnchor : function(){
52849         return this.canchors[this.position];
52850     },
52851
52852     getSlideAnchor : function(){
52853         return this.sanchors[this.position];
52854     },
52855
52856     getAlignAdj : function(){
52857         var cm = this.cmargins;
52858         switch(this.position){
52859             case "west":
52860                 return [0, 0];
52861             break;
52862             case "east":
52863                 return [0, 0];
52864             break;
52865             case "north":
52866                 return [0, 0];
52867             break;
52868             case "south":
52869                 return [0, 0];
52870             break;
52871         }
52872     },
52873
52874     getExpandAdj : function(){
52875         var c = this.collapsedEl, cm = this.cmargins;
52876         switch(this.position){
52877             case "west":
52878                 return [-(cm.right+c.getWidth()+cm.left), 0];
52879             break;
52880             case "east":
52881                 return [cm.right+c.getWidth()+cm.left, 0];
52882             break;
52883             case "north":
52884                 return [0, -(cm.top+cm.bottom+c.getHeight())];
52885             break;
52886             case "south":
52887                 return [0, cm.top+cm.bottom+c.getHeight()];
52888             break;
52889         }
52890     }
52891 });/*
52892  * Based on:
52893  * Ext JS Library 1.1.1
52894  * Copyright(c) 2006-2007, Ext JS, LLC.
52895  *
52896  * Originally Released Under LGPL - original licence link has changed is not relivant.
52897  *
52898  * Fork - LGPL
52899  * <script type="text/javascript">
52900  */
52901 /*
52902  * These classes are private internal classes
52903  */
52904 Roo.CenterLayoutRegion = function(mgr, config){
52905     Roo.LayoutRegion.call(this, mgr, config, "center");
52906     this.visible = true;
52907     this.minWidth = config.minWidth || 20;
52908     this.minHeight = config.minHeight || 20;
52909 };
52910
52911 Roo.extend(Roo.CenterLayoutRegion, Roo.LayoutRegion, {
52912     hide : function(){
52913         // center panel can't be hidden
52914     },
52915     
52916     show : function(){
52917         // center panel can't be hidden
52918     },
52919     
52920     getMinWidth: function(){
52921         return this.minWidth;
52922     },
52923     
52924     getMinHeight: function(){
52925         return this.minHeight;
52926     }
52927 });
52928
52929
52930 Roo.NorthLayoutRegion = function(mgr, config){
52931     Roo.LayoutRegion.call(this, mgr, config, "north", "n-resize");
52932     if(this.split){
52933         this.split.placement = Roo.SplitBar.TOP;
52934         this.split.orientation = Roo.SplitBar.VERTICAL;
52935         this.split.el.addClass("x-layout-split-v");
52936     }
52937     var size = config.initialSize || config.height;
52938     if(typeof size != "undefined"){
52939         this.el.setHeight(size);
52940     }
52941 };
52942 Roo.extend(Roo.NorthLayoutRegion, Roo.SplitLayoutRegion, {
52943     orientation: Roo.SplitBar.VERTICAL,
52944     getBox : function(){
52945         if(this.collapsed){
52946             return this.collapsedEl.getBox();
52947         }
52948         var box = this.el.getBox();
52949         if(this.split){
52950             box.height += this.split.el.getHeight();
52951         }
52952         return box;
52953     },
52954     
52955     updateBox : function(box){
52956         if(this.split && !this.collapsed){
52957             box.height -= this.split.el.getHeight();
52958             this.split.el.setLeft(box.x);
52959             this.split.el.setTop(box.y+box.height);
52960             this.split.el.setWidth(box.width);
52961         }
52962         if(this.collapsed){
52963             this.updateBody(box.width, null);
52964         }
52965         Roo.LayoutRegion.prototype.updateBox.call(this, box);
52966     }
52967 });
52968
52969 Roo.SouthLayoutRegion = function(mgr, config){
52970     Roo.SplitLayoutRegion.call(this, mgr, config, "south", "s-resize");
52971     if(this.split){
52972         this.split.placement = Roo.SplitBar.BOTTOM;
52973         this.split.orientation = Roo.SplitBar.VERTICAL;
52974         this.split.el.addClass("x-layout-split-v");
52975     }
52976     var size = config.initialSize || config.height;
52977     if(typeof size != "undefined"){
52978         this.el.setHeight(size);
52979     }
52980 };
52981 Roo.extend(Roo.SouthLayoutRegion, Roo.SplitLayoutRegion, {
52982     orientation: Roo.SplitBar.VERTICAL,
52983     getBox : function(){
52984         if(this.collapsed){
52985             return this.collapsedEl.getBox();
52986         }
52987         var box = this.el.getBox();
52988         if(this.split){
52989             var sh = this.split.el.getHeight();
52990             box.height += sh;
52991             box.y -= sh;
52992         }
52993         return box;
52994     },
52995     
52996     updateBox : function(box){
52997         if(this.split && !this.collapsed){
52998             var sh = this.split.el.getHeight();
52999             box.height -= sh;
53000             box.y += sh;
53001             this.split.el.setLeft(box.x);
53002             this.split.el.setTop(box.y-sh);
53003             this.split.el.setWidth(box.width);
53004         }
53005         if(this.collapsed){
53006             this.updateBody(box.width, null);
53007         }
53008         Roo.LayoutRegion.prototype.updateBox.call(this, box);
53009     }
53010 });
53011
53012 Roo.EastLayoutRegion = function(mgr, config){
53013     Roo.SplitLayoutRegion.call(this, mgr, config, "east", "e-resize");
53014     if(this.split){
53015         this.split.placement = Roo.SplitBar.RIGHT;
53016         this.split.orientation = Roo.SplitBar.HORIZONTAL;
53017         this.split.el.addClass("x-layout-split-h");
53018     }
53019     var size = config.initialSize || config.width;
53020     if(typeof size != "undefined"){
53021         this.el.setWidth(size);
53022     }
53023 };
53024 Roo.extend(Roo.EastLayoutRegion, Roo.SplitLayoutRegion, {
53025     orientation: Roo.SplitBar.HORIZONTAL,
53026     getBox : function(){
53027         if(this.collapsed){
53028             return this.collapsedEl.getBox();
53029         }
53030         var box = this.el.getBox();
53031         if(this.split){
53032             var sw = this.split.el.getWidth();
53033             box.width += sw;
53034             box.x -= sw;
53035         }
53036         return box;
53037     },
53038
53039     updateBox : function(box){
53040         if(this.split && !this.collapsed){
53041             var sw = this.split.el.getWidth();
53042             box.width -= sw;
53043             this.split.el.setLeft(box.x);
53044             this.split.el.setTop(box.y);
53045             this.split.el.setHeight(box.height);
53046             box.x += sw;
53047         }
53048         if(this.collapsed){
53049             this.updateBody(null, box.height);
53050         }
53051         Roo.LayoutRegion.prototype.updateBox.call(this, box);
53052     }
53053 });
53054
53055 Roo.WestLayoutRegion = function(mgr, config){
53056     Roo.SplitLayoutRegion.call(this, mgr, config, "west", "w-resize");
53057     if(this.split){
53058         this.split.placement = Roo.SplitBar.LEFT;
53059         this.split.orientation = Roo.SplitBar.HORIZONTAL;
53060         this.split.el.addClass("x-layout-split-h");
53061     }
53062     var size = config.initialSize || config.width;
53063     if(typeof size != "undefined"){
53064         this.el.setWidth(size);
53065     }
53066 };
53067 Roo.extend(Roo.WestLayoutRegion, Roo.SplitLayoutRegion, {
53068     orientation: Roo.SplitBar.HORIZONTAL,
53069     getBox : function(){
53070         if(this.collapsed){
53071             return this.collapsedEl.getBox();
53072         }
53073         var box = this.el.getBox();
53074         if(this.split){
53075             box.width += this.split.el.getWidth();
53076         }
53077         return box;
53078     },
53079     
53080     updateBox : function(box){
53081         if(this.split && !this.collapsed){
53082             var sw = this.split.el.getWidth();
53083             box.width -= sw;
53084             this.split.el.setLeft(box.x+box.width);
53085             this.split.el.setTop(box.y);
53086             this.split.el.setHeight(box.height);
53087         }
53088         if(this.collapsed){
53089             this.updateBody(null, box.height);
53090         }
53091         Roo.LayoutRegion.prototype.updateBox.call(this, box);
53092     }
53093 });
53094 /*
53095  * Based on:
53096  * Ext JS Library 1.1.1
53097  * Copyright(c) 2006-2007, Ext JS, LLC.
53098  *
53099  * Originally Released Under LGPL - original licence link has changed is not relivant.
53100  *
53101  * Fork - LGPL
53102  * <script type="text/javascript">
53103  */
53104  
53105  
53106 /*
53107  * Private internal class for reading and applying state
53108  */
53109 Roo.LayoutStateManager = function(layout){
53110      // default empty state
53111      this.state = {
53112         north: {},
53113         south: {},
53114         east: {},
53115         west: {}       
53116     };
53117 };
53118
53119 Roo.LayoutStateManager.prototype = {
53120     init : function(layout, provider){
53121         this.provider = provider;
53122         var state = provider.get(layout.id+"-layout-state");
53123         if(state){
53124             var wasUpdating = layout.isUpdating();
53125             if(!wasUpdating){
53126                 layout.beginUpdate();
53127             }
53128             for(var key in state){
53129                 if(typeof state[key] != "function"){
53130                     var rstate = state[key];
53131                     var r = layout.getRegion(key);
53132                     if(r && rstate){
53133                         if(rstate.size){
53134                             r.resizeTo(rstate.size);
53135                         }
53136                         if(rstate.collapsed == true){
53137                             r.collapse(true);
53138                         }else{
53139                             r.expand(null, true);
53140                         }
53141                     }
53142                 }
53143             }
53144             if(!wasUpdating){
53145                 layout.endUpdate();
53146             }
53147             this.state = state; 
53148         }
53149         this.layout = layout;
53150         layout.on("regionresized", this.onRegionResized, this);
53151         layout.on("regioncollapsed", this.onRegionCollapsed, this);
53152         layout.on("regionexpanded", this.onRegionExpanded, this);
53153     },
53154     
53155     storeState : function(){
53156         this.provider.set(this.layout.id+"-layout-state", this.state);
53157     },
53158     
53159     onRegionResized : function(region, newSize){
53160         this.state[region.getPosition()].size = newSize;
53161         this.storeState();
53162     },
53163     
53164     onRegionCollapsed : function(region){
53165         this.state[region.getPosition()].collapsed = true;
53166         this.storeState();
53167     },
53168     
53169     onRegionExpanded : function(region){
53170         this.state[region.getPosition()].collapsed = false;
53171         this.storeState();
53172     }
53173 };/*
53174  * Based on:
53175  * Ext JS Library 1.1.1
53176  * Copyright(c) 2006-2007, Ext JS, LLC.
53177  *
53178  * Originally Released Under LGPL - original licence link has changed is not relivant.
53179  *
53180  * Fork - LGPL
53181  * <script type="text/javascript">
53182  */
53183 /**
53184  * @class Roo.ContentPanel
53185  * @extends Roo.util.Observable
53186  * A basic ContentPanel element.
53187  * @cfg {Boolean}   fitToFrame    True for this panel to adjust its size to fit when the region resizes  (defaults to false)
53188  * @cfg {Boolean}   fitContainer   When using {@link #fitToFrame} and {@link #resizeEl}, you can also fit the parent container  (defaults to false)
53189  * @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
53190  * @cfg {Boolean}   closable      True if the panel can be closed/removed
53191  * @cfg {Boolean}   background    True if the panel should not be activated when it is added (defaults to false)
53192  * @cfg {String/HTMLElement/Element} resizeEl An element to resize if {@link #fitToFrame} is true (instead of this panel's element)
53193  * @cfg {Toolbar}   toolbar       A toolbar for this panel
53194  * @cfg {Boolean} autoScroll    True to scroll overflow in this panel (use with {@link #fitToFrame})
53195  * @cfg {String} title          The title for this panel
53196  * @cfg {Array} adjustments     Values to <b>add</b> to the width/height when doing a {@link #fitToFrame} (default is [0, 0])
53197  * @cfg {String} url            Calls {@link #setUrl} with this value
53198  * @cfg {String} region         (center|north|south|east|west) which region to put this panel on (when used with xtype constructors)
53199  * @cfg {String/Object} params  When used with {@link #url}, calls {@link #setUrl} with this value
53200  * @cfg {Boolean} loadOnce      When used with {@link #url}, calls {@link #setUrl} with this value
53201  * @cfg {String}    content        Raw content to fill content panel with (uses setContent on construction.)
53202
53203  * @constructor
53204  * Create a new ContentPanel.
53205  * @param {String/HTMLElement/Roo.Element} el The container element for this panel
53206  * @param {String/Object} config A string to set only the title or a config object
53207  * @param {String} content (optional) Set the HTML content for this panel
53208  * @param {String} region (optional) Used by xtype constructors to add to regions. (values center,east,west,south,north)
53209  */
53210 Roo.ContentPanel = function(el, config, content){
53211     
53212      
53213     /*
53214     if(el.autoCreate || el.xtype){ // xtype is available if this is called from factory
53215         config = el;
53216         el = Roo.id();
53217     }
53218     if (config && config.parentLayout) { 
53219         el = config.parentLayout.el.createChild(); 
53220     }
53221     */
53222     if(el.autoCreate){ // xtype is available if this is called from factory
53223         config = el;
53224         el = Roo.id();
53225     }
53226     this.el = Roo.get(el);
53227     if(!this.el && config && config.autoCreate){
53228         if(typeof config.autoCreate == "object"){
53229             if(!config.autoCreate.id){
53230                 config.autoCreate.id = config.id||el;
53231             }
53232             this.el = Roo.DomHelper.append(document.body,
53233                         config.autoCreate, true);
53234         }else{
53235             this.el = Roo.DomHelper.append(document.body,
53236                         {tag: "div", cls: "x-layout-inactive-content", id: config.id||el}, true);
53237         }
53238     }
53239     this.closable = false;
53240     this.loaded = false;
53241     this.active = false;
53242     if(typeof config == "string"){
53243         this.title = config;
53244     }else{
53245         Roo.apply(this, config);
53246     }
53247     
53248     if (this.toolbar && !this.toolbar.el && this.toolbar.xtype) {
53249         this.wrapEl = this.el.wrap();
53250         this.toolbar.container = this.el.insertSibling(false, 'before');
53251         this.toolbar = new Roo.Toolbar(this.toolbar);
53252     }
53253     
53254     // xtype created footer. - not sure if will work as we normally have to render first..
53255     if (this.footer && !this.footer.el && this.footer.xtype) {
53256         if (!this.wrapEl) {
53257             this.wrapEl = this.el.wrap();
53258         }
53259     
53260         this.footer.container = this.wrapEl.createChild();
53261          
53262         this.footer = Roo.factory(this.footer, Roo);
53263         
53264     }
53265     
53266     if(this.resizeEl){
53267         this.resizeEl = Roo.get(this.resizeEl, true);
53268     }else{
53269         this.resizeEl = this.el;
53270     }
53271     // handle view.xtype
53272     
53273  
53274     
53275     
53276     this.addEvents({
53277         /**
53278          * @event activate
53279          * Fires when this panel is activated. 
53280          * @param {Roo.ContentPanel} this
53281          */
53282         "activate" : true,
53283         /**
53284          * @event deactivate
53285          * Fires when this panel is activated. 
53286          * @param {Roo.ContentPanel} this
53287          */
53288         "deactivate" : true,
53289
53290         /**
53291          * @event resize
53292          * Fires when this panel is resized if fitToFrame is true.
53293          * @param {Roo.ContentPanel} this
53294          * @param {Number} width The width after any component adjustments
53295          * @param {Number} height The height after any component adjustments
53296          */
53297         "resize" : true,
53298         
53299          /**
53300          * @event render
53301          * Fires when this tab is created
53302          * @param {Roo.ContentPanel} this
53303          */
53304         "render" : true
53305         
53306         
53307         
53308     });
53309     
53310
53311     
53312     
53313     if(this.autoScroll){
53314         this.resizeEl.setStyle("overflow", "auto");
53315     } else {
53316         // fix randome scrolling
53317         this.el.on('scroll', function() {
53318             Roo.log('fix random scolling');
53319             this.scrollTo('top',0); 
53320         });
53321     }
53322     content = content || this.content;
53323     if(content){
53324         this.setContent(content);
53325     }
53326     if(config && config.url){
53327         this.setUrl(this.url, this.params, this.loadOnce);
53328     }
53329     
53330     
53331     
53332     Roo.ContentPanel.superclass.constructor.call(this);
53333     
53334     if (this.view && typeof(this.view.xtype) != 'undefined') {
53335         this.view.el = this.el.appendChild(document.createElement("div"));
53336         this.view = Roo.factory(this.view); 
53337         this.view.render  &&  this.view.render(false, '');  
53338     }
53339     
53340     
53341     this.fireEvent('render', this);
53342 };
53343
53344 Roo.extend(Roo.ContentPanel, Roo.util.Observable, {
53345     tabTip:'',
53346     setRegion : function(region){
53347         this.region = region;
53348         if(region){
53349            this.el.replaceClass("x-layout-inactive-content", "x-layout-active-content");
53350         }else{
53351            this.el.replaceClass("x-layout-active-content", "x-layout-inactive-content");
53352         } 
53353     },
53354     
53355     /**
53356      * Returns the toolbar for this Panel if one was configured. 
53357      * @return {Roo.Toolbar} 
53358      */
53359     getToolbar : function(){
53360         return this.toolbar;
53361     },
53362     
53363     setActiveState : function(active){
53364         this.active = active;
53365         if(!active){
53366             this.fireEvent("deactivate", this);
53367         }else{
53368             this.fireEvent("activate", this);
53369         }
53370     },
53371     /**
53372      * Updates this panel's element
53373      * @param {String} content The new content
53374      * @param {Boolean} loadScripts (optional) true to look for and process scripts
53375     */
53376     setContent : function(content, loadScripts){
53377         this.el.update(content, loadScripts);
53378     },
53379
53380     ignoreResize : function(w, h){
53381         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
53382             return true;
53383         }else{
53384             this.lastSize = {width: w, height: h};
53385             return false;
53386         }
53387     },
53388     /**
53389      * Get the {@link Roo.UpdateManager} for this panel. Enables you to perform Ajax updates.
53390      * @return {Roo.UpdateManager} The UpdateManager
53391      */
53392     getUpdateManager : function(){
53393         return this.el.getUpdateManager();
53394     },
53395      /**
53396      * Loads this content panel immediately with content from XHR. Note: to delay loading until the panel is activated, use {@link #setUrl}.
53397      * @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:
53398 <pre><code>
53399 panel.load({
53400     url: "your-url.php",
53401     params: {param1: "foo", param2: "bar"}, // or a URL encoded string
53402     callback: yourFunction,
53403     scope: yourObject, //(optional scope)
53404     discardUrl: false,
53405     nocache: false,
53406     text: "Loading...",
53407     timeout: 30,
53408     scripts: false
53409 });
53410 </code></pre>
53411      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
53412      * 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.
53413      * @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}
53414      * @param {Function} callback (optional) Callback when transaction is complete -- called with signature (oElement, bSuccess, oResponse)
53415      * @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.
53416      * @return {Roo.ContentPanel} this
53417      */
53418     load : function(){
53419         var um = this.el.getUpdateManager();
53420         um.update.apply(um, arguments);
53421         return this;
53422     },
53423
53424
53425     /**
53426      * 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.
53427      * @param {String/Function} url The URL to load the content from or a function to call to get the URL
53428      * @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)
53429      * @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)
53430      * @return {Roo.UpdateManager} The UpdateManager
53431      */
53432     setUrl : function(url, params, loadOnce){
53433         if(this.refreshDelegate){
53434             this.removeListener("activate", this.refreshDelegate);
53435         }
53436         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
53437         this.on("activate", this.refreshDelegate);
53438         return this.el.getUpdateManager();
53439     },
53440     
53441     _handleRefresh : function(url, params, loadOnce){
53442         if(!loadOnce || !this.loaded){
53443             var updater = this.el.getUpdateManager();
53444             updater.update(url, params, this._setLoaded.createDelegate(this));
53445         }
53446     },
53447     
53448     _setLoaded : function(){
53449         this.loaded = true;
53450     }, 
53451     
53452     /**
53453      * Returns this panel's id
53454      * @return {String} 
53455      */
53456     getId : function(){
53457         return this.el.id;
53458     },
53459     
53460     /** 
53461      * Returns this panel's element - used by regiosn to add.
53462      * @return {Roo.Element} 
53463      */
53464     getEl : function(){
53465         return this.wrapEl || this.el;
53466     },
53467     
53468     adjustForComponents : function(width, height)
53469     {
53470         //Roo.log('adjustForComponents ');
53471         if(this.resizeEl != this.el){
53472             width -= this.el.getFrameWidth('lr');
53473             height -= this.el.getFrameWidth('tb');
53474         }
53475         if(this.toolbar){
53476             var te = this.toolbar.getEl();
53477             height -= te.getHeight();
53478             te.setWidth(width);
53479         }
53480         if(this.footer){
53481             var te = this.footer.getEl();
53482             Roo.log("footer:" + te.getHeight());
53483             
53484             height -= te.getHeight();
53485             te.setWidth(width);
53486         }
53487         
53488         
53489         if(this.adjustments){
53490             width += this.adjustments[0];
53491             height += this.adjustments[1];
53492         }
53493         return {"width": width, "height": height};
53494     },
53495     
53496     setSize : function(width, height){
53497         if(this.fitToFrame && !this.ignoreResize(width, height)){
53498             if(this.fitContainer && this.resizeEl != this.el){
53499                 this.el.setSize(width, height);
53500             }
53501             var size = this.adjustForComponents(width, height);
53502             this.resizeEl.setSize(this.autoWidth ? "auto" : size.width, this.autoHeight ? "auto" : size.height);
53503             this.fireEvent('resize', this, size.width, size.height);
53504         }
53505     },
53506     
53507     /**
53508      * Returns this panel's title
53509      * @return {String} 
53510      */
53511     getTitle : function(){
53512         return this.title;
53513     },
53514     
53515     /**
53516      * Set this panel's title
53517      * @param {String} title
53518      */
53519     setTitle : function(title){
53520         this.title = title;
53521         if(this.region){
53522             this.region.updatePanelTitle(this, title);
53523         }
53524     },
53525     
53526     /**
53527      * Returns true is this panel was configured to be closable
53528      * @return {Boolean} 
53529      */
53530     isClosable : function(){
53531         return this.closable;
53532     },
53533     
53534     beforeSlide : function(){
53535         this.el.clip();
53536         this.resizeEl.clip();
53537     },
53538     
53539     afterSlide : function(){
53540         this.el.unclip();
53541         this.resizeEl.unclip();
53542     },
53543     
53544     /**
53545      *   Force a content refresh from the URL specified in the {@link #setUrl} method.
53546      *   Will fail silently if the {@link #setUrl} method has not been called.
53547      *   This does not activate the panel, just updates its content.
53548      */
53549     refresh : function(){
53550         if(this.refreshDelegate){
53551            this.loaded = false;
53552            this.refreshDelegate();
53553         }
53554     },
53555     
53556     /**
53557      * Destroys this panel
53558      */
53559     destroy : function(){
53560         this.el.removeAllListeners();
53561         var tempEl = document.createElement("span");
53562         tempEl.appendChild(this.el.dom);
53563         tempEl.innerHTML = "";
53564         this.el.remove();
53565         this.el = null;
53566     },
53567     
53568     /**
53569      * form - if the content panel contains a form - this is a reference to it.
53570      * @type {Roo.form.Form}
53571      */
53572     form : false,
53573     /**
53574      * view - if the content panel contains a view (Roo.DatePicker / Roo.View / Roo.JsonView)
53575      *    This contains a reference to it.
53576      * @type {Roo.View}
53577      */
53578     view : false,
53579     
53580       /**
53581      * Adds a xtype elements to the panel - currently only supports Forms, View, JsonView.
53582      * <pre><code>
53583
53584 layout.addxtype({
53585        xtype : 'Form',
53586        items: [ .... ]
53587    }
53588 );
53589
53590 </code></pre>
53591      * @param {Object} cfg Xtype definition of item to add.
53592      */
53593     
53594     addxtype : function(cfg) {
53595         // add form..
53596         if (cfg.xtype.match(/^Form$/)) {
53597             
53598             var el;
53599             //if (this.footer) {
53600             //    el = this.footer.container.insertSibling(false, 'before');
53601             //} else {
53602                 el = this.el.createChild();
53603             //}
53604
53605             this.form = new  Roo.form.Form(cfg);
53606             
53607             
53608             if ( this.form.allItems.length) {
53609                 this.form.render(el.dom);
53610             }
53611             return this.form;
53612         }
53613         // should only have one of theses..
53614         if ([ 'View', 'JsonView', 'DatePicker'].indexOf(cfg.xtype) > -1) {
53615             // views.. should not be just added - used named prop 'view''
53616             
53617             cfg.el = this.el.appendChild(document.createElement("div"));
53618             // factory?
53619             
53620             var ret = new Roo.factory(cfg);
53621              
53622              ret.render && ret.render(false, ''); // render blank..
53623             this.view = ret;
53624             return ret;
53625         }
53626         return false;
53627     }
53628 });
53629
53630 /**
53631  * @class Roo.GridPanel
53632  * @extends Roo.ContentPanel
53633  * @constructor
53634  * Create a new GridPanel.
53635  * @param {Roo.grid.Grid} grid The grid for this panel
53636  * @param {String/Object} config A string to set only the panel's title, or a config object
53637  */
53638 Roo.GridPanel = function(grid, config){
53639     
53640   
53641     this.wrapper = Roo.DomHelper.append(document.body, // wrapper for IE7 strict & safari scroll issue
53642         {tag: "div", cls: "x-layout-grid-wrapper x-layout-inactive-content"}, true);
53643         
53644     this.wrapper.dom.appendChild(grid.getGridEl().dom);
53645     
53646     Roo.GridPanel.superclass.constructor.call(this, this.wrapper, config);
53647     
53648     if(this.toolbar){
53649         this.toolbar.el.insertBefore(this.wrapper.dom.firstChild);
53650     }
53651     // xtype created footer. - not sure if will work as we normally have to render first..
53652     if (this.footer && !this.footer.el && this.footer.xtype) {
53653         
53654         this.footer.container = this.grid.getView().getFooterPanel(true);
53655         this.footer.dataSource = this.grid.dataSource;
53656         this.footer = Roo.factory(this.footer, Roo);
53657         
53658     }
53659     
53660     grid.monitorWindowResize = false; // turn off autosizing
53661     grid.autoHeight = false;
53662     grid.autoWidth = false;
53663     this.grid = grid;
53664     this.grid.getGridEl().replaceClass("x-layout-inactive-content", "x-layout-component-panel");
53665 };
53666
53667 Roo.extend(Roo.GridPanel, Roo.ContentPanel, {
53668     getId : function(){
53669         return this.grid.id;
53670     },
53671     
53672     /**
53673      * Returns the grid for this panel
53674      * @return {Roo.grid.Grid} 
53675      */
53676     getGrid : function(){
53677         return this.grid;    
53678     },
53679     
53680     setSize : function(width, height){
53681         if(!this.ignoreResize(width, height)){
53682             var grid = this.grid;
53683             var size = this.adjustForComponents(width, height);
53684             grid.getGridEl().setSize(size.width, size.height);
53685             grid.autoSize();
53686         }
53687     },
53688     
53689     beforeSlide : function(){
53690         this.grid.getView().scroller.clip();
53691     },
53692     
53693     afterSlide : function(){
53694         this.grid.getView().scroller.unclip();
53695     },
53696     
53697     destroy : function(){
53698         this.grid.destroy();
53699         delete this.grid;
53700         Roo.GridPanel.superclass.destroy.call(this); 
53701     }
53702 });
53703
53704
53705 /**
53706  * @class Roo.NestedLayoutPanel
53707  * @extends Roo.ContentPanel
53708  * @constructor
53709  * Create a new NestedLayoutPanel.
53710  * 
53711  * 
53712  * @param {Roo.BorderLayout} layout The layout for this panel
53713  * @param {String/Object} config A string to set only the title or a config object
53714  */
53715 Roo.NestedLayoutPanel = function(layout, config)
53716 {
53717     // construct with only one argument..
53718     /* FIXME - implement nicer consturctors
53719     if (layout.layout) {
53720         config = layout;
53721         layout = config.layout;
53722         delete config.layout;
53723     }
53724     if (layout.xtype && !layout.getEl) {
53725         // then layout needs constructing..
53726         layout = Roo.factory(layout, Roo);
53727     }
53728     */
53729     
53730     
53731     Roo.NestedLayoutPanel.superclass.constructor.call(this, layout.getEl(), config);
53732     
53733     layout.monitorWindowResize = false; // turn off autosizing
53734     this.layout = layout;
53735     this.layout.getEl().addClass("x-layout-nested-layout");
53736     
53737     
53738     
53739     
53740 };
53741
53742 Roo.extend(Roo.NestedLayoutPanel, Roo.ContentPanel, {
53743
53744     setSize : function(width, height){
53745         if(!this.ignoreResize(width, height)){
53746             var size = this.adjustForComponents(width, height);
53747             var el = this.layout.getEl();
53748             el.setSize(size.width, size.height);
53749             var touch = el.dom.offsetWidth;
53750             this.layout.layout();
53751             // ie requires a double layout on the first pass
53752             if(Roo.isIE && !this.initialized){
53753                 this.initialized = true;
53754                 this.layout.layout();
53755             }
53756         }
53757     },
53758     
53759     // activate all subpanels if not currently active..
53760     
53761     setActiveState : function(active){
53762         this.active = active;
53763         if(!active){
53764             this.fireEvent("deactivate", this);
53765             return;
53766         }
53767         
53768         this.fireEvent("activate", this);
53769         // not sure if this should happen before or after..
53770         if (!this.layout) {
53771             return; // should not happen..
53772         }
53773         var reg = false;
53774         for (var r in this.layout.regions) {
53775             reg = this.layout.getRegion(r);
53776             if (reg.getActivePanel()) {
53777                 //reg.showPanel(reg.getActivePanel()); // force it to activate.. 
53778                 reg.setActivePanel(reg.getActivePanel());
53779                 continue;
53780             }
53781             if (!reg.panels.length) {
53782                 continue;
53783             }
53784             reg.showPanel(reg.getPanel(0));
53785         }
53786         
53787         
53788         
53789         
53790     },
53791     
53792     /**
53793      * Returns the nested BorderLayout for this panel
53794      * @return {Roo.BorderLayout} 
53795      */
53796     getLayout : function(){
53797         return this.layout;
53798     },
53799     
53800      /**
53801      * Adds a xtype elements to the layout of the nested panel
53802      * <pre><code>
53803
53804 panel.addxtype({
53805        xtype : 'ContentPanel',
53806        region: 'west',
53807        items: [ .... ]
53808    }
53809 );
53810
53811 panel.addxtype({
53812         xtype : 'NestedLayoutPanel',
53813         region: 'west',
53814         layout: {
53815            center: { },
53816            west: { }   
53817         },
53818         items : [ ... list of content panels or nested layout panels.. ]
53819    }
53820 );
53821 </code></pre>
53822      * @param {Object} cfg Xtype definition of item to add.
53823      */
53824     addxtype : function(cfg) {
53825         return this.layout.addxtype(cfg);
53826     
53827     }
53828 });
53829
53830 Roo.ScrollPanel = function(el, config, content){
53831     config = config || {};
53832     config.fitToFrame = true;
53833     Roo.ScrollPanel.superclass.constructor.call(this, el, config, content);
53834     
53835     this.el.dom.style.overflow = "hidden";
53836     var wrap = this.el.wrap({cls: "x-scroller x-layout-inactive-content"});
53837     this.el.removeClass("x-layout-inactive-content");
53838     this.el.on("mousewheel", this.onWheel, this);
53839
53840     var up = wrap.createChild({cls: "x-scroller-up", html: "&#160;"}, this.el.dom);
53841     var down = wrap.createChild({cls: "x-scroller-down", html: "&#160;"});
53842     up.unselectable(); down.unselectable();
53843     up.on("click", this.scrollUp, this);
53844     down.on("click", this.scrollDown, this);
53845     up.addClassOnOver("x-scroller-btn-over");
53846     down.addClassOnOver("x-scroller-btn-over");
53847     up.addClassOnClick("x-scroller-btn-click");
53848     down.addClassOnClick("x-scroller-btn-click");
53849     this.adjustments = [0, -(up.getHeight() + down.getHeight())];
53850
53851     this.resizeEl = this.el;
53852     this.el = wrap; this.up = up; this.down = down;
53853 };
53854
53855 Roo.extend(Roo.ScrollPanel, Roo.ContentPanel, {
53856     increment : 100,
53857     wheelIncrement : 5,
53858     scrollUp : function(){
53859         this.resizeEl.scroll("up", this.increment, {callback: this.afterScroll, scope: this});
53860     },
53861
53862     scrollDown : function(){
53863         this.resizeEl.scroll("down", this.increment, {callback: this.afterScroll, scope: this});
53864     },
53865
53866     afterScroll : function(){
53867         var el = this.resizeEl;
53868         var t = el.dom.scrollTop, h = el.dom.scrollHeight, ch = el.dom.clientHeight;
53869         this.up[t == 0 ? "addClass" : "removeClass"]("x-scroller-btn-disabled");
53870         this.down[h - t <= ch ? "addClass" : "removeClass"]("x-scroller-btn-disabled");
53871     },
53872
53873     setSize : function(){
53874         Roo.ScrollPanel.superclass.setSize.apply(this, arguments);
53875         this.afterScroll();
53876     },
53877
53878     onWheel : function(e){
53879         var d = e.getWheelDelta();
53880         this.resizeEl.dom.scrollTop -= (d*this.wheelIncrement);
53881         this.afterScroll();
53882         e.stopEvent();
53883     },
53884
53885     setContent : function(content, loadScripts){
53886         this.resizeEl.update(content, loadScripts);
53887     }
53888
53889 });
53890
53891
53892
53893
53894
53895
53896
53897
53898
53899 /**
53900  * @class Roo.TreePanel
53901  * @extends Roo.ContentPanel
53902  * @constructor
53903  * Create a new TreePanel. - defaults to fit/scoll contents.
53904  * @param {String/Object} config A string to set only the panel's title, or a config object
53905  * @cfg {Roo.tree.TreePanel} tree The tree TreePanel, with config etc.
53906  */
53907 Roo.TreePanel = function(config){
53908     var el = config.el;
53909     var tree = config.tree;
53910     delete config.tree; 
53911     delete config.el; // hopefull!
53912     
53913     // wrapper for IE7 strict & safari scroll issue
53914     
53915     var treeEl = el.createChild();
53916     config.resizeEl = treeEl;
53917     
53918     
53919     
53920     Roo.TreePanel.superclass.constructor.call(this, el, config);
53921  
53922  
53923     this.tree = new Roo.tree.TreePanel(treeEl , tree);
53924     //console.log(tree);
53925     this.on('activate', function()
53926     {
53927         if (this.tree.rendered) {
53928             return;
53929         }
53930         //console.log('render tree');
53931         this.tree.render();
53932     });
53933     // this should not be needed.. - it's actually the 'el' that resizes?
53934     // actuall it breaks the containerScroll - dragging nodes auto scroll at top
53935     
53936     //this.on('resize',  function (cp, w, h) {
53937     //        this.tree.innerCt.setWidth(w);
53938     //        this.tree.innerCt.setHeight(h);
53939     //        //this.tree.innerCt.setStyle('overflow-y', 'auto');
53940     //});
53941
53942         
53943     
53944 };
53945
53946 Roo.extend(Roo.TreePanel, Roo.ContentPanel, {   
53947     fitToFrame : true,
53948     autoScroll : true
53949 });
53950
53951
53952
53953
53954
53955
53956
53957
53958
53959
53960
53961 /*
53962  * Based on:
53963  * Ext JS Library 1.1.1
53964  * Copyright(c) 2006-2007, Ext JS, LLC.
53965  *
53966  * Originally Released Under LGPL - original licence link has changed is not relivant.
53967  *
53968  * Fork - LGPL
53969  * <script type="text/javascript">
53970  */
53971  
53972
53973 /**
53974  * @class Roo.ReaderLayout
53975  * @extends Roo.BorderLayout
53976  * This is a pre-built layout that represents a classic, 5-pane application.  It consists of a header, a primary
53977  * center region containing two nested regions (a top one for a list view and one for item preview below),
53978  * and regions on either side that can be used for navigation, application commands, informational displays, etc.
53979  * The setup and configuration work exactly the same as it does for a {@link Roo.BorderLayout} - this class simply
53980  * expedites the setup of the overall layout and regions for this common application style.
53981  * Example:
53982  <pre><code>
53983 var reader = new Roo.ReaderLayout();
53984 var CP = Roo.ContentPanel;  // shortcut for adding
53985
53986 reader.beginUpdate();
53987 reader.add("north", new CP("north", "North"));
53988 reader.add("west", new CP("west", {title: "West"}));
53989 reader.add("east", new CP("east", {title: "East"}));
53990
53991 reader.regions.listView.add(new CP("listView", "List"));
53992 reader.regions.preview.add(new CP("preview", "Preview"));
53993 reader.endUpdate();
53994 </code></pre>
53995 * @constructor
53996 * Create a new ReaderLayout
53997 * @param {Object} config Configuration options
53998 * @param {String/HTMLElement/Element} container (optional) The container this layout is bound to (defaults to
53999 * document.body if omitted)
54000 */
54001 Roo.ReaderLayout = function(config, renderTo){
54002     var c = config || {size:{}};
54003     Roo.ReaderLayout.superclass.constructor.call(this, renderTo || document.body, {
54004         north: c.north !== false ? Roo.apply({
54005             split:false,
54006             initialSize: 32,
54007             titlebar: false
54008         }, c.north) : false,
54009         west: c.west !== false ? Roo.apply({
54010             split:true,
54011             initialSize: 200,
54012             minSize: 175,
54013             maxSize: 400,
54014             titlebar: true,
54015             collapsible: true,
54016             animate: true,
54017             margins:{left:5,right:0,bottom:5,top:5},
54018             cmargins:{left:5,right:5,bottom:5,top:5}
54019         }, c.west) : false,
54020         east: c.east !== false ? Roo.apply({
54021             split:true,
54022             initialSize: 200,
54023             minSize: 175,
54024             maxSize: 400,
54025             titlebar: true,
54026             collapsible: true,
54027             animate: true,
54028             margins:{left:0,right:5,bottom:5,top:5},
54029             cmargins:{left:5,right:5,bottom:5,top:5}
54030         }, c.east) : false,
54031         center: Roo.apply({
54032             tabPosition: 'top',
54033             autoScroll:false,
54034             closeOnTab: true,
54035             titlebar:false,
54036             margins:{left:c.west!==false ? 0 : 5,right:c.east!==false ? 0 : 5,bottom:5,top:2}
54037         }, c.center)
54038     });
54039
54040     this.el.addClass('x-reader');
54041
54042     this.beginUpdate();
54043
54044     var inner = new Roo.BorderLayout(Roo.get(document.body).createChild(), {
54045         south: c.preview !== false ? Roo.apply({
54046             split:true,
54047             initialSize: 200,
54048             minSize: 100,
54049             autoScroll:true,
54050             collapsible:true,
54051             titlebar: true,
54052             cmargins:{top:5,left:0, right:0, bottom:0}
54053         }, c.preview) : false,
54054         center: Roo.apply({
54055             autoScroll:false,
54056             titlebar:false,
54057             minHeight:200
54058         }, c.listView)
54059     });
54060     this.add('center', new Roo.NestedLayoutPanel(inner,
54061             Roo.apply({title: c.mainTitle || '',tabTip:''},c.innerPanelCfg)));
54062
54063     this.endUpdate();
54064
54065     this.regions.preview = inner.getRegion('south');
54066     this.regions.listView = inner.getRegion('center');
54067 };
54068
54069 Roo.extend(Roo.ReaderLayout, Roo.BorderLayout);/*
54070  * Based on:
54071  * Ext JS Library 1.1.1
54072  * Copyright(c) 2006-2007, Ext JS, LLC.
54073  *
54074  * Originally Released Under LGPL - original licence link has changed is not relivant.
54075  *
54076  * Fork - LGPL
54077  * <script type="text/javascript">
54078  */
54079  
54080 /**
54081  * @class Roo.grid.Grid
54082  * @extends Roo.util.Observable
54083  * This class represents the primary interface of a component based grid control.
54084  * <br><br>Usage:<pre><code>
54085  var grid = new Roo.grid.Grid("my-container-id", {
54086      ds: myDataStore,
54087      cm: myColModel,
54088      selModel: mySelectionModel,
54089      autoSizeColumns: true,
54090      monitorWindowResize: false,
54091      trackMouseOver: true
54092  });
54093  // set any options
54094  grid.render();
54095  * </code></pre>
54096  * <b>Common Problems:</b><br/>
54097  * - Grid does not resize properly when going smaller: Setting overflow hidden on the container
54098  * element will correct this<br/>
54099  * - If you get el.style[camel]= NaNpx or -2px or something related, be certain you have given your container element
54100  * dimensions. The grid adapts to your container's size, if your container has no size defined then the results
54101  * are unpredictable.<br/>
54102  * - Do not render the grid into an element with display:none. Try using visibility:hidden. Otherwise there is no way for the
54103  * grid to calculate dimensions/offsets.<br/>
54104   * @constructor
54105  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
54106  * The container MUST have some type of size defined for the grid to fill. The container will be
54107  * automatically set to position relative if it isn't already.
54108  * @param {Object} config A config object that sets properties on this grid.
54109  */
54110 Roo.grid.Grid = function(container, config){
54111         // initialize the container
54112         this.container = Roo.get(container);
54113         this.container.update("");
54114         this.container.setStyle("overflow", "hidden");
54115     this.container.addClass('x-grid-container');
54116
54117     this.id = this.container.id;
54118
54119     Roo.apply(this, config);
54120     // check and correct shorthanded configs
54121     if(this.ds){
54122         this.dataSource = this.ds;
54123         delete this.ds;
54124     }
54125     if(this.cm){
54126         this.colModel = this.cm;
54127         delete this.cm;
54128     }
54129     if(this.sm){
54130         this.selModel = this.sm;
54131         delete this.sm;
54132     }
54133
54134     if (this.selModel) {
54135         this.selModel = Roo.factory(this.selModel, Roo.grid);
54136         this.sm = this.selModel;
54137         this.sm.xmodule = this.xmodule || false;
54138     }
54139     if (typeof(this.colModel.config) == 'undefined') {
54140         this.colModel = new Roo.grid.ColumnModel(this.colModel);
54141         this.cm = this.colModel;
54142         this.cm.xmodule = this.xmodule || false;
54143     }
54144     if (this.dataSource) {
54145         this.dataSource= Roo.factory(this.dataSource, Roo.data);
54146         this.ds = this.dataSource;
54147         this.ds.xmodule = this.xmodule || false;
54148          
54149     }
54150     
54151     
54152     
54153     if(this.width){
54154         this.container.setWidth(this.width);
54155     }
54156
54157     if(this.height){
54158         this.container.setHeight(this.height);
54159     }
54160     /** @private */
54161         this.addEvents({
54162         // raw events
54163         /**
54164          * @event click
54165          * The raw click event for the entire grid.
54166          * @param {Roo.EventObject} e
54167          */
54168         "click" : true,
54169         /**
54170          * @event dblclick
54171          * The raw dblclick event for the entire grid.
54172          * @param {Roo.EventObject} e
54173          */
54174         "dblclick" : true,
54175         /**
54176          * @event contextmenu
54177          * The raw contextmenu event for the entire grid.
54178          * @param {Roo.EventObject} e
54179          */
54180         "contextmenu" : true,
54181         /**
54182          * @event mousedown
54183          * The raw mousedown event for the entire grid.
54184          * @param {Roo.EventObject} e
54185          */
54186         "mousedown" : true,
54187         /**
54188          * @event mouseup
54189          * The raw mouseup event for the entire grid.
54190          * @param {Roo.EventObject} e
54191          */
54192         "mouseup" : true,
54193         /**
54194          * @event mouseover
54195          * The raw mouseover event for the entire grid.
54196          * @param {Roo.EventObject} e
54197          */
54198         "mouseover" : true,
54199         /**
54200          * @event mouseout
54201          * The raw mouseout event for the entire grid.
54202          * @param {Roo.EventObject} e
54203          */
54204         "mouseout" : true,
54205         /**
54206          * @event keypress
54207          * The raw keypress event for the entire grid.
54208          * @param {Roo.EventObject} e
54209          */
54210         "keypress" : true,
54211         /**
54212          * @event keydown
54213          * The raw keydown event for the entire grid.
54214          * @param {Roo.EventObject} e
54215          */
54216         "keydown" : true,
54217
54218         // custom events
54219
54220         /**
54221          * @event cellclick
54222          * Fires when a cell is clicked
54223          * @param {Grid} this
54224          * @param {Number} rowIndex
54225          * @param {Number} columnIndex
54226          * @param {Roo.EventObject} e
54227          */
54228         "cellclick" : true,
54229         /**
54230          * @event celldblclick
54231          * Fires when a cell is double clicked
54232          * @param {Grid} this
54233          * @param {Number} rowIndex
54234          * @param {Number} columnIndex
54235          * @param {Roo.EventObject} e
54236          */
54237         "celldblclick" : true,
54238         /**
54239          * @event rowclick
54240          * Fires when a row is clicked
54241          * @param {Grid} this
54242          * @param {Number} rowIndex
54243          * @param {Roo.EventObject} e
54244          */
54245         "rowclick" : true,
54246         /**
54247          * @event rowdblclick
54248          * Fires when a row is double clicked
54249          * @param {Grid} this
54250          * @param {Number} rowIndex
54251          * @param {Roo.EventObject} e
54252          */
54253         "rowdblclick" : true,
54254         /**
54255          * @event headerclick
54256          * Fires when a header is clicked
54257          * @param {Grid} this
54258          * @param {Number} columnIndex
54259          * @param {Roo.EventObject} e
54260          */
54261         "headerclick" : true,
54262         /**
54263          * @event headerdblclick
54264          * Fires when a header cell is double clicked
54265          * @param {Grid} this
54266          * @param {Number} columnIndex
54267          * @param {Roo.EventObject} e
54268          */
54269         "headerdblclick" : true,
54270         /**
54271          * @event rowcontextmenu
54272          * Fires when a row is right clicked
54273          * @param {Grid} this
54274          * @param {Number} rowIndex
54275          * @param {Roo.EventObject} e
54276          */
54277         "rowcontextmenu" : true,
54278         /**
54279          * @event cellcontextmenu
54280          * Fires when a cell is right clicked
54281          * @param {Grid} this
54282          * @param {Number} rowIndex
54283          * @param {Number} cellIndex
54284          * @param {Roo.EventObject} e
54285          */
54286          "cellcontextmenu" : true,
54287         /**
54288          * @event headercontextmenu
54289          * Fires when a header is right clicked
54290          * @param {Grid} this
54291          * @param {Number} columnIndex
54292          * @param {Roo.EventObject} e
54293          */
54294         "headercontextmenu" : true,
54295         /**
54296          * @event bodyscroll
54297          * Fires when the body element is scrolled
54298          * @param {Number} scrollLeft
54299          * @param {Number} scrollTop
54300          */
54301         "bodyscroll" : true,
54302         /**
54303          * @event columnresize
54304          * Fires when the user resizes a column
54305          * @param {Number} columnIndex
54306          * @param {Number} newSize
54307          */
54308         "columnresize" : true,
54309         /**
54310          * @event columnmove
54311          * Fires when the user moves a column
54312          * @param {Number} oldIndex
54313          * @param {Number} newIndex
54314          */
54315         "columnmove" : true,
54316         /**
54317          * @event startdrag
54318          * Fires when row(s) start being dragged
54319          * @param {Grid} this
54320          * @param {Roo.GridDD} dd The drag drop object
54321          * @param {event} e The raw browser event
54322          */
54323         "startdrag" : true,
54324         /**
54325          * @event enddrag
54326          * Fires when a drag operation is complete
54327          * @param {Grid} this
54328          * @param {Roo.GridDD} dd The drag drop object
54329          * @param {event} e The raw browser event
54330          */
54331         "enddrag" : true,
54332         /**
54333          * @event dragdrop
54334          * Fires when dragged row(s) are dropped on a valid DD target
54335          * @param {Grid} this
54336          * @param {Roo.GridDD} dd The drag drop object
54337          * @param {String} targetId The target drag drop object
54338          * @param {event} e The raw browser event
54339          */
54340         "dragdrop" : true,
54341         /**
54342          * @event dragover
54343          * Fires while row(s) are being dragged. "targetId" is the id of the Yahoo.util.DD object the selected rows are being dragged over.
54344          * @param {Grid} this
54345          * @param {Roo.GridDD} dd The drag drop object
54346          * @param {String} targetId The target drag drop object
54347          * @param {event} e The raw browser event
54348          */
54349         "dragover" : true,
54350         /**
54351          * @event dragenter
54352          *  Fires when the dragged row(s) first cross another DD target while being dragged
54353          * @param {Grid} this
54354          * @param {Roo.GridDD} dd The drag drop object
54355          * @param {String} targetId The target drag drop object
54356          * @param {event} e The raw browser event
54357          */
54358         "dragenter" : true,
54359         /**
54360          * @event dragout
54361          * Fires when the dragged row(s) leave another DD target while being dragged
54362          * @param {Grid} this
54363          * @param {Roo.GridDD} dd The drag drop object
54364          * @param {String} targetId The target drag drop object
54365          * @param {event} e The raw browser event
54366          */
54367         "dragout" : true,
54368         /**
54369          * @event rowclass
54370          * Fires when a row is rendered, so you can change add a style to it.
54371          * @param {GridView} gridview   The grid view
54372          * @param {Object} rowcfg   contains record  rowIndex and rowClass - set rowClass to add a style.
54373          */
54374         'rowclass' : true,
54375
54376         /**
54377          * @event render
54378          * Fires when the grid is rendered
54379          * @param {Grid} grid
54380          */
54381         'render' : true
54382     });
54383
54384     Roo.grid.Grid.superclass.constructor.call(this);
54385 };
54386 Roo.extend(Roo.grid.Grid, Roo.util.Observable, {
54387     
54388     /**
54389      * @cfg {String} ddGroup - drag drop group.
54390      */
54391
54392     /**
54393      * @cfg {Number} minColumnWidth The minimum width a column can be resized to. Default is 25.
54394      */
54395     minColumnWidth : 25,
54396
54397     /**
54398      * @cfg {Boolean} autoSizeColumns True to automatically resize the columns to fit their content
54399      * <b>on initial render.</b> It is more efficient to explicitly size the columns
54400      * through the ColumnModel's {@link Roo.grid.ColumnModel#width} config option.  Default is false.
54401      */
54402     autoSizeColumns : false,
54403
54404     /**
54405      * @cfg {Boolean} autoSizeHeaders True to measure headers with column data when auto sizing columns. Default is true.
54406      */
54407     autoSizeHeaders : true,
54408
54409     /**
54410      * @cfg {Boolean} monitorWindowResize True to autoSize the grid when the window resizes. Default is true.
54411      */
54412     monitorWindowResize : true,
54413
54414     /**
54415      * @cfg {Boolean} maxRowsToMeasure If autoSizeColumns is on, maxRowsToMeasure can be used to limit the number of
54416      * rows measured to get a columns size. Default is 0 (all rows).
54417      */
54418     maxRowsToMeasure : 0,
54419
54420     /**
54421      * @cfg {Boolean} trackMouseOver True to highlight rows when the mouse is over. Default is true.
54422      */
54423     trackMouseOver : true,
54424
54425     /**
54426     * @cfg {Boolean} enableDrag  True to enable drag of rows. Default is false. (double check if this is needed?)
54427     */
54428     
54429     /**
54430     * @cfg {Boolean} enableDragDrop True to enable drag and drop of rows. Default is false.
54431     */
54432     enableDragDrop : false,
54433     
54434     /**
54435     * @cfg {Boolean} enableColumnMove True to enable drag and drop reorder of columns. Default is true.
54436     */
54437     enableColumnMove : true,
54438     
54439     /**
54440     * @cfg {Boolean} enableColumnHide True to enable hiding of columns with the header context menu. Default is true.
54441     */
54442     enableColumnHide : true,
54443     
54444     /**
54445     * @cfg {Boolean} enableRowHeightSync True to manually sync row heights across locked and not locked rows. Default is false.
54446     */
54447     enableRowHeightSync : false,
54448     
54449     /**
54450     * @cfg {Boolean} stripeRows True to stripe the rows.  Default is true.
54451     */
54452     stripeRows : true,
54453     
54454     /**
54455     * @cfg {Boolean} autoHeight True to fit the height of the grid container to the height of the data. Default is false.
54456     */
54457     autoHeight : false,
54458
54459     /**
54460      * @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.
54461      */
54462     autoExpandColumn : false,
54463
54464     /**
54465     * @cfg {Number} autoExpandMin The minimum width the autoExpandColumn can have (if enabled).
54466     * Default is 50.
54467     */
54468     autoExpandMin : 50,
54469
54470     /**
54471     * @cfg {Number} autoExpandMax The maximum width the autoExpandColumn can have (if enabled). Default is 1000.
54472     */
54473     autoExpandMax : 1000,
54474
54475     /**
54476     * @cfg {Object} view The {@link Roo.grid.GridView} used by the grid. This can be set before a call to render().
54477     */
54478     view : null,
54479
54480     /**
54481     * @cfg {Object} loadMask An {@link Roo.LoadMask} config or true to mask the grid while loading. Default is false.
54482     */
54483     loadMask : false,
54484     /**
54485     * @cfg {Roo.dd.DropTarget} dropTarget An {@link Roo.dd.DropTarget} config
54486     */
54487     dropTarget: false,
54488     
54489    
54490     
54491     // private
54492     rendered : false,
54493
54494     /**
54495     * @cfg {Boolean} autoWidth True to set the grid's width to the default total width of the grid's columns instead
54496     * of a fixed width. Default is false.
54497     */
54498     /**
54499     * @cfg {Number} maxHeight Sets the maximum height of the grid - ignored if autoHeight is not on.
54500     */
54501     /**
54502      * Called once after all setup has been completed and the grid is ready to be rendered.
54503      * @return {Roo.grid.Grid} this
54504      */
54505     render : function()
54506     {
54507         var c = this.container;
54508         // try to detect autoHeight/width mode
54509         if((!c.dom.offsetHeight || c.dom.offsetHeight < 20) || c.getStyle("height") == "auto"){
54510             this.autoHeight = true;
54511         }
54512         var view = this.getView();
54513         view.init(this);
54514
54515         c.on("click", this.onClick, this);
54516         c.on("dblclick", this.onDblClick, this);
54517         c.on("contextmenu", this.onContextMenu, this);
54518         c.on("keydown", this.onKeyDown, this);
54519         if (Roo.isTouch) {
54520             c.on("touchstart", this.onTouchStart, this);
54521         }
54522
54523         this.relayEvents(c, ["mousedown","mouseup","mouseover","mouseout","keypress"]);
54524
54525         this.getSelectionModel().init(this);
54526
54527         view.render();
54528
54529         if(this.loadMask){
54530             this.loadMask = new Roo.LoadMask(this.container,
54531                     Roo.apply({store:this.dataSource}, this.loadMask));
54532         }
54533         
54534         
54535         if (this.toolbar && this.toolbar.xtype) {
54536             this.toolbar.container = this.getView().getHeaderPanel(true);
54537             this.toolbar = new Roo.Toolbar(this.toolbar);
54538         }
54539         if (this.footer && this.footer.xtype) {
54540             this.footer.dataSource = this.getDataSource();
54541             this.footer.container = this.getView().getFooterPanel(true);
54542             this.footer = Roo.factory(this.footer, Roo);
54543         }
54544         if (this.dropTarget && this.dropTarget.xtype) {
54545             delete this.dropTarget.xtype;
54546             this.dropTarget =  new Roo.dd.DropTarget(this.getView().mainBody, this.dropTarget);
54547         }
54548         
54549         
54550         this.rendered = true;
54551         this.fireEvent('render', this);
54552         return this;
54553     },
54554
54555         /**
54556          * Reconfigures the grid to use a different Store and Column Model.
54557          * The View will be bound to the new objects and refreshed.
54558          * @param {Roo.data.Store} dataSource The new {@link Roo.data.Store} object
54559          * @param {Roo.grid.ColumnModel} The new {@link Roo.grid.ColumnModel} object
54560          */
54561     reconfigure : function(dataSource, colModel){
54562         if(this.loadMask){
54563             this.loadMask.destroy();
54564             this.loadMask = new Roo.LoadMask(this.container,
54565                     Roo.apply({store:dataSource}, this.loadMask));
54566         }
54567         this.view.bind(dataSource, colModel);
54568         this.dataSource = dataSource;
54569         this.colModel = colModel;
54570         this.view.refresh(true);
54571     },
54572
54573     // private
54574     onKeyDown : function(e){
54575         this.fireEvent("keydown", e);
54576     },
54577
54578     /**
54579      * Destroy this grid.
54580      * @param {Boolean} removeEl True to remove the element
54581      */
54582     destroy : function(removeEl, keepListeners){
54583         if(this.loadMask){
54584             this.loadMask.destroy();
54585         }
54586         var c = this.container;
54587         c.removeAllListeners();
54588         this.view.destroy();
54589         this.colModel.purgeListeners();
54590         if(!keepListeners){
54591             this.purgeListeners();
54592         }
54593         c.update("");
54594         if(removeEl === true){
54595             c.remove();
54596         }
54597     },
54598
54599     // private
54600     processEvent : function(name, e){
54601         // does this fire select???
54602         //Roo.log('grid:processEvent '  + name);
54603         
54604         if (name != 'touchstart' ) {
54605             this.fireEvent(name, e);    
54606         }
54607         
54608         var t = e.getTarget();
54609         var v = this.view;
54610         var header = v.findHeaderIndex(t);
54611         if(header !== false){
54612             var ename = name == 'touchstart' ? 'click' : name;
54613              
54614             this.fireEvent("header" + ename, this, header, e);
54615         }else{
54616             var row = v.findRowIndex(t);
54617             var cell = v.findCellIndex(t);
54618             if (name == 'touchstart') {
54619                 // first touch is always a click.
54620                 // hopefull this happens after selection is updated.?
54621                 name = false;
54622                 
54623                 if (typeof(this.selModel.getSelectedCell) != 'undefined') {
54624                     var cs = this.selModel.getSelectedCell();
54625                     if (row == cs[0] && cell == cs[1]){
54626                         name = 'dblclick';
54627                     }
54628                 }
54629                 if (typeof(this.selModel.getSelections) != 'undefined') {
54630                     var cs = this.selModel.getSelections();
54631                     var ds = this.dataSource;
54632                     if (cs.length == 1 && ds.getAt(row) == cs[0]){
54633                         name = 'dblclick';
54634                     }
54635                 }
54636                 if (!name) {
54637                     return;
54638                 }
54639             }
54640             
54641             
54642             if(row !== false){
54643                 this.fireEvent("row" + name, this, row, e);
54644                 if(cell !== false){
54645                     this.fireEvent("cell" + name, this, row, cell, e);
54646                 }
54647             }
54648         }
54649     },
54650
54651     // private
54652     onClick : function(e){
54653         this.processEvent("click", e);
54654     },
54655    // private
54656     onTouchStart : function(e){
54657         this.processEvent("touchstart", e);
54658     },
54659
54660     // private
54661     onContextMenu : function(e, t){
54662         this.processEvent("contextmenu", e);
54663     },
54664
54665     // private
54666     onDblClick : function(e){
54667         this.processEvent("dblclick", e);
54668     },
54669
54670     // private
54671     walkCells : function(row, col, step, fn, scope){
54672         var cm = this.colModel, clen = cm.getColumnCount();
54673         var ds = this.dataSource, rlen = ds.getCount(), first = true;
54674         if(step < 0){
54675             if(col < 0){
54676                 row--;
54677                 first = false;
54678             }
54679             while(row >= 0){
54680                 if(!first){
54681                     col = clen-1;
54682                 }
54683                 first = false;
54684                 while(col >= 0){
54685                     if(fn.call(scope || this, row, col, cm) === true){
54686                         return [row, col];
54687                     }
54688                     col--;
54689                 }
54690                 row--;
54691             }
54692         } else {
54693             if(col >= clen){
54694                 row++;
54695                 first = false;
54696             }
54697             while(row < rlen){
54698                 if(!first){
54699                     col = 0;
54700                 }
54701                 first = false;
54702                 while(col < clen){
54703                     if(fn.call(scope || this, row, col, cm) === true){
54704                         return [row, col];
54705                     }
54706                     col++;
54707                 }
54708                 row++;
54709             }
54710         }
54711         return null;
54712     },
54713
54714     // private
54715     getSelections : function(){
54716         return this.selModel.getSelections();
54717     },
54718
54719     /**
54720      * Causes the grid to manually recalculate its dimensions. Generally this is done automatically,
54721      * but if manual update is required this method will initiate it.
54722      */
54723     autoSize : function(){
54724         if(this.rendered){
54725             this.view.layout();
54726             if(this.view.adjustForScroll){
54727                 this.view.adjustForScroll();
54728             }
54729         }
54730     },
54731
54732     /**
54733      * Returns the grid's underlying element.
54734      * @return {Element} The element
54735      */
54736     getGridEl : function(){
54737         return this.container;
54738     },
54739
54740     // private for compatibility, overridden by editor grid
54741     stopEditing : function(){},
54742
54743     /**
54744      * Returns the grid's SelectionModel.
54745      * @return {SelectionModel}
54746      */
54747     getSelectionModel : function(){
54748         if(!this.selModel){
54749             this.selModel = new Roo.grid.RowSelectionModel();
54750         }
54751         return this.selModel;
54752     },
54753
54754     /**
54755      * Returns the grid's DataSource.
54756      * @return {DataSource}
54757      */
54758     getDataSource : function(){
54759         return this.dataSource;
54760     },
54761
54762     /**
54763      * Returns the grid's ColumnModel.
54764      * @return {ColumnModel}
54765      */
54766     getColumnModel : function(){
54767         return this.colModel;
54768     },
54769
54770     /**
54771      * Returns the grid's GridView object.
54772      * @return {GridView}
54773      */
54774     getView : function(){
54775         if(!this.view){
54776             this.view = new Roo.grid.GridView(this.viewConfig);
54777         }
54778         return this.view;
54779     },
54780     /**
54781      * Called to get grid's drag proxy text, by default returns this.ddText.
54782      * @return {String}
54783      */
54784     getDragDropText : function(){
54785         var count = this.selModel.getCount();
54786         return String.format(this.ddText, count, count == 1 ? '' : 's');
54787     }
54788 });
54789 /**
54790  * Configures the text is the drag proxy (defaults to "%0 selected row(s)").
54791  * %0 is replaced with the number of selected rows.
54792  * @type String
54793  */
54794 Roo.grid.Grid.prototype.ddText = "{0} selected row{1}";/*
54795  * Based on:
54796  * Ext JS Library 1.1.1
54797  * Copyright(c) 2006-2007, Ext JS, LLC.
54798  *
54799  * Originally Released Under LGPL - original licence link has changed is not relivant.
54800  *
54801  * Fork - LGPL
54802  * <script type="text/javascript">
54803  */
54804  
54805 Roo.grid.AbstractGridView = function(){
54806         this.grid = null;
54807         
54808         this.events = {
54809             "beforerowremoved" : true,
54810             "beforerowsinserted" : true,
54811             "beforerefresh" : true,
54812             "rowremoved" : true,
54813             "rowsinserted" : true,
54814             "rowupdated" : true,
54815             "refresh" : true
54816         };
54817     Roo.grid.AbstractGridView.superclass.constructor.call(this);
54818 };
54819
54820 Roo.extend(Roo.grid.AbstractGridView, Roo.util.Observable, {
54821     rowClass : "x-grid-row",
54822     cellClass : "x-grid-cell",
54823     tdClass : "x-grid-td",
54824     hdClass : "x-grid-hd",
54825     splitClass : "x-grid-hd-split",
54826     
54827     init: function(grid){
54828         this.grid = grid;
54829                 var cid = this.grid.getGridEl().id;
54830         this.colSelector = "#" + cid + " ." + this.cellClass + "-";
54831         this.tdSelector = "#" + cid + " ." + this.tdClass + "-";
54832         this.hdSelector = "#" + cid + " ." + this.hdClass + "-";
54833         this.splitSelector = "#" + cid + " ." + this.splitClass + "-";
54834         },
54835         
54836     getColumnRenderers : function(){
54837         var renderers = [];
54838         var cm = this.grid.colModel;
54839         var colCount = cm.getColumnCount();
54840         for(var i = 0; i < colCount; i++){
54841             renderers[i] = cm.getRenderer(i);
54842         }
54843         return renderers;
54844     },
54845     
54846     getColumnIds : function(){
54847         var ids = [];
54848         var cm = this.grid.colModel;
54849         var colCount = cm.getColumnCount();
54850         for(var i = 0; i < colCount; i++){
54851             ids[i] = cm.getColumnId(i);
54852         }
54853         return ids;
54854     },
54855     
54856     getDataIndexes : function(){
54857         if(!this.indexMap){
54858             this.indexMap = this.buildIndexMap();
54859         }
54860         return this.indexMap.colToData;
54861     },
54862     
54863     getColumnIndexByDataIndex : function(dataIndex){
54864         if(!this.indexMap){
54865             this.indexMap = this.buildIndexMap();
54866         }
54867         return this.indexMap.dataToCol[dataIndex];
54868     },
54869     
54870     /**
54871      * Set a css style for a column dynamically. 
54872      * @param {Number} colIndex The index of the column
54873      * @param {String} name The css property name
54874      * @param {String} value The css value
54875      */
54876     setCSSStyle : function(colIndex, name, value){
54877         var selector = "#" + this.grid.id + " .x-grid-col-" + colIndex;
54878         Roo.util.CSS.updateRule(selector, name, value);
54879     },
54880     
54881     generateRules : function(cm){
54882         var ruleBuf = [], rulesId = this.grid.id + '-cssrules';
54883         Roo.util.CSS.removeStyleSheet(rulesId);
54884         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
54885             var cid = cm.getColumnId(i);
54886             ruleBuf.push(this.colSelector, cid, " {\n", cm.config[i].css, "}\n",
54887                          this.tdSelector, cid, " {\n}\n",
54888                          this.hdSelector, cid, " {\n}\n",
54889                          this.splitSelector, cid, " {\n}\n");
54890         }
54891         return Roo.util.CSS.createStyleSheet(ruleBuf.join(""), rulesId);
54892     }
54893 });/*
54894  * Based on:
54895  * Ext JS Library 1.1.1
54896  * Copyright(c) 2006-2007, Ext JS, LLC.
54897  *
54898  * Originally Released Under LGPL - original licence link has changed is not relivant.
54899  *
54900  * Fork - LGPL
54901  * <script type="text/javascript">
54902  */
54903
54904 // private
54905 // This is a support class used internally by the Grid components
54906 Roo.grid.HeaderDragZone = function(grid, hd, hd2){
54907     this.grid = grid;
54908     this.view = grid.getView();
54909     this.ddGroup = "gridHeader" + this.grid.getGridEl().id;
54910     Roo.grid.HeaderDragZone.superclass.constructor.call(this, hd);
54911     if(hd2){
54912         this.setHandleElId(Roo.id(hd));
54913         this.setOuterHandleElId(Roo.id(hd2));
54914     }
54915     this.scroll = false;
54916 };
54917 Roo.extend(Roo.grid.HeaderDragZone, Roo.dd.DragZone, {
54918     maxDragWidth: 120,
54919     getDragData : function(e){
54920         var t = Roo.lib.Event.getTarget(e);
54921         var h = this.view.findHeaderCell(t);
54922         if(h){
54923             return {ddel: h.firstChild, header:h};
54924         }
54925         return false;
54926     },
54927
54928     onInitDrag : function(e){
54929         this.view.headersDisabled = true;
54930         var clone = this.dragData.ddel.cloneNode(true);
54931         clone.id = Roo.id();
54932         clone.style.width = Math.min(this.dragData.header.offsetWidth,this.maxDragWidth) + "px";
54933         this.proxy.update(clone);
54934         return true;
54935     },
54936
54937     afterValidDrop : function(){
54938         var v = this.view;
54939         setTimeout(function(){
54940             v.headersDisabled = false;
54941         }, 50);
54942     },
54943
54944     afterInvalidDrop : function(){
54945         var v = this.view;
54946         setTimeout(function(){
54947             v.headersDisabled = false;
54948         }, 50);
54949     }
54950 });
54951 /*
54952  * Based on:
54953  * Ext JS Library 1.1.1
54954  * Copyright(c) 2006-2007, Ext JS, LLC.
54955  *
54956  * Originally Released Under LGPL - original licence link has changed is not relivant.
54957  *
54958  * Fork - LGPL
54959  * <script type="text/javascript">
54960  */
54961 // private
54962 // This is a support class used internally by the Grid components
54963 Roo.grid.HeaderDropZone = function(grid, hd, hd2){
54964     this.grid = grid;
54965     this.view = grid.getView();
54966     // split the proxies so they don't interfere with mouse events
54967     this.proxyTop = Roo.DomHelper.append(document.body, {
54968         cls:"col-move-top", html:"&#160;"
54969     }, true);
54970     this.proxyBottom = Roo.DomHelper.append(document.body, {
54971         cls:"col-move-bottom", html:"&#160;"
54972     }, true);
54973     this.proxyTop.hide = this.proxyBottom.hide = function(){
54974         this.setLeftTop(-100,-100);
54975         this.setStyle("visibility", "hidden");
54976     };
54977     this.ddGroup = "gridHeader" + this.grid.getGridEl().id;
54978     // temporarily disabled
54979     //Roo.dd.ScrollManager.register(this.view.scroller.dom);
54980     Roo.grid.HeaderDropZone.superclass.constructor.call(this, grid.getGridEl().dom);
54981 };
54982 Roo.extend(Roo.grid.HeaderDropZone, Roo.dd.DropZone, {
54983     proxyOffsets : [-4, -9],
54984     fly: Roo.Element.fly,
54985
54986     getTargetFromEvent : function(e){
54987         var t = Roo.lib.Event.getTarget(e);
54988         var cindex = this.view.findCellIndex(t);
54989         if(cindex !== false){
54990             return this.view.getHeaderCell(cindex);
54991         }
54992         return null;
54993     },
54994
54995     nextVisible : function(h){
54996         var v = this.view, cm = this.grid.colModel;
54997         h = h.nextSibling;
54998         while(h){
54999             if(!cm.isHidden(v.getCellIndex(h))){
55000                 return h;
55001             }
55002             h = h.nextSibling;
55003         }
55004         return null;
55005     },
55006
55007     prevVisible : function(h){
55008         var v = this.view, cm = this.grid.colModel;
55009         h = h.prevSibling;
55010         while(h){
55011             if(!cm.isHidden(v.getCellIndex(h))){
55012                 return h;
55013             }
55014             h = h.prevSibling;
55015         }
55016         return null;
55017     },
55018
55019     positionIndicator : function(h, n, e){
55020         var x = Roo.lib.Event.getPageX(e);
55021         var r = Roo.lib.Dom.getRegion(n.firstChild);
55022         var px, pt, py = r.top + this.proxyOffsets[1];
55023         if((r.right - x) <= (r.right-r.left)/2){
55024             px = r.right+this.view.borderWidth;
55025             pt = "after";
55026         }else{
55027             px = r.left;
55028             pt = "before";
55029         }
55030         var oldIndex = this.view.getCellIndex(h);
55031         var newIndex = this.view.getCellIndex(n);
55032
55033         if(this.grid.colModel.isFixed(newIndex)){
55034             return false;
55035         }
55036
55037         var locked = this.grid.colModel.isLocked(newIndex);
55038
55039         if(pt == "after"){
55040             newIndex++;
55041         }
55042         if(oldIndex < newIndex){
55043             newIndex--;
55044         }
55045         if(oldIndex == newIndex && (locked == this.grid.colModel.isLocked(oldIndex))){
55046             return false;
55047         }
55048         px +=  this.proxyOffsets[0];
55049         this.proxyTop.setLeftTop(px, py);
55050         this.proxyTop.show();
55051         if(!this.bottomOffset){
55052             this.bottomOffset = this.view.mainHd.getHeight();
55053         }
55054         this.proxyBottom.setLeftTop(px, py+this.proxyTop.dom.offsetHeight+this.bottomOffset);
55055         this.proxyBottom.show();
55056         return pt;
55057     },
55058
55059     onNodeEnter : function(n, dd, e, data){
55060         if(data.header != n){
55061             this.positionIndicator(data.header, n, e);
55062         }
55063     },
55064
55065     onNodeOver : function(n, dd, e, data){
55066         var result = false;
55067         if(data.header != n){
55068             result = this.positionIndicator(data.header, n, e);
55069         }
55070         if(!result){
55071             this.proxyTop.hide();
55072             this.proxyBottom.hide();
55073         }
55074         return result ? this.dropAllowed : this.dropNotAllowed;
55075     },
55076
55077     onNodeOut : function(n, dd, e, data){
55078         this.proxyTop.hide();
55079         this.proxyBottom.hide();
55080     },
55081
55082     onNodeDrop : function(n, dd, e, data){
55083         var h = data.header;
55084         if(h != n){
55085             var cm = this.grid.colModel;
55086             var x = Roo.lib.Event.getPageX(e);
55087             var r = Roo.lib.Dom.getRegion(n.firstChild);
55088             var pt = (r.right - x) <= ((r.right-r.left)/2) ? "after" : "before";
55089             var oldIndex = this.view.getCellIndex(h);
55090             var newIndex = this.view.getCellIndex(n);
55091             var locked = cm.isLocked(newIndex);
55092             if(pt == "after"){
55093                 newIndex++;
55094             }
55095             if(oldIndex < newIndex){
55096                 newIndex--;
55097             }
55098             if(oldIndex == newIndex && (locked == cm.isLocked(oldIndex))){
55099                 return false;
55100             }
55101             cm.setLocked(oldIndex, locked, true);
55102             cm.moveColumn(oldIndex, newIndex);
55103             this.grid.fireEvent("columnmove", oldIndex, newIndex);
55104             return true;
55105         }
55106         return false;
55107     }
55108 });
55109 /*
55110  * Based on:
55111  * Ext JS Library 1.1.1
55112  * Copyright(c) 2006-2007, Ext JS, LLC.
55113  *
55114  * Originally Released Under LGPL - original licence link has changed is not relivant.
55115  *
55116  * Fork - LGPL
55117  * <script type="text/javascript">
55118  */
55119   
55120 /**
55121  * @class Roo.grid.GridView
55122  * @extends Roo.util.Observable
55123  *
55124  * @constructor
55125  * @param {Object} config
55126  */
55127 Roo.grid.GridView = function(config){
55128     Roo.grid.GridView.superclass.constructor.call(this);
55129     this.el = null;
55130
55131     Roo.apply(this, config);
55132 };
55133
55134 Roo.extend(Roo.grid.GridView, Roo.grid.AbstractGridView, {
55135
55136     unselectable :  'unselectable="on"',
55137     unselectableCls :  'x-unselectable',
55138     
55139     
55140     rowClass : "x-grid-row",
55141
55142     cellClass : "x-grid-col",
55143
55144     tdClass : "x-grid-td",
55145
55146     hdClass : "x-grid-hd",
55147
55148     splitClass : "x-grid-split",
55149
55150     sortClasses : ["sort-asc", "sort-desc"],
55151
55152     enableMoveAnim : false,
55153
55154     hlColor: "C3DAF9",
55155
55156     dh : Roo.DomHelper,
55157
55158     fly : Roo.Element.fly,
55159
55160     css : Roo.util.CSS,
55161
55162     borderWidth: 1,
55163
55164     splitOffset: 3,
55165
55166     scrollIncrement : 22,
55167
55168     cellRE: /(?:.*?)x-grid-(?:hd|cell|csplit)-(?:[\d]+)-([\d]+)(?:.*?)/,
55169
55170     findRE: /\s?(?:x-grid-hd|x-grid-col|x-grid-csplit)\s/,
55171
55172     bind : function(ds, cm){
55173         if(this.ds){
55174             this.ds.un("load", this.onLoad, this);
55175             this.ds.un("datachanged", this.onDataChange, this);
55176             this.ds.un("add", this.onAdd, this);
55177             this.ds.un("remove", this.onRemove, this);
55178             this.ds.un("update", this.onUpdate, this);
55179             this.ds.un("clear", this.onClear, this);
55180         }
55181         if(ds){
55182             ds.on("load", this.onLoad, this);
55183             ds.on("datachanged", this.onDataChange, this);
55184             ds.on("add", this.onAdd, this);
55185             ds.on("remove", this.onRemove, this);
55186             ds.on("update", this.onUpdate, this);
55187             ds.on("clear", this.onClear, this);
55188         }
55189         this.ds = ds;
55190
55191         if(this.cm){
55192             this.cm.un("widthchange", this.onColWidthChange, this);
55193             this.cm.un("headerchange", this.onHeaderChange, this);
55194             this.cm.un("hiddenchange", this.onHiddenChange, this);
55195             this.cm.un("columnmoved", this.onColumnMove, this);
55196             this.cm.un("columnlockchange", this.onColumnLock, this);
55197         }
55198         if(cm){
55199             this.generateRules(cm);
55200             cm.on("widthchange", this.onColWidthChange, this);
55201             cm.on("headerchange", this.onHeaderChange, this);
55202             cm.on("hiddenchange", this.onHiddenChange, this);
55203             cm.on("columnmoved", this.onColumnMove, this);
55204             cm.on("columnlockchange", this.onColumnLock, this);
55205         }
55206         this.cm = cm;
55207     },
55208
55209     init: function(grid){
55210         Roo.grid.GridView.superclass.init.call(this, grid);
55211
55212         this.bind(grid.dataSource, grid.colModel);
55213
55214         grid.on("headerclick", this.handleHeaderClick, this);
55215
55216         if(grid.trackMouseOver){
55217             grid.on("mouseover", this.onRowOver, this);
55218             grid.on("mouseout", this.onRowOut, this);
55219         }
55220         grid.cancelTextSelection = function(){};
55221         this.gridId = grid.id;
55222
55223         var tpls = this.templates || {};
55224
55225         if(!tpls.master){
55226             tpls.master = new Roo.Template(
55227                '<div class="x-grid" hidefocus="true">',
55228                 '<a href="#" class="x-grid-focus" tabIndex="-1"></a>',
55229                   '<div class="x-grid-topbar"></div>',
55230                   '<div class="x-grid-scroller"><div></div></div>',
55231                   '<div class="x-grid-locked">',
55232                       '<div class="x-grid-header">{lockedHeader}</div>',
55233                       '<div class="x-grid-body">{lockedBody}</div>',
55234                   "</div>",
55235                   '<div class="x-grid-viewport">',
55236                       '<div class="x-grid-header">{header}</div>',
55237                       '<div class="x-grid-body">{body}</div>',
55238                   "</div>",
55239                   '<div class="x-grid-bottombar"></div>',
55240                  
55241                   '<div class="x-grid-resize-proxy">&#160;</div>',
55242                "</div>"
55243             );
55244             tpls.master.disableformats = true;
55245         }
55246
55247         if(!tpls.header){
55248             tpls.header = new Roo.Template(
55249                '<table border="0" cellspacing="0" cellpadding="0">',
55250                '<tbody><tr class="x-grid-hd-row">{cells}</tr></tbody>',
55251                "</table>{splits}"
55252             );
55253             tpls.header.disableformats = true;
55254         }
55255         tpls.header.compile();
55256
55257         if(!tpls.hcell){
55258             tpls.hcell = new Roo.Template(
55259                 '<td class="x-grid-hd x-grid-td-{id} {cellId}"><div title="{title}" class="x-grid-hd-inner x-grid-hd-{id}">',
55260                 '<div class="x-grid-hd-text ' + this.unselectableCls +  '" ' + this.unselectable +'>{value}<img class="x-grid-sort-icon" src="', Roo.BLANK_IMAGE_URL, '" /></div>',
55261                 "</div></td>"
55262              );
55263              tpls.hcell.disableFormats = true;
55264         }
55265         tpls.hcell.compile();
55266
55267         if(!tpls.hsplit){
55268             tpls.hsplit = new Roo.Template('<div class="x-grid-split {splitId} x-grid-split-{id}" style="{style} ' +
55269                                             this.unselectableCls +  '" ' + this.unselectable +'>&#160;</div>');
55270             tpls.hsplit.disableFormats = true;
55271         }
55272         tpls.hsplit.compile();
55273
55274         if(!tpls.body){
55275             tpls.body = new Roo.Template(
55276                '<table border="0" cellspacing="0" cellpadding="0">',
55277                "<tbody>{rows}</tbody>",
55278                "</table>"
55279             );
55280             tpls.body.disableFormats = true;
55281         }
55282         tpls.body.compile();
55283
55284         if(!tpls.row){
55285             tpls.row = new Roo.Template('<tr class="x-grid-row {alt}">{cells}</tr>');
55286             tpls.row.disableFormats = true;
55287         }
55288         tpls.row.compile();
55289
55290         if(!tpls.cell){
55291             tpls.cell = new Roo.Template(
55292                 '<td class="x-grid-col x-grid-td-{id} {cellId} {css}" tabIndex="0">',
55293                 '<div class="x-grid-col-{id} x-grid-cell-inner"><div class="x-grid-cell-text ' +
55294                     this.unselectableCls +  '" ' + this.unselectable +'" {attr}>{value}</div></div>',
55295                 "</td>"
55296             );
55297             tpls.cell.disableFormats = true;
55298         }
55299         tpls.cell.compile();
55300
55301         this.templates = tpls;
55302     },
55303
55304     // remap these for backwards compat
55305     onColWidthChange : function(){
55306         this.updateColumns.apply(this, arguments);
55307     },
55308     onHeaderChange : function(){
55309         this.updateHeaders.apply(this, arguments);
55310     }, 
55311     onHiddenChange : function(){
55312         this.handleHiddenChange.apply(this, arguments);
55313     },
55314     onColumnMove : function(){
55315         this.handleColumnMove.apply(this, arguments);
55316     },
55317     onColumnLock : function(){
55318         this.handleLockChange.apply(this, arguments);
55319     },
55320
55321     onDataChange : function(){
55322         this.refresh();
55323         this.updateHeaderSortState();
55324     },
55325
55326     onClear : function(){
55327         this.refresh();
55328     },
55329
55330     onUpdate : function(ds, record){
55331         this.refreshRow(record);
55332     },
55333
55334     refreshRow : function(record){
55335         var ds = this.ds, index;
55336         if(typeof record == 'number'){
55337             index = record;
55338             record = ds.getAt(index);
55339         }else{
55340             index = ds.indexOf(record);
55341         }
55342         this.insertRows(ds, index, index, true);
55343         this.onRemove(ds, record, index+1, true);
55344         this.syncRowHeights(index, index);
55345         this.layout();
55346         this.fireEvent("rowupdated", this, index, record);
55347     },
55348
55349     onAdd : function(ds, records, index){
55350         this.insertRows(ds, index, index + (records.length-1));
55351     },
55352
55353     onRemove : function(ds, record, index, isUpdate){
55354         if(isUpdate !== true){
55355             this.fireEvent("beforerowremoved", this, index, record);
55356         }
55357         var bt = this.getBodyTable(), lt = this.getLockedTable();
55358         if(bt.rows[index]){
55359             bt.firstChild.removeChild(bt.rows[index]);
55360         }
55361         if(lt.rows[index]){
55362             lt.firstChild.removeChild(lt.rows[index]);
55363         }
55364         if(isUpdate !== true){
55365             this.stripeRows(index);
55366             this.syncRowHeights(index, index);
55367             this.layout();
55368             this.fireEvent("rowremoved", this, index, record);
55369         }
55370     },
55371
55372     onLoad : function(){
55373         this.scrollToTop();
55374     },
55375
55376     /**
55377      * Scrolls the grid to the top
55378      */
55379     scrollToTop : function(){
55380         if(this.scroller){
55381             this.scroller.dom.scrollTop = 0;
55382             this.syncScroll();
55383         }
55384     },
55385
55386     /**
55387      * Gets a panel in the header of the grid that can be used for toolbars etc.
55388      * After modifying the contents of this panel a call to grid.autoSize() may be
55389      * required to register any changes in size.
55390      * @param {Boolean} doShow By default the header is hidden. Pass true to show the panel
55391      * @return Roo.Element
55392      */
55393     getHeaderPanel : function(doShow){
55394         if(doShow){
55395             this.headerPanel.show();
55396         }
55397         return this.headerPanel;
55398     },
55399
55400     /**
55401      * Gets a panel in the footer of the grid that can be used for toolbars etc.
55402      * After modifying the contents of this panel a call to grid.autoSize() may be
55403      * required to register any changes in size.
55404      * @param {Boolean} doShow By default the footer is hidden. Pass true to show the panel
55405      * @return Roo.Element
55406      */
55407     getFooterPanel : function(doShow){
55408         if(doShow){
55409             this.footerPanel.show();
55410         }
55411         return this.footerPanel;
55412     },
55413
55414     initElements : function(){
55415         var E = Roo.Element;
55416         var el = this.grid.getGridEl().dom.firstChild;
55417         var cs = el.childNodes;
55418
55419         this.el = new E(el);
55420         
55421          this.focusEl = new E(el.firstChild);
55422         this.focusEl.swallowEvent("click", true);
55423         
55424         this.headerPanel = new E(cs[1]);
55425         this.headerPanel.enableDisplayMode("block");
55426
55427         this.scroller = new E(cs[2]);
55428         this.scrollSizer = new E(this.scroller.dom.firstChild);
55429
55430         this.lockedWrap = new E(cs[3]);
55431         this.lockedHd = new E(this.lockedWrap.dom.firstChild);
55432         this.lockedBody = new E(this.lockedWrap.dom.childNodes[1]);
55433
55434         this.mainWrap = new E(cs[4]);
55435         this.mainHd = new E(this.mainWrap.dom.firstChild);
55436         this.mainBody = new E(this.mainWrap.dom.childNodes[1]);
55437
55438         this.footerPanel = new E(cs[5]);
55439         this.footerPanel.enableDisplayMode("block");
55440
55441         this.resizeProxy = new E(cs[6]);
55442
55443         this.headerSelector = String.format(
55444            '#{0} td.x-grid-hd, #{1} td.x-grid-hd',
55445            this.lockedHd.id, this.mainHd.id
55446         );
55447
55448         this.splitterSelector = String.format(
55449            '#{0} div.x-grid-split, #{1} div.x-grid-split',
55450            this.idToCssName(this.lockedHd.id), this.idToCssName(this.mainHd.id)
55451         );
55452     },
55453     idToCssName : function(s)
55454     {
55455         return s.replace(/[^a-z0-9]+/ig, '-');
55456     },
55457
55458     getHeaderCell : function(index){
55459         return Roo.DomQuery.select(this.headerSelector)[index];
55460     },
55461
55462     getHeaderCellMeasure : function(index){
55463         return this.getHeaderCell(index).firstChild;
55464     },
55465
55466     getHeaderCellText : function(index){
55467         return this.getHeaderCell(index).firstChild.firstChild;
55468     },
55469
55470     getLockedTable : function(){
55471         return this.lockedBody.dom.firstChild;
55472     },
55473
55474     getBodyTable : function(){
55475         return this.mainBody.dom.firstChild;
55476     },
55477
55478     getLockedRow : function(index){
55479         return this.getLockedTable().rows[index];
55480     },
55481
55482     getRow : function(index){
55483         return this.getBodyTable().rows[index];
55484     },
55485
55486     getRowComposite : function(index){
55487         if(!this.rowEl){
55488             this.rowEl = new Roo.CompositeElementLite();
55489         }
55490         var els = [], lrow, mrow;
55491         if(lrow = this.getLockedRow(index)){
55492             els.push(lrow);
55493         }
55494         if(mrow = this.getRow(index)){
55495             els.push(mrow);
55496         }
55497         this.rowEl.elements = els;
55498         return this.rowEl;
55499     },
55500     /**
55501      * Gets the 'td' of the cell
55502      * 
55503      * @param {Integer} rowIndex row to select
55504      * @param {Integer} colIndex column to select
55505      * 
55506      * @return {Object} 
55507      */
55508     getCell : function(rowIndex, colIndex){
55509         var locked = this.cm.getLockedCount();
55510         var source;
55511         if(colIndex < locked){
55512             source = this.lockedBody.dom.firstChild;
55513         }else{
55514             source = this.mainBody.dom.firstChild;
55515             colIndex -= locked;
55516         }
55517         return source.rows[rowIndex].childNodes[colIndex];
55518     },
55519
55520     getCellText : function(rowIndex, colIndex){
55521         return this.getCell(rowIndex, colIndex).firstChild.firstChild;
55522     },
55523
55524     getCellBox : function(cell){
55525         var b = this.fly(cell).getBox();
55526         if(Roo.isOpera){ // opera fails to report the Y
55527             b.y = cell.offsetTop + this.mainBody.getY();
55528         }
55529         return b;
55530     },
55531
55532     getCellIndex : function(cell){
55533         var id = String(cell.className).match(this.cellRE);
55534         if(id){
55535             return parseInt(id[1], 10);
55536         }
55537         return 0;
55538     },
55539
55540     findHeaderIndex : function(n){
55541         var r = Roo.fly(n).findParent("td." + this.hdClass, 6);
55542         return r ? this.getCellIndex(r) : false;
55543     },
55544
55545     findHeaderCell : function(n){
55546         var r = Roo.fly(n).findParent("td." + this.hdClass, 6);
55547         return r ? r : false;
55548     },
55549
55550     findRowIndex : function(n){
55551         if(!n){
55552             return false;
55553         }
55554         var r = Roo.fly(n).findParent("tr." + this.rowClass, 6);
55555         return r ? r.rowIndex : false;
55556     },
55557
55558     findCellIndex : function(node){
55559         var stop = this.el.dom;
55560         while(node && node != stop){
55561             if(this.findRE.test(node.className)){
55562                 return this.getCellIndex(node);
55563             }
55564             node = node.parentNode;
55565         }
55566         return false;
55567     },
55568
55569     getColumnId : function(index){
55570         return this.cm.getColumnId(index);
55571     },
55572
55573     getSplitters : function()
55574     {
55575         if(this.splitterSelector){
55576            return Roo.DomQuery.select(this.splitterSelector);
55577         }else{
55578             return null;
55579       }
55580     },
55581
55582     getSplitter : function(index){
55583         return this.getSplitters()[index];
55584     },
55585
55586     onRowOver : function(e, t){
55587         var row;
55588         if((row = this.findRowIndex(t)) !== false){
55589             this.getRowComposite(row).addClass("x-grid-row-over");
55590         }
55591     },
55592
55593     onRowOut : function(e, t){
55594         var row;
55595         if((row = this.findRowIndex(t)) !== false && row !== this.findRowIndex(e.getRelatedTarget())){
55596             this.getRowComposite(row).removeClass("x-grid-row-over");
55597         }
55598     },
55599
55600     renderHeaders : function(){
55601         var cm = this.cm;
55602         var ct = this.templates.hcell, ht = this.templates.header, st = this.templates.hsplit;
55603         var cb = [], lb = [], sb = [], lsb = [], p = {};
55604         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
55605             p.cellId = "x-grid-hd-0-" + i;
55606             p.splitId = "x-grid-csplit-0-" + i;
55607             p.id = cm.getColumnId(i);
55608             p.value = cm.getColumnHeader(i) || "";
55609             p.title = cm.getColumnTooltip(i) || (''+p.value).match(/\</)  ? '' :  p.value  || "";
55610             p.style = (this.grid.enableColumnResize === false || !cm.isResizable(i) || cm.isFixed(i)) ? 'cursor:default' : '';
55611             if(!cm.isLocked(i)){
55612                 cb[cb.length] = ct.apply(p);
55613                 sb[sb.length] = st.apply(p);
55614             }else{
55615                 lb[lb.length] = ct.apply(p);
55616                 lsb[lsb.length] = st.apply(p);
55617             }
55618         }
55619         return [ht.apply({cells: lb.join(""), splits:lsb.join("")}),
55620                 ht.apply({cells: cb.join(""), splits:sb.join("")})];
55621     },
55622
55623     updateHeaders : function(){
55624         var html = this.renderHeaders();
55625         this.lockedHd.update(html[0]);
55626         this.mainHd.update(html[1]);
55627     },
55628
55629     /**
55630      * Focuses the specified row.
55631      * @param {Number} row The row index
55632      */
55633     focusRow : function(row)
55634     {
55635         //Roo.log('GridView.focusRow');
55636         var x = this.scroller.dom.scrollLeft;
55637         this.focusCell(row, 0, false);
55638         this.scroller.dom.scrollLeft = x;
55639     },
55640
55641     /**
55642      * Focuses the specified cell.
55643      * @param {Number} row The row index
55644      * @param {Number} col The column index
55645      * @param {Boolean} hscroll false to disable horizontal scrolling
55646      */
55647     focusCell : function(row, col, hscroll)
55648     {
55649         //Roo.log('GridView.focusCell');
55650         var el = this.ensureVisible(row, col, hscroll);
55651         this.focusEl.alignTo(el, "tl-tl");
55652         if(Roo.isGecko){
55653             this.focusEl.focus();
55654         }else{
55655             this.focusEl.focus.defer(1, this.focusEl);
55656         }
55657     },
55658
55659     /**
55660      * Scrolls the specified cell into view
55661      * @param {Number} row The row index
55662      * @param {Number} col The column index
55663      * @param {Boolean} hscroll false to disable horizontal scrolling
55664      */
55665     ensureVisible : function(row, col, hscroll)
55666     {
55667         //Roo.log('GridView.ensureVisible,' + row + ',' + col);
55668         //return null; //disable for testing.
55669         if(typeof row != "number"){
55670             row = row.rowIndex;
55671         }
55672         if(row < 0 && row >= this.ds.getCount()){
55673             return  null;
55674         }
55675         col = (col !== undefined ? col : 0);
55676         var cm = this.grid.colModel;
55677         while(cm.isHidden(col)){
55678             col++;
55679         }
55680
55681         var el = this.getCell(row, col);
55682         if(!el){
55683             return null;
55684         }
55685         var c = this.scroller.dom;
55686
55687         var ctop = parseInt(el.offsetTop, 10);
55688         var cleft = parseInt(el.offsetLeft, 10);
55689         var cbot = ctop + el.offsetHeight;
55690         var cright = cleft + el.offsetWidth;
55691         
55692         var ch = c.clientHeight - this.mainHd.dom.offsetHeight;
55693         var stop = parseInt(c.scrollTop, 10);
55694         var sleft = parseInt(c.scrollLeft, 10);
55695         var sbot = stop + ch;
55696         var sright = sleft + c.clientWidth;
55697         /*
55698         Roo.log('GridView.ensureVisible:' +
55699                 ' ctop:' + ctop +
55700                 ' c.clientHeight:' + c.clientHeight +
55701                 ' this.mainHd.dom.offsetHeight:' + this.mainHd.dom.offsetHeight +
55702                 ' stop:' + stop +
55703                 ' cbot:' + cbot +
55704                 ' sbot:' + sbot +
55705                 ' ch:' + ch  
55706                 );
55707         */
55708         if(ctop < stop){
55709              c.scrollTop = ctop;
55710             //Roo.log("set scrolltop to ctop DISABLE?");
55711         }else if(cbot > sbot){
55712             //Roo.log("set scrolltop to cbot-ch");
55713             c.scrollTop = cbot-ch;
55714         }
55715         
55716         if(hscroll !== false){
55717             if(cleft < sleft){
55718                 c.scrollLeft = cleft;
55719             }else if(cright > sright){
55720                 c.scrollLeft = cright-c.clientWidth;
55721             }
55722         }
55723          
55724         return el;
55725     },
55726
55727     updateColumns : function(){
55728         this.grid.stopEditing();
55729         var cm = this.grid.colModel, colIds = this.getColumnIds();
55730         //var totalWidth = cm.getTotalWidth();
55731         var pos = 0;
55732         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
55733             //if(cm.isHidden(i)) continue;
55734             var w = cm.getColumnWidth(i);
55735             this.css.updateRule(this.colSelector+this.idToCssName(colIds[i]), "width", (w - this.borderWidth) + "px");
55736             this.css.updateRule(this.hdSelector+this.idToCssName(colIds[i]), "width", (w - this.borderWidth) + "px");
55737         }
55738         this.updateSplitters();
55739     },
55740
55741     generateRules : function(cm){
55742         var ruleBuf = [], rulesId = this.idToCssName(this.grid.id)+ '-cssrules';
55743         Roo.util.CSS.removeStyleSheet(rulesId);
55744         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
55745             var cid = cm.getColumnId(i);
55746             var align = '';
55747             if(cm.config[i].align){
55748                 align = 'text-align:'+cm.config[i].align+';';
55749             }
55750             var hidden = '';
55751             if(cm.isHidden(i)){
55752                 hidden = 'display:none;';
55753             }
55754             var width = "width:" + (cm.getColumnWidth(i) - this.borderWidth) + "px;";
55755             ruleBuf.push(
55756                     this.colSelector, cid, " {\n", cm.config[i].css, align, width, "\n}\n",
55757                     this.hdSelector, cid, " {\n", align, width, "}\n",
55758                     this.tdSelector, cid, " {\n",hidden,"\n}\n",
55759                     this.splitSelector, cid, " {\n", hidden , "\n}\n");
55760         }
55761         return Roo.util.CSS.createStyleSheet(ruleBuf.join(""), rulesId);
55762     },
55763
55764     updateSplitters : function(){
55765         var cm = this.cm, s = this.getSplitters();
55766         if(s){ // splitters not created yet
55767             var pos = 0, locked = true;
55768             for(var i = 0, len = cm.getColumnCount(); i < len; i++){
55769                 if(cm.isHidden(i)) {
55770                     continue;
55771                 }
55772                 var w = cm.getColumnWidth(i); // make sure it's a number
55773                 if(!cm.isLocked(i) && locked){
55774                     pos = 0;
55775                     locked = false;
55776                 }
55777                 pos += w;
55778                 s[i].style.left = (pos-this.splitOffset) + "px";
55779             }
55780         }
55781     },
55782
55783     handleHiddenChange : function(colModel, colIndex, hidden){
55784         if(hidden){
55785             this.hideColumn(colIndex);
55786         }else{
55787             this.unhideColumn(colIndex);
55788         }
55789     },
55790
55791     hideColumn : function(colIndex){
55792         var cid = this.getColumnId(colIndex);
55793         this.css.updateRule(this.tdSelector+this.idToCssName(cid), "display", "none");
55794         this.css.updateRule(this.splitSelector+this.idToCssName(cid), "display", "none");
55795         if(Roo.isSafari){
55796             this.updateHeaders();
55797         }
55798         this.updateSplitters();
55799         this.layout();
55800     },
55801
55802     unhideColumn : function(colIndex){
55803         var cid = this.getColumnId(colIndex);
55804         this.css.updateRule(this.tdSelector+this.idToCssName(cid), "display", "");
55805         this.css.updateRule(this.splitSelector+this.idToCssName(cid), "display", "");
55806
55807         if(Roo.isSafari){
55808             this.updateHeaders();
55809         }
55810         this.updateSplitters();
55811         this.layout();
55812     },
55813
55814     insertRows : function(dm, firstRow, lastRow, isUpdate){
55815         if(firstRow == 0 && lastRow == dm.getCount()-1){
55816             this.refresh();
55817         }else{
55818             if(!isUpdate){
55819                 this.fireEvent("beforerowsinserted", this, firstRow, lastRow);
55820             }
55821             var s = this.getScrollState();
55822             var markup = this.renderRows(firstRow, lastRow);
55823             this.bufferRows(markup[0], this.getLockedTable(), firstRow);
55824             this.bufferRows(markup[1], this.getBodyTable(), firstRow);
55825             this.restoreScroll(s);
55826             if(!isUpdate){
55827                 this.fireEvent("rowsinserted", this, firstRow, lastRow);
55828                 this.syncRowHeights(firstRow, lastRow);
55829                 this.stripeRows(firstRow);
55830                 this.layout();
55831             }
55832         }
55833     },
55834
55835     bufferRows : function(markup, target, index){
55836         var before = null, trows = target.rows, tbody = target.tBodies[0];
55837         if(index < trows.length){
55838             before = trows[index];
55839         }
55840         var b = document.createElement("div");
55841         b.innerHTML = "<table><tbody>"+markup+"</tbody></table>";
55842         var rows = b.firstChild.rows;
55843         for(var i = 0, len = rows.length; i < len; i++){
55844             if(before){
55845                 tbody.insertBefore(rows[0], before);
55846             }else{
55847                 tbody.appendChild(rows[0]);
55848             }
55849         }
55850         b.innerHTML = "";
55851         b = null;
55852     },
55853
55854     deleteRows : function(dm, firstRow, lastRow){
55855         if(dm.getRowCount()<1){
55856             this.fireEvent("beforerefresh", this);
55857             this.mainBody.update("");
55858             this.lockedBody.update("");
55859             this.fireEvent("refresh", this);
55860         }else{
55861             this.fireEvent("beforerowsdeleted", this, firstRow, lastRow);
55862             var bt = this.getBodyTable();
55863             var tbody = bt.firstChild;
55864             var rows = bt.rows;
55865             for(var rowIndex = firstRow; rowIndex <= lastRow; rowIndex++){
55866                 tbody.removeChild(rows[firstRow]);
55867             }
55868             this.stripeRows(firstRow);
55869             this.fireEvent("rowsdeleted", this, firstRow, lastRow);
55870         }
55871     },
55872
55873     updateRows : function(dataSource, firstRow, lastRow){
55874         var s = this.getScrollState();
55875         this.refresh();
55876         this.restoreScroll(s);
55877     },
55878
55879     handleSort : function(dataSource, sortColumnIndex, sortDir, noRefresh){
55880         if(!noRefresh){
55881            this.refresh();
55882         }
55883         this.updateHeaderSortState();
55884     },
55885
55886     getScrollState : function(){
55887         
55888         var sb = this.scroller.dom;
55889         return {left: sb.scrollLeft, top: sb.scrollTop};
55890     },
55891
55892     stripeRows : function(startRow){
55893         if(!this.grid.stripeRows || this.ds.getCount() < 1){
55894             return;
55895         }
55896         startRow = startRow || 0;
55897         var rows = this.getBodyTable().rows;
55898         var lrows = this.getLockedTable().rows;
55899         var cls = ' x-grid-row-alt ';
55900         for(var i = startRow, len = rows.length; i < len; i++){
55901             var row = rows[i], lrow = lrows[i];
55902             var isAlt = ((i+1) % 2 == 0);
55903             var hasAlt = (' '+row.className + ' ').indexOf(cls) != -1;
55904             if(isAlt == hasAlt){
55905                 continue;
55906             }
55907             if(isAlt){
55908                 row.className += " x-grid-row-alt";
55909             }else{
55910                 row.className = row.className.replace("x-grid-row-alt", "");
55911             }
55912             if(lrow){
55913                 lrow.className = row.className;
55914             }
55915         }
55916     },
55917
55918     restoreScroll : function(state){
55919         //Roo.log('GridView.restoreScroll');
55920         var sb = this.scroller.dom;
55921         sb.scrollLeft = state.left;
55922         sb.scrollTop = state.top;
55923         this.syncScroll();
55924     },
55925
55926     syncScroll : function(){
55927         //Roo.log('GridView.syncScroll');
55928         var sb = this.scroller.dom;
55929         var sh = this.mainHd.dom;
55930         var bs = this.mainBody.dom;
55931         var lv = this.lockedBody.dom;
55932         sh.scrollLeft = bs.scrollLeft = sb.scrollLeft;
55933         lv.scrollTop = bs.scrollTop = sb.scrollTop;
55934     },
55935
55936     handleScroll : function(e){
55937         this.syncScroll();
55938         var sb = this.scroller.dom;
55939         this.grid.fireEvent("bodyscroll", sb.scrollLeft, sb.scrollTop);
55940         e.stopEvent();
55941     },
55942
55943     handleWheel : function(e){
55944         var d = e.getWheelDelta();
55945         this.scroller.dom.scrollTop -= d*22;
55946         // set this here to prevent jumpy scrolling on large tables
55947         this.lockedBody.dom.scrollTop = this.mainBody.dom.scrollTop = this.scroller.dom.scrollTop;
55948         e.stopEvent();
55949     },
55950
55951     renderRows : function(startRow, endRow){
55952         // pull in all the crap needed to render rows
55953         var g = this.grid, cm = g.colModel, ds = g.dataSource, stripe = g.stripeRows;
55954         var colCount = cm.getColumnCount();
55955
55956         if(ds.getCount() < 1){
55957             return ["", ""];
55958         }
55959
55960         // build a map for all the columns
55961         var cs = [];
55962         for(var i = 0; i < colCount; i++){
55963             var name = cm.getDataIndex(i);
55964             cs[i] = {
55965                 name : typeof name == 'undefined' ? ds.fields.get(i).name : name,
55966                 renderer : cm.getRenderer(i),
55967                 id : cm.getColumnId(i),
55968                 locked : cm.isLocked(i),
55969                 has_editor : cm.isCellEditable(i)
55970             };
55971         }
55972
55973         startRow = startRow || 0;
55974         endRow = typeof endRow == "undefined"? ds.getCount()-1 : endRow;
55975
55976         // records to render
55977         var rs = ds.getRange(startRow, endRow);
55978
55979         return this.doRender(cs, rs, ds, startRow, colCount, stripe);
55980     },
55981
55982     // As much as I hate to duplicate code, this was branched because FireFox really hates
55983     // [].join("") on strings. The performance difference was substantial enough to
55984     // branch this function
55985     doRender : Roo.isGecko ?
55986             function(cs, rs, ds, startRow, colCount, stripe){
55987                 var ts = this.templates, ct = ts.cell, rt = ts.row;
55988                 // buffers
55989                 var buf = "", lbuf = "", cb, lcb, c, p = {}, rp = {}, r, rowIndex;
55990                 
55991                 var hasListener = this.grid.hasListener('rowclass');
55992                 var rowcfg = {};
55993                 for(var j = 0, len = rs.length; j < len; j++){
55994                     r = rs[j]; cb = ""; lcb = ""; rowIndex = (j+startRow);
55995                     for(var i = 0; i < colCount; i++){
55996                         c = cs[i];
55997                         p.cellId = "x-grid-cell-" + rowIndex + "-" + i;
55998                         p.id = c.id;
55999                         p.css = p.attr = "";
56000                         p.value = c.renderer(r.data[c.name], p, r, rowIndex, i, ds);
56001                         if(p.value == undefined || p.value === "") {
56002                             p.value = "&#160;";
56003                         }
56004                         if(c.has_editor){
56005                             p.css += ' x-grid-editable-cell';
56006                         }
56007                         if(c.dirty && typeof r.modified[c.name] !== 'undefined'){
56008                             p.css +=  ' x-grid-dirty-cell';
56009                         }
56010                         var markup = ct.apply(p);
56011                         if(!c.locked){
56012                             cb+= markup;
56013                         }else{
56014                             lcb+= markup;
56015                         }
56016                     }
56017                     var alt = [];
56018                     if(stripe && ((rowIndex+1) % 2 == 0)){
56019                         alt.push("x-grid-row-alt")
56020                     }
56021                     if(r.dirty){
56022                         alt.push(  " x-grid-dirty-row");
56023                     }
56024                     rp.cells = lcb;
56025                     if(this.getRowClass){
56026                         alt.push(this.getRowClass(r, rowIndex));
56027                     }
56028                     if (hasListener) {
56029                         rowcfg = {
56030                              
56031                             record: r,
56032                             rowIndex : rowIndex,
56033                             rowClass : ''
56034                         };
56035                         this.grid.fireEvent('rowclass', this, rowcfg);
56036                         alt.push(rowcfg.rowClass);
56037                     }
56038                     rp.alt = alt.join(" ");
56039                     lbuf+= rt.apply(rp);
56040                     rp.cells = cb;
56041                     buf+=  rt.apply(rp);
56042                 }
56043                 return [lbuf, buf];
56044             } :
56045             function(cs, rs, ds, startRow, colCount, stripe){
56046                 var ts = this.templates, ct = ts.cell, rt = ts.row;
56047                 // buffers
56048                 var buf = [], lbuf = [], cb, lcb, c, p = {}, rp = {}, r, rowIndex;
56049                 var hasListener = this.grid.hasListener('rowclass');
56050  
56051                 var rowcfg = {};
56052                 for(var j = 0, len = rs.length; j < len; j++){
56053                     r = rs[j]; cb = []; lcb = []; rowIndex = (j+startRow);
56054                     for(var i = 0; i < colCount; i++){
56055                         c = cs[i];
56056                         p.cellId = "x-grid-cell-" + rowIndex + "-" + i;
56057                         p.id = c.id;
56058                         p.css = p.attr = "";
56059                         p.value = c.renderer(r.data[c.name], p, r, rowIndex, i, ds);
56060                         if(p.value == undefined || p.value === "") {
56061                             p.value = "&#160;";
56062                         }
56063                         //Roo.log(c);
56064                          if(c.has_editor){
56065                             p.css += ' x-grid-editable-cell';
56066                         }
56067                         if(r.dirty && typeof r.modified[c.name] !== 'undefined'){
56068                             p.css += ' x-grid-dirty-cell' 
56069                         }
56070                         
56071                         var markup = ct.apply(p);
56072                         if(!c.locked){
56073                             cb[cb.length] = markup;
56074                         }else{
56075                             lcb[lcb.length] = markup;
56076                         }
56077                     }
56078                     var alt = [];
56079                     if(stripe && ((rowIndex+1) % 2 == 0)){
56080                         alt.push( "x-grid-row-alt");
56081                     }
56082                     if(r.dirty){
56083                         alt.push(" x-grid-dirty-row");
56084                     }
56085                     rp.cells = lcb;
56086                     if(this.getRowClass){
56087                         alt.push( this.getRowClass(r, rowIndex));
56088                     }
56089                     if (hasListener) {
56090                         rowcfg = {
56091                              
56092                             record: r,
56093                             rowIndex : rowIndex,
56094                             rowClass : ''
56095                         };
56096                         this.grid.fireEvent('rowclass', this, rowcfg);
56097                         alt.push(rowcfg.rowClass);
56098                     }
56099                     
56100                     rp.alt = alt.join(" ");
56101                     rp.cells = lcb.join("");
56102                     lbuf[lbuf.length] = rt.apply(rp);
56103                     rp.cells = cb.join("");
56104                     buf[buf.length] =  rt.apply(rp);
56105                 }
56106                 return [lbuf.join(""), buf.join("")];
56107             },
56108
56109     renderBody : function(){
56110         var markup = this.renderRows();
56111         var bt = this.templates.body;
56112         return [bt.apply({rows: markup[0]}), bt.apply({rows: markup[1]})];
56113     },
56114
56115     /**
56116      * Refreshes the grid
56117      * @param {Boolean} headersToo
56118      */
56119     refresh : function(headersToo){
56120         this.fireEvent("beforerefresh", this);
56121         this.grid.stopEditing();
56122         var result = this.renderBody();
56123         this.lockedBody.update(result[0]);
56124         this.mainBody.update(result[1]);
56125         if(headersToo === true){
56126             this.updateHeaders();
56127             this.updateColumns();
56128             this.updateSplitters();
56129             this.updateHeaderSortState();
56130         }
56131         this.syncRowHeights();
56132         this.layout();
56133         this.fireEvent("refresh", this);
56134     },
56135
56136     handleColumnMove : function(cm, oldIndex, newIndex){
56137         this.indexMap = null;
56138         var s = this.getScrollState();
56139         this.refresh(true);
56140         this.restoreScroll(s);
56141         this.afterMove(newIndex);
56142     },
56143
56144     afterMove : function(colIndex){
56145         if(this.enableMoveAnim && Roo.enableFx){
56146             this.fly(this.getHeaderCell(colIndex).firstChild).highlight(this.hlColor);
56147         }
56148         // if multisort - fix sortOrder, and reload..
56149         if (this.grid.dataSource.multiSort) {
56150             // the we can call sort again..
56151             var dm = this.grid.dataSource;
56152             var cm = this.grid.colModel;
56153             var so = [];
56154             for(var i = 0; i < cm.config.length; i++ ) {
56155                 
56156                 if ((typeof(dm.sortToggle[cm.config[i].dataIndex]) == 'undefined')) {
56157                     continue; // dont' bother, it's not in sort list or being set.
56158                 }
56159                 
56160                 so.push(cm.config[i].dataIndex);
56161             };
56162             dm.sortOrder = so;
56163             dm.load(dm.lastOptions);
56164             
56165             
56166         }
56167         
56168     },
56169
56170     updateCell : function(dm, rowIndex, dataIndex){
56171         var colIndex = this.getColumnIndexByDataIndex(dataIndex);
56172         if(typeof colIndex == "undefined"){ // not present in grid
56173             return;
56174         }
56175         var cm = this.grid.colModel;
56176         var cell = this.getCell(rowIndex, colIndex);
56177         var cellText = this.getCellText(rowIndex, colIndex);
56178
56179         var p = {
56180             cellId : "x-grid-cell-" + rowIndex + "-" + colIndex,
56181             id : cm.getColumnId(colIndex),
56182             css: colIndex == cm.getColumnCount()-1 ? "x-grid-col-last" : ""
56183         };
56184         var renderer = cm.getRenderer(colIndex);
56185         var val = renderer(dm.getValueAt(rowIndex, dataIndex), p, rowIndex, colIndex, dm);
56186         if(typeof val == "undefined" || val === "") {
56187             val = "&#160;";
56188         }
56189         cellText.innerHTML = val;
56190         cell.className = this.cellClass + " " + this.idToCssName(p.cellId) + " " + p.css;
56191         this.syncRowHeights(rowIndex, rowIndex);
56192     },
56193
56194     calcColumnWidth : function(colIndex, maxRowsToMeasure){
56195         var maxWidth = 0;
56196         if(this.grid.autoSizeHeaders){
56197             var h = this.getHeaderCellMeasure(colIndex);
56198             maxWidth = Math.max(maxWidth, h.scrollWidth);
56199         }
56200         var tb, index;
56201         if(this.cm.isLocked(colIndex)){
56202             tb = this.getLockedTable();
56203             index = colIndex;
56204         }else{
56205             tb = this.getBodyTable();
56206             index = colIndex - this.cm.getLockedCount();
56207         }
56208         if(tb && tb.rows){
56209             var rows = tb.rows;
56210             var stopIndex = Math.min(maxRowsToMeasure || rows.length, rows.length);
56211             for(var i = 0; i < stopIndex; i++){
56212                 var cell = rows[i].childNodes[index].firstChild;
56213                 maxWidth = Math.max(maxWidth, cell.scrollWidth);
56214             }
56215         }
56216         return maxWidth + /*margin for error in IE*/ 5;
56217     },
56218     /**
56219      * Autofit a column to its content.
56220      * @param {Number} colIndex
56221      * @param {Boolean} forceMinSize true to force the column to go smaller if possible
56222      */
56223      autoSizeColumn : function(colIndex, forceMinSize, suppressEvent){
56224          if(this.cm.isHidden(colIndex)){
56225              return; // can't calc a hidden column
56226          }
56227         if(forceMinSize){
56228             var cid = this.cm.getColumnId(colIndex);
56229             this.css.updateRule(this.colSelector +this.idToCssName( cid), "width", this.grid.minColumnWidth + "px");
56230            if(this.grid.autoSizeHeaders){
56231                this.css.updateRule(this.hdSelector + this.idToCssName(cid), "width", this.grid.minColumnWidth + "px");
56232            }
56233         }
56234         var newWidth = this.calcColumnWidth(colIndex);
56235         this.cm.setColumnWidth(colIndex,
56236             Math.max(this.grid.minColumnWidth, newWidth), suppressEvent);
56237         if(!suppressEvent){
56238             this.grid.fireEvent("columnresize", colIndex, newWidth);
56239         }
56240     },
56241
56242     /**
56243      * Autofits all columns to their content and then expands to fit any extra space in the grid
56244      */
56245      autoSizeColumns : function(){
56246         var cm = this.grid.colModel;
56247         var colCount = cm.getColumnCount();
56248         for(var i = 0; i < colCount; i++){
56249             this.autoSizeColumn(i, true, true);
56250         }
56251         if(cm.getTotalWidth() < this.scroller.dom.clientWidth){
56252             this.fitColumns();
56253         }else{
56254             this.updateColumns();
56255             this.layout();
56256         }
56257     },
56258
56259     /**
56260      * Autofits all columns to the grid's width proportionate with their current size
56261      * @param {Boolean} reserveScrollSpace Reserve space for a scrollbar
56262      */
56263     fitColumns : function(reserveScrollSpace){
56264         var cm = this.grid.colModel;
56265         var colCount = cm.getColumnCount();
56266         var cols = [];
56267         var width = 0;
56268         var i, w;
56269         for (i = 0; i < colCount; i++){
56270             if(!cm.isHidden(i) && !cm.isFixed(i)){
56271                 w = cm.getColumnWidth(i);
56272                 cols.push(i);
56273                 cols.push(w);
56274                 width += w;
56275             }
56276         }
56277         var avail = Math.min(this.scroller.dom.clientWidth, this.el.getWidth());
56278         if(reserveScrollSpace){
56279             avail -= 17;
56280         }
56281         var frac = (avail - cm.getTotalWidth())/width;
56282         while (cols.length){
56283             w = cols.pop();
56284             i = cols.pop();
56285             cm.setColumnWidth(i, Math.floor(w + w*frac), true);
56286         }
56287         this.updateColumns();
56288         this.layout();
56289     },
56290
56291     onRowSelect : function(rowIndex){
56292         var row = this.getRowComposite(rowIndex);
56293         row.addClass("x-grid-row-selected");
56294     },
56295
56296     onRowDeselect : function(rowIndex){
56297         var row = this.getRowComposite(rowIndex);
56298         row.removeClass("x-grid-row-selected");
56299     },
56300
56301     onCellSelect : function(row, col){
56302         var cell = this.getCell(row, col);
56303         if(cell){
56304             Roo.fly(cell).addClass("x-grid-cell-selected");
56305         }
56306     },
56307
56308     onCellDeselect : function(row, col){
56309         var cell = this.getCell(row, col);
56310         if(cell){
56311             Roo.fly(cell).removeClass("x-grid-cell-selected");
56312         }
56313     },
56314
56315     updateHeaderSortState : function(){
56316         
56317         // sort state can be single { field: xxx, direction : yyy}
56318         // or   { xxx=>ASC , yyy : DESC ..... }
56319         
56320         var mstate = {};
56321         if (!this.ds.multiSort) { 
56322             var state = this.ds.getSortState();
56323             if(!state){
56324                 return;
56325             }
56326             mstate[state.field] = state.direction;
56327             // FIXME... - this is not used here.. but might be elsewhere..
56328             this.sortState = state;
56329             
56330         } else {
56331             mstate = this.ds.sortToggle;
56332         }
56333         //remove existing sort classes..
56334         
56335         var sc = this.sortClasses;
56336         var hds = this.el.select(this.headerSelector).removeClass(sc);
56337         
56338         for(var f in mstate) {
56339         
56340             var sortColumn = this.cm.findColumnIndex(f);
56341             
56342             if(sortColumn != -1){
56343                 var sortDir = mstate[f];        
56344                 hds.item(sortColumn).addClass(sc[sortDir == "DESC" ? 1 : 0]);
56345             }
56346         }
56347         
56348          
56349         
56350     },
56351
56352
56353     handleHeaderClick : function(g, index,e){
56354         
56355         Roo.log("header click");
56356         
56357         if (Roo.isTouch) {
56358             // touch events on header are handled by context
56359             this.handleHdCtx(g,index,e);
56360             return;
56361         }
56362         
56363         
56364         if(this.headersDisabled){
56365             return;
56366         }
56367         var dm = g.dataSource, cm = g.colModel;
56368         if(!cm.isSortable(index)){
56369             return;
56370         }
56371         g.stopEditing();
56372         
56373         if (dm.multiSort) {
56374             // update the sortOrder
56375             var so = [];
56376             for(var i = 0; i < cm.config.length; i++ ) {
56377                 
56378                 if ((typeof(dm.sortToggle[cm.config[i].dataIndex]) == 'undefined') && (index != i)) {
56379                     continue; // dont' bother, it's not in sort list or being set.
56380                 }
56381                 
56382                 so.push(cm.config[i].dataIndex);
56383             };
56384             dm.sortOrder = so;
56385         }
56386         
56387         
56388         dm.sort(cm.getDataIndex(index));
56389     },
56390
56391
56392     destroy : function(){
56393         if(this.colMenu){
56394             this.colMenu.removeAll();
56395             Roo.menu.MenuMgr.unregister(this.colMenu);
56396             this.colMenu.getEl().remove();
56397             delete this.colMenu;
56398         }
56399         if(this.hmenu){
56400             this.hmenu.removeAll();
56401             Roo.menu.MenuMgr.unregister(this.hmenu);
56402             this.hmenu.getEl().remove();
56403             delete this.hmenu;
56404         }
56405         if(this.grid.enableColumnMove){
56406             var dds = Roo.dd.DDM.ids['gridHeader' + this.grid.getGridEl().id];
56407             if(dds){
56408                 for(var dd in dds){
56409                     if(!dds[dd].config.isTarget && dds[dd].dragElId){
56410                         var elid = dds[dd].dragElId;
56411                         dds[dd].unreg();
56412                         Roo.get(elid).remove();
56413                     } else if(dds[dd].config.isTarget){
56414                         dds[dd].proxyTop.remove();
56415                         dds[dd].proxyBottom.remove();
56416                         dds[dd].unreg();
56417                     }
56418                     if(Roo.dd.DDM.locationCache[dd]){
56419                         delete Roo.dd.DDM.locationCache[dd];
56420                     }
56421                 }
56422                 delete Roo.dd.DDM.ids['gridHeader' + this.grid.getGridEl().id];
56423             }
56424         }
56425         Roo.util.CSS.removeStyleSheet(this.idToCssName(this.grid.id) + '-cssrules');
56426         this.bind(null, null);
56427         Roo.EventManager.removeResizeListener(this.onWindowResize, this);
56428     },
56429
56430     handleLockChange : function(){
56431         this.refresh(true);
56432     },
56433
56434     onDenyColumnLock : function(){
56435
56436     },
56437
56438     onDenyColumnHide : function(){
56439
56440     },
56441
56442     handleHdMenuClick : function(item){
56443         var index = this.hdCtxIndex;
56444         var cm = this.cm, ds = this.ds;
56445         switch(item.id){
56446             case "asc":
56447                 ds.sort(cm.getDataIndex(index), "ASC");
56448                 break;
56449             case "desc":
56450                 ds.sort(cm.getDataIndex(index), "DESC");
56451                 break;
56452             case "lock":
56453                 var lc = cm.getLockedCount();
56454                 if(cm.getColumnCount(true) <= lc+1){
56455                     this.onDenyColumnLock();
56456                     return;
56457                 }
56458                 if(lc != index){
56459                     cm.setLocked(index, true, true);
56460                     cm.moveColumn(index, lc);
56461                     this.grid.fireEvent("columnmove", index, lc);
56462                 }else{
56463                     cm.setLocked(index, true);
56464                 }
56465             break;
56466             case "unlock":
56467                 var lc = cm.getLockedCount();
56468                 if((lc-1) != index){
56469                     cm.setLocked(index, false, true);
56470                     cm.moveColumn(index, lc-1);
56471                     this.grid.fireEvent("columnmove", index, lc-1);
56472                 }else{
56473                     cm.setLocked(index, false);
56474                 }
56475             break;
56476             case 'wider': // used to expand cols on touch..
56477             case 'narrow':
56478                 var cw = cm.getColumnWidth(index);
56479                 cw += (item.id == 'wider' ? 1 : -1) * 50;
56480                 cw = Math.max(0, cw);
56481                 cw = Math.min(cw,4000);
56482                 cm.setColumnWidth(index, cw);
56483                 break;
56484                 
56485             default:
56486                 index = cm.getIndexById(item.id.substr(4));
56487                 if(index != -1){
56488                     if(item.checked && cm.getColumnCount(true) <= 1){
56489                         this.onDenyColumnHide();
56490                         return false;
56491                     }
56492                     cm.setHidden(index, item.checked);
56493                 }
56494         }
56495         return true;
56496     },
56497
56498     beforeColMenuShow : function(){
56499         var cm = this.cm,  colCount = cm.getColumnCount();
56500         this.colMenu.removeAll();
56501         for(var i = 0; i < colCount; i++){
56502             this.colMenu.add(new Roo.menu.CheckItem({
56503                 id: "col-"+cm.getColumnId(i),
56504                 text: cm.getColumnHeader(i),
56505                 checked: !cm.isHidden(i),
56506                 hideOnClick:false
56507             }));
56508         }
56509     },
56510
56511     handleHdCtx : function(g, index, e){
56512         e.stopEvent();
56513         var hd = this.getHeaderCell(index);
56514         this.hdCtxIndex = index;
56515         var ms = this.hmenu.items, cm = this.cm;
56516         ms.get("asc").setDisabled(!cm.isSortable(index));
56517         ms.get("desc").setDisabled(!cm.isSortable(index));
56518         if(this.grid.enableColLock !== false){
56519             ms.get("lock").setDisabled(cm.isLocked(index));
56520             ms.get("unlock").setDisabled(!cm.isLocked(index));
56521         }
56522         this.hmenu.show(hd, "tl-bl");
56523     },
56524
56525     handleHdOver : function(e){
56526         var hd = this.findHeaderCell(e.getTarget());
56527         if(hd && !this.headersDisabled){
56528             if(this.grid.colModel.isSortable(this.getCellIndex(hd))){
56529                this.fly(hd).addClass("x-grid-hd-over");
56530             }
56531         }
56532     },
56533
56534     handleHdOut : function(e){
56535         var hd = this.findHeaderCell(e.getTarget());
56536         if(hd){
56537             this.fly(hd).removeClass("x-grid-hd-over");
56538         }
56539     },
56540
56541     handleSplitDblClick : function(e, t){
56542         var i = this.getCellIndex(t);
56543         if(this.grid.enableColumnResize !== false && this.cm.isResizable(i) && !this.cm.isFixed(i)){
56544             this.autoSizeColumn(i, true);
56545             this.layout();
56546         }
56547     },
56548
56549     render : function(){
56550
56551         var cm = this.cm;
56552         var colCount = cm.getColumnCount();
56553
56554         if(this.grid.monitorWindowResize === true){
56555             Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
56556         }
56557         var header = this.renderHeaders();
56558         var body = this.templates.body.apply({rows:""});
56559         var html = this.templates.master.apply({
56560             lockedBody: body,
56561             body: body,
56562             lockedHeader: header[0],
56563             header: header[1]
56564         });
56565
56566         //this.updateColumns();
56567
56568         this.grid.getGridEl().dom.innerHTML = html;
56569
56570         this.initElements();
56571         
56572         // a kludge to fix the random scolling effect in webkit
56573         this.el.on("scroll", function() {
56574             this.el.dom.scrollTop=0; // hopefully not recursive..
56575         },this);
56576
56577         this.scroller.on("scroll", this.handleScroll, this);
56578         this.lockedBody.on("mousewheel", this.handleWheel, this);
56579         this.mainBody.on("mousewheel", this.handleWheel, this);
56580
56581         this.mainHd.on("mouseover", this.handleHdOver, this);
56582         this.mainHd.on("mouseout", this.handleHdOut, this);
56583         this.mainHd.on("dblclick", this.handleSplitDblClick, this,
56584                 {delegate: "."+this.splitClass});
56585
56586         this.lockedHd.on("mouseover", this.handleHdOver, this);
56587         this.lockedHd.on("mouseout", this.handleHdOut, this);
56588         this.lockedHd.on("dblclick", this.handleSplitDblClick, this,
56589                 {delegate: "."+this.splitClass});
56590
56591         if(this.grid.enableColumnResize !== false && Roo.grid.SplitDragZone){
56592             new Roo.grid.SplitDragZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
56593         }
56594
56595         this.updateSplitters();
56596
56597         if(this.grid.enableColumnMove && Roo.grid.HeaderDragZone){
56598             new Roo.grid.HeaderDragZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
56599             new Roo.grid.HeaderDropZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
56600         }
56601
56602         if(this.grid.enableCtxMenu !== false && Roo.menu.Menu){
56603             this.hmenu = new Roo.menu.Menu({id: this.grid.id + "-hctx"});
56604             this.hmenu.add(
56605                 {id:"asc", text: this.sortAscText, cls: "xg-hmenu-sort-asc"},
56606                 {id:"desc", text: this.sortDescText, cls: "xg-hmenu-sort-desc"}
56607             );
56608             if(this.grid.enableColLock !== false){
56609                 this.hmenu.add('-',
56610                     {id:"lock", text: this.lockText, cls: "xg-hmenu-lock"},
56611                     {id:"unlock", text: this.unlockText, cls: "xg-hmenu-unlock"}
56612                 );
56613             }
56614             if (Roo.isTouch) {
56615                  this.hmenu.add('-',
56616                     {id:"wider", text: this.columnsWiderText},
56617                     {id:"narrow", text: this.columnsNarrowText }
56618                 );
56619                 
56620                  
56621             }
56622             
56623             if(this.grid.enableColumnHide !== false){
56624
56625                 this.colMenu = new Roo.menu.Menu({id:this.grid.id + "-hcols-menu"});
56626                 this.colMenu.on("beforeshow", this.beforeColMenuShow, this);
56627                 this.colMenu.on("itemclick", this.handleHdMenuClick, this);
56628
56629                 this.hmenu.add('-',
56630                     {id:"columns", text: this.columnsText, menu: this.colMenu}
56631                 );
56632             }
56633             this.hmenu.on("itemclick", this.handleHdMenuClick, this);
56634
56635             this.grid.on("headercontextmenu", this.handleHdCtx, this);
56636         }
56637
56638         if((this.grid.enableDragDrop || this.grid.enableDrag) && Roo.grid.GridDragZone){
56639             this.dd = new Roo.grid.GridDragZone(this.grid, {
56640                 ddGroup : this.grid.ddGroup || 'GridDD'
56641             });
56642             
56643         }
56644
56645         /*
56646         for(var i = 0; i < colCount; i++){
56647             if(cm.isHidden(i)){
56648                 this.hideColumn(i);
56649             }
56650             if(cm.config[i].align){
56651                 this.css.updateRule(this.colSelector + i, "textAlign", cm.config[i].align);
56652                 this.css.updateRule(this.hdSelector + i, "textAlign", cm.config[i].align);
56653             }
56654         }*/
56655         
56656         this.updateHeaderSortState();
56657
56658         this.beforeInitialResize();
56659         this.layout(true);
56660
56661         // two part rendering gives faster view to the user
56662         this.renderPhase2.defer(1, this);
56663     },
56664
56665     renderPhase2 : function(){
56666         // render the rows now
56667         this.refresh();
56668         if(this.grid.autoSizeColumns){
56669             this.autoSizeColumns();
56670         }
56671     },
56672
56673     beforeInitialResize : function(){
56674
56675     },
56676
56677     onColumnSplitterMoved : function(i, w){
56678         this.userResized = true;
56679         var cm = this.grid.colModel;
56680         cm.setColumnWidth(i, w, true);
56681         var cid = cm.getColumnId(i);
56682         this.css.updateRule(this.colSelector + this.idToCssName(cid), "width", (w-this.borderWidth) + "px");
56683         this.css.updateRule(this.hdSelector + this.idToCssName(cid), "width", (w-this.borderWidth) + "px");
56684         this.updateSplitters();
56685         this.layout();
56686         this.grid.fireEvent("columnresize", i, w);
56687     },
56688
56689     syncRowHeights : function(startIndex, endIndex){
56690         if(this.grid.enableRowHeightSync === true && this.cm.getLockedCount() > 0){
56691             startIndex = startIndex || 0;
56692             var mrows = this.getBodyTable().rows;
56693             var lrows = this.getLockedTable().rows;
56694             var len = mrows.length-1;
56695             endIndex = Math.min(endIndex || len, len);
56696             for(var i = startIndex; i <= endIndex; i++){
56697                 var m = mrows[i], l = lrows[i];
56698                 var h = Math.max(m.offsetHeight, l.offsetHeight);
56699                 m.style.height = l.style.height = h + "px";
56700             }
56701         }
56702     },
56703
56704     layout : function(initialRender, is2ndPass){
56705         var g = this.grid;
56706         var auto = g.autoHeight;
56707         var scrollOffset = 16;
56708         var c = g.getGridEl(), cm = this.cm,
56709                 expandCol = g.autoExpandColumn,
56710                 gv = this;
56711         //c.beginMeasure();
56712
56713         if(!c.dom.offsetWidth){ // display:none?
56714             if(initialRender){
56715                 this.lockedWrap.show();
56716                 this.mainWrap.show();
56717             }
56718             return;
56719         }
56720
56721         var hasLock = this.cm.isLocked(0);
56722
56723         var tbh = this.headerPanel.getHeight();
56724         var bbh = this.footerPanel.getHeight();
56725
56726         if(auto){
56727             var ch = this.getBodyTable().offsetHeight + tbh + bbh + this.mainHd.getHeight();
56728             var newHeight = ch + c.getBorderWidth("tb");
56729             if(g.maxHeight){
56730                 newHeight = Math.min(g.maxHeight, newHeight);
56731             }
56732             c.setHeight(newHeight);
56733         }
56734
56735         if(g.autoWidth){
56736             c.setWidth(cm.getTotalWidth()+c.getBorderWidth('lr'));
56737         }
56738
56739         var s = this.scroller;
56740
56741         var csize = c.getSize(true);
56742
56743         this.el.setSize(csize.width, csize.height);
56744
56745         this.headerPanel.setWidth(csize.width);
56746         this.footerPanel.setWidth(csize.width);
56747
56748         var hdHeight = this.mainHd.getHeight();
56749         var vw = csize.width;
56750         var vh = csize.height - (tbh + bbh);
56751
56752         s.setSize(vw, vh);
56753
56754         var bt = this.getBodyTable();
56755         
56756         if(cm.getLockedCount() == cm.config.length){
56757             bt = this.getLockedTable();
56758         }
56759         
56760         var ltWidth = hasLock ?
56761                       Math.max(this.getLockedTable().offsetWidth, this.lockedHd.dom.firstChild.offsetWidth) : 0;
56762
56763         var scrollHeight = bt.offsetHeight;
56764         var scrollWidth = ltWidth + bt.offsetWidth;
56765         var vscroll = false, hscroll = false;
56766
56767         this.scrollSizer.setSize(scrollWidth, scrollHeight+hdHeight);
56768
56769         var lw = this.lockedWrap, mw = this.mainWrap;
56770         var lb = this.lockedBody, mb = this.mainBody;
56771
56772         setTimeout(function(){
56773             var t = s.dom.offsetTop;
56774             var w = s.dom.clientWidth,
56775                 h = s.dom.clientHeight;
56776
56777             lw.setTop(t);
56778             lw.setSize(ltWidth, h);
56779
56780             mw.setLeftTop(ltWidth, t);
56781             mw.setSize(w-ltWidth, h);
56782
56783             lb.setHeight(h-hdHeight);
56784             mb.setHeight(h-hdHeight);
56785
56786             if(is2ndPass !== true && !gv.userResized && expandCol){
56787                 // high speed resize without full column calculation
56788                 
56789                 var ci = cm.getIndexById(expandCol);
56790                 if (ci < 0) {
56791                     ci = cm.findColumnIndex(expandCol);
56792                 }
56793                 ci = Math.max(0, ci); // make sure it's got at least the first col.
56794                 var expandId = cm.getColumnId(ci);
56795                 var  tw = cm.getTotalWidth(false);
56796                 var currentWidth = cm.getColumnWidth(ci);
56797                 var cw = Math.min(Math.max(((w-tw)+currentWidth-2)-/*scrollbar*/(w <= s.dom.offsetWidth ? 0 : 18), g.autoExpandMin), g.autoExpandMax);
56798                 if(currentWidth != cw){
56799                     cm.setColumnWidth(ci, cw, true);
56800                     gv.css.updateRule(gv.colSelector+gv.idToCssName(expandId), "width", (cw - gv.borderWidth) + "px");
56801                     gv.css.updateRule(gv.hdSelector+gv.idToCssName(expandId), "width", (cw - gv.borderWidth) + "px");
56802                     gv.updateSplitters();
56803                     gv.layout(false, true);
56804                 }
56805             }
56806
56807             if(initialRender){
56808                 lw.show();
56809                 mw.show();
56810             }
56811             //c.endMeasure();
56812         }, 10);
56813     },
56814
56815     onWindowResize : function(){
56816         if(!this.grid.monitorWindowResize || this.grid.autoHeight){
56817             return;
56818         }
56819         this.layout();
56820     },
56821
56822     appendFooter : function(parentEl){
56823         return null;
56824     },
56825
56826     sortAscText : "Sort Ascending",
56827     sortDescText : "Sort Descending",
56828     lockText : "Lock Column",
56829     unlockText : "Unlock Column",
56830     columnsText : "Columns",
56831  
56832     columnsWiderText : "Wider",
56833     columnsNarrowText : "Thinner"
56834 });
56835
56836
56837 Roo.grid.GridView.ColumnDragZone = function(grid, hd){
56838     Roo.grid.GridView.ColumnDragZone.superclass.constructor.call(this, grid, hd, null);
56839     this.proxy.el.addClass('x-grid3-col-dd');
56840 };
56841
56842 Roo.extend(Roo.grid.GridView.ColumnDragZone, Roo.grid.HeaderDragZone, {
56843     handleMouseDown : function(e){
56844
56845     },
56846
56847     callHandleMouseDown : function(e){
56848         Roo.grid.GridView.ColumnDragZone.superclass.handleMouseDown.call(this, e);
56849     }
56850 });
56851 /*
56852  * Based on:
56853  * Ext JS Library 1.1.1
56854  * Copyright(c) 2006-2007, Ext JS, LLC.
56855  *
56856  * Originally Released Under LGPL - original licence link has changed is not relivant.
56857  *
56858  * Fork - LGPL
56859  * <script type="text/javascript">
56860  */
56861  
56862 // private
56863 // This is a support class used internally by the Grid components
56864 Roo.grid.SplitDragZone = function(grid, hd, hd2){
56865     this.grid = grid;
56866     this.view = grid.getView();
56867     this.proxy = this.view.resizeProxy;
56868     Roo.grid.SplitDragZone.superclass.constructor.call(this, hd,
56869         "gridSplitters" + this.grid.getGridEl().id, {
56870         dragElId : Roo.id(this.proxy.dom), resizeFrame:false
56871     });
56872     this.setHandleElId(Roo.id(hd));
56873     this.setOuterHandleElId(Roo.id(hd2));
56874     this.scroll = false;
56875 };
56876 Roo.extend(Roo.grid.SplitDragZone, Roo.dd.DDProxy, {
56877     fly: Roo.Element.fly,
56878
56879     b4StartDrag : function(x, y){
56880         this.view.headersDisabled = true;
56881         this.proxy.setHeight(this.view.mainWrap.getHeight());
56882         var w = this.cm.getColumnWidth(this.cellIndex);
56883         var minw = Math.max(w-this.grid.minColumnWidth, 0);
56884         this.resetConstraints();
56885         this.setXConstraint(minw, 1000);
56886         this.setYConstraint(0, 0);
56887         this.minX = x - minw;
56888         this.maxX = x + 1000;
56889         this.startPos = x;
56890         Roo.dd.DDProxy.prototype.b4StartDrag.call(this, x, y);
56891     },
56892
56893
56894     handleMouseDown : function(e){
56895         ev = Roo.EventObject.setEvent(e);
56896         var t = this.fly(ev.getTarget());
56897         if(t.hasClass("x-grid-split")){
56898             this.cellIndex = this.view.getCellIndex(t.dom);
56899             this.split = t.dom;
56900             this.cm = this.grid.colModel;
56901             if(this.cm.isResizable(this.cellIndex) && !this.cm.isFixed(this.cellIndex)){
56902                 Roo.grid.SplitDragZone.superclass.handleMouseDown.apply(this, arguments);
56903             }
56904         }
56905     },
56906
56907     endDrag : function(e){
56908         this.view.headersDisabled = false;
56909         var endX = Math.max(this.minX, Roo.lib.Event.getPageX(e));
56910         var diff = endX - this.startPos;
56911         this.view.onColumnSplitterMoved(this.cellIndex, this.cm.getColumnWidth(this.cellIndex)+diff);
56912     },
56913
56914     autoOffset : function(){
56915         this.setDelta(0,0);
56916     }
56917 });/*
56918  * Based on:
56919  * Ext JS Library 1.1.1
56920  * Copyright(c) 2006-2007, Ext JS, LLC.
56921  *
56922  * Originally Released Under LGPL - original licence link has changed is not relivant.
56923  *
56924  * Fork - LGPL
56925  * <script type="text/javascript">
56926  */
56927  
56928 // private
56929 // This is a support class used internally by the Grid components
56930 Roo.grid.GridDragZone = function(grid, config){
56931     this.view = grid.getView();
56932     Roo.grid.GridDragZone.superclass.constructor.call(this, this.view.mainBody.dom, config);
56933     if(this.view.lockedBody){
56934         this.setHandleElId(Roo.id(this.view.mainBody.dom));
56935         this.setOuterHandleElId(Roo.id(this.view.lockedBody.dom));
56936     }
56937     this.scroll = false;
56938     this.grid = grid;
56939     this.ddel = document.createElement('div');
56940     this.ddel.className = 'x-grid-dd-wrap';
56941 };
56942
56943 Roo.extend(Roo.grid.GridDragZone, Roo.dd.DragZone, {
56944     ddGroup : "GridDD",
56945
56946     getDragData : function(e){
56947         var t = Roo.lib.Event.getTarget(e);
56948         var rowIndex = this.view.findRowIndex(t);
56949         var sm = this.grid.selModel;
56950             
56951         //Roo.log(rowIndex);
56952         
56953         if (sm.getSelectedCell) {
56954             // cell selection..
56955             if (!sm.getSelectedCell()) {
56956                 return false;
56957             }
56958             if (rowIndex != sm.getSelectedCell()[0]) {
56959                 return false;
56960             }
56961         
56962         }
56963         
56964         if(rowIndex !== false){
56965             
56966             // if editorgrid.. 
56967             
56968             
56969             //Roo.log([ sm.getSelectedCell() ? sm.getSelectedCell()[0] : 'NO' , rowIndex ]);
56970                
56971             //if(!sm.isSelected(rowIndex) || e.hasModifier()){
56972               //  
56973             //}
56974             if (e.hasModifier()){
56975                 sm.handleMouseDown(e, t); // non modifier buttons are handled by row select.
56976             }
56977             
56978             Roo.log("getDragData");
56979             
56980             return {
56981                 grid: this.grid,
56982                 ddel: this.ddel,
56983                 rowIndex: rowIndex,
56984                 selections:sm.getSelections ? sm.getSelections() : (
56985                     sm.getSelectedCell() ? [ this.grid.ds.getAt(sm.getSelectedCell()[0]) ] : []
56986                 )
56987             };
56988         }
56989         return false;
56990     },
56991
56992     onInitDrag : function(e){
56993         var data = this.dragData;
56994         this.ddel.innerHTML = this.grid.getDragDropText();
56995         this.proxy.update(this.ddel);
56996         // fire start drag?
56997     },
56998
56999     afterRepair : function(){
57000         this.dragging = false;
57001     },
57002
57003     getRepairXY : function(e, data){
57004         return false;
57005     },
57006
57007     onEndDrag : function(data, e){
57008         // fire end drag?
57009     },
57010
57011     onValidDrop : function(dd, e, id){
57012         // fire drag drop?
57013         this.hideProxy();
57014     },
57015
57016     beforeInvalidDrop : function(e, id){
57017
57018     }
57019 });/*
57020  * Based on:
57021  * Ext JS Library 1.1.1
57022  * Copyright(c) 2006-2007, Ext JS, LLC.
57023  *
57024  * Originally Released Under LGPL - original licence link has changed is not relivant.
57025  *
57026  * Fork - LGPL
57027  * <script type="text/javascript">
57028  */
57029  
57030
57031 /**
57032  * @class Roo.grid.ColumnModel
57033  * @extends Roo.util.Observable
57034  * This is the default implementation of a ColumnModel used by the Grid. It defines
57035  * the columns in the grid.
57036  * <br>Usage:<br>
57037  <pre><code>
57038  var colModel = new Roo.grid.ColumnModel([
57039         {header: "Ticker", width: 60, sortable: true, locked: true},
57040         {header: "Company Name", width: 150, sortable: true},
57041         {header: "Market Cap.", width: 100, sortable: true},
57042         {header: "$ Sales", width: 100, sortable: true, renderer: money},
57043         {header: "Employees", width: 100, sortable: true, resizable: false}
57044  ]);
57045  </code></pre>
57046  * <p>
57047  
57048  * The config options listed for this class are options which may appear in each
57049  * individual column definition.
57050  * <br/>RooJS Fix - column id's are not sequential but use Roo.id() - fixes bugs with layouts.
57051  * @constructor
57052  * @param {Object} config An Array of column config objects. See this class's
57053  * config objects for details.
57054 */
57055 Roo.grid.ColumnModel = function(config){
57056         /**
57057      * The config passed into the constructor
57058      */
57059     this.config = config;
57060     this.lookup = {};
57061
57062     // if no id, create one
57063     // if the column does not have a dataIndex mapping,
57064     // map it to the order it is in the config
57065     for(var i = 0, len = config.length; i < len; i++){
57066         var c = config[i];
57067         if(typeof c.dataIndex == "undefined"){
57068             c.dataIndex = i;
57069         }
57070         if(typeof c.renderer == "string"){
57071             c.renderer = Roo.util.Format[c.renderer];
57072         }
57073         if(typeof c.id == "undefined"){
57074             c.id = Roo.id();
57075         }
57076         if(c.editor && c.editor.xtype){
57077             c.editor  = Roo.factory(c.editor, Roo.grid);
57078         }
57079         if(c.editor && c.editor.isFormField){
57080             c.editor = new Roo.grid.GridEditor(c.editor);
57081         }
57082         this.lookup[c.id] = c;
57083     }
57084
57085     /**
57086      * The width of columns which have no width specified (defaults to 100)
57087      * @type Number
57088      */
57089     this.defaultWidth = 100;
57090
57091     /**
57092      * Default sortable of columns which have no sortable specified (defaults to false)
57093      * @type Boolean
57094      */
57095     this.defaultSortable = false;
57096
57097     this.addEvents({
57098         /**
57099              * @event widthchange
57100              * Fires when the width of a column changes.
57101              * @param {ColumnModel} this
57102              * @param {Number} columnIndex The column index
57103              * @param {Number} newWidth The new width
57104              */
57105             "widthchange": true,
57106         /**
57107              * @event headerchange
57108              * Fires when the text of a header changes.
57109              * @param {ColumnModel} this
57110              * @param {Number} columnIndex The column index
57111              * @param {Number} newText The new header text
57112              */
57113             "headerchange": true,
57114         /**
57115              * @event hiddenchange
57116              * Fires when a column is hidden or "unhidden".
57117              * @param {ColumnModel} this
57118              * @param {Number} columnIndex The column index
57119              * @param {Boolean} hidden true if hidden, false otherwise
57120              */
57121             "hiddenchange": true,
57122             /**
57123          * @event columnmoved
57124          * Fires when a column is moved.
57125          * @param {ColumnModel} this
57126          * @param {Number} oldIndex
57127          * @param {Number} newIndex
57128          */
57129         "columnmoved" : true,
57130         /**
57131          * @event columlockchange
57132          * Fires when a column's locked state is changed
57133          * @param {ColumnModel} this
57134          * @param {Number} colIndex
57135          * @param {Boolean} locked true if locked
57136          */
57137         "columnlockchange" : true
57138     });
57139     Roo.grid.ColumnModel.superclass.constructor.call(this);
57140 };
57141 Roo.extend(Roo.grid.ColumnModel, Roo.util.Observable, {
57142     /**
57143      * @cfg {String} header The header text to display in the Grid view.
57144      */
57145     /**
57146      * @cfg {String} dataIndex (Optional) The name of the field in the grid's {@link Roo.data.Store}'s
57147      * {@link Roo.data.Record} definition from which to draw the column's value. If not
57148      * specified, the column's index is used as an index into the Record's data Array.
57149      */
57150     /**
57151      * @cfg {Number} width (Optional) The initial width in pixels of the column. Using this
57152      * instead of {@link Roo.grid.Grid#autoSizeColumns} is more efficient.
57153      */
57154     /**
57155      * @cfg {Boolean} sortable (Optional) True if sorting is to be allowed on this column.
57156      * Defaults to the value of the {@link #defaultSortable} property.
57157      * Whether local/remote sorting is used is specified in {@link Roo.data.Store#remoteSort}.
57158      */
57159     /**
57160      * @cfg {Boolean} locked (Optional) True to lock the column in place while scrolling the Grid.  Defaults to false.
57161      */
57162     /**
57163      * @cfg {Boolean} fixed (Optional) True if the column width cannot be changed.  Defaults to false.
57164      */
57165     /**
57166      * @cfg {Boolean} resizable (Optional) False to disable column resizing. Defaults to true.
57167      */
57168     /**
57169      * @cfg {Boolean} hidden (Optional) True to hide the column. Defaults to false.
57170      */
57171     /**
57172      * @cfg {Function} renderer (Optional) A function used to generate HTML markup for a cell
57173      * given the cell's data value. See {@link #setRenderer}. If not specified, the
57174      * default renderer returns the escaped data value. If an object is returned (bootstrap only)
57175      * then it is treated as a Roo Component object instance, and it is rendered after the initial row is rendered
57176      */
57177        /**
57178      * @cfg {Roo.grid.GridEditor} editor (Optional) For grid editors - returns the grid editor 
57179      */
57180     /**
57181      * @cfg {String} align (Optional) Set the CSS text-align property of the column.  Defaults to undefined.
57182      */
57183     /**
57184      * @cfg {String} cursor (Optional)
57185      */
57186     /**
57187      * @cfg {String} tooltip (Optional)
57188      */
57189     /**
57190      * @cfg {Number} xs (Optional)
57191      */
57192     /**
57193      * @cfg {Number} sm (Optional)
57194      */
57195     /**
57196      * @cfg {Number} md (Optional)
57197      */
57198     /**
57199      * @cfg {Number} lg (Optional)
57200      */
57201     /**
57202      * Returns the id of the column at the specified index.
57203      * @param {Number} index The column index
57204      * @return {String} the id
57205      */
57206     getColumnId : function(index){
57207         return this.config[index].id;
57208     },
57209
57210     /**
57211      * Returns the column for a specified id.
57212      * @param {String} id The column id
57213      * @return {Object} the column
57214      */
57215     getColumnById : function(id){
57216         return this.lookup[id];
57217     },
57218
57219     
57220     /**
57221      * Returns the column for a specified dataIndex.
57222      * @param {String} dataIndex The column dataIndex
57223      * @return {Object|Boolean} the column or false if not found
57224      */
57225     getColumnByDataIndex: function(dataIndex){
57226         var index = this.findColumnIndex(dataIndex);
57227         return index > -1 ? this.config[index] : false;
57228     },
57229     
57230     /**
57231      * Returns the index for a specified column id.
57232      * @param {String} id The column id
57233      * @return {Number} the index, or -1 if not found
57234      */
57235     getIndexById : function(id){
57236         for(var i = 0, len = this.config.length; i < len; i++){
57237             if(this.config[i].id == id){
57238                 return i;
57239             }
57240         }
57241         return -1;
57242     },
57243     
57244     /**
57245      * Returns the index for a specified column dataIndex.
57246      * @param {String} dataIndex The column dataIndex
57247      * @return {Number} the index, or -1 if not found
57248      */
57249     
57250     findColumnIndex : function(dataIndex){
57251         for(var i = 0, len = this.config.length; i < len; i++){
57252             if(this.config[i].dataIndex == dataIndex){
57253                 return i;
57254             }
57255         }
57256         return -1;
57257     },
57258     
57259     
57260     moveColumn : function(oldIndex, newIndex){
57261         var c = this.config[oldIndex];
57262         this.config.splice(oldIndex, 1);
57263         this.config.splice(newIndex, 0, c);
57264         this.dataMap = null;
57265         this.fireEvent("columnmoved", this, oldIndex, newIndex);
57266     },
57267
57268     isLocked : function(colIndex){
57269         return this.config[colIndex].locked === true;
57270     },
57271
57272     setLocked : function(colIndex, value, suppressEvent){
57273         if(this.isLocked(colIndex) == value){
57274             return;
57275         }
57276         this.config[colIndex].locked = value;
57277         if(!suppressEvent){
57278             this.fireEvent("columnlockchange", this, colIndex, value);
57279         }
57280     },
57281
57282     getTotalLockedWidth : function(){
57283         var totalWidth = 0;
57284         for(var i = 0; i < this.config.length; i++){
57285             if(this.isLocked(i) && !this.isHidden(i)){
57286                 this.totalWidth += this.getColumnWidth(i);
57287             }
57288         }
57289         return totalWidth;
57290     },
57291
57292     getLockedCount : function(){
57293         for(var i = 0, len = this.config.length; i < len; i++){
57294             if(!this.isLocked(i)){
57295                 return i;
57296             }
57297         }
57298         
57299         return this.config.length;
57300     },
57301
57302     /**
57303      * Returns the number of columns.
57304      * @return {Number}
57305      */
57306     getColumnCount : function(visibleOnly){
57307         if(visibleOnly === true){
57308             var c = 0;
57309             for(var i = 0, len = this.config.length; i < len; i++){
57310                 if(!this.isHidden(i)){
57311                     c++;
57312                 }
57313             }
57314             return c;
57315         }
57316         return this.config.length;
57317     },
57318
57319     /**
57320      * Returns the column configs that return true by the passed function that is called with (columnConfig, index)
57321      * @param {Function} fn
57322      * @param {Object} scope (optional)
57323      * @return {Array} result
57324      */
57325     getColumnsBy : function(fn, scope){
57326         var r = [];
57327         for(var i = 0, len = this.config.length; i < len; i++){
57328             var c = this.config[i];
57329             if(fn.call(scope||this, c, i) === true){
57330                 r[r.length] = c;
57331             }
57332         }
57333         return r;
57334     },
57335
57336     /**
57337      * Returns true if the specified column is sortable.
57338      * @param {Number} col The column index
57339      * @return {Boolean}
57340      */
57341     isSortable : function(col){
57342         if(typeof this.config[col].sortable == "undefined"){
57343             return this.defaultSortable;
57344         }
57345         return this.config[col].sortable;
57346     },
57347
57348     /**
57349      * Returns the rendering (formatting) function defined for the column.
57350      * @param {Number} col The column index.
57351      * @return {Function} The function used to render the cell. See {@link #setRenderer}.
57352      */
57353     getRenderer : function(col){
57354         if(!this.config[col].renderer){
57355             return Roo.grid.ColumnModel.defaultRenderer;
57356         }
57357         return this.config[col].renderer;
57358     },
57359
57360     /**
57361      * Sets the rendering (formatting) function for a column.
57362      * @param {Number} col The column index
57363      * @param {Function} fn The function to use to process the cell's raw data
57364      * to return HTML markup for the grid view. The render function is called with
57365      * the following parameters:<ul>
57366      * <li>Data value.</li>
57367      * <li>Cell metadata. An object in which you may set the following attributes:<ul>
57368      * <li>css A CSS style string to apply to the table cell.</li>
57369      * <li>attr An HTML attribute definition string to apply to the data container element <i>within</i> the table cell.</li></ul>
57370      * <li>The {@link Roo.data.Record} from which the data was extracted.</li>
57371      * <li>Row index</li>
57372      * <li>Column index</li>
57373      * <li>The {@link Roo.data.Store} object from which the Record was extracted</li></ul>
57374      */
57375     setRenderer : function(col, fn){
57376         this.config[col].renderer = fn;
57377     },
57378
57379     /**
57380      * Returns the width for the specified column.
57381      * @param {Number} col The column index
57382      * @return {Number}
57383      */
57384     getColumnWidth : function(col){
57385         return this.config[col].width * 1 || this.defaultWidth;
57386     },
57387
57388     /**
57389      * Sets the width for a column.
57390      * @param {Number} col The column index
57391      * @param {Number} width The new width
57392      */
57393     setColumnWidth : function(col, width, suppressEvent){
57394         this.config[col].width = width;
57395         this.totalWidth = null;
57396         if(!suppressEvent){
57397              this.fireEvent("widthchange", this, col, width);
57398         }
57399     },
57400
57401     /**
57402      * Returns the total width of all columns.
57403      * @param {Boolean} includeHidden True to include hidden column widths
57404      * @return {Number}
57405      */
57406     getTotalWidth : function(includeHidden){
57407         if(!this.totalWidth){
57408             this.totalWidth = 0;
57409             for(var i = 0, len = this.config.length; i < len; i++){
57410                 if(includeHidden || !this.isHidden(i)){
57411                     this.totalWidth += this.getColumnWidth(i);
57412                 }
57413             }
57414         }
57415         return this.totalWidth;
57416     },
57417
57418     /**
57419      * Returns the header for the specified column.
57420      * @param {Number} col The column index
57421      * @return {String}
57422      */
57423     getColumnHeader : function(col){
57424         return this.config[col].header;
57425     },
57426
57427     /**
57428      * Sets the header for a column.
57429      * @param {Number} col The column index
57430      * @param {String} header The new header
57431      */
57432     setColumnHeader : function(col, header){
57433         this.config[col].header = header;
57434         this.fireEvent("headerchange", this, col, header);
57435     },
57436
57437     /**
57438      * Returns the tooltip for the specified column.
57439      * @param {Number} col The column index
57440      * @return {String}
57441      */
57442     getColumnTooltip : function(col){
57443             return this.config[col].tooltip;
57444     },
57445     /**
57446      * Sets the tooltip for a column.
57447      * @param {Number} col The column index
57448      * @param {String} tooltip The new tooltip
57449      */
57450     setColumnTooltip : function(col, tooltip){
57451             this.config[col].tooltip = tooltip;
57452     },
57453
57454     /**
57455      * Returns the dataIndex for the specified column.
57456      * @param {Number} col The column index
57457      * @return {Number}
57458      */
57459     getDataIndex : function(col){
57460         return this.config[col].dataIndex;
57461     },
57462
57463     /**
57464      * Sets the dataIndex for a column.
57465      * @param {Number} col The column index
57466      * @param {Number} dataIndex The new dataIndex
57467      */
57468     setDataIndex : function(col, dataIndex){
57469         this.config[col].dataIndex = dataIndex;
57470     },
57471
57472     
57473     
57474     /**
57475      * Returns true if the cell is editable.
57476      * @param {Number} colIndex The column index
57477      * @param {Number} rowIndex The row index - this is nto actually used..?
57478      * @return {Boolean}
57479      */
57480     isCellEditable : function(colIndex, rowIndex){
57481         return (this.config[colIndex].editable || (typeof this.config[colIndex].editable == "undefined" && this.config[colIndex].editor)) ? true : false;
57482     },
57483
57484     /**
57485      * Returns the editor defined for the cell/column.
57486      * return false or null to disable editing.
57487      * @param {Number} colIndex The column index
57488      * @param {Number} rowIndex The row index
57489      * @return {Object}
57490      */
57491     getCellEditor : function(colIndex, rowIndex){
57492         return this.config[colIndex].editor;
57493     },
57494
57495     /**
57496      * Sets if a column is editable.
57497      * @param {Number} col The column index
57498      * @param {Boolean} editable True if the column is editable
57499      */
57500     setEditable : function(col, editable){
57501         this.config[col].editable = editable;
57502     },
57503
57504
57505     /**
57506      * Returns true if the column is hidden.
57507      * @param {Number} colIndex The column index
57508      * @return {Boolean}
57509      */
57510     isHidden : function(colIndex){
57511         return this.config[colIndex].hidden;
57512     },
57513
57514
57515     /**
57516      * Returns true if the column width cannot be changed
57517      */
57518     isFixed : function(colIndex){
57519         return this.config[colIndex].fixed;
57520     },
57521
57522     /**
57523      * Returns true if the column can be resized
57524      * @return {Boolean}
57525      */
57526     isResizable : function(colIndex){
57527         return colIndex >= 0 && this.config[colIndex].resizable !== false && this.config[colIndex].fixed !== true;
57528     },
57529     /**
57530      * Sets if a column is hidden.
57531      * @param {Number} colIndex The column index
57532      * @param {Boolean} hidden True if the column is hidden
57533      */
57534     setHidden : function(colIndex, hidden){
57535         this.config[colIndex].hidden = hidden;
57536         this.totalWidth = null;
57537         this.fireEvent("hiddenchange", this, colIndex, hidden);
57538     },
57539
57540     /**
57541      * Sets the editor for a column.
57542      * @param {Number} col The column index
57543      * @param {Object} editor The editor object
57544      */
57545     setEditor : function(col, editor){
57546         this.config[col].editor = editor;
57547     }
57548 });
57549
57550 Roo.grid.ColumnModel.defaultRenderer = function(value)
57551 {
57552     if(typeof value == "object") {
57553         return value;
57554     }
57555         if(typeof value == "string" && value.length < 1){
57556             return "&#160;";
57557         }
57558     
57559         return String.format("{0}", value);
57560 };
57561
57562 // Alias for backwards compatibility
57563 Roo.grid.DefaultColumnModel = Roo.grid.ColumnModel;
57564 /*
57565  * Based on:
57566  * Ext JS Library 1.1.1
57567  * Copyright(c) 2006-2007, Ext JS, LLC.
57568  *
57569  * Originally Released Under LGPL - original licence link has changed is not relivant.
57570  *
57571  * Fork - LGPL
57572  * <script type="text/javascript">
57573  */
57574
57575 /**
57576  * @class Roo.grid.AbstractSelectionModel
57577  * @extends Roo.util.Observable
57578  * Abstract base class for grid SelectionModels.  It provides the interface that should be
57579  * implemented by descendant classes.  This class should not be directly instantiated.
57580  * @constructor
57581  */
57582 Roo.grid.AbstractSelectionModel = function(){
57583     this.locked = false;
57584     Roo.grid.AbstractSelectionModel.superclass.constructor.call(this);
57585 };
57586
57587 Roo.extend(Roo.grid.AbstractSelectionModel, Roo.util.Observable,  {
57588     /** @ignore Called by the grid automatically. Do not call directly. */
57589     init : function(grid){
57590         this.grid = grid;
57591         this.initEvents();
57592     },
57593
57594     /**
57595      * Locks the selections.
57596      */
57597     lock : function(){
57598         this.locked = true;
57599     },
57600
57601     /**
57602      * Unlocks the selections.
57603      */
57604     unlock : function(){
57605         this.locked = false;
57606     },
57607
57608     /**
57609      * Returns true if the selections are locked.
57610      * @return {Boolean}
57611      */
57612     isLocked : function(){
57613         return this.locked;
57614     }
57615 });/*
57616  * Based on:
57617  * Ext JS Library 1.1.1
57618  * Copyright(c) 2006-2007, Ext JS, LLC.
57619  *
57620  * Originally Released Under LGPL - original licence link has changed is not relivant.
57621  *
57622  * Fork - LGPL
57623  * <script type="text/javascript">
57624  */
57625 /**
57626  * @extends Roo.grid.AbstractSelectionModel
57627  * @class Roo.grid.RowSelectionModel
57628  * The default SelectionModel used by {@link Roo.grid.Grid}.
57629  * It supports multiple selections and keyboard selection/navigation. 
57630  * @constructor
57631  * @param {Object} config
57632  */
57633 Roo.grid.RowSelectionModel = function(config){
57634     Roo.apply(this, config);
57635     this.selections = new Roo.util.MixedCollection(false, function(o){
57636         return o.id;
57637     });
57638
57639     this.last = false;
57640     this.lastActive = false;
57641
57642     this.addEvents({
57643         /**
57644              * @event selectionchange
57645              * Fires when the selection changes
57646              * @param {SelectionModel} this
57647              */
57648             "selectionchange" : true,
57649         /**
57650              * @event afterselectionchange
57651              * Fires after the selection changes (eg. by key press or clicking)
57652              * @param {SelectionModel} this
57653              */
57654             "afterselectionchange" : true,
57655         /**
57656              * @event beforerowselect
57657              * Fires when a row is selected being selected, return false to cancel.
57658              * @param {SelectionModel} this
57659              * @param {Number} rowIndex The selected index
57660              * @param {Boolean} keepExisting False if other selections will be cleared
57661              */
57662             "beforerowselect" : true,
57663         /**
57664              * @event rowselect
57665              * Fires when a row is selected.
57666              * @param {SelectionModel} this
57667              * @param {Number} rowIndex The selected index
57668              * @param {Roo.data.Record} r The record
57669              */
57670             "rowselect" : true,
57671         /**
57672              * @event rowdeselect
57673              * Fires when a row is deselected.
57674              * @param {SelectionModel} this
57675              * @param {Number} rowIndex The selected index
57676              */
57677         "rowdeselect" : true
57678     });
57679     Roo.grid.RowSelectionModel.superclass.constructor.call(this);
57680     this.locked = false;
57681 };
57682
57683 Roo.extend(Roo.grid.RowSelectionModel, Roo.grid.AbstractSelectionModel,  {
57684     /**
57685      * @cfg {Boolean} singleSelect
57686      * True to allow selection of only one row at a time (defaults to false)
57687      */
57688     singleSelect : false,
57689
57690     // private
57691     initEvents : function(){
57692
57693         if(!this.grid.enableDragDrop && !this.grid.enableDrag){
57694             this.grid.on("mousedown", this.handleMouseDown, this);
57695         }else{ // allow click to work like normal
57696             this.grid.on("rowclick", this.handleDragableRowClick, this);
57697         }
57698
57699         this.rowNav = new Roo.KeyNav(this.grid.getGridEl(), {
57700             "up" : function(e){
57701                 if(!e.shiftKey){
57702                     this.selectPrevious(e.shiftKey);
57703                 }else if(this.last !== false && this.lastActive !== false){
57704                     var last = this.last;
57705                     this.selectRange(this.last,  this.lastActive-1);
57706                     this.grid.getView().focusRow(this.lastActive);
57707                     if(last !== false){
57708                         this.last = last;
57709                     }
57710                 }else{
57711                     this.selectFirstRow();
57712                 }
57713                 this.fireEvent("afterselectionchange", this);
57714             },
57715             "down" : function(e){
57716                 if(!e.shiftKey){
57717                     this.selectNext(e.shiftKey);
57718                 }else if(this.last !== false && this.lastActive !== false){
57719                     var last = this.last;
57720                     this.selectRange(this.last,  this.lastActive+1);
57721                     this.grid.getView().focusRow(this.lastActive);
57722                     if(last !== false){
57723                         this.last = last;
57724                     }
57725                 }else{
57726                     this.selectFirstRow();
57727                 }
57728                 this.fireEvent("afterselectionchange", this);
57729             },
57730             scope: this
57731         });
57732
57733         var view = this.grid.view;
57734         view.on("refresh", this.onRefresh, this);
57735         view.on("rowupdated", this.onRowUpdated, this);
57736         view.on("rowremoved", this.onRemove, this);
57737     },
57738
57739     // private
57740     onRefresh : function(){
57741         var ds = this.grid.dataSource, i, v = this.grid.view;
57742         var s = this.selections;
57743         s.each(function(r){
57744             if((i = ds.indexOfId(r.id)) != -1){
57745                 v.onRowSelect(i);
57746                 s.add(ds.getAt(i)); // updating the selection relate data
57747             }else{
57748                 s.remove(r);
57749             }
57750         });
57751     },
57752
57753     // private
57754     onRemove : function(v, index, r){
57755         this.selections.remove(r);
57756     },
57757
57758     // private
57759     onRowUpdated : function(v, index, r){
57760         if(this.isSelected(r)){
57761             v.onRowSelect(index);
57762         }
57763     },
57764
57765     /**
57766      * Select records.
57767      * @param {Array} records The records to select
57768      * @param {Boolean} keepExisting (optional) True to keep existing selections
57769      */
57770     selectRecords : function(records, keepExisting){
57771         if(!keepExisting){
57772             this.clearSelections();
57773         }
57774         var ds = this.grid.dataSource;
57775         for(var i = 0, len = records.length; i < len; i++){
57776             this.selectRow(ds.indexOf(records[i]), true);
57777         }
57778     },
57779
57780     /**
57781      * Gets the number of selected rows.
57782      * @return {Number}
57783      */
57784     getCount : function(){
57785         return this.selections.length;
57786     },
57787
57788     /**
57789      * Selects the first row in the grid.
57790      */
57791     selectFirstRow : function(){
57792         this.selectRow(0);
57793     },
57794
57795     /**
57796      * Select the last row.
57797      * @param {Boolean} keepExisting (optional) True to keep existing selections
57798      */
57799     selectLastRow : function(keepExisting){
57800         this.selectRow(this.grid.dataSource.getCount() - 1, keepExisting);
57801     },
57802
57803     /**
57804      * Selects the row immediately following the last selected row.
57805      * @param {Boolean} keepExisting (optional) True to keep existing selections
57806      */
57807     selectNext : function(keepExisting){
57808         if(this.last !== false && (this.last+1) < this.grid.dataSource.getCount()){
57809             this.selectRow(this.last+1, keepExisting);
57810             this.grid.getView().focusRow(this.last);
57811         }
57812     },
57813
57814     /**
57815      * Selects the row that precedes the last selected row.
57816      * @param {Boolean} keepExisting (optional) True to keep existing selections
57817      */
57818     selectPrevious : function(keepExisting){
57819         if(this.last){
57820             this.selectRow(this.last-1, keepExisting);
57821             this.grid.getView().focusRow(this.last);
57822         }
57823     },
57824
57825     /**
57826      * Returns the selected records
57827      * @return {Array} Array of selected records
57828      */
57829     getSelections : function(){
57830         return [].concat(this.selections.items);
57831     },
57832
57833     /**
57834      * Returns the first selected record.
57835      * @return {Record}
57836      */
57837     getSelected : function(){
57838         return this.selections.itemAt(0);
57839     },
57840
57841
57842     /**
57843      * Clears all selections.
57844      */
57845     clearSelections : function(fast){
57846         if(this.locked) {
57847             return;
57848         }
57849         if(fast !== true){
57850             var ds = this.grid.dataSource;
57851             var s = this.selections;
57852             s.each(function(r){
57853                 this.deselectRow(ds.indexOfId(r.id));
57854             }, this);
57855             s.clear();
57856         }else{
57857             this.selections.clear();
57858         }
57859         this.last = false;
57860     },
57861
57862
57863     /**
57864      * Selects all rows.
57865      */
57866     selectAll : function(){
57867         if(this.locked) {
57868             return;
57869         }
57870         this.selections.clear();
57871         for(var i = 0, len = this.grid.dataSource.getCount(); i < len; i++){
57872             this.selectRow(i, true);
57873         }
57874     },
57875
57876     /**
57877      * Returns True if there is a selection.
57878      * @return {Boolean}
57879      */
57880     hasSelection : function(){
57881         return this.selections.length > 0;
57882     },
57883
57884     /**
57885      * Returns True if the specified row is selected.
57886      * @param {Number/Record} record The record or index of the record to check
57887      * @return {Boolean}
57888      */
57889     isSelected : function(index){
57890         var r = typeof index == "number" ? this.grid.dataSource.getAt(index) : index;
57891         return (r && this.selections.key(r.id) ? true : false);
57892     },
57893
57894     /**
57895      * Returns True if the specified record id is selected.
57896      * @param {String} id The id of record to check
57897      * @return {Boolean}
57898      */
57899     isIdSelected : function(id){
57900         return (this.selections.key(id) ? true : false);
57901     },
57902
57903     // private
57904     handleMouseDown : function(e, t){
57905         var view = this.grid.getView(), rowIndex;
57906         if(this.isLocked() || (rowIndex = view.findRowIndex(t)) === false){
57907             return;
57908         };
57909         if(e.shiftKey && this.last !== false){
57910             var last = this.last;
57911             this.selectRange(last, rowIndex, e.ctrlKey);
57912             this.last = last; // reset the last
57913             view.focusRow(rowIndex);
57914         }else{
57915             var isSelected = this.isSelected(rowIndex);
57916             if(e.button !== 0 && isSelected){
57917                 view.focusRow(rowIndex);
57918             }else if(e.ctrlKey && isSelected){
57919                 this.deselectRow(rowIndex);
57920             }else if(!isSelected){
57921                 this.selectRow(rowIndex, e.button === 0 && (e.ctrlKey || e.shiftKey));
57922                 view.focusRow(rowIndex);
57923             }
57924         }
57925         this.fireEvent("afterselectionchange", this);
57926     },
57927     // private
57928     handleDragableRowClick :  function(grid, rowIndex, e) 
57929     {
57930         if(e.button === 0 && !e.shiftKey && !e.ctrlKey) {
57931             this.selectRow(rowIndex, false);
57932             grid.view.focusRow(rowIndex);
57933              this.fireEvent("afterselectionchange", this);
57934         }
57935     },
57936     
57937     /**
57938      * Selects multiple rows.
57939      * @param {Array} rows Array of the indexes of the row to select
57940      * @param {Boolean} keepExisting (optional) True to keep existing selections
57941      */
57942     selectRows : function(rows, keepExisting){
57943         if(!keepExisting){
57944             this.clearSelections();
57945         }
57946         for(var i = 0, len = rows.length; i < len; i++){
57947             this.selectRow(rows[i], true);
57948         }
57949     },
57950
57951     /**
57952      * Selects a range of rows. All rows in between startRow and endRow are also selected.
57953      * @param {Number} startRow The index of the first row in the range
57954      * @param {Number} endRow The index of the last row in the range
57955      * @param {Boolean} keepExisting (optional) True to retain existing selections
57956      */
57957     selectRange : function(startRow, endRow, keepExisting){
57958         if(this.locked) {
57959             return;
57960         }
57961         if(!keepExisting){
57962             this.clearSelections();
57963         }
57964         if(startRow <= endRow){
57965             for(var i = startRow; i <= endRow; i++){
57966                 this.selectRow(i, true);
57967             }
57968         }else{
57969             for(var i = startRow; i >= endRow; i--){
57970                 this.selectRow(i, true);
57971             }
57972         }
57973     },
57974
57975     /**
57976      * Deselects a range of rows. All rows in between startRow and endRow are also deselected.
57977      * @param {Number} startRow The index of the first row in the range
57978      * @param {Number} endRow The index of the last row in the range
57979      */
57980     deselectRange : function(startRow, endRow, preventViewNotify){
57981         if(this.locked) {
57982             return;
57983         }
57984         for(var i = startRow; i <= endRow; i++){
57985             this.deselectRow(i, preventViewNotify);
57986         }
57987     },
57988
57989     /**
57990      * Selects a row.
57991      * @param {Number} row The index of the row to select
57992      * @param {Boolean} keepExisting (optional) True to keep existing selections
57993      */
57994     selectRow : function(index, keepExisting, preventViewNotify){
57995         if(this.locked || (index < 0 || index >= this.grid.dataSource.getCount())) {
57996             return;
57997         }
57998         if(this.fireEvent("beforerowselect", this, index, keepExisting) !== false){
57999             if(!keepExisting || this.singleSelect){
58000                 this.clearSelections();
58001             }
58002             var r = this.grid.dataSource.getAt(index);
58003             this.selections.add(r);
58004             this.last = this.lastActive = index;
58005             if(!preventViewNotify){
58006                 this.grid.getView().onRowSelect(index);
58007             }
58008             this.fireEvent("rowselect", this, index, r);
58009             this.fireEvent("selectionchange", this);
58010         }
58011     },
58012
58013     /**
58014      * Deselects a row.
58015      * @param {Number} row The index of the row to deselect
58016      */
58017     deselectRow : function(index, preventViewNotify){
58018         if(this.locked) {
58019             return;
58020         }
58021         if(this.last == index){
58022             this.last = false;
58023         }
58024         if(this.lastActive == index){
58025             this.lastActive = false;
58026         }
58027         var r = this.grid.dataSource.getAt(index);
58028         this.selections.remove(r);
58029         if(!preventViewNotify){
58030             this.grid.getView().onRowDeselect(index);
58031         }
58032         this.fireEvent("rowdeselect", this, index);
58033         this.fireEvent("selectionchange", this);
58034     },
58035
58036     // private
58037     restoreLast : function(){
58038         if(this._last){
58039             this.last = this._last;
58040         }
58041     },
58042
58043     // private
58044     acceptsNav : function(row, col, cm){
58045         return !cm.isHidden(col) && cm.isCellEditable(col, row);
58046     },
58047
58048     // private
58049     onEditorKey : function(field, e){
58050         var k = e.getKey(), newCell, g = this.grid, ed = g.activeEditor;
58051         if(k == e.TAB){
58052             e.stopEvent();
58053             ed.completeEdit();
58054             if(e.shiftKey){
58055                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
58056             }else{
58057                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
58058             }
58059         }else if(k == e.ENTER && !e.ctrlKey){
58060             e.stopEvent();
58061             ed.completeEdit();
58062             if(e.shiftKey){
58063                 newCell = g.walkCells(ed.row-1, ed.col, -1, this.acceptsNav, this);
58064             }else{
58065                 newCell = g.walkCells(ed.row+1, ed.col, 1, this.acceptsNav, this);
58066             }
58067         }else if(k == e.ESC){
58068             ed.cancelEdit();
58069         }
58070         if(newCell){
58071             g.startEditing(newCell[0], newCell[1]);
58072         }
58073     }
58074 });/*
58075  * Based on:
58076  * Ext JS Library 1.1.1
58077  * Copyright(c) 2006-2007, Ext JS, LLC.
58078  *
58079  * Originally Released Under LGPL - original licence link has changed is not relivant.
58080  *
58081  * Fork - LGPL
58082  * <script type="text/javascript">
58083  */
58084 /**
58085  * @class Roo.grid.CellSelectionModel
58086  * @extends Roo.grid.AbstractSelectionModel
58087  * This class provides the basic implementation for cell selection in a grid.
58088  * @constructor
58089  * @param {Object} config The object containing the configuration of this model.
58090  * @cfg {Boolean} enter_is_tab Enter behaves the same as tab. (eg. goes to next cell) default: false
58091  */
58092 Roo.grid.CellSelectionModel = function(config){
58093     Roo.apply(this, config);
58094
58095     this.selection = null;
58096
58097     this.addEvents({
58098         /**
58099              * @event beforerowselect
58100              * Fires before a cell is selected.
58101              * @param {SelectionModel} this
58102              * @param {Number} rowIndex The selected row index
58103              * @param {Number} colIndex The selected cell index
58104              */
58105             "beforecellselect" : true,
58106         /**
58107              * @event cellselect
58108              * Fires when a cell is selected.
58109              * @param {SelectionModel} this
58110              * @param {Number} rowIndex The selected row index
58111              * @param {Number} colIndex The selected cell index
58112              */
58113             "cellselect" : true,
58114         /**
58115              * @event selectionchange
58116              * Fires when the active selection changes.
58117              * @param {SelectionModel} this
58118              * @param {Object} selection null for no selection or an object (o) with two properties
58119                 <ul>
58120                 <li>o.record: the record object for the row the selection is in</li>
58121                 <li>o.cell: An array of [rowIndex, columnIndex]</li>
58122                 </ul>
58123              */
58124             "selectionchange" : true,
58125         /**
58126              * @event tabend
58127              * Fires when the tab (or enter) was pressed on the last editable cell
58128              * You can use this to trigger add new row.
58129              * @param {SelectionModel} this
58130              */
58131             "tabend" : true,
58132          /**
58133              * @event beforeeditnext
58134              * Fires before the next editable sell is made active
58135              * You can use this to skip to another cell or fire the tabend
58136              *    if you set cell to false
58137              * @param {Object} eventdata object : { cell : [ row, col ] } 
58138              */
58139             "beforeeditnext" : true
58140     });
58141     Roo.grid.CellSelectionModel.superclass.constructor.call(this);
58142 };
58143
58144 Roo.extend(Roo.grid.CellSelectionModel, Roo.grid.AbstractSelectionModel,  {
58145     
58146     enter_is_tab: false,
58147
58148     /** @ignore */
58149     initEvents : function(){
58150         this.grid.on("mousedown", this.handleMouseDown, this);
58151         this.grid.getGridEl().on(Roo.isIE ? "keydown" : "keypress", this.handleKeyDown, this);
58152         var view = this.grid.view;
58153         view.on("refresh", this.onViewChange, this);
58154         view.on("rowupdated", this.onRowUpdated, this);
58155         view.on("beforerowremoved", this.clearSelections, this);
58156         view.on("beforerowsinserted", this.clearSelections, this);
58157         if(this.grid.isEditor){
58158             this.grid.on("beforeedit", this.beforeEdit,  this);
58159         }
58160     },
58161
58162         //private
58163     beforeEdit : function(e){
58164         this.select(e.row, e.column, false, true, e.record);
58165     },
58166
58167         //private
58168     onRowUpdated : function(v, index, r){
58169         if(this.selection && this.selection.record == r){
58170             v.onCellSelect(index, this.selection.cell[1]);
58171         }
58172     },
58173
58174         //private
58175     onViewChange : function(){
58176         this.clearSelections(true);
58177     },
58178
58179         /**
58180          * Returns the currently selected cell,.
58181          * @return {Array} The selected cell (row, column) or null if none selected.
58182          */
58183     getSelectedCell : function(){
58184         return this.selection ? this.selection.cell : null;
58185     },
58186
58187     /**
58188      * Clears all selections.
58189      * @param {Boolean} true to prevent the gridview from being notified about the change.
58190      */
58191     clearSelections : function(preventNotify){
58192         var s = this.selection;
58193         if(s){
58194             if(preventNotify !== true){
58195                 this.grid.view.onCellDeselect(s.cell[0], s.cell[1]);
58196             }
58197             this.selection = null;
58198             this.fireEvent("selectionchange", this, null);
58199         }
58200     },
58201
58202     /**
58203      * Returns true if there is a selection.
58204      * @return {Boolean}
58205      */
58206     hasSelection : function(){
58207         return this.selection ? true : false;
58208     },
58209
58210     /** @ignore */
58211     handleMouseDown : function(e, t){
58212         var v = this.grid.getView();
58213         if(this.isLocked()){
58214             return;
58215         };
58216         var row = v.findRowIndex(t);
58217         var cell = v.findCellIndex(t);
58218         if(row !== false && cell !== false){
58219             this.select(row, cell);
58220         }
58221     },
58222
58223     /**
58224      * Selects a cell.
58225      * @param {Number} rowIndex
58226      * @param {Number} collIndex
58227      */
58228     select : function(rowIndex, colIndex, preventViewNotify, preventFocus, /*internal*/ r){
58229         if(this.fireEvent("beforecellselect", this, rowIndex, colIndex) !== false){
58230             this.clearSelections();
58231             r = r || this.grid.dataSource.getAt(rowIndex);
58232             this.selection = {
58233                 record : r,
58234                 cell : [rowIndex, colIndex]
58235             };
58236             if(!preventViewNotify){
58237                 var v = this.grid.getView();
58238                 v.onCellSelect(rowIndex, colIndex);
58239                 if(preventFocus !== true){
58240                     v.focusCell(rowIndex, colIndex);
58241                 }
58242             }
58243             this.fireEvent("cellselect", this, rowIndex, colIndex);
58244             this.fireEvent("selectionchange", this, this.selection);
58245         }
58246     },
58247
58248         //private
58249     isSelectable : function(rowIndex, colIndex, cm){
58250         return !cm.isHidden(colIndex);
58251     },
58252
58253     /** @ignore */
58254     handleKeyDown : function(e){
58255         //Roo.log('Cell Sel Model handleKeyDown');
58256         if(!e.isNavKeyPress()){
58257             return;
58258         }
58259         var g = this.grid, s = this.selection;
58260         if(!s){
58261             e.stopEvent();
58262             var cell = g.walkCells(0, 0, 1, this.isSelectable,  this);
58263             if(cell){
58264                 this.select(cell[0], cell[1]);
58265             }
58266             return;
58267         }
58268         var sm = this;
58269         var walk = function(row, col, step){
58270             return g.walkCells(row, col, step, sm.isSelectable,  sm);
58271         };
58272         var k = e.getKey(), r = s.cell[0], c = s.cell[1];
58273         var newCell;
58274
58275       
58276
58277         switch(k){
58278             case e.TAB:
58279                 // handled by onEditorKey
58280                 if (g.isEditor && g.editing) {
58281                     return;
58282                 }
58283                 if(e.shiftKey) {
58284                     newCell = walk(r, c-1, -1);
58285                 } else {
58286                     newCell = walk(r, c+1, 1);
58287                 }
58288                 break;
58289             
58290             case e.DOWN:
58291                newCell = walk(r+1, c, 1);
58292                 break;
58293             
58294             case e.UP:
58295                 newCell = walk(r-1, c, -1);
58296                 break;
58297             
58298             case e.RIGHT:
58299                 newCell = walk(r, c+1, 1);
58300                 break;
58301             
58302             case e.LEFT:
58303                 newCell = walk(r, c-1, -1);
58304                 break;
58305             
58306             case e.ENTER:
58307                 
58308                 if(g.isEditor && !g.editing){
58309                    g.startEditing(r, c);
58310                    e.stopEvent();
58311                    return;
58312                 }
58313                 
58314                 
58315              break;
58316         };
58317         if(newCell){
58318             this.select(newCell[0], newCell[1]);
58319             e.stopEvent();
58320             
58321         }
58322     },
58323
58324     acceptsNav : function(row, col, cm){
58325         return !cm.isHidden(col) && cm.isCellEditable(col, row);
58326     },
58327     /**
58328      * Selects a cell.
58329      * @param {Number} field (not used) - as it's normally used as a listener
58330      * @param {Number} e - event - fake it by using
58331      *
58332      * var e = Roo.EventObjectImpl.prototype;
58333      * e.keyCode = e.TAB
58334      *
58335      * 
58336      */
58337     onEditorKey : function(field, e){
58338         
58339         var k = e.getKey(),
58340             newCell,
58341             g = this.grid,
58342             ed = g.activeEditor,
58343             forward = false;
58344         ///Roo.log('onEditorKey' + k);
58345         
58346         
58347         if (this.enter_is_tab && k == e.ENTER) {
58348             k = e.TAB;
58349         }
58350         
58351         if(k == e.TAB){
58352             if(e.shiftKey){
58353                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
58354             }else{
58355                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
58356                 forward = true;
58357             }
58358             
58359             e.stopEvent();
58360             
58361         } else if(k == e.ENTER &&  !e.ctrlKey){
58362             ed.completeEdit();
58363             e.stopEvent();
58364             newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
58365         
58366                 } else if(k == e.ESC){
58367             ed.cancelEdit();
58368         }
58369                 
58370         if (newCell) {
58371             var ecall = { cell : newCell, forward : forward };
58372             this.fireEvent('beforeeditnext', ecall );
58373             newCell = ecall.cell;
58374                         forward = ecall.forward;
58375         }
58376                 
58377         if(newCell){
58378             //Roo.log('next cell after edit');
58379             g.startEditing.defer(100, g, [newCell[0], newCell[1]]);
58380         } else if (forward) {
58381             // tabbed past last
58382             this.fireEvent.defer(100, this, ['tabend',this]);
58383         }
58384     }
58385 });/*
58386  * Based on:
58387  * Ext JS Library 1.1.1
58388  * Copyright(c) 2006-2007, Ext JS, LLC.
58389  *
58390  * Originally Released Under LGPL - original licence link has changed is not relivant.
58391  *
58392  * Fork - LGPL
58393  * <script type="text/javascript">
58394  */
58395  
58396 /**
58397  * @class Roo.grid.EditorGrid
58398  * @extends Roo.grid.Grid
58399  * Class for creating and editable grid.
58400  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered - 
58401  * The container MUST have some type of size defined for the grid to fill. The container will be 
58402  * automatically set to position relative if it isn't already.
58403  * @param {Object} dataSource The data model to bind to
58404  * @param {Object} colModel The column model with info about this grid's columns
58405  */
58406 Roo.grid.EditorGrid = function(container, config){
58407     Roo.grid.EditorGrid.superclass.constructor.call(this, container, config);
58408     this.getGridEl().addClass("xedit-grid");
58409
58410     if(!this.selModel){
58411         this.selModel = new Roo.grid.CellSelectionModel();
58412     }
58413
58414     this.activeEditor = null;
58415
58416         this.addEvents({
58417             /**
58418              * @event beforeedit
58419              * Fires before cell editing is triggered. The edit event object has the following properties <br />
58420              * <ul style="padding:5px;padding-left:16px;">
58421              * <li>grid - This grid</li>
58422              * <li>record - The record being edited</li>
58423              * <li>field - The field name being edited</li>
58424              * <li>value - The value for the field being edited.</li>
58425              * <li>row - The grid row index</li>
58426              * <li>column - The grid column index</li>
58427              * <li>cancel - Set this to true to cancel the edit or return false from your handler.</li>
58428              * </ul>
58429              * @param {Object} e An edit event (see above for description)
58430              */
58431             "beforeedit" : true,
58432             /**
58433              * @event afteredit
58434              * Fires after a cell is edited. <br />
58435              * <ul style="padding:5px;padding-left:16px;">
58436              * <li>grid - This grid</li>
58437              * <li>record - The record being edited</li>
58438              * <li>field - The field name being edited</li>
58439              * <li>value - The value being set</li>
58440              * <li>originalValue - The original value for the field, before the edit.</li>
58441              * <li>row - The grid row index</li>
58442              * <li>column - The grid column index</li>
58443              * </ul>
58444              * @param {Object} e An edit event (see above for description)
58445              */
58446             "afteredit" : true,
58447             /**
58448              * @event validateedit
58449              * Fires after a cell is edited, but before the value is set in the record. 
58450          * You can use this to modify the value being set in the field, Return false
58451              * to cancel the change. The edit event object has the following properties <br />
58452              * <ul style="padding:5px;padding-left:16px;">
58453          * <li>editor - This editor</li>
58454              * <li>grid - This grid</li>
58455              * <li>record - The record being edited</li>
58456              * <li>field - The field name being edited</li>
58457              * <li>value - The value being set</li>
58458              * <li>originalValue - The original value for the field, before the edit.</li>
58459              * <li>row - The grid row index</li>
58460              * <li>column - The grid column index</li>
58461              * <li>cancel - Set this to true to cancel the edit or return false from your handler.</li>
58462              * </ul>
58463              * @param {Object} e An edit event (see above for description)
58464              */
58465             "validateedit" : true
58466         });
58467     this.on("bodyscroll", this.stopEditing,  this);
58468     this.on(this.clicksToEdit == 1 ? "cellclick" : "celldblclick", this.onCellDblClick,  this);
58469 };
58470
58471 Roo.extend(Roo.grid.EditorGrid, Roo.grid.Grid, {
58472     /**
58473      * @cfg {Number} clicksToEdit
58474      * The number of clicks on a cell required to display the cell's editor (defaults to 2)
58475      */
58476     clicksToEdit: 2,
58477
58478     // private
58479     isEditor : true,
58480     // private
58481     trackMouseOver: false, // causes very odd FF errors
58482
58483     onCellDblClick : function(g, row, col){
58484         this.startEditing(row, col);
58485     },
58486
58487     onEditComplete : function(ed, value, startValue){
58488         this.editing = false;
58489         this.activeEditor = null;
58490         ed.un("specialkey", this.selModel.onEditorKey, this.selModel);
58491         var r = ed.record;
58492         var field = this.colModel.getDataIndex(ed.col);
58493         var e = {
58494             grid: this,
58495             record: r,
58496             field: field,
58497             originalValue: startValue,
58498             value: value,
58499             row: ed.row,
58500             column: ed.col,
58501             cancel:false,
58502             editor: ed
58503         };
58504         var cell = Roo.get(this.view.getCell(ed.row,ed.col));
58505         cell.show();
58506           
58507         if(String(value) !== String(startValue)){
58508             
58509             if(this.fireEvent("validateedit", e) !== false && !e.cancel){
58510                 r.set(field, e.value);
58511                 // if we are dealing with a combo box..
58512                 // then we also set the 'name' colum to be the displayField
58513                 if (ed.field.displayField && ed.field.name) {
58514                     r.set(ed.field.name, ed.field.el.dom.value);
58515                 }
58516                 
58517                 delete e.cancel; //?? why!!!
58518                 this.fireEvent("afteredit", e);
58519             }
58520         } else {
58521             this.fireEvent("afteredit", e); // always fire it!
58522         }
58523         this.view.focusCell(ed.row, ed.col);
58524     },
58525
58526     /**
58527      * Starts editing the specified for the specified row/column
58528      * @param {Number} rowIndex
58529      * @param {Number} colIndex
58530      */
58531     startEditing : function(row, col){
58532         this.stopEditing();
58533         if(this.colModel.isCellEditable(col, row)){
58534             this.view.ensureVisible(row, col, true);
58535           
58536             var r = this.dataSource.getAt(row);
58537             var field = this.colModel.getDataIndex(col);
58538             var cell = Roo.get(this.view.getCell(row,col));
58539             var e = {
58540                 grid: this,
58541                 record: r,
58542                 field: field,
58543                 value: r.data[field],
58544                 row: row,
58545                 column: col,
58546                 cancel:false 
58547             };
58548             if(this.fireEvent("beforeedit", e) !== false && !e.cancel){
58549                 this.editing = true;
58550                 var ed = this.colModel.getCellEditor(col, row);
58551                 
58552                 if (!ed) {
58553                     return;
58554                 }
58555                 if(!ed.rendered){
58556                     ed.render(ed.parentEl || document.body);
58557                 }
58558                 ed.field.reset();
58559                
58560                 cell.hide();
58561                 
58562                 (function(){ // complex but required for focus issues in safari, ie and opera
58563                     ed.row = row;
58564                     ed.col = col;
58565                     ed.record = r;
58566                     ed.on("complete",   this.onEditComplete,        this,       {single: true});
58567                     ed.on("specialkey", this.selModel.onEditorKey,  this.selModel);
58568                     this.activeEditor = ed;
58569                     var v = r.data[field];
58570                     ed.startEdit(this.view.getCell(row, col), v);
58571                     // combo's with 'displayField and name set
58572                     if (ed.field.displayField && ed.field.name) {
58573                         ed.field.el.dom.value = r.data[ed.field.name];
58574                     }
58575                     
58576                     
58577                 }).defer(50, this);
58578             }
58579         }
58580     },
58581         
58582     /**
58583      * Stops any active editing
58584      */
58585     stopEditing : function(){
58586         if(this.activeEditor){
58587             this.activeEditor.completeEdit();
58588         }
58589         this.activeEditor = null;
58590     },
58591         
58592          /**
58593      * Called to get grid's drag proxy text, by default returns this.ddText.
58594      * @return {String}
58595      */
58596     getDragDropText : function(){
58597         var count = this.selModel.getSelectedCell() ? 1 : 0;
58598         return String.format(this.ddText, count, count == 1 ? '' : 's');
58599     }
58600         
58601 });/*
58602  * Based on:
58603  * Ext JS Library 1.1.1
58604  * Copyright(c) 2006-2007, Ext JS, LLC.
58605  *
58606  * Originally Released Under LGPL - original licence link has changed is not relivant.
58607  *
58608  * Fork - LGPL
58609  * <script type="text/javascript">
58610  */
58611
58612 // private - not really -- you end up using it !
58613 // This is a support class used internally by the Grid components
58614
58615 /**
58616  * @class Roo.grid.GridEditor
58617  * @extends Roo.Editor
58618  * Class for creating and editable grid elements.
58619  * @param {Object} config any settings (must include field)
58620  */
58621 Roo.grid.GridEditor = function(field, config){
58622     if (!config && field.field) {
58623         config = field;
58624         field = Roo.factory(config.field, Roo.form);
58625     }
58626     Roo.grid.GridEditor.superclass.constructor.call(this, field, config);
58627     field.monitorTab = false;
58628 };
58629
58630 Roo.extend(Roo.grid.GridEditor, Roo.Editor, {
58631     
58632     /**
58633      * @cfg {Roo.form.Field} field Field to wrap (or xtyped)
58634      */
58635     
58636     alignment: "tl-tl",
58637     autoSize: "width",
58638     hideEl : false,
58639     cls: "x-small-editor x-grid-editor",
58640     shim:false,
58641     shadow:"frame"
58642 });/*
58643  * Based on:
58644  * Ext JS Library 1.1.1
58645  * Copyright(c) 2006-2007, Ext JS, LLC.
58646  *
58647  * Originally Released Under LGPL - original licence link has changed is not relivant.
58648  *
58649  * Fork - LGPL
58650  * <script type="text/javascript">
58651  */
58652   
58653
58654   
58655 Roo.grid.PropertyRecord = Roo.data.Record.create([
58656     {name:'name',type:'string'},  'value'
58657 ]);
58658
58659
58660 Roo.grid.PropertyStore = function(grid, source){
58661     this.grid = grid;
58662     this.store = new Roo.data.Store({
58663         recordType : Roo.grid.PropertyRecord
58664     });
58665     this.store.on('update', this.onUpdate,  this);
58666     if(source){
58667         this.setSource(source);
58668     }
58669     Roo.grid.PropertyStore.superclass.constructor.call(this);
58670 };
58671
58672
58673
58674 Roo.extend(Roo.grid.PropertyStore, Roo.util.Observable, {
58675     setSource : function(o){
58676         this.source = o;
58677         this.store.removeAll();
58678         var data = [];
58679         for(var k in o){
58680             if(this.isEditableValue(o[k])){
58681                 data.push(new Roo.grid.PropertyRecord({name: k, value: o[k]}, k));
58682             }
58683         }
58684         this.store.loadRecords({records: data}, {}, true);
58685     },
58686
58687     onUpdate : function(ds, record, type){
58688         if(type == Roo.data.Record.EDIT){
58689             var v = record.data['value'];
58690             var oldValue = record.modified['value'];
58691             if(this.grid.fireEvent('beforepropertychange', this.source, record.id, v, oldValue) !== false){
58692                 this.source[record.id] = v;
58693                 record.commit();
58694                 this.grid.fireEvent('propertychange', this.source, record.id, v, oldValue);
58695             }else{
58696                 record.reject();
58697             }
58698         }
58699     },
58700
58701     getProperty : function(row){
58702        return this.store.getAt(row);
58703     },
58704
58705     isEditableValue: function(val){
58706         if(val && val instanceof Date){
58707             return true;
58708         }else if(typeof val == 'object' || typeof val == 'function'){
58709             return false;
58710         }
58711         return true;
58712     },
58713
58714     setValue : function(prop, value){
58715         this.source[prop] = value;
58716         this.store.getById(prop).set('value', value);
58717     },
58718
58719     getSource : function(){
58720         return this.source;
58721     }
58722 });
58723
58724 Roo.grid.PropertyColumnModel = function(grid, store){
58725     this.grid = grid;
58726     var g = Roo.grid;
58727     g.PropertyColumnModel.superclass.constructor.call(this, [
58728         {header: this.nameText, sortable: true, dataIndex:'name', id: 'name'},
58729         {header: this.valueText, resizable:false, dataIndex: 'value', id: 'value'}
58730     ]);
58731     this.store = store;
58732     this.bselect = Roo.DomHelper.append(document.body, {
58733         tag: 'select', style:'display:none', cls: 'x-grid-editor', children: [
58734             {tag: 'option', value: 'true', html: 'true'},
58735             {tag: 'option', value: 'false', html: 'false'}
58736         ]
58737     });
58738     Roo.id(this.bselect);
58739     var f = Roo.form;
58740     this.editors = {
58741         'date' : new g.GridEditor(new f.DateField({selectOnFocus:true})),
58742         'string' : new g.GridEditor(new f.TextField({selectOnFocus:true})),
58743         'number' : new g.GridEditor(new f.NumberField({selectOnFocus:true, style:'text-align:left;'})),
58744         'int' : new g.GridEditor(new f.NumberField({selectOnFocus:true, allowDecimals:false, style:'text-align:left;'})),
58745         'boolean' : new g.GridEditor(new f.Field({el:this.bselect,selectOnFocus:true}))
58746     };
58747     this.renderCellDelegate = this.renderCell.createDelegate(this);
58748     this.renderPropDelegate = this.renderProp.createDelegate(this);
58749 };
58750
58751 Roo.extend(Roo.grid.PropertyColumnModel, Roo.grid.ColumnModel, {
58752     
58753     
58754     nameText : 'Name',
58755     valueText : 'Value',
58756     
58757     dateFormat : 'm/j/Y',
58758     
58759     
58760     renderDate : function(dateVal){
58761         return dateVal.dateFormat(this.dateFormat);
58762     },
58763
58764     renderBool : function(bVal){
58765         return bVal ? 'true' : 'false';
58766     },
58767
58768     isCellEditable : function(colIndex, rowIndex){
58769         return colIndex == 1;
58770     },
58771
58772     getRenderer : function(col){
58773         return col == 1 ?
58774             this.renderCellDelegate : this.renderPropDelegate;
58775     },
58776
58777     renderProp : function(v){
58778         return this.getPropertyName(v);
58779     },
58780
58781     renderCell : function(val){
58782         var rv = val;
58783         if(val instanceof Date){
58784             rv = this.renderDate(val);
58785         }else if(typeof val == 'boolean'){
58786             rv = this.renderBool(val);
58787         }
58788         return Roo.util.Format.htmlEncode(rv);
58789     },
58790
58791     getPropertyName : function(name){
58792         var pn = this.grid.propertyNames;
58793         return pn && pn[name] ? pn[name] : name;
58794     },
58795
58796     getCellEditor : function(colIndex, rowIndex){
58797         var p = this.store.getProperty(rowIndex);
58798         var n = p.data['name'], val = p.data['value'];
58799         
58800         if(typeof(this.grid.customEditors[n]) == 'string'){
58801             return this.editors[this.grid.customEditors[n]];
58802         }
58803         if(typeof(this.grid.customEditors[n]) != 'undefined'){
58804             return this.grid.customEditors[n];
58805         }
58806         if(val instanceof Date){
58807             return this.editors['date'];
58808         }else if(typeof val == 'number'){
58809             return this.editors['number'];
58810         }else if(typeof val == 'boolean'){
58811             return this.editors['boolean'];
58812         }else{
58813             return this.editors['string'];
58814         }
58815     }
58816 });
58817
58818 /**
58819  * @class Roo.grid.PropertyGrid
58820  * @extends Roo.grid.EditorGrid
58821  * This class represents the  interface of a component based property grid control.
58822  * <br><br>Usage:<pre><code>
58823  var grid = new Roo.grid.PropertyGrid("my-container-id", {
58824       
58825  });
58826  // set any options
58827  grid.render();
58828  * </code></pre>
58829   
58830  * @constructor
58831  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
58832  * The container MUST have some type of size defined for the grid to fill. The container will be
58833  * automatically set to position relative if it isn't already.
58834  * @param {Object} config A config object that sets properties on this grid.
58835  */
58836 Roo.grid.PropertyGrid = function(container, config){
58837     config = config || {};
58838     var store = new Roo.grid.PropertyStore(this);
58839     this.store = store;
58840     var cm = new Roo.grid.PropertyColumnModel(this, store);
58841     store.store.sort('name', 'ASC');
58842     Roo.grid.PropertyGrid.superclass.constructor.call(this, container, Roo.apply({
58843         ds: store.store,
58844         cm: cm,
58845         enableColLock:false,
58846         enableColumnMove:false,
58847         stripeRows:false,
58848         trackMouseOver: false,
58849         clicksToEdit:1
58850     }, config));
58851     this.getGridEl().addClass('x-props-grid');
58852     this.lastEditRow = null;
58853     this.on('columnresize', this.onColumnResize, this);
58854     this.addEvents({
58855          /**
58856              * @event beforepropertychange
58857              * Fires before a property changes (return false to stop?)
58858              * @param {Roo.grid.PropertyGrid} grid property grid? (check could be store)
58859              * @param {String} id Record Id
58860              * @param {String} newval New Value
58861          * @param {String} oldval Old Value
58862              */
58863         "beforepropertychange": true,
58864         /**
58865              * @event propertychange
58866              * Fires after a property changes
58867              * @param {Roo.grid.PropertyGrid} grid property grid? (check could be store)
58868              * @param {String} id Record Id
58869              * @param {String} newval New Value
58870          * @param {String} oldval Old Value
58871              */
58872         "propertychange": true
58873     });
58874     this.customEditors = this.customEditors || {};
58875 };
58876 Roo.extend(Roo.grid.PropertyGrid, Roo.grid.EditorGrid, {
58877     
58878      /**
58879      * @cfg {Object} customEditors map of colnames=> custom editors.
58880      * the custom editor can be one of the standard ones (date|string|number|int|boolean), or a
58881      * grid editor eg. Roo.grid.GridEditor(new Roo.form.TextArea({selectOnFocus:true})),
58882      * false disables editing of the field.
58883          */
58884     
58885       /**
58886      * @cfg {Object} propertyNames map of property Names to their displayed value
58887          */
58888     
58889     render : function(){
58890         Roo.grid.PropertyGrid.superclass.render.call(this);
58891         this.autoSize.defer(100, this);
58892     },
58893
58894     autoSize : function(){
58895         Roo.grid.PropertyGrid.superclass.autoSize.call(this);
58896         if(this.view){
58897             this.view.fitColumns();
58898         }
58899     },
58900
58901     onColumnResize : function(){
58902         this.colModel.setColumnWidth(1, this.container.getWidth(true)-this.colModel.getColumnWidth(0));
58903         this.autoSize();
58904     },
58905     /**
58906      * Sets the data for the Grid
58907      * accepts a Key => Value object of all the elements avaiable.
58908      * @param {Object} data  to appear in grid.
58909      */
58910     setSource : function(source){
58911         this.store.setSource(source);
58912         //this.autoSize();
58913     },
58914     /**
58915      * Gets all the data from the grid.
58916      * @return {Object} data  data stored in grid
58917      */
58918     getSource : function(){
58919         return this.store.getSource();
58920     }
58921 });/*
58922   
58923  * Licence LGPL
58924  
58925  */
58926  
58927 /**
58928  * @class Roo.grid.Calendar
58929  * @extends Roo.util.Grid
58930  * This class extends the Grid to provide a calendar widget
58931  * <br><br>Usage:<pre><code>
58932  var grid = new Roo.grid.Calendar("my-container-id", {
58933      ds: myDataStore,
58934      cm: myColModel,
58935      selModel: mySelectionModel,
58936      autoSizeColumns: true,
58937      monitorWindowResize: false,
58938      trackMouseOver: true
58939      eventstore : real data store..
58940  });
58941  // set any options
58942  grid.render();
58943   
58944   * @constructor
58945  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
58946  * The container MUST have some type of size defined for the grid to fill. The container will be
58947  * automatically set to position relative if it isn't already.
58948  * @param {Object} config A config object that sets properties on this grid.
58949  */
58950 Roo.grid.Calendar = function(container, config){
58951         // initialize the container
58952         this.container = Roo.get(container);
58953         this.container.update("");
58954         this.container.setStyle("overflow", "hidden");
58955     this.container.addClass('x-grid-container');
58956
58957     this.id = this.container.id;
58958
58959     Roo.apply(this, config);
58960     // check and correct shorthanded configs
58961     
58962     var rows = [];
58963     var d =1;
58964     for (var r = 0;r < 6;r++) {
58965         
58966         rows[r]=[];
58967         for (var c =0;c < 7;c++) {
58968             rows[r][c]= '';
58969         }
58970     }
58971     if (this.eventStore) {
58972         this.eventStore= Roo.factory(this.eventStore, Roo.data);
58973         this.eventStore.on('load',this.onLoad, this);
58974         this.eventStore.on('beforeload',this.clearEvents, this);
58975          
58976     }
58977     
58978     this.dataSource = new Roo.data.Store({
58979             proxy: new Roo.data.MemoryProxy(rows),
58980             reader: new Roo.data.ArrayReader({}, [
58981                    'weekday0', 'weekday1', 'weekday2', 'weekday3', 'weekday4', 'weekday5', 'weekday6' ])
58982     });
58983
58984     this.dataSource.load();
58985     this.ds = this.dataSource;
58986     this.ds.xmodule = this.xmodule || false;
58987     
58988     
58989     var cellRender = function(v,x,r)
58990     {
58991         return String.format(
58992             '<div class="fc-day  fc-widget-content"><div>' +
58993                 '<div class="fc-event-container"></div>' +
58994                 '<div class="fc-day-number">{0}</div>'+
58995                 
58996                 '<div class="fc-day-content"><div style="position:relative"></div></div>' +
58997             '</div></div>', v);
58998     
58999     }
59000     
59001     
59002     this.colModel = new Roo.grid.ColumnModel( [
59003         {
59004             xtype: 'ColumnModel',
59005             xns: Roo.grid,
59006             dataIndex : 'weekday0',
59007             header : 'Sunday',
59008             renderer : cellRender
59009         },
59010         {
59011             xtype: 'ColumnModel',
59012             xns: Roo.grid,
59013             dataIndex : 'weekday1',
59014             header : 'Monday',
59015             renderer : cellRender
59016         },
59017         {
59018             xtype: 'ColumnModel',
59019             xns: Roo.grid,
59020             dataIndex : 'weekday2',
59021             header : 'Tuesday',
59022             renderer : cellRender
59023         },
59024         {
59025             xtype: 'ColumnModel',
59026             xns: Roo.grid,
59027             dataIndex : 'weekday3',
59028             header : 'Wednesday',
59029             renderer : cellRender
59030         },
59031         {
59032             xtype: 'ColumnModel',
59033             xns: Roo.grid,
59034             dataIndex : 'weekday4',
59035             header : 'Thursday',
59036             renderer : cellRender
59037         },
59038         {
59039             xtype: 'ColumnModel',
59040             xns: Roo.grid,
59041             dataIndex : 'weekday5',
59042             header : 'Friday',
59043             renderer : cellRender
59044         },
59045         {
59046             xtype: 'ColumnModel',
59047             xns: Roo.grid,
59048             dataIndex : 'weekday6',
59049             header : 'Saturday',
59050             renderer : cellRender
59051         }
59052     ]);
59053     this.cm = this.colModel;
59054     this.cm.xmodule = this.xmodule || false;
59055  
59056         
59057           
59058     //this.selModel = new Roo.grid.CellSelectionModel();
59059     //this.sm = this.selModel;
59060     //this.selModel.init(this);
59061     
59062     
59063     if(this.width){
59064         this.container.setWidth(this.width);
59065     }
59066
59067     if(this.height){
59068         this.container.setHeight(this.height);
59069     }
59070     /** @private */
59071         this.addEvents({
59072         // raw events
59073         /**
59074          * @event click
59075          * The raw click event for the entire grid.
59076          * @param {Roo.EventObject} e
59077          */
59078         "click" : true,
59079         /**
59080          * @event dblclick
59081          * The raw dblclick event for the entire grid.
59082          * @param {Roo.EventObject} e
59083          */
59084         "dblclick" : true,
59085         /**
59086          * @event contextmenu
59087          * The raw contextmenu event for the entire grid.
59088          * @param {Roo.EventObject} e
59089          */
59090         "contextmenu" : true,
59091         /**
59092          * @event mousedown
59093          * The raw mousedown event for the entire grid.
59094          * @param {Roo.EventObject} e
59095          */
59096         "mousedown" : true,
59097         /**
59098          * @event mouseup
59099          * The raw mouseup event for the entire grid.
59100          * @param {Roo.EventObject} e
59101          */
59102         "mouseup" : true,
59103         /**
59104          * @event mouseover
59105          * The raw mouseover event for the entire grid.
59106          * @param {Roo.EventObject} e
59107          */
59108         "mouseover" : true,
59109         /**
59110          * @event mouseout
59111          * The raw mouseout event for the entire grid.
59112          * @param {Roo.EventObject} e
59113          */
59114         "mouseout" : true,
59115         /**
59116          * @event keypress
59117          * The raw keypress event for the entire grid.
59118          * @param {Roo.EventObject} e
59119          */
59120         "keypress" : true,
59121         /**
59122          * @event keydown
59123          * The raw keydown event for the entire grid.
59124          * @param {Roo.EventObject} e
59125          */
59126         "keydown" : true,
59127
59128         // custom events
59129
59130         /**
59131          * @event cellclick
59132          * Fires when a cell is clicked
59133          * @param {Grid} this
59134          * @param {Number} rowIndex
59135          * @param {Number} columnIndex
59136          * @param {Roo.EventObject} e
59137          */
59138         "cellclick" : true,
59139         /**
59140          * @event celldblclick
59141          * Fires when a cell is double clicked
59142          * @param {Grid} this
59143          * @param {Number} rowIndex
59144          * @param {Number} columnIndex
59145          * @param {Roo.EventObject} e
59146          */
59147         "celldblclick" : true,
59148         /**
59149          * @event rowclick
59150          * Fires when a row is clicked
59151          * @param {Grid} this
59152          * @param {Number} rowIndex
59153          * @param {Roo.EventObject} e
59154          */
59155         "rowclick" : true,
59156         /**
59157          * @event rowdblclick
59158          * Fires when a row is double clicked
59159          * @param {Grid} this
59160          * @param {Number} rowIndex
59161          * @param {Roo.EventObject} e
59162          */
59163         "rowdblclick" : true,
59164         /**
59165          * @event headerclick
59166          * Fires when a header is clicked
59167          * @param {Grid} this
59168          * @param {Number} columnIndex
59169          * @param {Roo.EventObject} e
59170          */
59171         "headerclick" : true,
59172         /**
59173          * @event headerdblclick
59174          * Fires when a header cell is double clicked
59175          * @param {Grid} this
59176          * @param {Number} columnIndex
59177          * @param {Roo.EventObject} e
59178          */
59179         "headerdblclick" : true,
59180         /**
59181          * @event rowcontextmenu
59182          * Fires when a row is right clicked
59183          * @param {Grid} this
59184          * @param {Number} rowIndex
59185          * @param {Roo.EventObject} e
59186          */
59187         "rowcontextmenu" : true,
59188         /**
59189          * @event cellcontextmenu
59190          * Fires when a cell is right clicked
59191          * @param {Grid} this
59192          * @param {Number} rowIndex
59193          * @param {Number} cellIndex
59194          * @param {Roo.EventObject} e
59195          */
59196          "cellcontextmenu" : true,
59197         /**
59198          * @event headercontextmenu
59199          * Fires when a header is right clicked
59200          * @param {Grid} this
59201          * @param {Number} columnIndex
59202          * @param {Roo.EventObject} e
59203          */
59204         "headercontextmenu" : true,
59205         /**
59206          * @event bodyscroll
59207          * Fires when the body element is scrolled
59208          * @param {Number} scrollLeft
59209          * @param {Number} scrollTop
59210          */
59211         "bodyscroll" : true,
59212         /**
59213          * @event columnresize
59214          * Fires when the user resizes a column
59215          * @param {Number} columnIndex
59216          * @param {Number} newSize
59217          */
59218         "columnresize" : true,
59219         /**
59220          * @event columnmove
59221          * Fires when the user moves a column
59222          * @param {Number} oldIndex
59223          * @param {Number} newIndex
59224          */
59225         "columnmove" : true,
59226         /**
59227          * @event startdrag
59228          * Fires when row(s) start being dragged
59229          * @param {Grid} this
59230          * @param {Roo.GridDD} dd The drag drop object
59231          * @param {event} e The raw browser event
59232          */
59233         "startdrag" : true,
59234         /**
59235          * @event enddrag
59236          * Fires when a drag operation is complete
59237          * @param {Grid} this
59238          * @param {Roo.GridDD} dd The drag drop object
59239          * @param {event} e The raw browser event
59240          */
59241         "enddrag" : true,
59242         /**
59243          * @event dragdrop
59244          * Fires when dragged row(s) are dropped on a valid DD target
59245          * @param {Grid} this
59246          * @param {Roo.GridDD} dd The drag drop object
59247          * @param {String} targetId The target drag drop object
59248          * @param {event} e The raw browser event
59249          */
59250         "dragdrop" : true,
59251         /**
59252          * @event dragover
59253          * Fires while row(s) are being dragged. "targetId" is the id of the Yahoo.util.DD object the selected rows are being dragged over.
59254          * @param {Grid} this
59255          * @param {Roo.GridDD} dd The drag drop object
59256          * @param {String} targetId The target drag drop object
59257          * @param {event} e The raw browser event
59258          */
59259         "dragover" : true,
59260         /**
59261          * @event dragenter
59262          *  Fires when the dragged row(s) first cross another DD target while being dragged
59263          * @param {Grid} this
59264          * @param {Roo.GridDD} dd The drag drop object
59265          * @param {String} targetId The target drag drop object
59266          * @param {event} e The raw browser event
59267          */
59268         "dragenter" : true,
59269         /**
59270          * @event dragout
59271          * Fires when the dragged row(s) leave another DD target while being dragged
59272          * @param {Grid} this
59273          * @param {Roo.GridDD} dd The drag drop object
59274          * @param {String} targetId The target drag drop object
59275          * @param {event} e The raw browser event
59276          */
59277         "dragout" : true,
59278         /**
59279          * @event rowclass
59280          * Fires when a row is rendered, so you can change add a style to it.
59281          * @param {GridView} gridview   The grid view
59282          * @param {Object} rowcfg   contains record  rowIndex and rowClass - set rowClass to add a style.
59283          */
59284         'rowclass' : true,
59285
59286         /**
59287          * @event render
59288          * Fires when the grid is rendered
59289          * @param {Grid} grid
59290          */
59291         'render' : true,
59292             /**
59293              * @event select
59294              * Fires when a date is selected
59295              * @param {DatePicker} this
59296              * @param {Date} date The selected date
59297              */
59298         'select': true,
59299         /**
59300              * @event monthchange
59301              * Fires when the displayed month changes 
59302              * @param {DatePicker} this
59303              * @param {Date} date The selected month
59304              */
59305         'monthchange': true,
59306         /**
59307              * @event evententer
59308              * Fires when mouse over an event
59309              * @param {Calendar} this
59310              * @param {event} Event
59311              */
59312         'evententer': true,
59313         /**
59314              * @event eventleave
59315              * Fires when the mouse leaves an
59316              * @param {Calendar} this
59317              * @param {event}
59318              */
59319         'eventleave': true,
59320         /**
59321              * @event eventclick
59322              * Fires when the mouse click an
59323              * @param {Calendar} this
59324              * @param {event}
59325              */
59326         'eventclick': true,
59327         /**
59328              * @event eventrender
59329              * Fires before each cell is rendered, so you can modify the contents, like cls / title / qtip
59330              * @param {Calendar} this
59331              * @param {data} data to be modified
59332              */
59333         'eventrender': true
59334         
59335     });
59336
59337     Roo.grid.Grid.superclass.constructor.call(this);
59338     this.on('render', function() {
59339         this.view.el.addClass('x-grid-cal'); 
59340         
59341         (function() { this.setDate(new Date()); }).defer(100,this); //default today..
59342
59343     },this);
59344     
59345     if (!Roo.grid.Calendar.style) {
59346         Roo.grid.Calendar.style = Roo.util.CSS.createStyleSheet({
59347             
59348             
59349             '.x-grid-cal .x-grid-col' :  {
59350                 height: 'auto !important',
59351                 'vertical-align': 'top'
59352             },
59353             '.x-grid-cal  .fc-event-hori' : {
59354                 height: '14px'
59355             }
59356              
59357             
59358         }, Roo.id());
59359     }
59360
59361     
59362     
59363 };
59364 Roo.extend(Roo.grid.Calendar, Roo.grid.Grid, {
59365     /**
59366      * @cfg {Store} eventStore The store that loads events.
59367      */
59368     eventStore : 25,
59369
59370      
59371     activeDate : false,
59372     startDay : 0,
59373     autoWidth : true,
59374     monitorWindowResize : false,
59375
59376     
59377     resizeColumns : function() {
59378         var col = (this.view.el.getWidth() / 7) - 3;
59379         // loop through cols, and setWidth
59380         for(var i =0 ; i < 7 ; i++){
59381             this.cm.setColumnWidth(i, col);
59382         }
59383     },
59384      setDate :function(date) {
59385         
59386         Roo.log('setDate?');
59387         
59388         this.resizeColumns();
59389         var vd = this.activeDate;
59390         this.activeDate = date;
59391 //        if(vd && this.el){
59392 //            var t = date.getTime();
59393 //            if(vd.getMonth() == date.getMonth() && vd.getFullYear() == date.getFullYear()){
59394 //                Roo.log('using add remove');
59395 //                
59396 //                this.fireEvent('monthchange', this, date);
59397 //                
59398 //                this.cells.removeClass("fc-state-highlight");
59399 //                this.cells.each(function(c){
59400 //                   if(c.dateValue == t){
59401 //                       c.addClass("fc-state-highlight");
59402 //                       setTimeout(function(){
59403 //                            try{c.dom.firstChild.focus();}catch(e){}
59404 //                       }, 50);
59405 //                       return false;
59406 //                   }
59407 //                   return true;
59408 //                });
59409 //                return;
59410 //            }
59411 //        }
59412         
59413         var days = date.getDaysInMonth();
59414         
59415         var firstOfMonth = date.getFirstDateOfMonth();
59416         var startingPos = firstOfMonth.getDay()-this.startDay;
59417         
59418         if(startingPos < this.startDay){
59419             startingPos += 7;
59420         }
59421         
59422         var pm = date.add(Date.MONTH, -1);
59423         var prevStart = pm.getDaysInMonth()-startingPos;
59424 //        
59425         
59426         
59427         this.cells = this.view.el.select('.x-grid-row .x-grid-col',true);
59428         
59429         this.textNodes = this.view.el.query('.x-grid-row .x-grid-col .x-grid-cell-text');
59430         //this.cells.addClassOnOver('fc-state-hover');
59431         
59432         var cells = this.cells.elements;
59433         var textEls = this.textNodes;
59434         
59435         //Roo.each(cells, function(cell){
59436         //    cell.removeClass([ 'fc-past', 'fc-other-month', 'fc-future', 'fc-state-highlight', 'fc-state-disabled']);
59437         //});
59438         
59439         days += startingPos;
59440
59441         // convert everything to numbers so it's fast
59442         var day = 86400000;
59443         var d = (new Date(pm.getFullYear(), pm.getMonth(), prevStart)).clearTime();
59444         //Roo.log(d);
59445         //Roo.log(pm);
59446         //Roo.log(prevStart);
59447         
59448         var today = new Date().clearTime().getTime();
59449         var sel = date.clearTime().getTime();
59450         var min = this.minDate ? this.minDate.clearTime() : Number.NEGATIVE_INFINITY;
59451         var max = this.maxDate ? this.maxDate.clearTime() : Number.POSITIVE_INFINITY;
59452         var ddMatch = this.disabledDatesRE;
59453         var ddText = this.disabledDatesText;
59454         var ddays = this.disabledDays ? this.disabledDays.join("") : false;
59455         var ddaysText = this.disabledDaysText;
59456         var format = this.format;
59457         
59458         var setCellClass = function(cal, cell){
59459             
59460             //Roo.log('set Cell Class');
59461             cell.title = "";
59462             var t = d.getTime();
59463             
59464             //Roo.log(d);
59465             
59466             
59467             cell.dateValue = t;
59468             if(t == today){
59469                 cell.className += " fc-today";
59470                 cell.className += " fc-state-highlight";
59471                 cell.title = cal.todayText;
59472             }
59473             if(t == sel){
59474                 // disable highlight in other month..
59475                 cell.className += " fc-state-highlight";
59476                 
59477             }
59478             // disabling
59479             if(t < min) {
59480                 //cell.className = " fc-state-disabled";
59481                 cell.title = cal.minText;
59482                 return;
59483             }
59484             if(t > max) {
59485                 //cell.className = " fc-state-disabled";
59486                 cell.title = cal.maxText;
59487                 return;
59488             }
59489             if(ddays){
59490                 if(ddays.indexOf(d.getDay()) != -1){
59491                     // cell.title = ddaysText;
59492                    // cell.className = " fc-state-disabled";
59493                 }
59494             }
59495             if(ddMatch && format){
59496                 var fvalue = d.dateFormat(format);
59497                 if(ddMatch.test(fvalue)){
59498                     cell.title = ddText.replace("%0", fvalue);
59499                    cell.className = " fc-state-disabled";
59500                 }
59501             }
59502             
59503             if (!cell.initialClassName) {
59504                 cell.initialClassName = cell.dom.className;
59505             }
59506             
59507             cell.dom.className = cell.initialClassName  + ' ' +  cell.className;
59508         };
59509
59510         var i = 0;
59511         
59512         for(; i < startingPos; i++) {
59513             cells[i].dayName =  (++prevStart);
59514             Roo.log(textEls[i]);
59515             d.setDate(d.getDate()+1);
59516             
59517             //cells[i].className = "fc-past fc-other-month";
59518             setCellClass(this, cells[i]);
59519         }
59520         
59521         var intDay = 0;
59522         
59523         for(; i < days; i++){
59524             intDay = i - startingPos + 1;
59525             cells[i].dayName =  (intDay);
59526             d.setDate(d.getDate()+1);
59527             
59528             cells[i].className = ''; // "x-date-active";
59529             setCellClass(this, cells[i]);
59530         }
59531         var extraDays = 0;
59532         
59533         for(; i < 42; i++) {
59534             //textEls[i].innerHTML = (++extraDays);
59535             
59536             d.setDate(d.getDate()+1);
59537             cells[i].dayName = (++extraDays);
59538             cells[i].className = "fc-future fc-other-month";
59539             setCellClass(this, cells[i]);
59540         }
59541         
59542         //this.el.select('.fc-header-title h2',true).update(Date.monthNames[date.getMonth()] + " " + date.getFullYear());
59543         
59544         var totalRows = Math.ceil((date.getDaysInMonth() + date.getFirstDateOfMonth().getDay()) / 7);
59545         
59546         // this will cause all the cells to mis
59547         var rows= [];
59548         var i =0;
59549         for (var r = 0;r < 6;r++) {
59550             for (var c =0;c < 7;c++) {
59551                 this.ds.getAt(r).set('weekday' + c ,cells[i++].dayName );
59552             }    
59553         }
59554         
59555         this.cells = this.view.el.select('.x-grid-row .x-grid-col',true);
59556         for(i=0;i<cells.length;i++) {
59557             
59558             this.cells.elements[i].dayName = cells[i].dayName ;
59559             this.cells.elements[i].className = cells[i].className;
59560             this.cells.elements[i].initialClassName = cells[i].initialClassName ;
59561             this.cells.elements[i].title = cells[i].title ;
59562             this.cells.elements[i].dateValue = cells[i].dateValue ;
59563         }
59564         
59565         
59566         
59567         
59568         //this.el.select('tr.fc-week.fc-prev-last',true).removeClass('fc-last');
59569         //this.el.select('tr.fc-week.fc-next-last',true).addClass('fc-last').show();
59570         
59571         ////if(totalRows != 6){
59572             //this.el.select('tr.fc-week.fc-last',true).removeClass('fc-last').addClass('fc-next-last').hide();
59573            // this.el.select('tr.fc-week.fc-prev-last',true).addClass('fc-last');
59574        // }
59575         
59576         this.fireEvent('monthchange', this, date);
59577         
59578         
59579     },
59580  /**
59581      * Returns the grid's SelectionModel.
59582      * @return {SelectionModel}
59583      */
59584     getSelectionModel : function(){
59585         if(!this.selModel){
59586             this.selModel = new Roo.grid.CellSelectionModel();
59587         }
59588         return this.selModel;
59589     },
59590
59591     load: function() {
59592         this.eventStore.load()
59593         
59594         
59595         
59596     },
59597     
59598     findCell : function(dt) {
59599         dt = dt.clearTime().getTime();
59600         var ret = false;
59601         this.cells.each(function(c){
59602             //Roo.log("check " +c.dateValue + '?=' + dt);
59603             if(c.dateValue == dt){
59604                 ret = c;
59605                 return false;
59606             }
59607             return true;
59608         });
59609         
59610         return ret;
59611     },
59612     
59613     findCells : function(rec) {
59614         var s = rec.data.start_dt.clone().clearTime().getTime();
59615        // Roo.log(s);
59616         var e= rec.data.end_dt.clone().clearTime().getTime();
59617        // Roo.log(e);
59618         var ret = [];
59619         this.cells.each(function(c){
59620              ////Roo.log("check " +c.dateValue + '<' + e + ' > ' + s);
59621             
59622             if(c.dateValue > e){
59623                 return ;
59624             }
59625             if(c.dateValue < s){
59626                 return ;
59627             }
59628             ret.push(c);
59629         });
59630         
59631         return ret;    
59632     },
59633     
59634     findBestRow: function(cells)
59635     {
59636         var ret = 0;
59637         
59638         for (var i =0 ; i < cells.length;i++) {
59639             ret  = Math.max(cells[i].rows || 0,ret);
59640         }
59641         return ret;
59642         
59643     },
59644     
59645     
59646     addItem : function(rec)
59647     {
59648         // look for vertical location slot in
59649         var cells = this.findCells(rec);
59650         
59651         rec.row = this.findBestRow(cells);
59652         
59653         // work out the location.
59654         
59655         var crow = false;
59656         var rows = [];
59657         for(var i =0; i < cells.length; i++) {
59658             if (!crow) {
59659                 crow = {
59660                     start : cells[i],
59661                     end :  cells[i]
59662                 };
59663                 continue;
59664             }
59665             if (crow.start.getY() == cells[i].getY()) {
59666                 // on same row.
59667                 crow.end = cells[i];
59668                 continue;
59669             }
59670             // different row.
59671             rows.push(crow);
59672             crow = {
59673                 start: cells[i],
59674                 end : cells[i]
59675             };
59676             
59677         }
59678         
59679         rows.push(crow);
59680         rec.els = [];
59681         rec.rows = rows;
59682         rec.cells = cells;
59683         for (var i = 0; i < cells.length;i++) {
59684             cells[i].rows = Math.max(cells[i].rows || 0 , rec.row + 1 );
59685             
59686         }
59687         
59688         
59689     },
59690     
59691     clearEvents: function() {
59692         
59693         if (!this.eventStore.getCount()) {
59694             return;
59695         }
59696         // reset number of rows in cells.
59697         Roo.each(this.cells.elements, function(c){
59698             c.rows = 0;
59699         });
59700         
59701         this.eventStore.each(function(e) {
59702             this.clearEvent(e);
59703         },this);
59704         
59705     },
59706     
59707     clearEvent : function(ev)
59708     {
59709         if (ev.els) {
59710             Roo.each(ev.els, function(el) {
59711                 el.un('mouseenter' ,this.onEventEnter, this);
59712                 el.un('mouseleave' ,this.onEventLeave, this);
59713                 el.remove();
59714             },this);
59715             ev.els = [];
59716         }
59717     },
59718     
59719     
59720     renderEvent : function(ev,ctr) {
59721         if (!ctr) {
59722              ctr = this.view.el.select('.fc-event-container',true).first();
59723         }
59724         
59725          
59726         this.clearEvent(ev);
59727             //code
59728        
59729         
59730         
59731         ev.els = [];
59732         var cells = ev.cells;
59733         var rows = ev.rows;
59734         this.fireEvent('eventrender', this, ev);
59735         
59736         for(var i =0; i < rows.length; i++) {
59737             
59738             cls = '';
59739             if (i == 0) {
59740                 cls += ' fc-event-start';
59741             }
59742             if ((i+1) == rows.length) {
59743                 cls += ' fc-event-end';
59744             }
59745             
59746             //Roo.log(ev.data);
59747             // how many rows should it span..
59748             var cg = this.eventTmpl.append(ctr,Roo.apply({
59749                 fccls : cls
59750                 
59751             }, ev.data) , true);
59752             
59753             
59754             cg.on('mouseenter' ,this.onEventEnter, this, ev);
59755             cg.on('mouseleave' ,this.onEventLeave, this, ev);
59756             cg.on('click', this.onEventClick, this, ev);
59757             
59758             ev.els.push(cg);
59759             
59760             var sbox = rows[i].start.select('.fc-day-content',true).first().getBox();
59761             var ebox = rows[i].end.select('.fc-day-content',true).first().getBox();
59762             //Roo.log(cg);
59763              
59764             cg.setXY([sbox.x +2, sbox.y +(ev.row * 20)]);    
59765             cg.setWidth(ebox.right - sbox.x -2);
59766         }
59767     },
59768     
59769     renderEvents: function()
59770     {   
59771         // first make sure there is enough space..
59772         
59773         if (!this.eventTmpl) {
59774             this.eventTmpl = new Roo.Template(
59775                 '<div class="roo-dynamic fc-event fc-event-hori fc-event-draggable ui-draggable {fccls} {cls}"  style="position: absolute" unselectable="on">' +
59776                     '<div class="fc-event-inner">' +
59777                         '<span class="fc-event-time">{time}</span>' +
59778                         '<span class="fc-event-title" qtip="{qtip}">{title}</span>' +
59779                     '</div>' +
59780                     '<div class="ui-resizable-heandle ui-resizable-e">&nbsp;&nbsp;&nbsp;</div>' +
59781                 '</div>'
59782             );
59783                 
59784         }
59785                
59786         
59787         
59788         this.cells.each(function(c) {
59789             //Roo.log(c.select('.fc-day-content div',true).first());
59790             c.select('.fc-day-content div',true).first().setHeight(Math.max(34, (c.rows || 1) * 20));
59791         });
59792         
59793         var ctr = this.view.el.select('.fc-event-container',true).first();
59794         
59795         var cls;
59796         this.eventStore.each(function(ev){
59797             
59798             this.renderEvent(ev);
59799              
59800              
59801         }, this);
59802         this.view.layout();
59803         
59804     },
59805     
59806     onEventEnter: function (e, el,event,d) {
59807         this.fireEvent('evententer', this, el, event);
59808     },
59809     
59810     onEventLeave: function (e, el,event,d) {
59811         this.fireEvent('eventleave', this, el, event);
59812     },
59813     
59814     onEventClick: function (e, el,event,d) {
59815         this.fireEvent('eventclick', this, el, event);
59816     },
59817     
59818     onMonthChange: function () {
59819         this.store.load();
59820     },
59821     
59822     onLoad: function () {
59823         
59824         //Roo.log('calendar onload');
59825 //         
59826         if(this.eventStore.getCount() > 0){
59827             
59828            
59829             
59830             this.eventStore.each(function(d){
59831                 
59832                 
59833                 // FIXME..
59834                 var add =   d.data;
59835                 if (typeof(add.end_dt) == 'undefined')  {
59836                     Roo.log("Missing End time in calendar data: ");
59837                     Roo.log(d);
59838                     return;
59839                 }
59840                 if (typeof(add.start_dt) == 'undefined')  {
59841                     Roo.log("Missing Start time in calendar data: ");
59842                     Roo.log(d);
59843                     return;
59844                 }
59845                 add.start_dt = typeof(add.start_dt) == 'string' ? Date.parseDate(add.start_dt,'Y-m-d H:i:s') : add.start_dt,
59846                 add.end_dt = typeof(add.end_dt) == 'string' ? Date.parseDate(add.end_dt,'Y-m-d H:i:s') : add.end_dt,
59847                 add.id = add.id || d.id;
59848                 add.title = add.title || '??';
59849                 
59850                 this.addItem(d);
59851                 
59852              
59853             },this);
59854         }
59855         
59856         this.renderEvents();
59857     }
59858     
59859
59860 });
59861 /*
59862  grid : {
59863                 xtype: 'Grid',
59864                 xns: Roo.grid,
59865                 listeners : {
59866                     render : function ()
59867                     {
59868                         _this.grid = this;
59869                         
59870                         if (!this.view.el.hasClass('course-timesheet')) {
59871                             this.view.el.addClass('course-timesheet');
59872                         }
59873                         if (this.tsStyle) {
59874                             this.ds.load({});
59875                             return; 
59876                         }
59877                         Roo.log('width');
59878                         Roo.log(_this.grid.view.el.getWidth());
59879                         
59880                         
59881                         this.tsStyle =  Roo.util.CSS.createStyleSheet({
59882                             '.course-timesheet .x-grid-row' : {
59883                                 height: '80px'
59884                             },
59885                             '.x-grid-row td' : {
59886                                 'vertical-align' : 0
59887                             },
59888                             '.course-edit-link' : {
59889                                 'color' : 'blue',
59890                                 'text-overflow' : 'ellipsis',
59891                                 'overflow' : 'hidden',
59892                                 'white-space' : 'nowrap',
59893                                 'cursor' : 'pointer'
59894                             },
59895                             '.sub-link' : {
59896                                 'color' : 'green'
59897                             },
59898                             '.de-act-sup-link' : {
59899                                 'color' : 'purple',
59900                                 'text-decoration' : 'line-through'
59901                             },
59902                             '.de-act-link' : {
59903                                 'color' : 'red',
59904                                 'text-decoration' : 'line-through'
59905                             },
59906                             '.course-timesheet .course-highlight' : {
59907                                 'border-top-style': 'dashed !important',
59908                                 'border-bottom-bottom': 'dashed !important'
59909                             },
59910                             '.course-timesheet .course-item' : {
59911                                 'font-family'   : 'tahoma, arial, helvetica',
59912                                 'font-size'     : '11px',
59913                                 'overflow'      : 'hidden',
59914                                 'padding-left'  : '10px',
59915                                 'padding-right' : '10px',
59916                                 'padding-top' : '10px' 
59917                             }
59918                             
59919                         }, Roo.id());
59920                                 this.ds.load({});
59921                     }
59922                 },
59923                 autoWidth : true,
59924                 monitorWindowResize : false,
59925                 cellrenderer : function(v,x,r)
59926                 {
59927                     return v;
59928                 },
59929                 sm : {
59930                     xtype: 'CellSelectionModel',
59931                     xns: Roo.grid
59932                 },
59933                 dataSource : {
59934                     xtype: 'Store',
59935                     xns: Roo.data,
59936                     listeners : {
59937                         beforeload : function (_self, options)
59938                         {
59939                             options.params = options.params || {};
59940                             options.params._month = _this.monthField.getValue();
59941                             options.params.limit = 9999;
59942                             options.params['sort'] = 'when_dt';    
59943                             options.params['dir'] = 'ASC';    
59944                             this.proxy.loadResponse = this.loadResponse;
59945                             Roo.log("load?");
59946                             //this.addColumns();
59947                         },
59948                         load : function (_self, records, options)
59949                         {
59950                             _this.grid.view.el.select('.course-edit-link', true).on('click', function() {
59951                                 // if you click on the translation.. you can edit it...
59952                                 var el = Roo.get(this);
59953                                 var id = el.dom.getAttribute('data-id');
59954                                 var d = el.dom.getAttribute('data-date');
59955                                 var t = el.dom.getAttribute('data-time');
59956                                 //var id = this.child('span').dom.textContent;
59957                                 
59958                                 //Roo.log(this);
59959                                 Pman.Dialog.CourseCalendar.show({
59960                                     id : id,
59961                                     when_d : d,
59962                                     when_t : t,
59963                                     productitem_active : id ? 1 : 0
59964                                 }, function() {
59965                                     _this.grid.ds.load({});
59966                                 });
59967                            
59968                            });
59969                            
59970                            _this.panel.fireEvent('resize', [ '', '' ]);
59971                         }
59972                     },
59973                     loadResponse : function(o, success, response){
59974                             // this is overridden on before load..
59975                             
59976                             Roo.log("our code?");       
59977                             //Roo.log(success);
59978                             //Roo.log(response)
59979                             delete this.activeRequest;
59980                             if(!success){
59981                                 this.fireEvent("loadexception", this, o, response);
59982                                 o.request.callback.call(o.request.scope, null, o.request.arg, false);
59983                                 return;
59984                             }
59985                             var result;
59986                             try {
59987                                 result = o.reader.read(response);
59988                             }catch(e){
59989                                 Roo.log("load exception?");
59990                                 this.fireEvent("loadexception", this, o, response, e);
59991                                 o.request.callback.call(o.request.scope, null, o.request.arg, false);
59992                                 return;
59993                             }
59994                             Roo.log("ready...");        
59995                             // loop through result.records;
59996                             // and set this.tdate[date] = [] << array of records..
59997                             _this.tdata  = {};
59998                             Roo.each(result.records, function(r){
59999                                 //Roo.log(r.data);
60000                                 if(typeof(_this.tdata[r.data.when_dt.format('j')]) == 'undefined'){
60001                                     _this.tdata[r.data.when_dt.format('j')] = [];
60002                                 }
60003                                 _this.tdata[r.data.when_dt.format('j')].push(r.data);
60004                             });
60005                             
60006                             //Roo.log(_this.tdata);
60007                             
60008                             result.records = [];
60009                             result.totalRecords = 6;
60010                     
60011                             // let's generate some duumy records for the rows.
60012                             //var st = _this.dateField.getValue();
60013                             
60014                             // work out monday..
60015                             //st = st.add(Date.DAY, -1 * st.format('w'));
60016                             
60017                             var date = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
60018                             
60019                             var firstOfMonth = date.getFirstDayOfMonth();
60020                             var days = date.getDaysInMonth();
60021                             var d = 1;
60022                             var firstAdded = false;
60023                             for (var i = 0; i < result.totalRecords ; i++) {
60024                                 //var d= st.add(Date.DAY, i);
60025                                 var row = {};
60026                                 var added = 0;
60027                                 for(var w = 0 ; w < 7 ; w++){
60028                                     if(!firstAdded && firstOfMonth != w){
60029                                         continue;
60030                                     }
60031                                     if(d > days){
60032                                         continue;
60033                                     }
60034                                     firstAdded = true;
60035                                     var dd = (d > 0 && d < 10) ? "0"+d : d;
60036                                     row['weekday'+w] = String.format(
60037                                                     '<span style="font-size: 16px;"><b>{0}</b></span>'+
60038                                                     '<span class="course-edit-link" style="color:blue;" data-id="0" data-date="{1}"> Add New</span>',
60039                                                     d,
60040                                                     date.format('Y-m-')+dd
60041                                                 );
60042                                     added++;
60043                                     if(typeof(_this.tdata[d]) != 'undefined'){
60044                                         Roo.each(_this.tdata[d], function(r){
60045                                             var is_sub = '';
60046                                             var deactive = '';
60047                                             var id = r.id;
60048                                             var desc = (r.productitem_id_descrip) ? r.productitem_id_descrip : '';
60049                                             if(r.parent_id*1>0){
60050                                                 is_sub = (r.productitem_id_visible*1 < 1) ? 'de-act-sup-link' :'sub-link';
60051                                                 id = r.parent_id;
60052                                             }
60053                                             if(r.productitem_id_visible*1 < 1 && r.parent_id*1 < 1){
60054                                                 deactive = 'de-act-link';
60055                                             }
60056                                             
60057                                             row['weekday'+w] += String.format(
60058                                                     '<br /><span class="course-edit-link {3} {4}" qtip="{5}" data-id="{0}">{2} - {1}</span>',
60059                                                     id, //0
60060                                                     r.product_id_name, //1
60061                                                     r.when_dt.format('h:ia'), //2
60062                                                     is_sub, //3
60063                                                     deactive, //4
60064                                                     desc // 5
60065                                             );
60066                                         });
60067                                     }
60068                                     d++;
60069                                 }
60070                                 
60071                                 // only do this if something added..
60072                                 if(added > 0){ 
60073                                     result.records.push(_this.grid.dataSource.reader.newRow(row));
60074                                 }
60075                                 
60076                                 
60077                                 // push it twice. (second one with an hour..
60078                                 
60079                             }
60080                             //Roo.log(result);
60081                             this.fireEvent("load", this, o, o.request.arg);
60082                             o.request.callback.call(o.request.scope, result, o.request.arg, true);
60083                         },
60084                     sortInfo : {field: 'when_dt', direction : 'ASC' },
60085                     proxy : {
60086                         xtype: 'HttpProxy',
60087                         xns: Roo.data,
60088                         method : 'GET',
60089                         url : baseURL + '/Roo/Shop_course.php'
60090                     },
60091                     reader : {
60092                         xtype: 'JsonReader',
60093                         xns: Roo.data,
60094                         id : 'id',
60095                         fields : [
60096                             {
60097                                 'name': 'id',
60098                                 'type': 'int'
60099                             },
60100                             {
60101                                 'name': 'when_dt',
60102                                 'type': 'string'
60103                             },
60104                             {
60105                                 'name': 'end_dt',
60106                                 'type': 'string'
60107                             },
60108                             {
60109                                 'name': 'parent_id',
60110                                 'type': 'int'
60111                             },
60112                             {
60113                                 'name': 'product_id',
60114                                 'type': 'int'
60115                             },
60116                             {
60117                                 'name': 'productitem_id',
60118                                 'type': 'int'
60119                             },
60120                             {
60121                                 'name': 'guid',
60122                                 'type': 'int'
60123                             }
60124                         ]
60125                     }
60126                 },
60127                 toolbar : {
60128                     xtype: 'Toolbar',
60129                     xns: Roo,
60130                     items : [
60131                         {
60132                             xtype: 'Button',
60133                             xns: Roo.Toolbar,
60134                             listeners : {
60135                                 click : function (_self, e)
60136                                 {
60137                                     var sd = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
60138                                     sd.setMonth(sd.getMonth()-1);
60139                                     _this.monthField.setValue(sd.format('Y-m-d'));
60140                                     _this.grid.ds.load({});
60141                                 }
60142                             },
60143                             text : "Back"
60144                         },
60145                         {
60146                             xtype: 'Separator',
60147                             xns: Roo.Toolbar
60148                         },
60149                         {
60150                             xtype: 'MonthField',
60151                             xns: Roo.form,
60152                             listeners : {
60153                                 render : function (_self)
60154                                 {
60155                                     _this.monthField = _self;
60156                                    // _this.monthField.set  today
60157                                 },
60158                                 select : function (combo, date)
60159                                 {
60160                                     _this.grid.ds.load({});
60161                                 }
60162                             },
60163                             value : (function() { return new Date(); })()
60164                         },
60165                         {
60166                             xtype: 'Separator',
60167                             xns: Roo.Toolbar
60168                         },
60169                         {
60170                             xtype: 'TextItem',
60171                             xns: Roo.Toolbar,
60172                             text : "Blue: in-active, green: in-active sup-event, red: de-active, purple: de-active sup-event"
60173                         },
60174                         {
60175                             xtype: 'Fill',
60176                             xns: Roo.Toolbar
60177                         },
60178                         {
60179                             xtype: 'Button',
60180                             xns: Roo.Toolbar,
60181                             listeners : {
60182                                 click : function (_self, e)
60183                                 {
60184                                     var sd = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
60185                                     sd.setMonth(sd.getMonth()+1);
60186                                     _this.monthField.setValue(sd.format('Y-m-d'));
60187                                     _this.grid.ds.load({});
60188                                 }
60189                             },
60190                             text : "Next"
60191                         }
60192                     ]
60193                 },
60194                  
60195             }
60196         };
60197         
60198         *//*
60199  * Based on:
60200  * Ext JS Library 1.1.1
60201  * Copyright(c) 2006-2007, Ext JS, LLC.
60202  *
60203  * Originally Released Under LGPL - original licence link has changed is not relivant.
60204  *
60205  * Fork - LGPL
60206  * <script type="text/javascript">
60207  */
60208  
60209 /**
60210  * @class Roo.LoadMask
60211  * A simple utility class for generically masking elements while loading data.  If the element being masked has
60212  * an underlying {@link Roo.data.Store}, the masking will be automatically synchronized with the store's loading
60213  * process and the mask element will be cached for reuse.  For all other elements, this mask will replace the
60214  * element's UpdateManager load indicator and will be destroyed after the initial load.
60215  * @constructor
60216  * Create a new LoadMask
60217  * @param {String/HTMLElement/Roo.Element} el The element or DOM node, or its id
60218  * @param {Object} config The config object
60219  */
60220 Roo.LoadMask = function(el, config){
60221     this.el = Roo.get(el);
60222     Roo.apply(this, config);
60223     if(this.store){
60224         this.store.on('beforeload', this.onBeforeLoad, this);
60225         this.store.on('load', this.onLoad, this);
60226         this.store.on('loadexception', this.onLoadException, this);
60227         this.removeMask = false;
60228     }else{
60229         var um = this.el.getUpdateManager();
60230         um.showLoadIndicator = false; // disable the default indicator
60231         um.on('beforeupdate', this.onBeforeLoad, this);
60232         um.on('update', this.onLoad, this);
60233         um.on('failure', this.onLoad, this);
60234         this.removeMask = true;
60235     }
60236 };
60237
60238 Roo.LoadMask.prototype = {
60239     /**
60240      * @cfg {Boolean} removeMask
60241      * True to create a single-use mask that is automatically destroyed after loading (useful for page loads),
60242      * False to persist the mask element reference for multiple uses (e.g., for paged data widgets).  Defaults to false.
60243      */
60244     /**
60245      * @cfg {String} msg
60246      * The text to display in a centered loading message box (defaults to 'Loading...')
60247      */
60248     msg : 'Loading...',
60249     /**
60250      * @cfg {String} msgCls
60251      * The CSS class to apply to the loading message element (defaults to "x-mask-loading")
60252      */
60253     msgCls : 'x-mask-loading',
60254
60255     /**
60256      * Read-only. True if the mask is currently disabled so that it will not be displayed (defaults to false)
60257      * @type Boolean
60258      */
60259     disabled: false,
60260
60261     /**
60262      * Disables the mask to prevent it from being displayed
60263      */
60264     disable : function(){
60265        this.disabled = true;
60266     },
60267
60268     /**
60269      * Enables the mask so that it can be displayed
60270      */
60271     enable : function(){
60272         this.disabled = false;
60273     },
60274     
60275     onLoadException : function()
60276     {
60277         Roo.log(arguments);
60278         
60279         if (typeof(arguments[3]) != 'undefined') {
60280             Roo.MessageBox.alert("Error loading",arguments[3]);
60281         } 
60282         /*
60283         try {
60284             if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
60285                 Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
60286             }   
60287         } catch(e) {
60288             
60289         }
60290         */
60291     
60292         (function() { this.el.unmask(this.removeMask); }).defer(50, this);
60293     },
60294     // private
60295     onLoad : function()
60296     {
60297         (function() { this.el.unmask(this.removeMask); }).defer(50, this);
60298     },
60299
60300     // private
60301     onBeforeLoad : function(){
60302         if(!this.disabled){
60303             (function() { this.el.mask(this.msg, this.msgCls); }).defer(50, this);
60304         }
60305     },
60306
60307     // private
60308     destroy : function(){
60309         if(this.store){
60310             this.store.un('beforeload', this.onBeforeLoad, this);
60311             this.store.un('load', this.onLoad, this);
60312             this.store.un('loadexception', this.onLoadException, this);
60313         }else{
60314             var um = this.el.getUpdateManager();
60315             um.un('beforeupdate', this.onBeforeLoad, this);
60316             um.un('update', this.onLoad, this);
60317             um.un('failure', this.onLoad, this);
60318         }
60319     }
60320 };/*
60321  * Based on:
60322  * Ext JS Library 1.1.1
60323  * Copyright(c) 2006-2007, Ext JS, LLC.
60324  *
60325  * Originally Released Under LGPL - original licence link has changed is not relivant.
60326  *
60327  * Fork - LGPL
60328  * <script type="text/javascript">
60329  */
60330
60331
60332 /**
60333  * @class Roo.XTemplate
60334  * @extends Roo.Template
60335  * Provides a template that can have nested templates for loops or conditionals. The syntax is:
60336 <pre><code>
60337 var t = new Roo.XTemplate(
60338         '&lt;select name="{name}"&gt;',
60339                 '&lt;tpl for="options"&gt;&lt;option value="{value:trim}"&gt;{text:ellipsis(10)}&lt;/option&gt;&lt;/tpl&gt;',
60340         '&lt;/select&gt;'
60341 );
60342  
60343 // then append, applying the master template values
60344  </code></pre>
60345  *
60346  * Supported features:
60347  *
60348  *  Tags:
60349
60350 <pre><code>
60351       {a_variable} - output encoded.
60352       {a_variable.format:("Y-m-d")} - call a method on the variable
60353       {a_variable:raw} - unencoded output
60354       {a_variable:toFixed(1,2)} - Roo.util.Format."toFixed"
60355       {a_variable:this.method_on_template(...)} - call a method on the template object.
60356  
60357 </code></pre>
60358  *  The tpl tag:
60359 <pre><code>
60360         &lt;tpl for="a_variable or condition.."&gt;&lt;/tpl&gt;
60361         &lt;tpl if="a_variable or condition"&gt;&lt;/tpl&gt;
60362         &lt;tpl exec="some javascript"&gt;&lt;/tpl&gt;
60363         &lt;tpl name="named_template"&gt;&lt;/tpl&gt; (experimental)
60364   
60365         &lt;tpl for="."&gt;&lt;/tpl&gt; - just iterate the property..
60366         &lt;tpl for=".."&gt;&lt;/tpl&gt; - iterates with the parent (probably the template) 
60367 </code></pre>
60368  *      
60369  */
60370 Roo.XTemplate = function()
60371 {
60372     Roo.XTemplate.superclass.constructor.apply(this, arguments);
60373     if (this.html) {
60374         this.compile();
60375     }
60376 };
60377
60378
60379 Roo.extend(Roo.XTemplate, Roo.Template, {
60380
60381     /**
60382      * The various sub templates
60383      */
60384     tpls : false,
60385     /**
60386      *
60387      * basic tag replacing syntax
60388      * WORD:WORD()
60389      *
60390      * // you can fake an object call by doing this
60391      *  x.t:(test,tesT) 
60392      * 
60393      */
60394     re : /\{([\w-\.]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
60395
60396     /**
60397      * compile the template
60398      *
60399      * This is not recursive, so I'm not sure how nested templates are really going to be handled..
60400      *
60401      */
60402     compile: function()
60403     {
60404         var s = this.html;
60405      
60406         s = ['<tpl>', s, '</tpl>'].join('');
60407     
60408         var re     = /<tpl\b[^>]*>((?:(?=([^<]+))\2|<(?!tpl\b[^>]*>))*?)<\/tpl>/,
60409             nameRe = /^<tpl\b[^>]*?for="(.*?)"/,
60410             ifRe   = /^<tpl\b[^>]*?if="(.*?)"/,
60411             execRe = /^<tpl\b[^>]*?exec="(.*?)"/,
60412             namedRe = /^<tpl\b[^>]*?name="(\w+)"/,  // named templates..
60413             m,
60414             id     = 0,
60415             tpls   = [];
60416     
60417         while(true == !!(m = s.match(re))){
60418             var forMatch   = m[0].match(nameRe),
60419                 ifMatch   = m[0].match(ifRe),
60420                 execMatch   = m[0].match(execRe),
60421                 namedMatch   = m[0].match(namedRe),
60422                 
60423                 exp  = null, 
60424                 fn   = null,
60425                 exec = null,
60426                 name = forMatch && forMatch[1] ? forMatch[1] : '';
60427                 
60428             if (ifMatch) {
60429                 // if - puts fn into test..
60430                 exp = ifMatch && ifMatch[1] ? ifMatch[1] : null;
60431                 if(exp){
60432                    fn = new Function('values', 'parent', 'with(values){ return '+(Roo.util.Format.htmlDecode(exp))+'; }');
60433                 }
60434             }
60435             
60436             if (execMatch) {
60437                 // exec - calls a function... returns empty if true is  returned.
60438                 exp = execMatch && execMatch[1] ? execMatch[1] : null;
60439                 if(exp){
60440                    exec = new Function('values', 'parent', 'with(values){ '+(Roo.util.Format.htmlDecode(exp))+'; }');
60441                 }
60442             }
60443             
60444             
60445             if (name) {
60446                 // for = 
60447                 switch(name){
60448                     case '.':  name = new Function('values', 'parent', 'with(values){ return values; }'); break;
60449                     case '..': name = new Function('values', 'parent', 'with(values){ return parent; }'); break;
60450                     default:   name = new Function('values', 'parent', 'with(values){ return '+name+'; }');
60451                 }
60452             }
60453             var uid = namedMatch ? namedMatch[1] : id;
60454             
60455             
60456             tpls.push({
60457                 id:     namedMatch ? namedMatch[1] : id,
60458                 target: name,
60459                 exec:   exec,
60460                 test:   fn,
60461                 body:   m[1] || ''
60462             });
60463             if (namedMatch) {
60464                 s = s.replace(m[0], '');
60465             } else { 
60466                 s = s.replace(m[0], '{xtpl'+ id + '}');
60467             }
60468             ++id;
60469         }
60470         this.tpls = [];
60471         for(var i = tpls.length-1; i >= 0; --i){
60472             this.compileTpl(tpls[i]);
60473             this.tpls[tpls[i].id] = tpls[i];
60474         }
60475         this.master = tpls[tpls.length-1];
60476         return this;
60477     },
60478     /**
60479      * same as applyTemplate, except it's done to one of the subTemplates
60480      * when using named templates, you can do:
60481      *
60482      * var str = pl.applySubTemplate('your-name', values);
60483      *
60484      * 
60485      * @param {Number} id of the template
60486      * @param {Object} values to apply to template
60487      * @param {Object} parent (normaly the instance of this object)
60488      */
60489     applySubTemplate : function(id, values, parent)
60490     {
60491         
60492         
60493         var t = this.tpls[id];
60494         
60495         
60496         try { 
60497             if(t.test && !t.test.call(this, values, parent)){
60498                 return '';
60499             }
60500         } catch(e) {
60501             Roo.log("Xtemplate.applySubTemplate 'test': Exception thrown");
60502             Roo.log(e.toString());
60503             Roo.log(t.test);
60504             return ''
60505         }
60506         try { 
60507             
60508             if(t.exec && t.exec.call(this, values, parent)){
60509                 return '';
60510             }
60511         } catch(e) {
60512             Roo.log("Xtemplate.applySubTemplate 'exec': Exception thrown");
60513             Roo.log(e.toString());
60514             Roo.log(t.exec);
60515             return ''
60516         }
60517         try {
60518             var vs = t.target ? t.target.call(this, values, parent) : values;
60519             parent = t.target ? values : parent;
60520             if(t.target && vs instanceof Array){
60521                 var buf = [];
60522                 for(var i = 0, len = vs.length; i < len; i++){
60523                     buf[buf.length] = t.compiled.call(this, vs[i], parent);
60524                 }
60525                 return buf.join('');
60526             }
60527             return t.compiled.call(this, vs, parent);
60528         } catch (e) {
60529             Roo.log("Xtemplate.applySubTemplate : Exception thrown");
60530             Roo.log(e.toString());
60531             Roo.log(t.compiled);
60532             return '';
60533         }
60534     },
60535
60536     compileTpl : function(tpl)
60537     {
60538         var fm = Roo.util.Format;
60539         var useF = this.disableFormats !== true;
60540         var sep = Roo.isGecko ? "+" : ",";
60541         var undef = function(str) {
60542             Roo.log("Property not found :"  + str);
60543             return '';
60544         };
60545         
60546         var fn = function(m, name, format, args)
60547         {
60548             //Roo.log(arguments);
60549             args = args ? args.replace(/\\'/g,"'") : args;
60550             //["{TEST:(a,b,c)}", "TEST", "", "a,b,c", 0, "{TEST:(a,b,c)}"]
60551             if (typeof(format) == 'undefined') {
60552                 format= 'htmlEncode';
60553             }
60554             if (format == 'raw' ) {
60555                 format = false;
60556             }
60557             
60558             if(name.substr(0, 4) == 'xtpl'){
60559                 return "'"+ sep +'this.applySubTemplate('+name.substr(4)+', values, parent)'+sep+"'";
60560             }
60561             
60562             // build an array of options to determine if value is undefined..
60563             
60564             // basically get 'xxxx.yyyy' then do
60565             // (typeof(xxxx) == 'undefined' || typeof(xxx.yyyy) == 'undefined') ?
60566             //    (function () { Roo.log("Property not found"); return ''; })() :
60567             //    ......
60568             
60569             var udef_ar = [];
60570             var lookfor = '';
60571             Roo.each(name.split('.'), function(st) {
60572                 lookfor += (lookfor.length ? '.': '') + st;
60573                 udef_ar.push(  "(typeof(" + lookfor + ") == 'undefined')"  );
60574             });
60575             
60576             var udef_st = '((' + udef_ar.join(" || ") +") ? undef('" + name + "') : "; // .. needs )
60577             
60578             
60579             if(format && useF){
60580                 
60581                 args = args ? ',' + args : "";
60582                  
60583                 if(format.substr(0, 5) != "this."){
60584                     format = "fm." + format + '(';
60585                 }else{
60586                     format = 'this.call("'+ format.substr(5) + '", ';
60587                     args = ", values";
60588                 }
60589                 
60590                 return "'"+ sep +   udef_st   +    format + name + args + "))"+sep+"'";
60591             }
60592              
60593             if (args.length) {
60594                 // called with xxyx.yuu:(test,test)
60595                 // change to ()
60596                 return "'"+ sep + udef_st  + name + '(' +  args + "))"+sep+"'";
60597             }
60598             // raw.. - :raw modifier..
60599             return "'"+ sep + udef_st  + name + ")"+sep+"'";
60600             
60601         };
60602         var body;
60603         // branched to use + in gecko and [].join() in others
60604         if(Roo.isGecko){
60605             body = "tpl.compiled = function(values, parent){  with(values) { return '" +
60606                    tpl.body.replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
60607                     "';};};";
60608         }else{
60609             body = ["tpl.compiled = function(values, parent){  with (values) { return ['"];
60610             body.push(tpl.body.replace(/(\r\n|\n)/g,
60611                             '\\n').replace(/'/g, "\\'").replace(this.re, fn));
60612             body.push("'].join('');};};");
60613             body = body.join('');
60614         }
60615         
60616         Roo.debug && Roo.log(body.replace(/\\n/,'\n'));
60617        
60618         /** eval:var:tpl eval:var:fm eval:var:useF eval:var:undef  */
60619         eval(body);
60620         
60621         return this;
60622     },
60623
60624     applyTemplate : function(values){
60625         return this.master.compiled.call(this, values, {});
60626         //var s = this.subs;
60627     },
60628
60629     apply : function(){
60630         return this.applyTemplate.apply(this, arguments);
60631     }
60632
60633  });
60634
60635 Roo.XTemplate.from = function(el){
60636     el = Roo.getDom(el);
60637     return new Roo.XTemplate(el.value || el.innerHTML);
60638 };